<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -15,6 +15,7 @@ If 'web' is a JunoRequest object created from an actual request:
     web.full_location   # '/?a=4'
     web.user_agent      # ...user-agent string...
     web.raw             # A dictionary mapping header names to their values
+    web.session         # A session object, if 'use_sessions': True
     web['REQUEST_URI']  # The Request can be used like a dictionary, to
                         # retrieve values from the raw dictionary.
 
@@ -37,6 +38,17 @@ sharing a name), they values are put in a list:
     web.input('b')      # =&gt; ['1', '2'] for '?b=1&amp;b=2'
 
 
+To use sessions, be sure to install [Beaker][beaker], and set 'use_sessions'
+to True.  Sessions are used like a dictionary:
+    
+    web.session['foo'] = 'bar'
+    web.session.save()  # save() must be called
+
+You then can access 'foo' later on:
+    
+    web.session['foo']  # =&gt; 'bar'
+
+
 Response Basics
 ---------------
 
@@ -111,3 +123,4 @@ Serving static files with Juno involves 3 configuration options:
 The built in static handler will automatically determine mimetypes for
 you, and will return a 404 if the file cannot be found.
 
+[beaker]: http://wiki.pylonshq.com/display/beaker/Home</diff>
      <filename>doc/3-requests_and_responses.md</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 import sys,os,glob,re
 import markdown
-print sys
+
 dir = os.path.dirname(sys.argv[0]) or '.'
 os.chdir(dir)
 for f in glob.glob('*.md') + glob.glob('*.txt'):</diff>
      <filename>doc/build.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1f0814a3a20b03294e82d7d85574f75ab81ddb66</id>
    </parent>
  </parents>
  <author>
    <name>Brian Reily</name>
    <email>brian@brianreily.com</email>
  </author>
  <url>http://github.com/breily/juno/commit/7728147f7012def7a03aa98978bc167b8c3000a1</url>
  <id>7728147f7012def7a03aa98978bc167b8c3000a1</id>
  <committed-date>2009-03-25T16:56:37-07:00</committed-date>
  <authored-date>2009-03-25T16:56:37-07:00</authored-date>
  <message>* Add sessions to documentation (#3).</message>
  <tree>f809991e33dd2b935fd4ce6314e407266f99fc8a</tree>
  <committer>
    <name>Brian Reily</name>
    <email>brian@brianreily.com</email>
  </committer>
</commit>
