general cleanup

part of the ArsDigita Community System by Philip Greenspun
This document was written on February 28, 2000. It contains miscellaneous things that we want to clean up in the ACS.

Integer primary keys everywhere

Jeff Davis claims that our magic scheme for pointing from, say, general_comments to other tables, is causing trouble with the Oracle query optimizer because it doesn't like to coerce from varchars to integers. There are only a handful of tables that use varchar keys (notably bboard) so we should just root out the evil and have done with it. If you think that you might end up breaking links from elsewhere on the Web, remember to leave behind a legacy_key column and make the scripts appropriately robust.

approved/disapproved/unexamined

The unexamined life may not be worth living but to better support workflow among a group of site admins, we need to make sure that we are using three-valued logic consistently:

Push stuff out of /admin/

We want to be able to delegate admin authority for virtually every module. So the day-to-day admin stuff should be in, for example, /neighbor/admin/ rather than /admin/neighbor/. Anyone with site-wide administration privileges ought to be able to work in /neighbor/admin/ and, if they have site-wide privs, the links anchored by user names ought to point to /admin/users/one (so that the site-wide admin can actually ban or nuke the user)

No more incremental ns_writes

Our customers are using ACS for sites with millions of hits/day. In general, we should not be doing explicit ns_writes while holding a database handle. With rare exceptions, every page should be accumulating a string of some sort, releasing the database handle, and then ns_return'ing the complete page.

In fact, what I'd like to see is the pages not calling ns_return at all. They should return a data structure (see templating-etc) containing the string that they've produced and a tag saying "I'm a complete HTML page" or "I'm a fragment of HTML that needs to be wrapped in a site-wide template" or whatever. For compatibility with old code, we can tell that a Tcl script is just calling ns_return or ns_write because it will return the empty string, 0, or 1.

LDAP compliance

Lars wrote a thing for Siemens to authenticate ACS users from an external system. This is exactly the same problem as LDAP integration. I want Lars's code packaged up and documented and stuck into ACS, ideally with the next release. It doesn't matter if it is comprehensive, just the hooks and a doc are enough to help adopters and to claim victory.

Bookmarks module should deal with HTTPS

Aure and Dave should extend bookmarks to distinguish between HTTPS and HTTP bookmarks (right now they both end up in the system without being distinguished).

File storage module shouldn't recompute sort keys after an update

Right now file storage recomputes all the sort keys after an update. This is obviously not going to scale to thousands of files very gracefully.

A modest proposal: one content table

How about one single content table? Instead of bboard, news, static_pages, etc. each storing user-uploaded content, just put everything that we might ever serve back to a user all in one big table. This will make it easier to build an Intermedia index. This will make approval, etc., potentially more consistent.

If Oracle were a true object database, we could have tables that inherited from the all_content table but supplemented it with extra columns (e.g., refers_to in the case of bboard). But Oracle isn't so we will probably have to resort to kludges like the _info helper tables that we have for user groups.

Some ideas:


philg@mit.edu