0
I Use This!
Inactive

Commits : Listings

Analyzed about 4 hours ago. based on code collected 1 day ago.
Mar 28, 2023 — Mar 28, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
StringIO moved in Python3.0, catch ImportError and import from io module
dbr
More... almost 15 years ago
Remove stupid invisible-character causing a SyntaxError
dbr
More... almost 15 years ago
Treat function output (from print statements) as output, fallback on returned string if no output is seen
dbr
More... almost 15 years ago
Added check for no output in example.py (the URL was never checked)
dbr
More... almost 15 years ago
Inital version of a simple HTML templating tool I might integrate with pyerweb
dbr
More... almost 15 years ago
Mention google app engine, simplify inital example (remove wsgi stuff)
dbr
More... almost 15 years ago
Added README
dbr
More... about 15 years ago
Added @DELETE/@POST decorators
dbr
More... about 15 years ago
Tiny fix (typo) for Python 3.0 compatibilty in example.py
dbr
More... about 15 years ago
Improved example.py so it shows headers
dbr
More... about 15 years ago
Made example run directly (python example.py) - the correct method is using a WSGI application server, for example: `spawn example.runner`
dbr
More... about 15 years ago
Removed output_helper execution until I find a nice way to configure it
dbr
More... about 15 years ago
Removed unused arguments fro runner
dbr
More... about 15 years ago
Removed debugging print statements
dbr
More... about 15 years ago
Inital code for WSGI compatibilty
dbr
More... about 15 years ago
Change site functions from list to dict (so it can store GET/PUT/etc methods)
dbr
More... about 15 years ago
Now works in Python 2.5, 2.6 and 3.0!
dbr
More... about 15 years ago
subprocess requires input to be encode()'d - the only thing that broke after running 2to3
dbr
More... over 15 years ago
Allow multiple regexs to be supplied, for example @GET("/", "/index")
dbr
More... over 15 years ago
Typo in variable name
dbr
More... over 15 years ago
Fix calling-other-function example. Added example for having multiple regexs per-GET decoration
dbr
More... over 15 years ago
Don't need stdout as a PIPE, remove debugging print statement
dbr
More... over 15 years ago
Moved handling of InternalServerError to runner function. router should only ignore the UrlMismatch
dbr
More... over 15 years ago
The url variable was replaced with arg[0]
dbr
More... over 15 years ago
Added example of calling one page from another
dbr
More... over 15 years ago
Renamed site_functions variable to something prefixed with "pyerweb". You can now directly call @GET()'d functions (say, to return list_posts() from your index() function)
dbr
More... over 15 years ago
Typo in comment
dbr
More... over 15 years ago
Added example site
dbr
More... over 15 years ago
Split runner into the runner, and a router() function which executes the decorated functions, and raises appropriate exceptions (like page not found, internal server error). Removed the example site from the main code
dbr
More... over 15 years ago
Added ignore file for .DS_Store and .pyc files
dbr
More... over 15 years ago