Elephant renders macros each time a page is requested. Macros start with {
special characters and expand into text or HTML code. Macros can even include content from a file, HTML page or JSP page. In order to understand what macros are for see what current macros do:
Macros can be nested, but take in mind that macros are written inline, in order to allow content inclusions. Thus, only macros that resolve to a string could be nested. Ex.
To escape the :
character prepend a slash, like /:
.
The next generation of macros provide a great number of features, aiming to easy-of-use customization. The main goals are:
name=[values]
or [values]
.void
.Next generation macros are expressed as @{macro_name}
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | init |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
content-file | System file to show. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
name | Attribute name. | ||
default | Default value. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
stopper | Whether rendering should stop. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | date, all, time | date |
format | Format used to show the value. | short, medium, long, full | short |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
url | Uniform Resource Locator. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
value-map |
Values using the form variable=value separated by ;
|
props
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
doc
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
json
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
folder | Folder location. | ||
pattern | The pattern items must match. | ||
mode | Mode to use. | normal, sort, shuffle |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
url | Uniform Resource Locator. | ||
width | CSS style width. | ||
height | CSS style height. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
resource-key | Key used to locate de resource. | ||
string-mode | Possible values are: 0 No transform, 1 Capitalized, 2 To upper case, 3 To lower case. | 0 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
resource | |||
string-mode | Possible values are: 0 No transform, 1 Capitalized, 2 To upper case, 3 To lower case. | 0 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
random-limit | Random values ceil. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
level | Number of the item level. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | name, id, email | name |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | ||
attribute | Permission part. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
cookie | Cookie name. | ||
value | Value to search for. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
class-name | Java class name. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
value | Value to search for. | ||
value | Value to search for. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
object
can also be an entityPath.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
ref-object |
Attribute name holding the object or an entityPath .
|
||
attribute | Renders attribute's value as string. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
attribute | Renders attribute's value as string. | ||
format | Format used to show the value. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
fmt-name-desc | Format, as in String.format(), with entity name and description as parameters. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
plugin | Plugin name. | ||
entityPath | Path to a entity. | ||
template | Template used to show the items. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
name | Attribute name. | ||
value | Value to be set when defined. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
storeClass | |||
indicatorClass | |||
entityPath | Path to a entity. | ||
indicator | Indicator name. | ||
relatedPath |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
identifier | |||
values |
The easiest way to read a file is store it in context's repository and access it with */file
. The *
will expand into rendering context repository. For example:
{
Reads doc.xml
in current repository and passes its data to [Template_root]/xml/docTemplate.html
to be formatted.
Properties are stored in props
list in the same order they are stored on disc. You can iterate props with #list
.
<#list props?keys as key> <#assign value=props[key]/> // do something with key and value ... < /#list>
XML documents are stored in doc
model. You can iterate the elements using dot syntax and iterate collections as you would usually do for any other data. The XML model is the FreeMarker NodeModel.
JSON files are stored in json
model. To access a root, use json.read("$.root")
. If the root is a list, use json.list("$.root")
. Once retrieved the root, you can iterate the elements using dot syntax and iterate collections as you would usually do for any other data. The JSON model is a subset of the JsonPath DocumentContext, optimized for templates usage.
books
exampleThe data:
{ "book": [ { "title": "...", "author": "...", "excerpt": "...", "availability": "...", "link": "...", "filelink": "...", "imagelink": "...", "pages": 0 }, { ... }, ... ] }
The template (Semantic-UI):
<div class="ui divided items"> <#list json.list("$.book") as book> <div class="item"> <a class="ui tiny image" href="${book.link}"> <img src="${book.imagelink}"/> </a> <div class="content"> <a class="header" href="${book.link}">${book.title}</a> <div class="meta"> ${book.author} </div> <div class="description"> ${book.excerpt} </div> <div class="extra"> ${book.availability} <#if book.filelink?has_content> <a target="_new" href="${book.filelink}">${book.pages}</a> < /#if> </div> </div> </div> < /#list> </div>
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
location | Navigator mode. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
traversal | Navigator mode. | ||
show-title | When true, renders context name as well. | false |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
options | Navigator mode. | ||
decorators | When true, aditional DIVs are added at top and bottom. | ||
level | Number of the item level. | ||
preloaded | Number of preloaded children. | ||
show-current | When true, children passing preloaded value will show along with ancestors and siblings, as opposed to not showing any child with level over level + preloaded. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tabulator | Navigator mode. | ||
level | Number of the item level. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
level | Tells until which level contexts are shown. | 1 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
behavioural_keywords | Keywords controlling how information displays. | popup, external, hidden, verbose | |
navigational_keywords | Keywords to navigate Elephant contexts. | parent, locate, level, root, match | |
selection_keywords | Keywords actually returning contexts. | all, siblings, search, children, self, leaf, ancestors |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
behavioural_keywords | Keywords controlling how information displays. | popup, external, hidden, verbose | |
navigational_keywords | Keywords to navigate Elephant contexts. | parent, locate, level, root, match | |
selection_keywords | Keywords actually returning contexts. | all, siblings, search, children, self, leaf, ancestors |
behavioural keywords
areBehavioural keywords
stand for keywords controlling how information displays. The way behaviours will extend in future versions might be controlled in this section.
Behavioural keyword |
Description |
verbose |
Writes the whole path to context, starting from current context. |
popup |
Popup effect on resulting links is to open a popup instead of opening a new context. |
hidden |
Hidden contexts will show, even if protected. |
external |
Links will open on a new tab or window. |
navigational keywords
and selection keywords
mean
Navigational keywords
end up as a list, colon separated, of keywords pointing to existing contexts. As starting point, path_to_contexts
initializes to current context, that is, the web page where macro displays.
Here comes a brief description of what each keyword does and after some clear examples:
Navigation keywords move current selection from context to context.
Navigation keyword |
Description |
parent |
Moves to current selection's parent |
root |
Moves to root context |
level |
Moves to ancestor[level] |
locate |
Moves next token path, expands |
match |
Moves to matching context from current selection using regular expressions |
Selection keywords
actually return contexts, one or several. A zero results it's considered an error an macro will displays with m_error
class, which defaults to red color and a warning image. Otherwise, macro expands into m_list
class.
Render keyword |
Description |
self |
Returns current selection |
children |
Returns current selection's children |
all |
Returns all descendant contexts |
leaf |
Returns all descendant contexts having no children |
ancestors |
Returns current selection's ancestors |
siblings |
Returns current selection's siblings, including itself |
search |
Returns matching contexts from current selection |
Macro |
Description |
{ Navigational { Navigational |
|
{ [ Core, Navigational, Modules, Documentation, Macro summary ] |
|
Current list of modules exposing macros.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | editableTree | tree |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | tree-ro |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | tree-rot |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree-ro |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree-rot |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | url |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
group-category | Category identifier of the groups. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
groupings | Items groupings. | ||
summaryTemplate | Template used to show the items in summary mode. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
groupings | Items groupings. | ||
summaryTemplate | Template used to show the items in summary mode. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
syndicationId | Sindication code. See Social Groups in Contacts. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
connector | Connector name. | ||
value | Value to search for. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
connector | Connector name. | ||
value | Value to search for. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
valid | |||
not-valid |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
id | Identifier. | Default |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | check |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | signup |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
contactIds | |||
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | profile |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
phase | Only items in phase type. | ||
worths | Identifiers of the worths to show. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
path |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | editDossier |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
redirect | Context where to redirect after the operation, usually saving. | ||
dossierId | Dossier identifier. | ||
template | Template used to show the items. | create |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
redirect | Context where to redirect after the operation, usually saving. | ||
type | Only items with type. | TYPE_QUESTION | |
template | Template used to show the items. | editQuestion |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | addinfo | |
redirect | Context where to redirect after the operation, usually saving. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
public | Show only public content. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
public | Show only public content. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true | |
type | Only items with type. | 0 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true | |
type | Only items with type. | 0 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
format | Format used to show the value. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
shopping | Shopping mode. | ||
template | Template used to show the items. | cart |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
groupId | Group identifier. | 0 | |
categoryId | Category identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | entryTitleImage, entry, eventTitle, eventTitleImage, grid, event, entryTitle | summary |
lang | Elephant language. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
groupId | Group identifier. | 0 | |
categoryId | Category identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | entryTitleImage, entry, eventTitle, eventTitleImage, grid, event, entryTitle | summary |
lang | Elephant language. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Documentation macros are internal specific macros used to document elephant macros themselves and other BrightSide related macros.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerMacros |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | socialGroups |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
parser | Parser name. | all | |
headers | true | ||
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | elephantMacros |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerEmojis |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerIcons |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
indicator | Indicator name. | all | |
headers | true | ||
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | elephantIndicators |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | editableTree | tree |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | tree-ro |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
template | Template used to show the items. | tree-rot |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree-ro |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | tree-rot |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | url |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
group-category | Category identifier of the groups. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
groupings | Items groupings. | ||
summaryTemplate | Template used to show the items in summary mode. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
groupings | Items groupings. | ||
summaryTemplate | Template used to show the items in summary mode. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
syndicationId | Sindication code. See Social Groups in Contacts. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
connector | Connector name. | ||
value | Value to search for. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
connector | Connector name. | ||
value | Value to search for. | ||
summaryTemplate | Template used to show the items in summary mode. | summary | |
context | Elephant context for links. | ||
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
valid | |||
not-valid |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
id | Identifier. | Default |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | check |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, closed, open | |
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
type | Only items with type. | all, typed, companies, professionals, centers, students, educators, singletons | all |
syndicationId | Sindication code. See Social Groups in Contacts. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 12 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | signup |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
contactIds | |||
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | profile |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | init |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
content-file | System file to show. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
name | Attribute name. | ||
default | Default value. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
stopper | Whether rendering should stop. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | date, all, time | date |
format | Format used to show the value. | short, medium, long, full | short |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
url | Uniform Resource Locator. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
value-map |
Values using the form variable=value separated by ;
|
props
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
doc
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
json
.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | ||
template | Template used to show the items. | ||
repository-file | Name of the repository file. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
folder | Folder location. | ||
pattern | The pattern items must match. | ||
mode | Mode to use. | normal, sort, shuffle |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
url | Uniform Resource Locator. | ||
width | CSS style width. | ||
height | CSS style height. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
resource-key | Key used to locate de resource. | ||
string-mode | Possible values are: 0 No transform, 1 Capitalized, 2 To upper case, 3 To lower case. | 0 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
resource | |||
string-mode | Possible values are: 0 No transform, 1 Capitalized, 2 To upper case, 3 To lower case. | 0 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
random-limit | Random values ceil. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
level | Number of the item level. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | name, id, email | name |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | ||
attribute | Permission part. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
cookie | Cookie name. | ||
value | Value to search for. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
class-name | Java class name. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
value | Value to search for. | ||
value | Value to search for. | ||
true-expression | When comparison is true. | ||
false-expression | When comparison is false. |
object
can also be an entityPath.
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
ref-object |
Attribute name holding the object or an entityPath .
|
||
attribute | Renders attribute's value as string. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
attribute | Renders attribute's value as string. | ||
format | Format used to show the value. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. | ||
fmt-name-desc | Format, as in String.format(), with entity name and description as parameters. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
plugin | Plugin name. | ||
entityPath | Path to a entity. | ||
template | Template used to show the items. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
name | Attribute name. | ||
value | Value to be set when defined. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
storeClass | |||
indicatorClass | |||
entityPath | Path to a entity. | ||
indicator | Indicator name. | ||
relatedPath |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
identifier | |||
values |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerMacros |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | socialGroups |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
parser | Parser name. | all | |
headers | true | ||
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | elephantMacros |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerEmojis |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | providerIcons |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
indicator | Indicator name. | all | |
headers | true | ||
doc-properties | Properties file for documentation. | */documentation | |
tmpl-root | Templates root. | documentation | |
template | Template used to show the items. | elephantIndicators |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, onwork | |
context | Elephant context for links. | ||
categoryId | Category identifier. | 0 | |
dossierId | Dossier identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | kbSummary, questions, motions, mySummary, proposals | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
dossierId | Dossier identifier. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
phase | Only items in phase type. | ||
worths | Identifiers of the worths to show. | ||
categoryIds | Category identifiers. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | projects, dossiers | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
status | Only items with status. | all, closed, frozen, not-frozen, onwork | |
context | Elephant context for links. | ||
categoryIds | Category identifiers. | ||
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
path |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | editDossier |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
redirect | Context where to redirect after the operation, usually saving. | ||
dossierId | Dossier identifier. | ||
template | Template used to show the items. | create |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
redirect | Context where to redirect after the operation, usually saving. | ||
type | Only items with type. | TYPE_QUESTION | |
template | Template used to show the items. | editQuestion |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | addinfo | |
redirect | Context where to redirect after the operation, usually saving. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
public | Show only public content. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
count | Number of items to show. | 10 | |
public | Show only public content. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
entityPath | Path to a entity. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true | |
type | Only items with type. | 0 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | /user/contracts | |
count | Number of items to show. | 10 | |
intervention | Only contracts where current user has intervention. | true | |
type | Only items with type. | 0 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
format | Format used to show the value. | ||
ids | Identifiers. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
shopping | Shopping mode. | ||
template | Template used to show the items. | cart |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
location | Navigator mode. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
traversal | Navigator mode. | ||
show-title | When true, renders context name as well. | false |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
options | Navigator mode. | ||
decorators | When true, aditional DIVs are added at top and bottom. | ||
level | Number of the item level. | ||
preloaded | Number of preloaded children. | ||
show-current | When true, children passing preloaded value will show along with ancestors and siblings, as opposed to not showing any child with level over level + preloaded. | true |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
tabulator | Navigator mode. | ||
level | Number of the item level. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
level | Tells until which level contexts are shown. | 1 |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
behavioural_keywords | Keywords controlling how information displays. | popup, external, hidden, verbose | |
navigational_keywords | Keywords to navigate Elephant contexts. | parent, locate, level, root, match | |
selection_keywords | Keywords actually returning contexts. | all, siblings, search, children, self, leaf, ancestors |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
behavioural_keywords | Keywords controlling how information displays. | popup, external, hidden, verbose | |
navigational_keywords | Keywords to navigate Elephant contexts. | parent, locate, level, root, match | |
selection_keywords | Keywords actually returning contexts. | all, siblings, search, children, self, leaf, ancestors |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
groupId | Group identifier. | 0 | |
categoryId | Category identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | entryTitleImage, entry, eventTitle, eventTitleImage, grid, event, entryTitle | summary |
lang | Elephant language. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
groupId | Group identifier. | 0 | |
categoryId | Category identifier. | 0 | |
count | Number of items to show. | 10 | |
template | Template used to show the items. | entryTitleImage, entry, eventTitle, eventTitleImage, grid, event, entryTitle | summary |
lang | Elephant language. |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
id | Identifier. | ||
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
summaryTemplate | Template used to show the items in summary mode. | summary | |
fullTemplate | Template used to show one items in full mode. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
role | Entity role part. | SERVICE_SUPPLY, SERVICE_DEMAND | |
type | Only items with type. | ||
context | Elephant context for links. | ||
count | Number of items to show. | 10 | |
template | Template used to show the items. | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, current | all |
selection | true, false | true | |
template | Template used to show the items. | summary, vlist, hlist | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, current | all |
selection | true, false | true | |
template | Template used to show the items. | summary, vlist, hlist | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
mode | Mode to use. | all, current | all |
selection | true, false | true | |
template | Template used to show the items. | summary, vlist, hlist | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | summary, vlist, hlist | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | summary, vlist, hlist | summary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | gsummary |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
wtag | |||
template | Template used to show the items. | full |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
waction | |||
template | Template used to show the items. | gfull |
Atributs | Descripció | Opcions | Per defecte |
---|---|---|---|
template | Template used to show the items. | webLinks |