• last updated 1 hour ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
cache system locales in a per-thread cache

Revert massive replacement of empty list creation sentences. The use of '[list]' instead of '{}' adds semantics that could be used for performance improvements in the future, such as using a different internal representation. There is already work in this direction, avoiding the generation of the string representation during comparison of empty strings (huge thanks to Stefan Sobernig for the pointer: https://core.tcl.tk/tcl/info/44527c632ed609c2).

  1. … 472 more files in changeset.
Rework variable assigning loops (set -> lassign) + Whitespace changes

  1. … 13 more files in changeset.
Prefer '{}' to '[list]' when creating empty lists

  1. … 68 more files in changeset.
Rework variable assignment (set -> lassign)

  1. … 12 more files in changeset.
Fix typos

  1. … 31 more files in changeset.
Prefer lappend over concat for appending lists (lappend modifies the variable 'in place')

  1. … 5 more files in changeset.
remove conditions, which are always true

remove parens

  1. … 4 more files in changeset.
modernize code

simplify code and make it more consistent

  1. … 5 more files in changeset.
fix more typos

  1. … 5 more files in changeset.
make sure to log errors in the error.log

scalability improvement: keep result of lc_time_fmt_compile in (lock-free) per-thread cache rather than in the util_memoize cache

Reduce stress on util_memoize_cache by removing the - by far - most often reused

item in the cache (apm_package_installed_p_not_cached ref-timezones). Instead,

we fall back to the (per-thread) caching of apm_package_id_from_key.

Fix extra parenthesys

whitespace cleanup

  1. … 7 more files in changeset.
Use "ad_try" instead of "with_catch"

  1. … 2 more files in changeset.
Reduce divergence between postgres and oracle codebase

    • -12
    • +1
    ./lang-catalog-procs-postgresql.xql
Reduce divergence between oracle and postgres codebase

    • -29
    • +0
    ./lang-message-procs-postgresql.xql
Reduce divergency between oracle and postgres codebase

merged changes from the oacs-5-9 branch and resolved conflicts

    • -0
    • +6
    ./test/acs-lang-localization-procs.tcl
  1. … 7820 more files in changeset.
make sure, the message key in the comment is shown correctly in API browser

- fixing regexp for message key in group::new

- Introducing lang::util::message_key_regexp to avoid similar confusions in the future

- bump verison number of acs-lang to 5.9.1b4

- bump version number of acs-subsite to 5.9.1b5

  1. … 3 more files in changeset.
Fix spelling errors

  1. … 6 more files in changeset.
Fix spelling errors

  1. … 46 more files in changeset.
Improve robustness of "file delete" operations

  1. … 18 more files in changeset.
Get rid of strange construct: [lindex [array get $array $name] 1]

  1. … 2 more files in changeset.
- use util::trim_leading_zeros instead of private function

  1. … 1 more file in changeset.
add function "lc_trim_leading_zeros" to acs-lang localization procs, since date-time procs are not acs-core, such that the function defined there cannot be used in the core

Fix date computation: year of date 07072017 was treated as an octal number. (Example [lc_time_fmt 0708-08-17 %Q])