• last updated 21 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
- add more geo-ip services

on xowiki_form_instance_item_view data field became text so no need for the alias.

    • -2
    • +2
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- strip traling whitespace

    • -127
    • +127
    /openacs-4/packages/xowiki/tcl/form-field-procs.tcl
- don't load ckeditor for repeated fields repeatedly, since this can bloat the browser (many thanks to Markus Moser for the patch)

- remove acs-object's "tree_sortkey" and "max_child_sortkey" since these are nowhere used

    • -3
    • +5
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- disambiguate package_id

    • -1
    • +1
    /openacs-4/packages/xowiki/tcl/folder-procs.tcl
- fix comment

- fix inconsistent way to refer to ImageMagick binary (parameter

ImageMagickPath vs. image::identify_binary)

- fix incorrect way to refer to results of ImageMagick (foreach was

dangerous and incorrect)

- fix incorrect parameter to ImageMagick (-size geometry)

- fix broken switch statement

- fix typo in name (image::imagmagick_identify should be imagemagick_identify)

- fix incorrect comments

- provide default to optional argument of filename_mime_type

- try to use built-in support and fall back to external programs

(image magick). Built-in support is several hundred times faster.

- use NaviServer's extened functionality

- fix visibility for repeated control "add another"

- update jquery to version 1.11.2

- reduce verbosity

    • -2
    • +0
    /openacs-4/packages/xowiki/tcl/repeat-procs.tcl
- add message keys for repeat lables (add, delete)

    • -2
    • +2
    /openacs-4/packages/xowiki/xowiki.info
    • -2
    • +4
    /openacs-4/packages/xowiki/tcl/repeat-procs.tcl
- fix bareword syntax error

- improve robustness of download-archive

- fix redirection in native mode:

A redirect from http might point to https, which in turn

might not be configured. So we have to go through

util::http::request again.

- initial check-in of package contributed by Benjamin Brink: http://openacs.org/xowf/package-submissions/PackageSubmit19

- upgrade to version 0.040 by Benjamin Brink

    • -2
    • +2
    /openacs-4/packages/q-forms/q-forms.info
    • -304
    • +195
    /openacs-4/packages/q-forms/tcl/form-procs.tcl
- fix view to return text content in column "text"

    • -2
    • +2
    /openacs-4/packages/xowiki/xowiki.info
    • -3
    • +3
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
    • -122
    • +169
    /openacs-4/packages/xowiki/tcl/upgrade/upgrade.tcl
- don't show "add another" when maximum of repeatable entries is reached

- make labels for adding and removing items configurable

    • -2
    • +16
    /openacs-4/packages/xowiki/tcl/repeat-procs.tcl
a specialized version of CrClass.fetch_object for FormPage based

on xowiki_form_instance_item_view for reduced planning and execution

time in PostgreSQL.

    • -1
    • +41
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- move caching of the package class after potential reclassing

- improve performance of method get_package_class_from_package_key

This procs were meant to be defined at the top level namespace.

Adding missing where clause for parent_id.

    • -2
    • +7
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- fix bad interaction between html5 "required" and richtext editors (ckeditor4)

- ease updating of hstore in xowiki_form_instance_item_index for many instances (i just did the update for 35.000 instances on one machine).

- improve robustness of index generation

- fix bug with missing variable in instvars

    • -3
    • +3
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
name variable needs to be instantiated as well.

    • -2
    • +2
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- Moved core.js inclusion to bottom of the page to comply with web best practices

- Placed warnings for other non trivial cases of big js inclusion in the head

See http://www.openacs.org/forums/message-view?message_id=4266252

- add package_parameter use_hstore to xowiki

- updat descriptiong for use_hstore in xowf

- update xowiki_form_instance_item_index when renaming items

- new function xowiki::update_item_index to manually update certain

fields in the xowiki_form_instance_item_index

- remove obsolste function in xowf

    • -23
    • +9
    /openacs-4/packages/xowf/tcl/xowf-procs.tcl
    • -4
    • +5
    /openacs-4/packages/xowiki/xowiki.info
    • -2
    • +41
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl
- bumped version to 0.161

- substantially improved scalability when acessing xowiki form pages

based on attributes specified in revision tables.

- much faster version of folders.folder_query (mostly relevant, when having

hundreds/thousands of folders) and FormPage.get_form_entries

- transferred hstore support from xowf to xowiki (e.g. utilities in

::xowiki::hstore::*)

- FormPage.hstore_attributes: added configurable support for

specifying, what attributes of instance-attributes should

be used in hstore.

- change virus scanning from "clamscan" to "clamdscan"

(use daemon-based version for improved performance

when uploading files)

# - xowiki_form_instance_item_index:

#

# A materialized table of xowiki formpage instances, containing

# just the item information, but combined with other attributes

# frequently used for indexing (like page_id, paren_id, ... hkey).

#

# Rationale: The quality of indices on cr_revisions tend to

# decrease when there are many revisions stored in the database,

# since the number of duplicates increases due to non-live

# revisions. This table can be used for indexing just the live

# revision on the item level.

#

# select count(*) from xowiki_form_instance_item_index

# where package_id = 18255683

# and page_template = 20260757

# and publish_status='ready';

#

#

# Define helper views in connection with the form_instance_item_index:

#

# - xowiki_form_instance_item_view:

#

# A view similar to xowiki_form_pagei, but containing already

# often extra-joined attributes like parent_id, object_type,

# publish_status, etc.. This view returns

# only the values of the live revisions, and uses

# "form_instance_item_index" for quick lookup.

#

# select * from xowiki_form_instance_item_view

# where package_id = 18255683

# and page_template = 20260757

# and publish_status='ready';

#

#

# - xowiki_form_instance_children:

#

# Return the root_item_id and all attributes of the

# form_instance_item_index of all child items under the tree based

# on parent_ids. Use a query like the following to count the

# children of an item having a certain page_template (e.g.

# find all the folders/links/... having the the specified item as

# parent).

#

# select count(*) from xowiki_form_instance_children

# where root_item_id = 18255779

# and page_template = 20260757

# and publish_status='ready';

#

# - xowiki_form_instance_attributes

#

# Return for a given item_id the full set of attributes like the

# one returned from xowiki_form_instance_item_view. The idea is to

# make it convenient to obtain from a query all attributes

# necessary for creating instances. The same view can be used to

# complete either values from the xowiki_form_instance_item_index

#

# select * from xowiki_form_instance_item_index xi

# left join xowiki_form_instance_attributes xa on xi.item_id = xa.item_id;

#

# or from xowiki_form_instance_children

#

# select * from xowiki_form_instance_children ch

# left join xowiki_form_instance_attributes xa on ch.item_id = xa.item_id;

    • -3
    • +3
    /openacs-4/packages/xowiki/xowiki.info
    • -30
    • +42
    /openacs-4/packages/xowiki/tcl/folder-procs.tcl
    • -13
    • +23
    /openacs-4/packages/xowiki/tcl/weblog-procs.tcl
    • -46
    • +287
    /openacs-4/packages/xowiki/tcl/xowiki-procs.tcl