Skip to content

Commit

Permalink
Updated some comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
gcv committed Sep 22, 2010
1 parent a9e9ee7 commit d5fac3c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/appengine_magic/local_env_helpers.clj
Expand Up @@ -6,6 +6,7 @@


(defn appengine-init [#^File dir]
;; TODO: This should read appengine-web.xml and extract, e.g., the application ID.
(let [proxy-factory (ApiProxyLocalFactory.)
environment (proxy [LocalServerEnvironment] []
(getAppDir [] dir))
Expand Down
10 changes: 8 additions & 2 deletions src/appengine_magic/servlet.clj
@@ -1,5 +1,11 @@
;;; This code is adapted from Ring (http://github.com/mmcgrana/ring) to remove
;;; dependencies which use Java classes blacklisted in App Engine.
;;; This code is adapted from Ring (http://github.com/mmcgrana/ring).
;;;
;;; Required changes from Ring:
;;; 1. Remove dependencies which use Java classes blacklisted in App Engine.
;;; 2. Include raw cookie data retrieved using the servlet API. This does not
;;; preclude using Ring's cookie middleware, but is required separately:
;;; App Engine services do not always use standard-compliant cookies which
;;; the Ring middleware parses correctly.


(ns appengine-magic.servlet
Expand Down

0 comments on commit d5fac3c

Please sign in to comment.