66 Commits

Author SHA1 Message Date
Eric J. Bowersox
a404987a42 implement move message between topics in a conference 2002-02-02 07:16:28 +00:00
Eric J. Bowersox
25c5817a67 implemented the initial XML-RPC APIs in Venice - for creating and destroying
"sessions," logging in, posting messages to topics, attaching files to
messages, and a couple of minor things that aren't as important right now
2002-02-01 22:40:55 +00:00
Eric J. Bowersox
5bf40a92a1 fixed an obscure bug in Find Posts that caused the Next/Previous buttons to not show up when searching for posts globally or in communities 2002-01-16 22:12:39 +00:00
Eric J. Bowersox
e7b3801a72 fixed bug with hotlist move 2002-01-16 21:36:23 +00:00
Eric J. Bowersox
f24456e0a2 with one switch, a system administrator can now disable the category support
(no searching for categories, no getting communities by category,
no category display on community profile, no changing a community's category)
2002-01-16 21:17:05 +00:00
Eric J. Bowersox
b86ef1c3b0 added topic links at the bottom of "published" posts, fixed the log in or
create problem when going through PostShortcut
2001-12-14 23:50:29 +00:00
Eric J. Bowersox
0bbd01e385 added emergency fix to display a "login or create" dialog for all AccessErrors
thrown by the engine when trying to view a conference/topic/post and the user
is not logged in
2001-12-14 17:14:10 +00:00
Eric J. Bowersox
ae129e5410 implemented UI for find posts, debugged and tweaked the engine implementation 2001-12-08 05:02:00 +00:00
Eric J. Bowersox
4b1acef325 implemented the post search facility at the engine level 2001-12-07 23:11:15 +00:00
Eric J. Bowersox
9d34cc35f0 added customizable "HTML Escapes" for the top and bottom of the topic list
and post list pages; configurable through the host tools
2001-12-05 00:03:39 +00:00
Eric J. Bowersox
9cc34facf6 added some safeguards for the mail to community members/conference
participants: to wit, any user can opt-out from ALL those mailings with one
setting; each message now carries a standard disKlaimer indicating how the
user can opt-out (and it's REAL opt-out, not this fakey stuff the spammers do)
2001-12-04 20:50:04 +00:00
Eric J. Bowersox
e35045acf4 added community admin "Send E-Mail To All Members" menu option 2001-12-04 19:17:00 +00:00
Eric J. Bowersox
d89c2bfdcb implemented Conference E-Mail - automagically send E-mail to all readers
or posters in a conference or topic
2001-12-04 05:11:45 +00:00
Eric J. Bowersox
89eb0b23d2 added controls for Invite from the conference and topic levels 2001-12-03 22:21:02 +00:00
Eric J. Bowersox
004dcaf7ec added administrative control of user photos - ability to replace or clear
a user's photo, keep the user from uploading a new one
2001-11-29 07:46:57 +00:00
Eric J. Bowersox
239321bb61 implemented "Subscribe To Topic" 2001-11-29 04:55:48 +00:00
Eric J. Bowersox
a7b07292dd moved IDUtils to the utils package and out of the core package - this pretty
well finishes the cleanup of the core package, getting all the cruft out
2001-11-24 06:44:58 +00:00
Eric J. Bowersox
4e251e72e1 implemented the system administrator function "Import User Accounts," allowing
a sysadmin to create mass quantities of user accounts automatically by
uploading an XML file
2001-11-24 05:04:10 +00:00
Eric J. Bowersox
f5a5009932 completed the transition away from features and toward "services" - the old
database-based configuration has been replaced with the new XML-based one.
This paves the way for further modularization of the code.
2001-11-22 04:53:17 +00:00
Eric J. Bowersox
85518ca0d5 Move to a slightly better implementation... 2001-11-21 20:22:47 +00:00
Eric J. Bowersox
f8f83de56b attempting to fix a problem with the known_monitors map (by removing it) 2001-11-21 19:57:29 +00:00
Eric J. Bowersox
3752e73c2d the first real phase of service integration - mostly it's the configuration
file, the bare beginnings of the Service Control Manager on the server side,
and the new "community left menu" on the client side (still controlled by the
existing feature mechanism, for now).  The engine still needs to incorporate
the SCM in place of the old feature definitions.  Also added some utility
classes (StockMessage, XMLLoader) to aid with loading XML data from the
config files (big help in the RenderConfig constructor and
VeniceEngineImpl.initialize!)
2001-11-21 09:47:27 +00:00
Eric J. Bowersox
41299f6d85 the permissions system was screwing up somehow for static permissions -
EnvUser, EnvCommunity, and EnvConference each need to keep a reference to their
own SecurityMonitor, we can't rely on getStaticMonitor() (but we still need it,
to make the other "wrapper" functions work)
2001-11-19 18:17:40 +00:00
Eric J. Bowersox
de971c9c7b continued the separation by shifting all the exceptions into their own package
(preparatory to establishing some sort of service-based architecture)
2001-11-19 02:20:22 +00:00
Eric J. Bowersox
9854ba1f76 completed the transition to the new security architecture - the old stuff
has now been removed completely; the VeniceEngine is managing the conference
level SecurityMonitor for now
2001-11-18 22:14:12 +00:00
Eric J. Bowersox
5f966a6450 first stage of transitioning to the new SecurityMonitor-based security
architecture--it's implemented at the global level and for communities,
conferences still use the old hard-coded implementation.  The new
StaticSecurityMonitor is configured via XML data, which will be important
when we implement the new Community Services architecture
2001-11-18 09:32:21 +00:00
Eric J. Bowersox
47b88efd75 MAJOR restructuring of the engine code to get the execution environment info
separated from the internal objects (as well as separating the internal
interfaces), some prep work for modularizing the SIG-to-service interface so
it'll be easier to add chat and stuff.  Also fixed up a display issue with
1-character CDTextFormFields.
2001-11-17 06:37:30 +00:00
Eric J. Bowersox
313a46818f moved the language and country lists OUT of the database and into properties
files as they are likely to change VERY infrequently; this simplifies a lot
of bits of code that would otherwise have to call through VeniceEngine, etc.
Also folded the LocaleFactory class method into the new International object
used for managing the lists.
2001-11-16 22:12:14 +00:00
Eric J. Bowersox
53098902f1 improved some of the log messages 2001-11-15 05:22:28 +00:00
Eric J. Bowersox
0750e3f2cd there was a problem with security on conf.getHideList()/conf.setHideList() -
added conf.canSetHideList() and some extra code to EditConferenceDialog to
help get around this.
2001-11-15 05:13:57 +00:00
Eric J. Bowersox
0437cc7b92 second round of cache cleanups - got rid of that bogus pile of monkey spew
that was ReferenceCache, replaced it with the much cleaner ObjectCache (it
uses SoftReferences so that the "sweep" operation is pretty much automatic)
2001-11-15 00:30:24 +00:00
Eric J. Bowersox
7e0f7b441f first cleanup of cache code - implemented a new CacheMap which uses
SoftReferences
2001-11-14 06:00:35 +00:00
Eric J. Bowersox
070fd2c9e2 implemented the "pics in posts" flag globally...it marks the first appearance
of "properties" storage and editing for conferences, communities, users, and
the global system.  In addition, the "global properties" editing screen got
implemented, because it wasn't there yet.
2001-11-11 01:22:07 +00:00
Eric J. Bowersox
0bb2e795a4 implementation of the "bozo filter" on a topic level, including a topic-level
"Manage" screen (to hang "Rename Topic" from later, too).
2001-11-09 00:10:36 +00:00
Eric J. Bowersox
bc859178f2 implemented the ability to upload community logos, similar to how we did user
photos
2001-11-07 22:32:12 +00:00
Eric J. Bowersox
dde12bdf2e THE GREAT RENAMING! All that was "SIG" should now be "community," except for
the database and the URLs (for backward compatibility).  Do a full rebuild
after browsing this one!
2001-11-07 08:43:09 +00:00
Eric J. Bowersox
e201ecb34b added automated password recovery to the password reminder messages 2001-11-05 00:40:07 +00:00
Eric J. Bowersox
1c69955046 Reworked the sidebox implementation to depend less on the database and more
on XML config files...the implementation should now be much more customizable
and less klunky.  Added a provision for implementing "generic" (JSP-driven)
sideboxes.  Implemented the sidebox configure button on the front page
(finally!).  Implemented a random password generator class which will be used
in a future implementation of reminder-driven automatic forgotten-password
changing.  Fixed some minor funnies in SIG menu generation.
2001-11-04 05:57:58 +00:00
Eric J. Bowersox
597ebadf35 cleaned up some code - replaced a bunch of copy loops with calls to the new
IOUtil class methods, added some javadocs to IOUtil, StringUtil, and
AnyCharMatcher
2001-10-31 19:38:40 +00:00
Eric J. Bowersox
6397f4212c implemented user photos! (imagestore table, ImageRetrieve servlet, a lot of
the underlying support) - incidentally, this is a lot of support for the SIG
logo as well, just need some front end work for that in the future

(of course, we now require JAI 1.1.1)
2001-10-26 03:12:04 +00:00
Eric J. Bowersox
69e62acbb9 fixed a bug with the topic visit order and another one with the anyUnread
function (it needs to ignore archived topics)
2001-05-06 22:45:02 +00:00
Eric J. Bowersox
e25ce3e63e implemented very simple ad rotation support, good enough for our rotating
quote banners - also included quote banners (20 from Webb, 4 new)
2001-04-19 07:24:25 +00:00
Eric J. Bowersox
17d9a58867 added "blacklist" of attachment MIME types that won't be compressed; a couple
of other minor tweaks
2001-04-18 06:01:45 +00:00
Eric J. Bowersox
d63681a0ad added Admin Modify User functionality 2001-04-16 05:23:39 +00:00
Eric J. Bowersox
acc7f06e66 fixed topic name in posts so that it came out right; fixed SIG welcome
page so that it generates correct URL; repaired a security hole (well, not
really, but a PERCEIVED security hole) regarding accounts that have been
created but not yet confirmed
2001-04-15 04:23:48 +00:00
Eric J. Bowersox
89429a4b40 fixed several bugs related to SIG creation/deletion and a nasty brown paper
bag bug in Nuke Post!
2001-04-12 05:53:26 +00:00
Eric J. Bowersox
7e226040d4 fixed bugs in post nuke, base.jsp display (simplified it), and global
audit record display
2001-04-11 05:42:12 +00:00
Eric J. Bowersox
63fedc9db6 some serious new feature implementation:
- cookie-based persistent logins
- expanded activity reporting
- "top" and "fixed" left menus are now dynamically generated from XML config,
  not hard coded
- error reporting enhanced and protection increased
- "About Venice" page first draft
- new means of "framing" static content within the Venice "frame"
- base page now includes the "footer" itself, "content" pages don't anymore
- general cleanup of some heavyweight old containers, replaced with faster
  Collections framework containers
- probably more, there's a LOT of stuff in here
2001-04-09 03:20:58 +00:00
Eric J. Bowersox
3d32fe95c5 second round of public beta bugfixes:
- fixed a bug in navigation between conferences via post links
- fixed the "your post is 'new'" bug (this was actually another bug, in
  postNewMessage())
- some other stuff
2001-04-07 05:30:33 +00:00
Eric J. Bowersox
257537e869 added default JSP file and statistics measurement for attachment downloads 2001-04-03 05:22:18 +00:00