Chris's SURL Code
Status: Alpha
Brought to you by:
crosenhain
File | Date | Author | Commit |
---|---|---|---|
etc | 2010-11-01 | crosenhain | [r1] new |
inc | 2010-11-01 | crosenhain | [r1] new |
.htaccess | 2010-11-01 | crosenhain | [r1] new |
INSTALLATION | 2010-11-01 | crosenhain | [r1] new |
LICENSE | 2010-11-01 | crosenhain | [r1] new |
README | 2010-11-01 | crosenhain | [r1] new |
ajax.js | 2010-11-01 | crosenhain | [r1] new |
checkUrl.php | 2010-11-01 | crosenhain | [r1] new |
getSurl.php | 2010-11-01 | crosenhain | [r1] new |
index.php | 2010-11-01 | crosenhain | [r1] new |
listUrls.php | 2010-11-01 | crosenhain | [r1] new |
style.css | 2010-11-01 | crosenhain | [r1] new |
=========== Chris's SURL =========== Created by: Chris Rosenhain Email: chris@chris.on.net Web: http://chrissurl.sourceforge.net/ ==================================== ./.htaccess ----------------------- Uses a simple rewrite to redirect people to index.php?id= ----------------------- ./index.php ----------------------- Handles all incoming requests for SURL's, if there is no SURL defined it will present the user with the option to create a new SURL. ----------------------- ./inc/ajax.js ----------------------- Some javascript to make the frontend web interface a bit nicer ----------------------- ./inc/admin.class.php ----------------------- This class defines the admin functions for the SURL tool. Users with access to admin functions will have the ability to modify and disable SURL's in the database. Admin access is restricted for obvious reasons. SURL's shouldn't be deleted, so while this function exists it won't be used. ----------------------- ./inc/db.class.php ----------------------- Database functions to connect, query, etc. ----------------------- ./inc/surl.class.php ----------------------- General SURL functions to generate an ID, get a URL to go to, check that the URL we're given is valid etc. ----------------------- ./inc/page.class.php ----------------------- Page drawing functions -----------------------