about summary refs log tree commit diff stats
path: root/client/trunk/src
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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.
* Client: Replaced "unsafe" functionKelly Rauchenberger2008-08-011-2/+3
| | | | Fixes #2
* 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.
* Client: Removed deprecated function from Step2.javaKelly Rauchenberger2008-08-012-11/+18
|
* Client: Finished the "Request Retained Items" menu itemKelly Rauchenberger2008-07-312-0/+13
|
* Client: Added filtersKelly Rauchenberger2008-07-3127-130/+1237
|
* Client: Fixed up form label fieldsKelly Rauchenberger2008-07-3115-128/+91
| | | | Previously, forms used <BR> tags to break labels into lines, but it was discovered that a better effect could be generated by keeping the <HTML> tag at the beginning, removing all of the <BR>s, and resizing the JLabel.
* Client: Added Advanced Settings formKelly Rauchenberger2008-07-3111-44/+411
|
* Client: Created Manage Subscriptions formKelly Rauchenberger2008-07-3111-7/+405
|
* Client: Added blog-comment and forum-post category iconsKelly Rauchenberger2008-07-313-0/+18
|
* Client: Fixed up First Run formKelly Rauchenberger2008-07-3112-304/+172
| | | | Changed the password field (which was a JTextField) in Step 2 to a JPasswordField which has getText() deprecated in favor of getPassword(), which returns the password in a char[]. Since I currently cannot be bothered parsing a char[], I've left it using the deprectated getText(). This must be fixed at some point.
* Client: Fixed up iconsKelly Rauchenberger2008-07-302-1/+4
|
* Client: Completed "Add Subscription" formKelly Rauchenberger2008-07-308-130/+280
| | | | Fixed the Add Subscription form so that it downloads, parses and adds a Subscription if you give it the correct URL. Also synchronized all of the Database-accessing methods in Database.Wrapper because before the database was deadlocking all of the time.
* Client: Added System Tray IconKelly Rauchenberger2008-07-306-1/+37
| | | | Added an icon to the System Tray that shows a message whenever a new Item is recieved.
* Client: Automated BDB Environment placingKelly Rauchenberger2008-07-304-29/+15
| | | | Instead of requiring a script (or human intervention) to place BDB's Environment, it is instead initalized to a folder in the current user's home directory called ".instadisc". This way, not only can each user on a computer can use InstaDisc seperatly, this rids the need to provide command-line arguments to InstaDisc (with the exception of -r, for external invoking of retained requesting).
* Client: Created Add Subscription form shellKelly Rauchenberger2008-07-306-1/+377
| | | | Added the frontend for the Add Subscription form, as well as some menus for InstaDiscView. However, the Add Subscription form doesn't do anything yet, and the menus don't open anything yet.
* Client: Fixed some small errorsKelly Rauchenberger2008-07-292-4/+2
| | | | These errors would have been prevented if SOMEONE had looked over the modified source BEFORE committing. This is a message to all future VCS users.
* Client: Completed pathKelly Rauchenberger2008-07-2915-25/+419
| | | | Finally, the Item has the ability to be displayed on the Form. However, the Client now also requires to keep a list of the active Subscriptions and verify each incoming Item against it, which means that a method of subscribing to subscriptions must be implemented before further testing.
* Client: Encapsulated classpath JARsKelly Rauchenberger2008-07-292-3/+6
| | | | Moved required classpath JARs into a SVN controlled folder so that they are available to anyone who wishes to help develop InstaDisc. Note that the Appframework and Spring-worker JARs were not encapsulated. If you wish to help develop InstaDisc, you'd best be off using NetBeans.
* Added databaseKelly Rauchenberger2008-07-2923-10/+1475
| | | | Because of the lack of SQLite Java wrappers, InstaDisc instead uses a BDB database.
* Added well-formed checksKelly Rauchenberger2008-07-284-1/+96
| | | | After recieving an Item, InstaDisc Client now checks the item for a status of being Well-Formed, as in, it has all of the required headers, the category exists, the category's required semantics are present and the verification is valid.
* Added listening serverKelly Rauchenberger2008-07-284-6/+184
| | | | The Client now listens for connections on port 4444, allowing multiple connections at once. Once a connection iis found, the Cliet waits until the connecton is broken, then downloads the sent dat, parses it into headers and passes it to the Item class.
* Created NetBeans projectKelly Rauchenberger2008-07-2727-0/+817