about summary refs log tree commit diff stats
path: root/central/trunk/xmlrpc.php
Commit message (Collapse)AuthorAgeFilesLines
* Central: Completed step 3Kelly Rauchenberger2008-09-281-1/+15
| | | | Refs #69
* Central: Removed Series-related codeKelly Rauchenberger2008-09-181-16/+8
| | | | Refs #57
* Central: Reverted Update<->Series integrationKelly Rauchenberger2008-09-141-2/+2
| | | | Refs #55
* Central: Fixed sendFromSeries() definitionKelly Rauchenberger2008-09-131-1/+1
| | | | | | [15] Refs #55
* Central: Renamed sendFromUpdate()Kelly Rauchenberger2008-09-131-2/+2
| | | | Refs #55
* Central: Fixed a few errorsKelly Rauchenberger2008-09-071-6/+8
| | | | | | [15] Refs #28
* Central: Removed UN and PW valuesKelly Rauchenberger2008-09-061-1/+1
| | | | Refs #52
* Central: Removed idea of multiple central serversKelly Rauchenberger2008-09-061-192/+10
| | | | Refs #52
* Central: Moved to SeriesKelly Rauchenberger2008-09-061-27/+30
| | | | Refs #28
* Central: Started moving to SeriesKelly Rauchenberger2008-09-061-42/+41
| | | | Refs #28
* Central: Patched security holeKelly Rauchenberger2008-08-311-1/+4
| | | | Fixes #48
* Central: Switched order of sendDatabaseKelly Rauchenberger2008-08-311-29/+32
| | | | Refs #47
* Central: Fixes #47Kelly Rauchenberger2008-08-281-3/+25
| | | | I am soooooo lazy.
* Central: Fixed typo in addSubscriptionKelly Rauchenberger2008-08-221-1/+1
| | | | | When the check for subscribing to a subscription twice was added, the wrong comparison operator was used (==), instead of (!=) which wasn't allowing any new subscriptions to be added. Fixes #45
* Central: Started Update VerID bounceKelly Rauchenberger2008-08-211-0/+2
| | | | | With the addition of a new return value in sendFromUpdate(), the Update Server should know when Verification fails and thus to resend the request. Refs #44
* General: Upgraded Verification ID generationKelly Rauchenberger2008-08-161-3/+3
| | | | Verification IDs in Central and Update can now be between 0 and 2147483647. Closes #37
* Central: Organized filesKelly Rauchenberger2008-08-151-4/+3
| | | | Refs #25
* Central: Added encryption key supportKelly Rauchenberger2008-08-131-3/+4
| | | | See [127]. Refs #10
* Central: Imposed "instadisc" category contractKelly Rauchenberger2008-08-081-4/+4
| | | | | | Now Central Servers will refuse to receive items with the category of "instadisc". However, the Client has to be modifed to send this data to the Central Server. Also added the Central Server Update Notice subscription to the database and provided a subscription file. Refs #26
* Central: Fixed a few errorsKelly Rauchenberger2008-08-071-4/+14
|
* Central: Tweaked deserializationKelly Rauchenberger2008-08-061-1/+4
|
* 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