Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Central: Fixed deleteItem and resendItem | Kelly Rauchenberger | 2008-08-04 | 1 | -2/+2 | |
| | ||||||
* | Central: Fixed bug in Verification system | Kelly Rauchenberger | 2008-08-04 | 1 | -1/+1 | |
| | ||||||
* | Central: Reverted instadisc.php | Kelly Rauchenberger | 2008-08-04 | 2 | -195/+283 | |
| | | | | | | | | For some reason, instadisc.php was accidentally replaced with xmlrpc.php and commited. It has been reverted now. Also, xmlrpc.php has been using $_SERVER['HTTP_HOST'], but that variable returns the server's address PLUS the port number. $_SERVER['SERVER_NAME'] is much more appropriate for this instance. | |||||
* | Central: Fixed up a few errors in QA | Kelly Rauchenberger | 2008-08-04 | 2 | -285/+197 | |
| | ||||||
* | Central: Fixed string concatenation | Kelly Rauchenberger | 2008-08-04 | 1 | -1/+1 | |
| | | | | | | For some reason, some of the string concatenation was being done by + operators instead of . operators (probably after using Java too much), so they were replaced. | |||||
* | Central: Fixed instaDisc_activateAccount | Kelly Rauchenberger | 2008-08-04 | 1 | -1/+1 | |
| | ||||||
* | Central: Fixed minor errors in install.php | Kelly Rauchenberger | 2008-08-04 | 1 | -2/+2 | |
| | ||||||
* | Central: Removed unneeded .htaccess file | Kelly Rauchenberger | 2008-08-04 | 1 | -4/+0 | |
| | ||||||
* | Central: Wrote installation script | Kelly Rauchenberger | 2008-08-04 | 5 | -24/+751 | |
| | | | | Closes #4 | |||||
* | Central: Fixed minor errors | Kelly Rauchenberger | 2008-08-03 | 2 | -5/+5 | |
| | ||||||
* | Central: Added checks to Subscription ownership functions | Kelly Rauchenberger | 2008-08-03 | 1 | -10/+34 | |
| | | | | Closes #5 | |||||
* | Central: Updated MySQL escape wrappers | Kelly Rauchenberger | 2008-08-03 | 2 | -43/+43 | |
| | | | | | Previously ([37]), MySQL query strings were updated to use the MySQL escape function mysql_escape_string(). Now, to add even more protection, the function mysql_real_escape_string() is used instead. | |||||
* | Central: Added Subscription ownership functions | Kelly Rauchenberger | 2008-08-03 | 1 | -0/+106 | |
| | ||||||
* | Central: Added "xmlrpc" field to centralServers | Kelly Rauchenberger | 2008-08-02 | 2 | -8/+9 | |
| | ||||||
* | Central: Added instaDisc_getConfig() | Kelly Rauchenberger | 2008-08-02 | 2 | -18/+27 | |
| | | | | This functions retrives a single configuration value out of the database. | |||||
* | Central: Added requestRetained() | Kelly Rauchenberger | 2008-08-02 | 1 | -0/+19 | |
| | | | | For some reason, this function was not implemented earlier with the rest of the XML-RPC interface. | |||||
* | Central: Started library frontend functions | Kelly Rauchenberger | 2008-08-02 | 1 | -0/+102 | |
| | | | | Documentation for currently available functions is located at CentralServerFrontendFunctions. Refs #5. | |||||
* | Central: Fixed [wiki:Verification] system | Kelly Rauchenberger | 2008-08-02 | 4 | -7/+3043 | |
| | | | | | | Also added the phpMailer class from Codeworxtech, its SMTP module and a snippet in db.php which kills execution of the Central Server if the PHP "curl" extension is not installed and loaded. | |||||
* | Central: Completed instaDisc_sendItem() function | Kelly Rauchenberger | 2008-08-01 | 1 | -0/+27 | |
| | | | | Closes #3 | |||||
* | Central: Added sendDatabase functions | Kelly Rauchenberger | 2008-08-01 | 2 | -3/+55 | |
| | | | | | Completed the instaDisc_sendDatabase() library function and the InstaDisc.sendDatabase() XML-RPC function. | |||||
* | Central: MySQL-escaped query strings | Kelly Rauchenberger | 2008-08-01 | 2 | -15/+15 | |
| | | | | Wrapped strings in MySQL queries with mysql_escape_string() to prevent errors and XSS-attacks. | |||||
* | Central: Added InstaDisc.addSubscription function | Kelly Rauchenberger | 2008-08-01 | 1 | -1/+15 | |
| | ||||||
* | Central: Added library skeleton | Kelly Rauchenberger | 2008-08-01 | 2 | -7/+65 | |
| | | | | | | Added the library method signatures for XML-RPC used functions to the library, and also implemented a instaDisc_sendUpdateNotice() and instaDisc_addItem(). Refs #3. | |||||
* | Central: Added positive return to InstaDisc.askForDatabase | Kelly Rauchenberger | 2008-08-01 | 1 | -0/+2 | |
| | | | | Forgot to do this in the previous commit. This is [15] all over again. | |||||
* | Central: Centrallized verification checks | Kelly Rauchenberger | 2008-08-01 | 2 | -125/+142 | |
| | | | | | Molded the verification checking into one library functions so the each and every XML-RPC function wouldn't have to implement. Also added the InstaDisc.sendUpdateNotice and InstaDisc.askForDatabase functions. | |||||
* | Central: Simplified function parameters | Kelly Rauchenberger | 2008-08-01 | 1 | -41/+10 | |
| | | | | With the new usage of 'functions_parameters_type = "phpvals"', all parameters are stored as PHP values, and thus arrays are usable. | |||||
* | Central: Added recieving functions | Kelly Rauchenberger | 2008-08-01 | 1 | -6/+142 | |
| | | | | The next step is to implement the instaDisc_* functions and complete the Central Server. | |||||
* | Central Server: Started XML-RPC interface | Kelly Rauchenberger | 2008-07-29 | 10 | -0/+6293 | |
| | ||||||
* | Continued working on install.php | Kelly Rauchenberger | 2008-07-26 | 3 | -20/+4 | |
| | ||||||
* | Redid InstaDisc, new technique in store | Kelly Rauchenberger | 2008-07-05 | 5 | -176/+26 | |
| | | | | | | New technique is to use XML-RPC hooks instead of a pre-built HTML interface so people who host Central Servers will not have to use the default interface, instead allowing them to create their own. | |||||
* | Moved over to the Four Island Templating System. | Kelly Rauchenberger | 2008-06-23 | 5 | -9/+174 | |
| | ||||||
* | Moved code needed by most pages into a single file. | Kelly Rauchenberger | 2008-06-23 | 3 | -1/+25 | |
| | ||||||
* | Added database support | Kelly Rauchenberger | 2008-06-23 | 2 | -0/+23 | |