Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just added this organizational sheet #8

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 27 additions & 24 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
application: friendswfood
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico

- url: /stylesheets
static_dir: stylesheets

- url: /js
static_dir: js

- url: .*
script: main.app
login: required

libraries:
- name: webapp2
version: "2.5.1"
application: friendswfood
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico

- url: /stylesheets
static_dir: stylesheets

- url: /js
static_dir: js

- url: /images
static_dir: images

- url: .*
script: main.app
login: required

libraries:
- name: webapp2
version: "2.5.1"
Binary file added images/header.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
150 changes: 75 additions & 75 deletions main.py
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__), './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)
#!/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)
Loading