• last updated 4 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Added png's for sort order in list-builder

Improved list style-sheet

- Design improvements

- Fixed problems caused by untrusted_user_id as mentioned in forums thread

Added page to toggle comments on/off

Templated pages, quick-and-dirty style

Templated another error page

Committed experimental fix for untrusted_user_id problem mentioned in forums posting at http://openacs.org/forums/message-view?message_id=152083

Templated some error pages

    • -0
    • +6
    /openacs-4/packages/acs-tcl/lib/ad-return-error.adp
Use list-builder actions instead of separate links

Added 'new subsite' to nav bar

Added 'refresh login', ordering

Make context bar go from top of the site

Cleaned up navigation

Made index page more portal-like, cleaned up links

Improved design, improved css usage

Moved all actions to last column

Templated site-map page, quick-and-dirty

Additional fix for bug#1311. Drop and recreate acs_user__new function.

Drop the old acs__add_user, the signature is different.

Add new version of acs__add_user to upgrade script. Fixes bug#1311

delete--> del upgrade

del/delete typo

Moving DAV support files to a seperate package.

Changed db_exec_plsql update_category in category::edit to db_dml, fixing a bug (query was a DML statement)

upgrade problems. Placing package definitions above bodies so they compile

all TCL's clock clicks always with the -milliseconds option. The TCL manual

explicitly states that without this switch the return result is platform

dependant. The OpenACS code works at the millisecond granulartiy and silently

assumes that 1 millisecond equals 1000 clicks which is not necessarily true.

I used this shell script to automatize the replacing:

#!/bin/bash

for file in `grep -lsr "\[clock clicks\]" /web/openacs-head/packages/ `; do

echo "repairing $file"

sed "s/\[clock clicks\]/\[clock clicks -milliseconds\]/g" $file > fout

mv fout $file

done

And then grepped for

grep -r "expr.*clock clicks" /web/openacs-head/packages/

to manually remove the divisions by 1000.

upgrade problems. Adding package headers to accompany bodies and adding site_nodes package so site_node.del is defined

Added noquote. Fixes bug#1330

Added noquote. Fixed bug#1330

    • -1
    • +1
    /openacs-4/packages/survey/www/admin/one.adp
Adding typecasts to integer for proper postgresql 7.3 support. Fixes bug#1329