• last updated 11 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
improve comments

  1. … 1 more file in changeset.
fix bug: never update references in the search renderer

before, it was possible that the search renderer added some

unsresolved references, although these were already fixed.

This was caused by the asynchrnous search queue, which

might have inserted such values.

The interface of Page.render was extended to be able to

specify, that the references should be always updated in the DB,

or just when unresolved references are encountered, or

never.

  1. … 3 more files in changeset.
  1. … 4 more files in changeset.
improve input validaton on query variables

  1. … 7 more files in changeset.
whitespace changes

  1. … 3 more files in changeset.
fixes for links to folders of different package instances:

- when resolve_local is used, fetch the correct index page, when target folder has an index page defined

- when resolve_local is used, avoid potential resolving loop

various code improvements:

- improve comments

- use better variable names

- remove dead code

- Package.lookup: make it am ad_instproc and make clear, it returns an integer

  1. … 2 more files in changeset.
Bring back old default behavior of using Gravatar as a fallback, but allow to disable it, reuse existing Gravatar code

  1. … 1 more file in changeset.
Rely on portrait-bits, that already provides a default image in case (many thanks to Monika Andergassen)

remove commented-out code

improve spelling

  1. … 6 more files in changeset.
prefer "nsf::is object" over ":isobject" or "info commands", since it is faster, more generic and can be used in all contexts

  1. … 3 more files in changeset.
prefer "nsf::is object" over ":isobject" or "info commands", since it is faster, more generic and can be used in all contexts

  1. … 15 more files in changeset.
fix typo

modernize code: use resolver variables rather than method calls

  1. … 14 more files in changeset.
fix typo

replace anonymous array by Tcl dicts

reduce XOTcl 1.* idioms

  1. … 1 more file in changeset.
reduce old-style "my" references

  1. … 4 more files in changeset.
improve robustness in view-mode

web-callable method list: add optional parameter "children" to allow listing of arbitrary children of an item

  1. … 1 more file in changeset.
make object adressing more consistent

fix typo

make selection_area CSP compliant

  1. … 1 more file in changeset.
replaced YUI dnd by HTML5 dnd and therefor removed need of YUI in candidate_box_select.

candidate_box_select uses now clear distinction between internal representations and labels (as in options).

form-field of "form_page" uses now item-refs as internal representation since this relatively friendly to

clipboard movements and supports elements from different folders (which was previously broken).

  1. … 4 more files in changeset.
prefer absolut object references over ids

  1. … 15 more files in changeset.
- modernize code (remove "my")

- prefer fully qualified commands based on IDs

  1. … 33 more files in changeset.
- Update jquery to 3.4.0

- provide URNs for jquery-ui

- bump fallback-version of bootstrap to 3.4.1 (used, when the bootstrap3 theme is not installed)

  1. … 6 more files in changeset.
checkbox settings: refactor approach once more to aovid potential interactions with calls of "get_compound_value" from other call-sites

  1. … 1 more file in changeset.
whitespace changes

Fix behavior, in case a default value was provided for a checkbox part of a compound field.

When the user resets this default (i.e. clears the checkmark) no data is

transmitted from the browser, but the client side has to handle this. Such cases were

so far only handled so far outside of compound fields.

Example as give my Michael Aram (many thanks!):

# Class create mycompound -superclass CompoundField

#

# mycompound instproc initialize {} {

# if {${:__state} ne "after_specs"} return

# :create_components [subst {

# {start_on_publish {checkbox,default=t,options={YES t}}}

# {whatever {text}}

# }]

# set :__initialized 1

# }