Table of Contents - shmolyneaux/SquareJam GitHub Wiki
This is a very incomplete table of contents. Go to Pages to get the full list.
1. Introduction
2. Tutorials
- Getting Form Data
- Exploring the Database
- Creating New Users
- Giving Permissions
3. Tools
4. Beginner Topics
- Dicts/Lists/Objects Basics
- Users
- Permissions
- Files
- Database Management
- Forms
- Unusable Simple Python Data Types
- Getting User Information
5. Intermediate Topics
- Dicts
- Lists
- Objects
- Starting storserv and SnakeCharmer at boot
- Storserv
- Pstorage
- Changing Web Address
- Classes in storserv
- List of permissions
- Pstorage Username
- Favicon
def test(self, req):
for key in req.form.keys():
print("Key: " + key + "\nValue: " + req.form[key]);