This file contains hidden or 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
| def deletedbandmemcache(): | |
| """Delete all entities in namespace.""" | |
| from google.appengine.api import namespace_manager | |
| ###################################### | |
| """ ####### IMPORTANT ########## """ | |
| TESTSPACE = 'test' | |
| namespace_manager.set_namespace(TESTSPACE) | |
| """ ##### DO NOT DELETE ######## """ | |
| ###################################### |
This file contains hidden or 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
| var devsite = devsite || {}; | |
| devsite.devsite = devsite.devsite || {}; | |
| $(document).ready(function() { | |
| $("a.sign-in-link").bind("mousedown click", devsite.devsite.login); | |
| $("a.sign-out-link").bind("mousedown click", devsite.devsite.logout); | |
| devsite.devsite.loggedIn(function(d, b) { | |
| b ? devsite.devsite.showError("Error while signing in: " + b) : $("#sign-in-io").hasClass("trig") && devsite.reloadWindow() | |
| }) | |
| }); | |
| window.IO_2012 = function() { |
NewerOlder