* summary.c: summary screen is now updated using ajax instead of refreshing
[citadel.git] / webcit / ChangeLog
index 27588f24ff78bb81251f9e205a869cc01ddd642e..6d9cee370c9cff6172e7cd635c040f175ff64e9d 100644 (file)
@@ -1,4 +1,119 @@
 $Log$
+Revision 625.13  2005/09/18 15:02:29  ajc
+* summary.c: summary screen is now updated using ajax instead of refreshing
+  the whole page.  Not only does this look cleaner, but it also has the
+  happy side effect of not reloading all of the images.
+* webcit.c: new API calls begin_ajax_response() and end_ajax_response() for
+  wrapping inner div's
+* webcit.c: removed the "refresh30" parameter from output_headers() and
+  from all code that calls it.  We don't need it anymore; refreshing the
+  entire page is, like, sooooo 2004.  :)
+
+Revision 625.12  2005/09/18 14:30:05  ajc
+* Added a "random number" parameter to the wholist ajax refresh request,
+  because b0rken MSIE still insists on fetching from its cache even though
+  it's been explicitly told not to.
+
+Revision 625.11  2005/09/18 04:04:32  ajc
+* Switched the wholist updater to Prototype's AJAX updater, instead of
+  using Rico's wrapper around it.  It's actually simpler and doesn't seem
+  to require strict XML, which are both wins.
+* Removed Rico from the build.
+
+Revision 625.10  2005/09/18 03:15:15  ajc
+* Remove spurious "No new messages" message when viewing an
+  empty address book.
+
+Revision 625.9  2005/09/18 00:53:15  ajc
+* "Reply All" button
+
+Revision 625.8  2005/09/17 16:44:30  ajc
+* The JavaScript code to activate the ajax-powered recipient autocompleters
+  has been moved to a function in wclib.js (it's still activated from an
+  inline script in messages.c)
+
+Revision 625.7  2005/09/17 13:18:05  ajc
+* fmt_date.c: changes to "brief" mode.  It now displays time-only if the
+  date is today, month/day/time if the date is within the last six months,
+  and date-only for anything older.
+
+Revision 625.6  2005/09/17 03:00:06  ajc
+* Fixed the autocompletion for CC: and BCC:
+* Moved the autocompletion styles into the stylesheet where they belong
+
+Revision 625.5  2005/09/16 04:34:46  ajc
+* Initial hack of Cc: and Bcc: support
+
+Revision 625.4  2005/09/16 02:36:01  ajc
+* The 'To:' box accepts more characters now
+* Removed the border from the new 'XML' button
+
+Revision 625.3  2005/09/16 01:20:00  error
+Add Reply and Email links; and an RSS link in the header
+
+Revision 625.2  2005/09/15 21:29:42  ajc
+* Made the message list div slightly larger, the preview pane equally
+  smaller, and stuck a separator bar in between them that will someday
+  be draggable.
+
+Revision 625.1  2005/09/14 03:53:43  ajc
+* Autocompletion now fetches candidate addresses using the AUTO server
+  command being built for Citadel 6.56
+
+Revision 625.0  2005/09/13 14:02:32  ajc
+* THIS IS 6.25
+
+Revision 621.41  2005/09/12 20:57:58  ajc
+* Save/Cancel buttons are now at the top *and* bottom of the message
+  entry screen.  Evidently some users seem to want this.
+
+Revision 621.40  2005/09/12 19:03:44  ajc
+* When forwarding a message, properly escape the quoted headers (especially
+  the subject) for insertion into the editor.
+
+Revision 621.39  2005/09/12 18:20:21  ajc
+* The "forward" button is now working, and it forwards the attachments.
+
+Revision 621.38  2005/09/12 04:08:05  ajc
+* Built an initial version of the "forward message" function.  It works
+  perfectly on the message text now, but we cannot consider it finished
+  until it also forwards attachments.
+
+Revision 621.37  2005/09/10 03:23:05  ajc
+* Determined where to insert a "Forward" button and the functionality it
+  implements.  In order to complete this function we will need a
+  form-sanitized output mode for read_message().
+
+Revision 621.36  2005/09/09 19:47:29  ajc
+* Removed some dead code
+
+Revision 621.34  2005/09/09 04:43:22  ajc
+* Checked in a copy of the "script.aculo.us" library by Thomas Fuchs.
+  NOTE: I had to search-and-replace "Effect" to "ScriptaculousEffect" in
+  all of their files, to avoid a conflict with the name "Effect" in Rico.
+* Implemented recipient autocompletion when composing mail, using the
+  script.aculo.us drop-down box and an ajax fetch.  Cool!!
+
+Revision 621.33  2005/09/06 14:44:28  ajc
+* Altered the logic which determines whether to display a "Post message"
+  or "Send message" button on the message entry screen.
+
+Revision 621.32  2005/09/01 03:54:32  ajc
+* The "prompt for recipient" screen is now gone.  When the user is posting
+  from a room requiring a recipient, a "To:" line now appears above the
+  "Subject:" line.  Entering an invalid recipient causes the message entry
+  screen to loop back to itself, with the form contents still intact, and
+  the ImportantMessage box set to the error message.
+
+Revision 621.31  2005/08/30 04:30:53  ajc
+* messages.c: teh b0rken Intarweb Exploder was printing the screen rather
+  than the hidden iframe when user selects "Print" message.  Applied a
+  workaround.
+
+Revision 621.30  2005/08/23 02:57:04  ajc
+* Added some files to the po/ directory, but I really don't know what I'm
+  doing here...
+
 Revision 621.29  2005/08/22 21:22:00  ajc
 * vcard_edit.c webcit.c webserver.c who.c : i18n
 * This should complete the internationalization of the entire WebCit