about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Central: Imposed "instadisc" category contractKelly Rauchenberger2008-08-085-6/+17
| | | | | | 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: Started default frontendKelly Rauchenberger2008-08-083-0/+284
| | | | | The default frontend is based on Four Island's. Perhaps at some point a templating system may be introduced to make frontending a little easier. Refs #25
* Central: Added the required include()Kelly Rauchenberger2008-08-081-1/+3
| | | | | include('class.phpmailer.php'); had been neglected and thus the installation failed.
* Central: Added Email check to installationKelly Rauchenberger2008-08-072-69/+98
| | | | | Now, the installation script checks the SMTP details entered to ensure that they are valid so as to avoid errors like #23. Also modified return for instaDisc_activateAccount(). Refs #23
* Central: Tweaked the mailing systemKelly Rauchenberger2008-08-072-2/+28
|
* Central: Fixed a few errorsKelly Rauchenberger2008-08-072-5/+16
|
* Update: Added multiple subscription supportKelly Rauchenberger2008-08-072-17/+33
| | | | Closes #22
* Client: Added "vcs-rev" categoryKelly Rauchenberger2008-08-073-11/+16
| | | | Thanks to Trac (http://trac.edgewall.org) for the icon! Refs #12
* Update: Completed SVN pluginKelly Rauchenberger2008-08-075-1/+219
| | | | Closes #12
* Update: Created NetBeans project (for SVN Plugin)Kelly Rauchenberger2008-08-076-0/+779
|
* Update: Created NetBeans project (for SVN Plugin)Kelly Rauchenberger2008-08-070-0/+0
|
* Update: Undid the password-protection supportKelly Rauchenberger2008-08-072-31/+1
| | | | | From now on, password-protection is Milestone 1.1. When that time comes, you can look back on [105] and [106] for password-protection. Refs #10
* Update: Added automatic Subscription FileKelly Rauchenberger2008-08-072-0/+26
| | | | | | Users of the Update Server Library will no longer have to write their own Subscription File because now the Library comes with an automatically generated one with password-protection support. Just ensure that if you move subscription.php away from instadisc.php that you update the include() in subscription.php! Refs #10
* Update: Added password-protection support to the libraryKelly Rauchenberger2008-08-071-0/+23
| | | | | | Using the new instaDisc_sendEncrypted() function and the $idusEncryptionPassword variable, you can now feed password-protected subscriptions. However, a Subscription File will have to be automatically generated to support the password-protection. Refs #10
* Client: Added an icon for the "email" categoryKelly Rauchenberger2008-08-062-0/+9
| | | | Thanks to the N. Design Studio (http://ndesignstudio.com) for the icon. Closes #9
* Client: Transactionalized the databaseKelly Rauchenberger2008-08-062-32/+111
| | | | Now, the database is ACID-compliant. Also fixed the error that occurs when you get sent an item you don't have a subscription for, and it tries to delete the subscription's entry off of the Central Server and fails. The error was because the Client was attempting to look up the Subscription's URL in the database after it already had the URL and ensured that the Subscription wasn't there.
* Client: Tweaked the way filter invalidation worksKelly Rauchenberger2008-08-063-16/+46
| | | | Previously, an item has to match all filters, which would mean that having equals and inequals in the same subscription would mess things up. Now, to pass filter invalidation, an item has to match at least one equal (if there are any equals) and all inequals (if there are any inequals).
* Update: Created MODX installation instructions for phpBB3Kelly Rauchenberger2008-08-063-0/+2425
| | | | The phpBB3 plugin is now completed! Closes #7
* Update: Fixed HTML entities in phpBB3Kelly Rauchenberger2008-08-061-1/+1
| | | | Also, 100th COMMIT! YAY! PARTY TIME EVERYONE! YAY!
* Client: Unescaped "__INSTADISC__"Kelly Rauchenberger2008-08-061-1/+1
| | | | See [98]
* 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
|
* Client: Caught FileNotFoundException in SubscriptionFileKelly Rauchenberger2008-08-061-12/+11
| | | | Previously, if the subscription file specified in SubscriptionFile.java didn't exist, it throw an incorrectly caught FileNotFoundException that would simple log the error and not change the Status label from "Checking...."
* Update: Completed phpBB3's sending libraryKelly Rauchenberger2008-08-061-2/+8
| | | | Now, to finish the phpBB3 plugin, the MODX file has to be written. Refs #7
* Update: Worked on phpBB3 pluginKelly Rauchenberger2008-08-064-6/+19
| | | | | | | | The Subscription File didn't contain the activation key, so that was fixed, and also it turned out that everywhere was using the wrong method of getting the board's URL, so that was changed too. Then then sending library was worked upon. The only fault I currently see is that the Author field doesn't seem to be being sent for some reason. Refs #7
* Update: Fixed semantics in Wordpress pluginKelly Rauchenberger2008-08-061-2/+2
| | | | See [90]
* Update: Fixed semantics in LibraryKelly Rauchenberger2008-08-061-1/+1
| | | | See [90]
* 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).
* Update: Created phpBB3 plugin Subscription FileKelly Rauchenberger2008-08-0614-1/+6277
| | | | | Also started on the plugin's update library, currently uses a function identical to the library's. May want to change it so that it does more post-object work than the foreign function has to. Refs #7
* Update: Modified Wordpress plugin ACPKelly Rauchenberger2008-08-061-2/+2
| | | | | | Now the Subscription File URL uses the "static text" style started in [87] instead of the "input box" style. Refs #6
* Update: Completed phpBB3 plugin's ACPKelly Rauchenberger2008-08-063-1/+43
| | | | | | Also used a new method of providing the subscription file's URL as static text instead inside a text box. Refs #7
* Update: Continued to work on ACP for phpBB3 pluginKelly Rauchenberger2008-08-063-11/+26
| | | | | | | The module now has two working form elements, Subscription Title and Central Server (URL). They both read and write to the database. Refs #7
* Client: Fixed IP Check TimerKelly Rauchenberger2008-08-061-4/+6
| | | | The Client was throwing an uncaught NullPointerException at startup because the program was attempting to check if the Timer was running or not before it was initilized. This has been fixed. Refs #21
* Update: Started InstaDisc ACP for phpBB3 pluginKelly Rauchenberger2008-08-064-0/+151
| | | | Refs #7
* Update: Created phpBB3 plugin directory structureKelly Rauchenberger2008-08-060-0/+0
| | | | Refs #7
* 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.