forked from caseysoftware/eventgrinder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed logo feature, fixed a bad import in tasks.py
- Loading branch information
Ross Karchner
committed
Nov 16, 2011
1 parent
a9987ef
commit 3f43829
Showing
7 changed files
with
17 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ handlers: | |
script: main.application | ||
|
||
builtins: | ||
- datastore_admin: on | ||
- datastore_admin: on | ||
- remote_api: on |
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,17 +1,21 @@ | ||
import sys | ||
import os | ||
import os, os.path | ||
from logging import error | ||
|
||
|
||
|
||
sys.path= [os.path.join(os.path.dirname(__file__), 'shared'), os.path.join(os.path.dirname(__file__), '.')]+sys.path | ||
|
||
|
||
|
||
|
||
|
||
def namespace_manager_default_namespace_for_request(): | ||
import os | ||
if os.environ.get('PATH_INFO', '').startswith('/_ah') and not os.environ.get('PATH_INFO', '').startswith('/_ah/login_required') or os.environ.get('PATH_INFO', '').startswith('/_ah/upload'): return '' | ||
if os.environ.get('HTTP_HOST'): | ||
return os.environ.get('HTTP_HOST').split(':')[0] | ||
else: | ||
return '' | ||
return '' | ||
|
||
remoteapi_CUSTOM_ENVIRONMENT_AUTHENTICATION = ( | ||
'HTTP_X_APPENGINE_INBOUND_APPID', ['techevents']) |
This file was deleted.
Oops, something went wrong.
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
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