about summary refs log tree commit diff stats
path: root/central/trunk/xmlrpc.php
Commit message (Collapse)AuthorAgeFilesLines
* Central: Changed semantics' typeKelly Rauchenberger2008-08-061-1/+1
| | | | | Previously, semantics was an array, but apparently XML-RPC only allows arrays of xmlrpcvals, so it was changed to a serialized array (string).
* Central: Fixed Request Retained errorKelly Rauchenberger2008-08-041-1/+1
| | | | | There was a small typo the method signature of requestRetained(), so whenever it was called, the verification would fail. Fixes #14.
* Central: Fixed double-sending issueKelly Rauchenberger2008-08-041-1/+1
| | | | | | | | | Previously, it was thought that the Client was spawing two identical HandleItemThreads, but the real reason was that the Central Server was sending the item twice because the subscribement was in the database twice, once because for ownership, the second for subscribement. Now the Central Server has been fixed to prevent this error when a user is subscribed to a subscription they own. Fixes #15.
* Central: Fixed deleteItem and resendItemKelly Rauchenberger2008-08-041-2/+2
|
* Central: Reverted instadisc.phpKelly Rauchenberger2008-08-041-2/+2
| | | | | | | | 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 QAKelly Rauchenberger2008-08-041-4/+4
|
* Central: Wrote installation scriptKelly Rauchenberger2008-08-041-9/+9
| | | | Closes #4
* Central: Fixed minor errorsKelly Rauchenberger2008-08-031-3/+3
|
* Central: Updated MySQL escape wrappersKelly Rauchenberger2008-08-031-13/+13
| | | | | 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 "xmlrpc" field to centralServersKelly Rauchenberger2008-08-021-6/+6
|
* Central: Added instaDisc_getConfig()Kelly Rauchenberger2008-08-021-10/+10
| | | | This functions retrives a single configuration value out of the database.
* Central: Added requestRetained()Kelly Rauchenberger2008-08-021-0/+19
| | | | For some reason, this function was not implemented earlier with the rest of the XML-RPC interface.
* Central: Added sendDatabase functionsKelly Rauchenberger2008-08-011-3/+33
| | | | | Completed the instaDisc_sendDatabase() library function and the InstaDisc.sendDatabase() XML-RPC function.
* Central: MySQL-escaped query stringsKelly Rauchenberger2008-08-011-11/+11
| | | | Wrapped strings in MySQL queries with mysql_escape_string() to prevent errors and XSS-attacks.
* Central: Added InstaDisc.addSubscription functionKelly Rauchenberger2008-08-011-1/+15
|
* Central: Added library skeletonKelly Rauchenberger2008-08-011-7/+27
| | | | | | 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.askForDatabaseKelly Rauchenberger2008-08-011-0/+2
| | | | Forgot to do this in the previous commit. This is [15] all over again.
* Central: Centrallized verification checksKelly Rauchenberger2008-08-011-125/+120
| | | | | 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 parametersKelly Rauchenberger2008-08-011-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 functionsKelly Rauchenberger2008-08-011-6/+142
| | | | The next step is to implement the instaDisc_* functions and complete the Central Server.
* Central Server: Started XML-RPC interfaceKelly Rauchenberger2008-07-291-0/+99