about summary refs log tree commit diff stats
path: root/central
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Central: Undid Come AgainKelly Rauchenberger2008-08-171-19/+1
| | | | I don't currently like the look of Come Again, perhaps it could be implemented at a later release. Refs #43
* Central: Started on Come AgainKelly Rauchenberger2008-08-171-3/+21
| | | | Refs #43
* Central: Modified Verification ID deletionKelly Rauchenberger2008-08-171-1/+1
| | | | Refs #42
* Central: Created Add Subscription pageKelly Rauchenberger2008-08-173-0/+161
| | | | Refs #25
* General: Upped default verIDBufferSizeKelly Rauchenberger2008-08-161-1/+1
| | | | | | Because of the increase in possible Verification ID values, it will be even less likely to have a repeat, so the number that are buffered is being increased. A test was run to find repeats if 10000 numbers were generated between 1 and 2147483647 and a repeat was found only once at the 8500th number, the rest of the tests (20 others) passed successfully. Refs #37
* General: Upgraded Verification ID generationKelly Rauchenberger2008-08-162-7/+7
| | | | Verification IDs in Central and Update can now be between 0 and 2147483647. Closes #37
* Central: Fixed a typo in changepassword.phpKelly Rauchenberger2008-08-161-1/+1
| | | | Yet ANOTHER ANNOYING [15]. The number of these [15]s is saying something about my coding techniques. Refs #25
* Central: Added logout pageKelly Rauchenberger2008-08-162-34/+46
| | | | Also modified Change Password to lock out non logged-in users and to use the instaDisc_verifyUser() functions instead of inlining it. Refs #25
* Central: Fixed a few minor errorsKelly Rauchenberger2008-08-162-3/+4
| | | | Ok, this is sort of part [15], part strange unnoticed error(s). Refs #25
* Central: Fixed instaDisc_verifyUser()Kelly Rauchenberger2008-08-162-23/+13
| | | | | | | Previously, instaDisc_verifyUser() was lazy and checked a user's existance by routing the input through instaDisc_checkVerification() with the static Verification ID of 0, but it was forgotten that a static Verification ID would work once and be rejected after that. Refs #25
* Central: Replaced adds with adds_blockKelly Rauchenberger2008-08-164-12/+12
| | | | | For some reason, the adds() function was being used to add block data instead of the correct function, adds_block(). Refs #25
* Central: Add change passwordKelly Rauchenberger2008-08-154-0/+211
| | | | Refs #25 and closes #35
* Central: Fixed uniform includeKelly Rauchenberger2008-08-153-3/+3
| | | | Refs #25
* Central: Fixed another include pathKelly Rauchenberger2008-08-151-1/+1
| | | | Yet ANOTHER [15]. Refs #25
* Central: Fixed include pathesKelly Rauchenberger2008-08-152-4/+4
| | | | Refs #25
* Central: Organized filesKelly Rauchenberger2008-08-1523-18/+18
| | | | Refs #25
* Central: Created user panel indexKelly Rauchenberger2008-08-153-16/+61
| | | | Refs #25 and #35
* Central: Added a login pageKelly Rauchenberger2008-08-156-0/+181
| | | | Refs #25
* Central: Converted register.phpKelly Rauchenberger2008-08-154-66/+127
| | | | Refs #25
* Central: Moved over to Four Island Templating systemKelly Rauchenberger2008-08-156-72/+288
| | | | | | | | | | Borrowed the Four Island templating system code so as to ease the creation of frontends. index.php and activate.php have already been converted, and install.php will not be converted (because it would be too difficult, and who would want to skin it anyway?) NOTICE: The Four Island Templating system source code is copyrighted by Starla Insigna (c) 2008. All rights reserved. Use of this code in part or in whole apart from the InstaDisc Central Server is a direct violation of copyright law. You have been warned. Refs #25
* Central: Fixed typosKelly Rauchenberger2008-08-131-1/+1
| | | | Refs #10
* Central: Added encryption key supportKelly Rauchenberger2008-08-133-5/+12
| | | | See [127]. Refs #10
* Central: Changed interaction portKelly Rauchenberger2008-08-081-1/+1
| | | | Fixes #27
* Central: Fixed subscription URLKelly Rauchenberger2008-08-081-5/+1
| | | | Accidentally provided the Subscription URI instead of the Subscription File's URL in the last commit.
* Central: Added subscription notice to installationKelly Rauchenberger2008-08-081-1/+5
|
* 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
|
* 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
|