-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rossnanop/master
Added templates folder for organization
- Loading branch information
Showing
5 changed files
with
84 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,75 @@ | ||
#!/usr/bin/env python | ||
# | ||
# Copyright 2007 Google Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
import os | ||
from google.appengine.ext.webapp import template | ||
|
||
import webapp2 | ||
from dbClasses import Event | ||
from dbClasses import AppUser | ||
|
||
import gQuery | ||
|
||
from eventInteraction import Make | ||
from eventInteraction import Report | ||
from eventInteraction import Attend | ||
from eventInteraction import Verify | ||
|
||
from Views import ViewUser | ||
|
||
from google.appengine.ext import db | ||
from google.appengine.api import users | ||
|
||
class IntroPage(webapp2.RequestHandler): | ||
def get(self): | ||
limit=20 | ||
|
||
user=AppUser.getUser() | ||
message=self.request.get('message') | ||
pageNum=self.request.get('page') | ||
if not pageNum: | ||
pageNum=0 | ||
events = gQuery.getEvents(limit, pageNum, user) | ||
if events == None: | ||
events=[] | ||
|
||
if users.get_current_user(): | ||
url = users.create_logout_url(self.request.uri) | ||
url_linktext = 'Logout' | ||
else: | ||
url = users.create_login_url(self.request.uri) | ||
url_linktext = 'Login' | ||
|
||
template_values = { | ||
'events': events, | ||
'url': url, | ||
'url_linktext': url_linktext, | ||
"user":user, | ||
"message":message, | ||
"pageNum":pageNum | ||
} | ||
|
||
path = os.path.join(os.path.dirname(__file__), 'main.html') | ||
self.response.out.write(template.render(path, template_values)) | ||
|
||
|
||
app = webapp2.WSGIApplication([('/',IntroPage), | ||
('/Make', Make), | ||
('/Report', Report), | ||
('/Attend', Attend), | ||
('/Verify', Verify), | ||
('/User/.*', ViewUser)], | ||
debug=True) | ||
#!/usr/bin/env python | ||
# | ||
# Copyright 2007 Google Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
import os | ||
from google.appengine.ext.webapp import template | ||
|
||
import webapp2 | ||
from dbClasses import Event | ||
from dbClasses import AppUser | ||
|
||
import gQuery | ||
|
||
from eventInteraction import Make | ||
from eventInteraction import Report | ||
from eventInteraction import Attend | ||
from eventInteraction import Verify | ||
|
||
from Views import ViewUser | ||
|
||
from google.appengine.ext import db | ||
from google.appengine.api import users | ||
|
||
class IntroPage(webapp2.RequestHandler): | ||
def get(self): | ||
limit=20 | ||
|
||
user=AppUser.getUser() | ||
message=self.request.get('message') | ||
pageNum=self.request.get('page') | ||
if not pageNum: | ||
pageNum=0 | ||
events = gQuery.getEvents(limit, pageNum, user) | ||
if events == None: | ||
events=[] | ||
|
||
if users.get_current_user(): | ||
url = users.create_logout_url(self.request.uri) | ||
url_linktext = 'Logout' | ||
else: | ||
url = users.create_login_url(self.request.uri) | ||
url_linktext = 'Login' | ||
|
||
template_values = { | ||
'events': events, | ||
'url': url, | ||
'url_linktext': url_linktext, | ||
"user":user, | ||
"message":message, | ||
"pageNum":pageNum | ||
} | ||
|
||
path = os.path.join(os.path.dirname(__file__), './templates/main.html') | ||
self.response.out.write(template.render(path, template_values)) | ||
|
||
|
||
app = webapp2.WSGIApplication([('/',IntroPage), | ||
('/Make', Make), | ||
('/Report', Report), | ||
('/Attend', Attend), | ||
('/Verify', Verify), | ||
('/User/.*', ViewUser)], | ||
debug=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.