Skip to content

Commit

Permalink
Fix #78 init #30
Browse files Browse the repository at this point in the history
  • Loading branch information
mswindler committed Aug 29, 2019
1 parent 22b0065 commit 76d19cb
Show file tree
Hide file tree
Showing 27 changed files with 22 additions and 6 deletions.
9 changes: 9 additions & 0 deletions launch/unix/manager.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh
SOURCEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
source $SOURCEDIR/env.sh
export CURRENT_PROGRAM='manager'

export PYTHONPATH=${PYTHONPATH}

echo "Starting Manager..."
python pipe/app/manager/main.py
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
19 changes: 13 additions & 6 deletions pipe/tools/manager/main.py → pipe/app/manager/main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import os

print("here")
print(os.getcwd())

from PySide import *
print("PyQt version:", PYQT_VERSION_STR)
try:
from PySide2 import QtWidgets, QtGui
from PySide2 import QtCore
from PySide import QtGui as QtWidgets
from PySide import QtGui as QtGui
from PySide import QtCore
except ImportError:
from PySide import QtGui as QtWidgets
from PySide import QtCore
from PySide2 import QtWidgets, QtGui, QtCore

import datetime
import operator
Expand All @@ -13,7 +20,7 @@
from pipe.am.environment import Department, Status
from pipe.am.project import Project

from byugui import request_email
# from byugui import request_email

REF_WINDOW_WIDTH = 1080
REF_WINDOW_HEIGHT = 650
Expand Down Expand Up @@ -356,7 +363,7 @@ def __init__(self):
layout.addWidget(self.status_bar)
self.setLayout(layout)

request_email.check_user_email(self)
# request_email.check_user_email(self)

def _build_tree(self):
self.tree.clear()
Expand Down

0 comments on commit 76d19cb

Please sign in to comment.