Mercurial > dive4elements > river
annotate artifacts/contrib/README @ 6087:47775e3a8cf6
Datacage: Introduced <dc:virtual-column name="colname" type="type" expr="XPath">
dc:virtual-column can be used to virtual add or replace a column named 'colname' to
the current result set. The value is determined by evaluating "XPath", the type is
determined by "type" (possible values: number, bool, node, nodeset, string. defaults to string).
Usage:
<dc:virtual-column name="c" type="number" expr="$a+$b">
<dc:for-each>
<dc:message>{$a} + {$b} = {$c}</dc:message>
</dc:for-each>
</dc:virtual-column>
table
a | b
--+--
1 | 2
3 | 4
will result in:
1 + 2 = 3
3 + 4 = 7
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Fri, 24 May 2013 12:19:25 +0200 |
parents | 5aa05a7a34b7 |
children |
rev | line source |
---|---|
4168
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
1 From ChangeLog: |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
2 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
3 2012-07-08 Sascha L. Teichmann <sascha.teichmann@intevation.de> |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
4 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
5 * contrib/themes2html.xsl: New. Transformation to get a better |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
6 overview of themes.xml. Usage: |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
7 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
8 $ xsltproc --path doc/conf \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
9 contrib/themes2html.xsl \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
10 doc/conf/themes.xml \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
11 > themes.xhtml |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
12 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
13 Use browser to view the resulting file. |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
14 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
15 2012-06-23 Sascha L. Teichmann <sascha.teichmann@intevation.de> |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
16 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
17 * contrib/add-i18n-numbers.py: New. Script to prefix |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
18 the values of property files with a small number to |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
19 make the keys identifiable even through the UI. |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
20 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
21 Apply in the same manner as contrib/check-i18n-properties.py |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
22 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
23 2012-04-11 Sascha L. Teichmann <sascha.teichmann@intevation.de> |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
24 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
25 * contrib/check-i18n-properties.py: New. Script to check inconsistencies |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
26 of i18n properties files: Detects duplicates and keys not defined in other |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
27 properties files. Usage: |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
28 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
29 $ find -name messages\*.properties | \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
30 xargs contrib/check-i18n-properties.py |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
31 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
32 2011-04-28 Sascha L. Teichmann <sascha.teichmann@intevation.de> |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
33 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
34 * contrib/visualize-transitions.xsl: Added to create a |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
35 Graphviz digraph out of the config.xml. Usage: |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
36 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
37 $ xsltproc --stringparam base-dir ../doc/conf/ \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
38 contrib/visualize-transitions.xsl \ |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
39 doc/conf/conf.xml > transitions.dot |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
40 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
41 $ dot -Tsvg -o transitions.svg transitions.dot |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
42 |
e6b0d0b160b7
Added extracted doc from ChangeLog to READMEs in flys-artifact and flys-artifacts/contrib/.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
43 |