• last updated 7 hours ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
- use confirm handler instead of "onclick=..." in all packages in oacs-5-9

  1. … 15 more files in changeset.
- replace javascript: urls by event listeners

- fix orderby field name in form-usages (many thanks to thomas renner)

- make protocol-agnostic links for gravatar

- use ns_md5 when available

- add CSP directive

- turn onclick handler into event listener and a body script (for strict CSPs)

- prevent jumping in event listeners

- added sample template oacs-view3-bootstrap3.adp as used on openacs.org

- updated sample templates

  1. … 10 more files in changeset.
- use addEventListener instead of onclick markup for wiki-search,

edit-tags and popular-tags

- fix popular tags link

- regenerated template files

- added scp directives for yui

- bump version number to 5.9.1d12

  1. … 12 more files in changeset.
- quote variable contents in ad_return_complaint messages

  1. … 2 more files in changeset.
- don't overquote general comments

- initialize navigation array

- don't force http for requests to yui.yahooapis.com

- support ad_complain in xowiki for invalid values

- bump version number to 5.9.1d2

  1. … 3 more files in changeset.
- remove unused minified .sj files

- add non-minified files instead were needed

  1. … 17 more files in changeset.
- use explicit "create" statements

  1. … 2 more files in changeset.
- remove overquoting

- fix html quoting

- fix (over)quoting issues

  1. … 2 more files in changeset.
- improve quoting

- prefer lowercase HTML tags over uppercase

- improve quoting of tags widget

Using previously computed parent_id value.

- use export_vars for url-generation

- fix quoting in weblog

- fix entries per page on weblog-portlet (was including all entries

instead of page-size entries)

- define "get_nls_language_from_lang" on xowiki::Package to fix

default language issue for imported prototype pages (when default

lang is not "en")

  1. … 5 more files in changeset.
- remove obsolete code

- improve safety of generated HTML

  1. … 5 more files in changeset.
- improve validity and security of generated HTML

  1. … 12 more files in changeset.
- fix quoting of href

- start autogenerated ids with characters

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.
- 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;

  1. … 5 more files in changeset.
Fixing wrong package key for message key.