about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Client: Added IP Check TimerKelly Rauchenberger2008-08-055-18/+158
| | | | Now the Client contacts the Central Server at a regular basis to ensure that its IP is always correct. Closes #21.
* 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.
* Update: Added default title to Wordpress pluginKelly Rauchenberger2008-08-051-0/+5
| | | | Now the Subscription Title defaults to the blog's name.
* Client: Modified IDSubscriptionListCellRendererKelly Rauchenberger2008-08-051-1/+1
| | | | Changed it to show the category of a subscription in parentheses next to the title (for those cases where there are more than one subscriptions with the same title).
* Update: Fixed author display in Wordpress pluginKelly Rauchenberger2008-08-052-6/+5
| | | | | Also fixed a typo in the admin panel and removed the postfix from the comments' subscription's title. Fixes #20.
* Client: Added the Item Buffer backKelly Rauchenberger2008-08-056-99/+155
| | | | This was removed in [68] because it was thought to be the cause of a bug. For more info, see [68] and [76].
* Client: Fixed yet another client item bugKelly Rauchenberger2008-08-053-47/+26
| | | | This once was caused by a combination of having more than one subscription in the database and a bug in the subscription retrieval method. The bug has been fixed which allows us to add back the Item buffer (removed in [68] because it was thought to be the cause of another Client Item bug) Fixes #18.
* Update: Added comment feed to Wordpress pluginKelly Rauchenberger2008-08-051-3/+27
| | | | | Now with the addition of the comment feed, the Wordpress plugin is complete. (Well, it needs some tweaking, #17). Closes #6.
* Update: Added post action hookKelly Rauchenberger2008-08-051-1/+54
| | | | | Wordpress now sends InstaDisc items whenever a post is published. However, there seems to be yet ANOTHER strange error with the client because it is, once again, not recieving any items. Refs #6.
* Update: Imported XML-RPC librariesKelly Rauchenberger2008-08-0510-0/+6239
| | | | | Also added subscription.php to source control, which should have been done in the previous commit. Yet another [15]. Refs #6 and #17.
* Update: Created Subscription FilesKelly Rauchenberger2008-08-051-0/+14
| | | | | | | Currently, a seperate php file generates the subscription files. This is a bad scheme as it requires the subscription URL (as in, the URL you use to subscribe, the URL to the Subscription File) is long and winds down the Wordpress plugin directory. Hopefully, an alternate to this method will be found. Refs #6.
* Update: Started pluginKelly Rauchenberger2008-08-051-0/+91
| | | | | Plugin now contains header info (for display at plugin table) and an admin panel. Refs #6.
* Update: Added plugin subdirectoryKelly Rauchenberger2008-08-050-0/+0
| | | | | For some reason, this wasn't included in the previous commit ([69]). This is yet another [15]. Refs #6.
* Update: Created directory for Wordpress pluginKelly Rauchenberger2008-08-050-0/+0
| | | | Refs #6.
* Client: Tweaked the client to work (better)Kelly Rauchenberger2008-08-047-197/+115
|
* 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.
* Client: Fixed up startup request retainedKelly Rauchenberger2008-08-042-5/+8
| | | | Previously, the XML-RPC request for the retained items would take place before the InstaDiscThread started, thus causing an error when the remote server attempted sending an item. Now it is run after the InstaDiscThread starts.
* Client: Modified -r flagKelly Rauchenberger2008-08-041-4/+4
| | | | Now, the client always checks for retained items on startup. The -r flag is now used instead to say that you don't want to open the client, just check for retained items.
* 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.
* Update: Fixed extra + concatenationKelly Rauchenberger2008-08-041-1/+1
| | | | This really should have happened in [59]. It's [37] all over again.
* Update: Fixed up a few errors in QAKelly Rauchenberger2008-08-041-1/+2
|
* 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
|
* Client: Added WellFormedItem backKelly Rauchenberger2008-08-021-0/+139
| | | | | | In revision 9, it was discovered that WellFormedItem.java contained my password, so it was obliberated from VCS and it needs to be added back in.
* 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.
* Update: Renamed library functionKelly Rauchenberger2008-08-021-1/+1
| | | | Renamed function sendItem() to use the general prefix (instaDisc_) to prevent include file confusion.
* 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.
* Client: Replaced "unsafe" functionKelly Rauchenberger2008-08-011-2/+3
| | | | Fixes #2
* This is an empty revision for padding.Kelly Rauchenberger2008-08-010-0/+0
|
* 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
|
* Client: Fixed subcribing codeKelly Rauchenberger2008-08-011-0/+4
| | | | Previously, after subscribing to a subscription, the client would do nothing to notify the Central Server of this change. Now, an XML-RPC function is sent to it.
* 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.