• last updated 2 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
Removed leftover count_query argument from template::paginator::create

- applied patches for template::list from head to oacs-5-9

  1. … 2 more files in changeset.
Removed leftover argument found after testing with users

Bugfix for regression: reimplemented new feature for template::list that allows to get full record count so it

doesn't change any public API. This was causing regression into code that calls template::paginator directly.

  1. … 3 more files in changeset.
- add editor hints to keep spaces/tabs in the furture more consistent

  1. … 754 more files in changeset.
- ensure proper encoding of hrefs

  1. … 13 more files in changeset.
Merging back to HEAD all changes that happened in branch oacs-5-8 between tags: vg-merge-oacs-5-8-from-20141027 and vg-merge-oacs-5-8-from-20150427

  1. … 520 more files in changeset.
Added template::list::get_rowcount which will get the total number of records contained into template::list.

Before this information was not accessible, because existing count procs would stop at number_of_pages * rows_per_page.

For reference, see proc documentation.

  1. … 2 more files in changeset.
Merging back to HEAD branch oacs-5-8 (using tag vg-merge-oacs-5-8-from-20141027).

  1. … 2547 more files in changeset.
- use charset utf-8 instead of iso-8859-1 in pagiantor-procs

- get rid of "template::util::is_nil" by initializing variable

- normalize string expressions

  1. … 12 more files in changeset.
- replace "eval" by expand operator

  1. … 11 more files in changeset.
- use tcl 8.5 lindex features

  1. … 4 more files in changeset.
- remove deprecated calls

  1. … 2 more files in changeset.
- modernize tcl

  1. … 3 more files in changeset.
The original code had at least two OpenACS caused memory leaks: it led

to an unbounded growth for __template_cache_value and did not unset

the nsv variables __template_*_timeout. This bug led openacs.org to a

broken state (forums posting lead to the message "Not enough memory to

allocate the list internal rep"). The new code makes use of the per

entry expire feature of ns_cache and emulates the behavior otherwise.

  1. … 1 more file in changeset.
HTML 4.01 Strict cleanup

  1. … 27 more files in changeset.
Normalizing string comparison operations into tcl 8.4 operations, enabling byte-code compilation for expressions and many conditionals

  1. … 367 more files in changeset.
removed the remaining procs which were -deprecated -warn in 5.0 and fixed most occurances of those procs in the code

  1. … 43 more files in changeset.
commit to HEAD of merge of changes on oacs-5-1 branch between tags jcd-merge-5-1-20050111 and jcd-merge-5-1-20050224

  1. … 321 more files in changeset.
Cleaned up display a bit ... if you say "groupsize is 10" you now see

a groupsize of 10 displayed not 11. If groupsize is 1 you only get next/prev

page nav widgets rather than both page and group nav widgets.

  1. … 1 more file in changeset.
commit to HEAD of merge of changes on oacs-5-1 branch between tags jcd-merge-5-1-20040724 and jcd-merge-5-1-20050111

  1. … 2275 more files in changeset.
Greatly sped up pagination in the list builder.

1. The list builder builds a separate (optionally cached) paginator for each

page group, rather than each list. No more filling of the Tcl cache with (say) 5500

forum entries when we know that users rarely march through the entire list of forums.

2. Since the list builder builds an "in (list of ids)" query clause to select

just those rows needed for this display page, there's no reason to sort the list

of ids so I'm building the list within the list builder rather than using

the more generalized paginator code. Minor speedup ...

This could probably be sped up more by simply caching the list of keys within

the list builder and replicating some other paginator functionality in lightweight

form specific to the list builder, but this will do for now. And maybe forever.

  1. … 2 more files in changeset.
Started I18N work (Together with Lars)

Added namespace eval $namespace calls to each file in the tcl dir.

Rooted out some hardcoded text, replaced it with respective calls to

the i18n text catalog text function.

Shuffled around proc creation and calling, so that everything works properly.

  1. … 25 more files in changeset.
Merged 4.6.4d1 (unreleased) to HEAD. This marks the end of the life of the oacs-4-6 branch.

  1. … 816 more files in changeset.
Removed TODO that's done

Merged over the get_errors proc from HEAD

  1. … 1 more file in changeset.
merge of 4.6.3b1 to HEAD

  1. … 107 more files in changeset.
fix paginator::get_pages not showing last page bug 451/patch 157 Timo Hentschel