Changeset 1110
- Timestamp:
- 05/22/06 12:35:05
- Files:
-
- trunk/cherrypy/tutorial/tut01_helloworld.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut02_expose_methods.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut03_get_and_post.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut04_complex_site.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut05_derived_objects.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut06_default_method.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut07_sessions.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut08_generators_and_yield.py (modified) (1 diff)
- trunk/cherrypy/tutorial/tut09_files.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/tutorial/tut01_helloworld.py
r1096 r1110 28 28 29 29 if __name__ == '__main__': 30 import os.path 30 31 # Start the CherryPy server. 31 32 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) trunk/cherrypy/tutorial/tut02_expose_methods.py
r1096 r1110 23 23 24 24 if __name__ == '__main__': 25 import os.path 25 26 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 26 27 cherrypy.server.start() trunk/cherrypy/tutorial/tut03_get_and_post.py
r1096 r1110 45 45 46 46 if __name__ == '__main__': 47 import os.path 47 48 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 48 49 cherrypy.server.start() trunk/cherrypy/tutorial/tut04_complex_site.py
r1096 r1110 87 87 88 88 if __name__ == '__main__': 89 import os.path 89 90 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 90 91 cherrypy.server.start() trunk/cherrypy/tutorial/tut05_derived_objects.py
r1096 r1110 74 74 75 75 if __name__ == '__main__': 76 import os.path 76 77 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 77 78 cherrypy.server.start() trunk/cherrypy/tutorial/tut06_default_method.py
r1096 r1110 55 55 56 56 if __name__ == '__main__': 57 import os.path 57 58 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 58 59 cherrypy.server.start() trunk/cherrypy/tutorial/tut07_sessions.py
r1096 r1110 35 35 36 36 if __name__ == '__main__': 37 import os.path 37 38 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 38 39 cherrypy.server.start() trunk/cherrypy/tutorial/tut08_generators_and_yield.py
r1096 r1110 37 37 38 38 if __name__ == '__main__': 39 import os.path 39 40 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf')) 40 41 cherrypy.server.start() trunk/cherrypy/tutorial/tut09_files.py
r1096 r1110 95 95 96 96 if __name__ == '__main__': 97 import os.path 97 98 # Start the CherryPy server. 98 99 cherrypy.config.update(os.path.join(os.path.dirname(__file__), 'tutorial.conf'))

