diff --git a/README.rst b/README.rst index 2431591..eb60e31 100644 --- a/README.rst +++ b/README.rst @@ -44,19 +44,17 @@ directory. Patch the AppEngine Code ------------------------ -Patches are found in the *gae_patches/* directory and are stored by -svn revision number. To find the revision number of the repository +This adapter has been tested against revision 77 from Google +AppEngine's svn repository. To find the revision number of the repository that you checked out, go into the root of the repository and type:: $ svn info -This adapter has been tested against revisions 46 from Google -AppEngine's svn repository. To apply the patch, do -the following from a command line:: +To apply the patch, do the following from a command line:: $ cd googleappengine-read-only $ cd python/ # need to do this if you checked out all the different AE languages - $ patch -p0 < gae_patch_r46.txt + $ patch -p0 < gae_patch.txt you should see output similar to:: diff --git a/gae_patches/gae_patch_r46.txt b/gae_patch.txt similarity index 100% rename from gae_patches/gae_patch_r46.txt rename to gae_patch.txt diff --git a/gae_patches/gae_patch_r41.txt b/gae_patches/gae_patch_r41.txt deleted file mode 100644 index 284ce11..0000000 --- a/gae_patches/gae_patch_r41.txt +++ /dev/null @@ -1,34 +0,0 @@ -Index: dev_appserver.py -=================================================================== ---- dev_appserver.py (revision 41) -+++ dev_appserver.py (working copy) -@@ -37,6 +37,7 @@ - SCRIPT_DIR = os.path.join(DIR_PATH, 'google', 'appengine', 'tools') - - EXTRA_PATHS = [ -+ "PATH/TO/MONGO-APPENGINE-CONNECTOR/DIRECTORY", - DIR_PATH, - os.path.join(DIR_PATH, 'lib', 'antlr3'), - os.path.join(DIR_PATH, 'lib', 'django'), -Index: google/appengine/tools/dev_appserver.py -=================================================================== ---- google/appengine/tools/dev_appserver.py (revision 41) -+++ google/appengine/tools/dev_appserver.py (working copy) -@@ -75,7 +75,7 @@ - from google.appengine.api import apiproxy_stub_map - from google.appengine.api import appinfo - from google.appengine.api import datastore_admin --from google.appengine.api import datastore_file_stub -+import datastore_mongo_stub - from google.appengine.api import mail_stub - from google.appengine.api import urlfetch_stub - from google.appengine.api import user_service_stub -@@ -3001,7 +3001,7 @@ - - apiproxy_stub_map.apiproxy = apiproxy_stub_map.APIProxyStubMap() - -- datastore = datastore_file_stub.DatastoreFileStub( -+ datastore = datastore_mongo_stub.DatastoreMongoStub( - app_id, datastore_path, history_path, require_indexes=require_indexes) - apiproxy_stub_map.apiproxy.RegisterStub('datastore_v3', datastore) -