Under the application settings page in the Administration console, it is possible to specify a name for the application, AFAIK this is used in the login page when using the users API to login.
I would like to be able to use this information within an application, currently, the title is also specified in a separate configuration file, but configuration repetition is something I would like to avoid if at all possible.
Is there some way for a GAE application to determine the “Application Title”?
Oh, also, I am using python.
There’s actually a way to do it, but it might be a little too much on the hacky side.. you can get the title (ab)using the users API like this:
I tried it on the App Engine Console linked by jbochi (great link btw, thanks!). Not to sure weather I’d put such code into production, though. Further diving into google.appengine.api.user_service might turn up a saner way.