コード例 #1
0
def quitCourse():
	if (not isLogin()):
		return CourseService.getNotLoginResult()
	
	courseId = request.form['courseId']
	username = session['username']
	return CourseService.quitCourse(username, int(courseId))
コード例 #2
0
ファイル: ieducation.py プロジェクト: iaxax/Education-System
def iQuitCourse():
    if (not isLogin()):
        return NetCourse.iGetNotLoginResult()

    courseId = request.form['courseId']
    username = session['username']
    courseDept = request.form['courseDept']
    return NetCourse.iQuitCourse(username, int(courseId), int(courseDept))
コード例 #3
0
ファイル: wseducation.py プロジェクト: iaxax/Education-System
def wsQuitCourse():
    if (not isLogin()):
        return CourseWebService.wsGetNotLoginResult()

    courseId = request.form['courseId']
    username = session['username']
    courseDept = request.form['courseDept']
    return CourseWebService.wsQuitCourse(username, int(courseId),
                                         int(courseDept))
コード例 #4
0
ファイル: ieducation.py プロジェクト: iaxax/Education-System
def iGetCourseInfo():
    if (not isLogin()):
        return NetCourse.iGetNotLoginResult()

    return NetCourse.iGetSelectCourseInfo(session['username'])
コード例 #5
0
def getCourseInfo():
	if (not isLogin()):
		return CourseService.getNotLoginResult()
	
	return CourseService.getCourseInfo(session['username'])
コード例 #6
0
def logout():
	if (isLogin()):
		session['isLogin'] = True
		session['username'] = None
コード例 #7
0
ファイル: wseducation.py プロジェクト: iaxax/Education-System
def wsGetCourseInfo():
    if (not isLogin()):
        return CourseWebService.wsGetNotLoginResult()

    return CourseWebService.wsGetSelectCourseInfo(session['username'])