• last updated 17 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Got rid of Tcl code in ADP files.

    • -1
    • +1
    /openacs-4/packages/faq/www/admin/one-faq.adp
    • -0
    • +2
    /openacs-4/packages/faq/www/admin/one-faq.tcl
p tag arround error message

local version of index.adp + installed.tcl to redirect since we layer etp on top of doc dir

    • -0
    • +2
    /openacs.org-dev/packages/acs-core-docs/www/installed.tcl
improving the message catalog QA script so that it now checks all packages per default

    • -31
    • +75
    /openacs-4/packages/acs-lang/bin/check-catalog.sh
moving the old language test messages (unclear if we'll use them) into the new xml-based message catalog format

use context list rather than context bar

fixing adp message tag regexp, it wouldn't accept tags in messages

save session prefered locale to db when a user registers

adding support for dealing with adp variables embedded in I18N messages in adp pages, extracting adp variable regexp patterns into procs so they could be reused in the acs-lang package

adding translator mode with translation links, adding support for interpolated variables in adp files, bugfixes, removing site-wide locale from the change locale page

Use a real redirect instead of an internal one. Otherwise the 'search again' form didn't work.

new files

    • binary
    /openacs.org-dev/www/templates/images/nav_next_group.jpg
    • binary
    /openacs.org-dev/www/templates/images/nav_previous_group.jpg
remove "untested" comment

clean up templates, improve context bar handling. still more to do.

*** empty log message ***

- removed obsolete upgrade directory

fixes rdf:Seq since the rdf parser complains about unqualified resource tags

change colors for openacs.org

fix essay answers

fix responses-export for postgresql and remove unused subselect for oracle.

    • -5
    • +5
    /openacs-4/packages/survey/survey.info
clean up del/remove functions

add a no-responses page for CSV export

file no-responses.adp was initially added on branch oacs-4-6.

    • -0
    • +0
    /openacs-4/packages/survey/www/admin/no-responses.adp
fix survey-copy query

remove unused xql file

error v_section_row used rather than v_question_row bug 1790/patch 495

removing old files

moving from dotlrn.openforce.net:/dotlrn-cvsroot/new-portal to

opeancs.org:/cvsroot/openacs-4/packages/portal

  1. … 130 more files in changeset.
Initial revision

    • -0
    • +154
    /openacs-4/contrib/packages/portal/portal.info
  1. … 130 more files in changeset.
I removed the composite index that checks for uniqueness of the community_type

and supertype pair. This index broke installation if the Oracle blocksize is

less than 8KB (which is true by default on at least some platforms).

The unique constraint was unnecessary since community_type was already declared as the

table's primary key. Because of this, only one row with a given community_type name

is possible, which means the composite key (community_type, supertype) is guaranteed

to be unique.

Removing the index will also speed community creation slightly, save a bit of

disk space, etc etc.

Note that the composite index was useless for lookups on the supertype alone

anyway (since community_type was the leftmost member of the composite key), and that

any queries on the type hierarchy ought to use the denormalized table defined

by acs-objects-metadata.sql anyway.

So the index seems entirely useless to me.