about summary refs log tree commit diff stats
path: root/central/trunk
Commit message (Collapse)AuthorAgeFilesLines
* Central: Tweaked the mailing systemKelly Rauchenberger2008-08-072-2/+28
|
* Central: Fixed a few errorsKelly Rauchenberger2008-08-072-5/+16
|
* Central: Escape ": "sKelly Rauchenberger2008-08-061-1/+4
| | | | | | | If a colon is before a space in any value sent from the Central Server to the Client, it will be interpreted as a NAME-VALUE divider and mess up the Item. So, any wild colon-spaces have been escaped as "__INSTADISC__". Next step is to unescape them when they reach the Client.
* Central: Fixed deserializationKelly Rauchenberger2008-08-061-1/+1
| | | | | For some reason, my reference book lists the deserialization function as deserialize(), but the online docs say unserialize()
* Central: Tweaked deserializationKelly Rauchenberger2008-08-062-3/+11
|
* Central: Changed semantics' typeKelly Rauchenberger2008-08-062-2/+8
| | | | | Previously, semantics was an array, but apparently XML-RPC only allows arrays of xmlrpcvals, so it was changed to a serialized array (string).
* Central: Added automatic IP address updateKelly Rauchenberger2008-08-051-0/+6
| | | | | Now, every time the Client contacts the Central Server, the Central Server checks to see if its IP address has changed, and if it has, the Central Server updates it in its records. Refs #21.
* 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: Fixed bug in Verification systemKelly Rauchenberger2008-08-041-1/+1
|
* Central: Reverted instadisc.phpKelly Rauchenberger2008-08-042-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 QAKelly Rauchenberger2008-08-042-285/+197
|
* Central: Fixed string concatenationKelly Rauchenberger2008-08-041-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_activateAccountKelly Rauchenberger2008-08-041-1/+1
|
* Central: Fixed minor errors in install.phpKelly Rauchenberger2008-08-041-2/+2
|
* Central: Removed unneeded .htaccess fileKelly Rauchenberger2008-08-041-4/+0
|
* Central: Wrote installation scriptKelly Rauchenberger2008-08-045-24/+751
| | | | Closes #4
* Central: Fixed minor errorsKelly Rauchenberger2008-08-032-5/+5
|
* Central: Added checks to Subscription ownership functionsKelly Rauchenberger2008-08-031-10/+34
| | | | Closes #5
* Central: Updated MySQL escape wrappersKelly Rauchenberger2008-08-032-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 functionsKelly Rauchenberger2008-08-031-0/+106
|
* Central: Added "xmlrpc" field to centralServersKelly Rauchenberger2008-08-022-8/+9
|
* Central: Added instaDisc_getConfig()Kelly Rauchenberger2008-08-022-18/+27
| | | | 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: Started library frontend functionsKelly Rauchenberger2008-08-021-0/+102
| | | | Documentation for currently available functions is located at CentralServerFrontendFunctions. Refs #5.
* Central: Fixed [wiki:Verification] systemKelly Rauchenberger2008-08-024-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() functionKelly Rauchenberger2008-08-011-0/+27
| | | | Closes #3
* Central: Added sendDatabase functionsKelly Rauchenberger2008-08-012-3/+55
| | | | | Completed the instaDisc_sendDatabase() library function and the InstaDisc.sendDatabase() XML-RPC function.
* Central: MySQL-escaped query stringsKelly Rauchenberger2008-08-012-15/+15
| | | | 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-012-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.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-012-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 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-2910-0/+6293
|
* Continued working on install.phpKelly Rauchenberger2008-07-263-20/+4
|
* Redid InstaDisc, new technique in storeKelly Rauchenberger2008-07-055-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 Rauchenberger2008-06-235-9/+174
|
* Moved code needed by most pages into a single file.Kelly Rauchenberger2008-06-233-1/+25
|
* Added database supportKelly Rauchenberger2008-06-232-0/+23