agile_rails 0.0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/MIT-LICENSE +20 -0
- data/README.md +285 -0
- data/Rakefile +39 -0
- data/agile_rails.gemspec +36 -0
- data/app/assets/fonts/ibm-plex-sans-300.woff2 +0 -0
- data/app/assets/fonts/ibm-plex-sans-400.woff2 +0 -0
- data/app/assets/fonts/ibm-plex-sans-500.woff2 +0 -0
- data/app/assets/fonts/ibm-plex-sans-600.woff2 +0 -0
- data/app/assets/fonts/ibm-plex-sans-700.woff2 +0 -0
- data/app/assets/fonts/ibm-plex-sans-italic.woff2 +0 -0
- data/app/assets/images/32px.png +0 -0
- data/app/assets/images/throbber.gif +0 -0
- data/app/assets/javascripts/agile/agile.js +1489 -0
- data/app/assets/javascripts/agile/jquery-migrate.js +702 -0
- data/app/assets/javascripts/agile/jquery.bpopup.js +372 -0
- data/app/assets/javascripts/agile/jquery.datetimepicker.js +1353 -0
- data/app/assets/javascripts/agile/jstree.min.js +6 -0
- data/app/assets/javascripts/agile/select-multiple.js +459 -0
- data/app/assets/javascripts/agile/some_scripts.js +33 -0
- data/app/assets/javascripts/agile.js +22 -0
- data/app/assets/javascripts/agile_application.js +22 -0
- data/app/assets/javascripts/agile_editor.js +22 -0
- data/app/assets/stylesheets/agile/agile.css +1882 -0
- data/app/assets/stylesheets/agile/agile_apps.css +149 -0
- data/app/assets/stylesheets/agile/jquery.datetimepicker.css +304 -0
- data/app/assets/stylesheets/agile/jstree.css +1107 -0
- data/app/assets/stylesheets/agile/select-multiple.css +110 -0
- data/app/assets/stylesheets/agile/th-bg.png +0 -0
- data/app/assets/stylesheets/agile/theme.css +49 -0
- data/app/assets/stylesheets/agile.css +21 -0
- data/app/assets/stylesheets/agile_application.css +20 -0
- data/app/assets/stylesheets/agile_editor.css +19 -0
- data/app/controllers/agile_application_controller.rb +735 -0
- data/app/controllers/agile_common_controller.rb +345 -0
- data/app/controllers/agile_controller.rb +977 -0
- data/app/controllers/agile_main_controller.rb +36 -0
- data/app/controls/agile_control.rb +120 -0
- data/app/controls/agile_report.rb +364 -0
- data/app/controls/ar_category_control.rb +39 -0
- data/app/controls/ar_help_control.rb +139 -0
- data/app/controls/ar_image_control.rb +180 -0
- data/app/controls/ar_journal_control.rb +47 -0
- data/app/controls/ar_menu_item_control.rb +55 -0
- data/app/controls/ar_page_control.rb +64 -0
- data/app/controls/ar_poll_result_control.rb +84 -0
- data/app/controls/ar_setup_control.rb +62 -0
- data/app/controls/belongs_to_control.rb +61 -0
- data/app/controls/browse_models_control.rb +98 -0
- data/app/controls/settings_form_control.rb +137 -0
- data/app/forms/agile_help.yml +112 -0
- data/app/forms/agile_menu.yml +140 -0
- data/app/forms/agile_report_defaults.yml +39 -0
- data/app/forms/all_options.yml +810 -0
- data/app/forms/ar_ad.yml +121 -0
- data/app/forms/ar_big_table.yml +60 -0
- data/app/forms/ar_big_table_value.yml +52 -0
- data/app/forms/ar_browse_fields.yml +35 -0
- data/app/forms/ar_browse_models.yml +48 -0
- data/app/forms/ar_category.yml +73 -0
- data/app/forms/ar_category_as_tree.yml +31 -0
- data/app/forms/ar_design.yml +75 -0
- data/app/forms/ar_filter.yml +52 -0
- data/app/forms/ar_folder_permission.yml +56 -0
- data/app/forms/ar_folder_rule.yml +48 -0
- data/app/forms/ar_gallery.yml +55 -0
- data/app/forms/ar_image.yml +126 -0
- data/app/forms/ar_image_search.yml +83 -0
- data/app/forms/ar_journal.yml +76 -0
- data/app/forms/ar_json_ld.yml +56 -0
- data/app/forms/ar_key_value.yml +33 -0
- data/app/forms/ar_key_value_store.yml +33 -0
- data/app/forms/ar_link.yml +60 -0
- data/app/forms/ar_menu.yml +67 -0
- data/app/forms/ar_menu_item.yml +141 -0
- data/app/forms/ar_page.yml +187 -0
- data/app/forms/ar_part.yml +91 -0
- data/app/forms/ar_permission.yml +52 -0
- data/app/forms/ar_permission_rule.yml +40 -0
- data/app/forms/ar_piece.yml +106 -0
- data/app/forms/ar_policy.yml +64 -0
- data/app/forms/ar_policy_rule.yml +42 -0
- data/app/forms/ar_policy_rule_nocms.yml +40 -0
- data/app/forms/ar_poll.yml +118 -0
- data/app/forms/ar_poll_item.yml +78 -0
- data/app/forms/ar_poll_result.yml +88 -0
- data/app/forms/ar_poll_result_export.yml +35 -0
- data/app/forms/ar_removed_url.yml +41 -0
- data/app/forms/ar_role.yml +43 -0
- data/app/forms/ar_seo.yml +32 -0
- data/app/forms/ar_setup.yml +45 -0
- data/app/forms/ar_site.yml +149 -0
- data/app/forms/ar_steps_template.yml +51 -0
- data/app/forms/ar_user.yml +140 -0
- data/app/forms/ar_user_role.yml +57 -0
- data/app/forms/help/dc_category_as_tree.en +4 -0
- data/app/forms/help/dc_category_as_tree.sl +5 -0
- data/app/forms/json_ld_schema.yml +168 -0
- data/app/helpers/agile_application_helper.rb +1162 -0
- data/app/helpers/agile_category_helper.rb +128 -0
- data/app/helpers/agile_common_helper.rb +308 -0
- data/app/helpers/agile_edit_helper.rb +645 -0
- data/app/helpers/agile_helper.rb +509 -0
- data/app/helpers/agile_index_helper.rb +677 -0
- data/app/helpers/ar_image_helper.rb +128 -0
- data/app/models/agile_form_fields/action.rb +61 -0
- data/app/models/agile_form_fields/agile_form_field.rb +322 -0
- data/app/models/agile_form_fields/belongs_to.rb +112 -0
- data/app/models/agile_form_fields/check_box.rb +73 -0
- data/app/models/agile_form_fields/comment.rb +62 -0
- data/app/models/agile_form_fields/date_picker.rb +104 -0
- data/app/models/agile_form_fields/date_select.rb +68 -0
- data/app/models/agile_form_fields/datetime_picker.rb +88 -0
- data/app/models/agile_form_fields/datetime_select.rb +73 -0
- data/app/models/agile_form_fields/file_field.rb +52 -0
- data/app/models/agile_form_fields/file_select.rb +69 -0
- data/app/models/agile_form_fields/hidden_field.rb +51 -0
- data/app/models/agile_form_fields/html_field.rb +69 -0
- data/app/models/agile_form_fields/journal_diff.rb +62 -0
- data/app/models/agile_form_fields/link_to.rb +69 -0
- data/app/models/agile_form_fields/method.rb +66 -0
- data/app/models/agile_form_fields/multitext_autocomplete.rb +215 -0
- data/app/models/agile_form_fields/number_field.rb +92 -0
- data/app/models/agile_form_fields/password_field.rb +63 -0
- data/app/models/agile_form_fields/radio_button.rb +95 -0
- data/app/models/agile_form_fields/readonly.rb +77 -0
- data/app/models/agile_form_fields/select.rb +281 -0
- data/app/models/agile_form_fields/submit_tag.rb +58 -0
- data/app/models/agile_form_fields/text_area.rb +61 -0
- data/app/models/agile_form_fields/text_autocomplete.rb +171 -0
- data/app/models/agile_form_fields/text_field.rb +55 -0
- data/app/models/agile_form_fields/text_with_select.rb +94 -0
- data/app/models/agile_form_fields/tree_select.rb +170 -0
- data/app/models/ar_big_table.rb +82 -0
- data/app/models/ar_big_table_value.rb +53 -0
- data/app/models/ar_category.rb +109 -0
- data/app/models/ar_design.rb +116 -0
- data/app/models/ar_filter.rb +200 -0
- data/app/models/ar_folder_permission.rb +50 -0
- data/app/models/ar_folder_rule.rb +47 -0
- data/app/models/ar_gallery.rb +53 -0
- data/app/models/ar_image.rb +198 -0
- data/app/models/ar_internals.rb +60 -0
- data/app/models/ar_journal.rb +46 -0
- data/app/models/ar_json_ld.rb +131 -0
- data/app/models/ar_key_value_store.rb +128 -0
- data/app/models/ar_link.rb +48 -0
- data/app/models/ar_memory.rb +172 -0
- data/app/models/ar_menu.rb +144 -0
- data/app/models/ar_menu_item.rb +106 -0
- data/app/models/ar_page.rb +74 -0
- data/app/models/ar_part.rb +66 -0
- data/app/models/ar_permission.rb +180 -0
- data/app/models/ar_permission_rule.rb +65 -0
- data/app/models/ar_policy.rb +78 -0
- data/app/models/ar_policy_rule.rb +65 -0
- data/app/models/ar_poll.rb +74 -0
- data/app/models/ar_poll_item.rb +47 -0
- data/app/models/ar_poll_result.rb +38 -0
- data/app/models/ar_removed_url.rb +42 -0
- data/app/models/ar_role.rb +84 -0
- data/app/models/ar_setup.rb +115 -0
- data/app/models/ar_site.rb +68 -0
- data/app/models/ar_temp.rb +150 -0
- data/app/models/ar_user.rb +72 -0
- data/app/models/ar_user_group.rb +38 -0
- data/app/models/ar_user_role.rb +54 -0
- data/app/models/ar_visit.rb +41 -0
- data/app/models/concerns/ar_page_concern.rb +128 -0
- data/app/models/concerns/ar_part_concern.rb +48 -0
- data/app/models/concerns/ar_piece_concern.rb +48 -0
- data/app/models/concerns/ar_policy_rule_concern.rb +87 -0
- data/app/models/concerns/ar_seo_concern.rb +66 -0
- data/app/models/concerns/ar_site_concern.rb +103 -0
- data/app/models/concerns/ar_user_concern.rb +195 -0
- data/app/renderers/agile_common_renderer.rb +93 -0
- data/app/renderers/agile_renderer.rb +59 -0
- data/app/renderers/ar_ad_renderer.rb +219 -0
- data/app/renderers/ar_captcha_renderer.rb +113 -0
- data/app/renderers/ar_common_renderer.rb +90 -0
- data/app/renderers/ar_gallery_renderer.rb +107 -0
- data/app/renderers/ar_menu_renderer.rb +195 -0
- data/app/renderers/ar_page_renderer.rb +147 -0
- data/app/renderers/ar_part_renderer.rb +235 -0
- data/app/renderers/ar_piece_renderer.rb +119 -0
- data/app/renderers/ar_poll_renderer.rb +272 -0
- data/app/views/agile/_edit_stuff.html.erb +57 -0
- data/app/views/agile/_form.html.erb +24 -0
- data/app/views/agile/_result.html.erb +28 -0
- data/app/views/agile/edit.html.erb +13 -0
- data/app/views/agile/error.html.erb +2 -0
- data/app/views/agile/index.html.erb +14 -0
- data/app/views/agile/login.html.erb +19 -0
- data/app/views/agile/new.html.erb +12 -0
- data/app/views/agile_common/_help.html.erb +18 -0
- data/app/views/agile_common/_iframe_edit.html.erb +2 -0
- data/app/views/agile_common/paste_clipboard.html.erb +17 -0
- data/app/views/layouts/agile.html.erb +17 -0
- data/app/views/layouts/content.html.erb +20 -0
- data/app/views/models/dump_models.html.erb +47 -0
- data/config/initializers/kaminari_patch.rb +56 -0
- data/config/locales/agile_de.yml +138 -0
- data/config/locales/agile_en.yml +162 -0
- data/config/locales/agile_sl.yml +163 -0
- data/config/locales/datetimepicker.yml +19 -0
- data/config/locales/de.yml +231 -0
- data/config/locales/en.yml +13 -0
- data/config/locales/kaminari.yml +26 -0
- data/config/locales/models_en.yml +1032 -0
- data/config/locales/models_sl.yml +1065 -0
- data/config/locales/sl.yml +211 -0
- data/db/migrate/20240120160001_add_sessions_table.rb +12 -0
- data/db/migrate/20240120160002_ar_big_table.rb +17 -0
- data/db/migrate/20240120160003_ar_big_table_value.rb +18 -0
- data/db/migrate/20240120160004_ar_category.rb +22 -0
- data/db/migrate/20240120160005_ar_design.rb +20 -0
- data/db/migrate/20240120160006_ar_filter.rb +17 -0
- data/db/migrate/20240120160007_ar_gallery.rb +21 -0
- data/db/migrate/20240120160008_ar_journal.rb +19 -0
- data/db/migrate/20240120160009_ar_key_value_store.rb +11 -0
- data/db/migrate/20240120160010_ar_link.rb +19 -0
- data/db/migrate/20240120160011_ar_memory.rb +8 -0
- data/db/migrate/20240120160012_ar_menu.rb +21 -0
- data/db/migrate/20240120160013_ar_menu_item.rb +28 -0
- data/db/migrate/20240120160014_ar_page.rb +50 -0
- data/db/migrate/20240120160015_ar_part.rb +33 -0
- data/db/migrate/20240120160016_ar_permission.rb +16 -0
- data/db/migrate/20240120160017_ar_permission_rule.rb +17 -0
- data/db/migrate/20240120160018_ar_piece.rb +28 -0
- data/db/migrate/20240120160019_ar_policy.rb +21 -0
- data/db/migrate/20240120160020_ar_policy_rule.rb +18 -0
- data/db/migrate/20240120160021_ar_poll.rb +27 -0
- data/db/migrate/20240120160022_ar_poll_item.rb +23 -0
- data/db/migrate/20240120160023_ar_poll_result.rb +14 -0
- data/db/migrate/20240120160024_ar_removed_url.rb +16 -0
- data/db/migrate/20240120160025_ar_role.rb +17 -0
- data/db/migrate/20240120160026_ar_site.rb +37 -0
- data/db/migrate/20240120160027_ar_temp.rb +11 -0
- data/db/migrate/20240120160028_ar_user.rb +42 -0
- data/db/migrate/20240120160029_ar_user_group.rb +12 -0
- data/db/migrate/20240120160030_ar_user_role.rb +18 -0
- data/db/migrate/20240120160031_ar_visit.rb +15 -0
- data/db/migrate/20240703016001_ar_setup.rb +16 -0
- data/db/migrate/20240703016002_ar_folder_permission.rb +15 -0
- data/db/migrate/20240703016003_ar_folder_rule.rb +14 -0
- data/db/migrate/20250115000001_ar_image.rb +25 -0
- data/lib/agile/configuration.rb +43 -0
- data/lib/agile/engine.rb +29 -0
- data/lib/agile/version.rb +27 -0
- data/lib/agile.rb +282 -0
- data/lib/agile_rails.rb +1 -0
- data/lib/generators/agile/USAGE +11 -0
- data/lib/generators/agile/new_form_generator.rb +369 -0
- data/lib/generators/convert_to_ar/convert_to_ar_generator.rb +158 -0
- data/lib/tasks/agile_db_clone.rake +132 -0
- data/lib/tasks/agile_db_export_to_yaml.rake +37 -0
- data/lib/tasks/agile_db_migrate.rake +35 -0
- metadata +414 -0
@@ -0,0 +1,1032 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2023+ Damjan Rems
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be
|
13
|
+
# included in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#++
|
23
|
+
|
24
|
+
# English (en) localization for AgileRails common models field names
|
25
|
+
|
26
|
+
en:
|
27
|
+
helpers:
|
28
|
+
# labels for forms #####################################################
|
29
|
+
label:
|
30
|
+
|
31
|
+
ar_site:
|
32
|
+
table_title: Sites
|
33
|
+
1basic: Basic
|
34
|
+
2parameters: Parameters
|
35
|
+
3advanced: Advanced
|
36
|
+
4design: Design
|
37
|
+
5permissions: Permissions
|
38
|
+
6parts: Parts
|
39
|
+
|
40
|
+
name: Name
|
41
|
+
description: Description
|
42
|
+
homepage_link: HomePage link
|
43
|
+
error_link: Error link
|
44
|
+
css: CSS
|
45
|
+
header: Header
|
46
|
+
route_name: Default route name
|
47
|
+
page_title: Page title
|
48
|
+
logo: Logo image
|
49
|
+
favicon: Favicon image
|
50
|
+
page_table: Page table
|
51
|
+
page_class: Page class
|
52
|
+
menu_class: Menu class
|
53
|
+
site_layout: Rails layout
|
54
|
+
files_directory: Files directory
|
55
|
+
active: Active
|
56
|
+
ar_policies: Access policies
|
57
|
+
ar_parts: Parts
|
58
|
+
settings: Settings
|
59
|
+
menu_name: Menu name
|
60
|
+
alias_for: Alias for
|
61
|
+
rails_view: Rails view
|
62
|
+
design: Standard design
|
63
|
+
request_processor: Request processor
|
64
|
+
inherit_policy: Policy from site
|
65
|
+
|
66
|
+
ar_design:
|
67
|
+
table_title: Designs
|
68
|
+
tab1: Base
|
69
|
+
tab2: Body
|
70
|
+
tab3: Parts
|
71
|
+
|
72
|
+
name: Name
|
73
|
+
description: Description
|
74
|
+
body: Body
|
75
|
+
code: Code
|
76
|
+
css: CSS
|
77
|
+
author: Author
|
78
|
+
params: Parameters
|
79
|
+
updated_by: Updated by
|
80
|
+
active: Active
|
81
|
+
ar_parts: Parts
|
82
|
+
site_id: Site name
|
83
|
+
rails_view: Rails view filename
|
84
|
+
updated_at: Updated
|
85
|
+
|
86
|
+
ar_user_role:
|
87
|
+
table_title: User roles
|
88
|
+
|
89
|
+
ar_role_id: Role
|
90
|
+
valid_from: Valid from
|
91
|
+
valid_to: Valid to
|
92
|
+
updated_by: Updated by
|
93
|
+
active: Active
|
94
|
+
|
95
|
+
ar_user:
|
96
|
+
table_title: Users
|
97
|
+
1base: Base
|
98
|
+
|
99
|
+
id: Id
|
100
|
+
username: Username
|
101
|
+
title: Title
|
102
|
+
first_name: First name
|
103
|
+
middle_name: Middle name
|
104
|
+
last_name: Last name
|
105
|
+
name: Name
|
106
|
+
address: Address
|
107
|
+
post: Post
|
108
|
+
country: Country
|
109
|
+
phone: Phone
|
110
|
+
email: e-Mail
|
111
|
+
picture: Picture
|
112
|
+
birthdate: Birthdate
|
113
|
+
about: About
|
114
|
+
last_visit: Last visit
|
115
|
+
active: Active
|
116
|
+
valid_from: Valid from
|
117
|
+
valid_to: Valid to
|
118
|
+
updated_by: Updated by
|
119
|
+
group: Is group
|
120
|
+
member: Member in groups
|
121
|
+
member_a: Member in groups
|
122
|
+
ar_user_roles: Roles
|
123
|
+
password: Password
|
124
|
+
password_confirmation: Confirm password
|
125
|
+
|
126
|
+
ar_poll:
|
127
|
+
table_title: Polls
|
128
|
+
choices_for_operation: 'Submit poll:poll_submit,Link:link'
|
129
|
+
choices_for_display: 'Top:td,Left:lr,Inside:in'
|
130
|
+
tab1: Base
|
131
|
+
tab2: Script
|
132
|
+
tab3: Items
|
133
|
+
tab4: Items - advanced
|
134
|
+
|
135
|
+
name: Poll name
|
136
|
+
|
137
|
+
title: Title
|
138
|
+
sub_text: Short description
|
139
|
+
operation: Operation
|
140
|
+
parameters: Parameters
|
141
|
+
display: Label
|
142
|
+
pre_display: Pre display code
|
143
|
+
css: CSS
|
144
|
+
js: Javascript
|
145
|
+
valid_from: Valid from
|
146
|
+
valid_to: Valid to
|
147
|
+
ar_poll_items: Items
|
148
|
+
form: Form
|
149
|
+
captcha_type: Catpcha type
|
150
|
+
|
151
|
+
ar_poll_item:
|
152
|
+
table_title: Poll items
|
153
|
+
choices_for_field_type: Text:text_field,Text area:text_area,Select:select,Check box:check_box,Submit:submit_tag,Link:link_to,Password:password_field,Radio:radio
|
154
|
+
choices_for_separator: Space: ,Empty line:<br />,Horizontal line:<hr>
|
155
|
+
|
156
|
+
name: Name
|
157
|
+
text: Caption
|
158
|
+
field_type: Type
|
159
|
+
size: Size
|
160
|
+
mandatory: Mandatory
|
161
|
+
separator: Separator
|
162
|
+
options: Options
|
163
|
+
order: Order
|
164
|
+
active: Active
|
165
|
+
|
166
|
+
ar_poll_result:
|
167
|
+
table_title: Polls results
|
168
|
+
|
169
|
+
ar_poll_id: Poll name
|
170
|
+
created_at: Created date
|
171
|
+
data: Data
|
172
|
+
confirmed: Confirmed
|
173
|
+
|
174
|
+
ar_policy:
|
175
|
+
table_title: Access policy declarations
|
176
|
+
|
177
|
+
name: Policy name
|
178
|
+
description: Description
|
179
|
+
is_default: Is default
|
180
|
+
active: Active
|
181
|
+
ar_policy_rules: Policy rules
|
182
|
+
message: Error message
|
183
|
+
|
184
|
+
ar_policy_rule:
|
185
|
+
table_title: Access policy rules
|
186
|
+
choices_for_permission: NO_ACCESS:0,CAN_VIEW:1,CAN_CREATE:2,CAN_EDIT:4,CAN_EDIT_ALL:8,CAN_DELETE:16,CAN_DELETE_ALL:32,CAN_ADMIN:64,SUPERADMIN:128
|
187
|
+
choices_for_sites_permission: NO_ACCESS:0,CAN_VIEW:1,CAN_EDIT:2
|
188
|
+
|
189
|
+
active: Active
|
190
|
+
updated_by: Updated by
|
191
|
+
ar_role_id: User role
|
192
|
+
permission: Permission
|
193
|
+
|
194
|
+
ar_role:
|
195
|
+
table_title: User roles
|
196
|
+
|
197
|
+
name: Name
|
198
|
+
system_name: System name
|
199
|
+
active: Active
|
200
|
+
|
201
|
+
ar_menu:
|
202
|
+
table_title: Menus
|
203
|
+
tab1: Base
|
204
|
+
tab2: Menu items
|
205
|
+
tab3: CSS
|
206
|
+
|
207
|
+
name: Menu name
|
208
|
+
description: Description
|
209
|
+
div_name: Menu div
|
210
|
+
css: CSS
|
211
|
+
link_prepend: Link prepend
|
212
|
+
active: Active
|
213
|
+
ar_menu_items: Menu items
|
214
|
+
ar_site_id: Site
|
215
|
+
new_page: New page
|
216
|
+
edit_page: Edit page
|
217
|
+
|
218
|
+
ar_menu_item:
|
219
|
+
table_title: Menu items
|
220
|
+
tab1: Base
|
221
|
+
tab2: Menu items
|
222
|
+
tab3: As HTML
|
223
|
+
|
224
|
+
caption: Caption
|
225
|
+
picture: Picture
|
226
|
+
link: Link
|
227
|
+
link_prepend: Link prepend
|
228
|
+
target: Target window
|
229
|
+
order: Order
|
230
|
+
ar_menu_items: Submenus
|
231
|
+
page_id: Page
|
232
|
+
css: CSS
|
233
|
+
active: Active
|
234
|
+
policy_id: Display policy
|
235
|
+
hidden: Hidden
|
236
|
+
clas: Class
|
237
|
+
content: Menu content
|
238
|
+
|
239
|
+
ar_page:
|
240
|
+
table_title: Pages
|
241
|
+
choices_for_comments: 'Allowed:1,Not allowed:0'
|
242
|
+
choices_for_if_scroll: 'Auto,Yes,No'
|
243
|
+
1base: Base
|
244
|
+
2advanced: Advanced
|
245
|
+
3content: Content
|
246
|
+
4parts: Parts
|
247
|
+
5iframe: IFrame
|
248
|
+
|
249
|
+
subject: Subject
|
250
|
+
link: Link
|
251
|
+
sub_subject: Sub subject
|
252
|
+
picture: Picture
|
253
|
+
gallery: Gallery
|
254
|
+
alt_link: Alt link
|
255
|
+
css: CSS
|
256
|
+
script: Skript
|
257
|
+
params: Parameters
|
258
|
+
body: Body
|
259
|
+
menu_id: Menu
|
260
|
+
author_id: Author
|
261
|
+
author_name: Author
|
262
|
+
publish_date: Publish date
|
263
|
+
valid_from: Valid from
|
264
|
+
valid_to: Valid to
|
265
|
+
comments: Comments
|
266
|
+
active: Active
|
267
|
+
ar_parts: Parts
|
268
|
+
policy_id: Access policy
|
269
|
+
ar_site_id: Site
|
270
|
+
ar_design_id: Design
|
271
|
+
ar_poll_id: Poll
|
272
|
+
kats: Categories
|
273
|
+
updated_at: Updated
|
274
|
+
if_url: URL
|
275
|
+
if_width: Width
|
276
|
+
if_height: Height
|
277
|
+
if_scroll: Scrolling
|
278
|
+
if_border: Border
|
279
|
+
if_params: Parameters
|
280
|
+
if_id: CSS id
|
281
|
+
if_class: CSS class
|
282
|
+
_update_menu: Update menu
|
283
|
+
div_class: DIV class
|
284
|
+
|
285
|
+
ar_seo:
|
286
|
+
seo: SEO
|
287
|
+
title: Browser title
|
288
|
+
meta_description: Meta description
|
289
|
+
meta_additional: Additional meta data
|
290
|
+
canonical_link: Canonical link
|
291
|
+
ar_json_lds: Schema data
|
292
|
+
|
293
|
+
ar_part:
|
294
|
+
table_title: Parts of content
|
295
|
+
1base: Base
|
296
|
+
2content: Content
|
297
|
+
3advanced: Advanced
|
298
|
+
|
299
|
+
tab1: Base
|
300
|
+
tab2: Advanced
|
301
|
+
tab3: Content
|
302
|
+
|
303
|
+
name: Name
|
304
|
+
description: Description
|
305
|
+
link: Link
|
306
|
+
picture: Picture
|
307
|
+
thumbnail: Thumbnail
|
308
|
+
body: Body
|
309
|
+
css: CSS
|
310
|
+
script: Script
|
311
|
+
script_type: Script type
|
312
|
+
piece_id: Piece
|
313
|
+
div_id: Position (div)
|
314
|
+
order: Order
|
315
|
+
updated_by: Updated by
|
316
|
+
updated_at: Last updated at
|
317
|
+
active: Active
|
318
|
+
valid_from: Valid from
|
319
|
+
valid_to: Valid to
|
320
|
+
policy_id: Access policy
|
321
|
+
|
322
|
+
ar_piece:
|
323
|
+
table_title: Pieces of content
|
324
|
+
tab1: Base
|
325
|
+
tab2: Advanced
|
326
|
+
tab3: Content
|
327
|
+
|
328
|
+
name: Name
|
329
|
+
description: Description
|
330
|
+
link: Link
|
331
|
+
picture: Picture
|
332
|
+
thumbnail: Thumbnail
|
333
|
+
body: Body
|
334
|
+
css: CSS
|
335
|
+
script: Script
|
336
|
+
script_type: Script type
|
337
|
+
piece_id: Piece
|
338
|
+
site_id: Site
|
339
|
+
div_id: Position (div)
|
340
|
+
order: Order
|
341
|
+
updated_by: Updated by
|
342
|
+
updated_at: Last updated at
|
343
|
+
active: Active
|
344
|
+
valid_from: Valid from
|
345
|
+
valid_to: Valid to
|
346
|
+
|
347
|
+
ar_ad:
|
348
|
+
table_title: Ads
|
349
|
+
choices_for_type: Picture:1,Flash:2,Script:3
|
350
|
+
choices_for_link_target: Same window:_self,New window:_blank
|
351
|
+
|
352
|
+
position: Position
|
353
|
+
description: Description
|
354
|
+
type: Type
|
355
|
+
script: Script
|
356
|
+
file: Filename
|
357
|
+
link: Link
|
358
|
+
height: Height
|
359
|
+
width: Width
|
360
|
+
valid_from: Valid from
|
361
|
+
valid_to: Valid to
|
362
|
+
displays: Displays
|
363
|
+
clicks: Clicks
|
364
|
+
priority: Priority
|
365
|
+
displayed: Displayed
|
366
|
+
clicked: Clicked
|
367
|
+
active: Active
|
368
|
+
updated_by: Updated by
|
369
|
+
ar_site_id: Site
|
370
|
+
link_target: Link open in
|
371
|
+
|
372
|
+
ar_permission:
|
373
|
+
table_title: Table access permissions
|
374
|
+
|
375
|
+
table_name: Table name
|
376
|
+
is_default: Is default
|
377
|
+
active: Active
|
378
|
+
ar_permission_rules: Policy rules
|
379
|
+
|
380
|
+
ar_permission_rule:
|
381
|
+
table_title: Table access rules
|
382
|
+
|
383
|
+
active: Active
|
384
|
+
ar_role_id: User role
|
385
|
+
permission: Permission
|
386
|
+
|
387
|
+
ar_folder_permission:
|
388
|
+
table_title: Folders permissions
|
389
|
+
|
390
|
+
folder_name: Folder name
|
391
|
+
is_default: Is default
|
392
|
+
inherited: Inhrited
|
393
|
+
active: Active
|
394
|
+
ar_folder_rules: Access rules
|
395
|
+
|
396
|
+
ar_folder_rule:
|
397
|
+
table_title: Folder access rules
|
398
|
+
|
399
|
+
ar_role_id: User role
|
400
|
+
permission: Permission
|
401
|
+
|
402
|
+
ar_link:
|
403
|
+
table_title: Alternative links
|
404
|
+
|
405
|
+
link: Link
|
406
|
+
params: Parameters
|
407
|
+
redirect: Redirect
|
408
|
+
ar_site_id: Valid for site
|
409
|
+
page_id: Link to page
|
410
|
+
active: Active
|
411
|
+
|
412
|
+
ar_category:
|
413
|
+
table_title: Categories
|
414
|
+
choices_for_ctype: '1:1,2:2,3:3,4:4'
|
415
|
+
|
416
|
+
name: Name
|
417
|
+
description: Description
|
418
|
+
ctype: Category type
|
419
|
+
order: Order
|
420
|
+
parent: Parent
|
421
|
+
active: Active
|
422
|
+
ar_site_id: Valid for site
|
423
|
+
updated_at: Last update
|
424
|
+
|
425
|
+
ar_mail:
|
426
|
+
table_title: Mails
|
427
|
+
tab1: Message
|
428
|
+
tab2: Recipients
|
429
|
+
tab3: Other
|
430
|
+
choices_for_status: 'Preparing:0,Ready to send:1,Sending:2,Error:3,Completed:10'
|
431
|
+
|
432
|
+
subject: Subject
|
433
|
+
body: Body
|
434
|
+
from: From
|
435
|
+
to_test: Test email
|
436
|
+
to_list: Mail lists
|
437
|
+
to_test: Mail addresses
|
438
|
+
schedule: Schedule send
|
439
|
+
send_time: Time send
|
440
|
+
status: Status
|
441
|
+
css: CSS
|
442
|
+
|
443
|
+
ar_mail_list:
|
444
|
+
table_title: Mail lists
|
445
|
+
|
446
|
+
name: Name
|
447
|
+
description: Description
|
448
|
+
params: Parameters
|
449
|
+
active: Active
|
450
|
+
|
451
|
+
ar_mail_address:
|
452
|
+
table_title: Mail addresses
|
453
|
+
|
454
|
+
email: e-Mail
|
455
|
+
ar_user_id: User
|
456
|
+
active: Active
|
457
|
+
reason: Not active reason
|
458
|
+
ar_mail_list_members: Mail lists
|
459
|
+
|
460
|
+
ar_mail_list_member:
|
461
|
+
table_title: Mail lists
|
462
|
+
|
463
|
+
ar_mail_list_id: Mail list
|
464
|
+
active: Active
|
465
|
+
reason: Not active reason
|
466
|
+
|
467
|
+
ar_big_table:
|
468
|
+
table_title: Big Table
|
469
|
+
|
470
|
+
key: Key
|
471
|
+
description: Description
|
472
|
+
site_id: Site
|
473
|
+
ar_big_table_values: Values
|
474
|
+
active: Active
|
475
|
+
|
476
|
+
ar_big_table_value:
|
477
|
+
table_title: Big Table - values
|
478
|
+
|
479
|
+
value: Value
|
480
|
+
description: Value description
|
481
|
+
ar_big_table_locales: Locales
|
482
|
+
active: Active
|
483
|
+
|
484
|
+
ar_big_table_locale:
|
485
|
+
table_title: Big Table - locales
|
486
|
+
|
487
|
+
locale: Locale
|
488
|
+
description: Value description
|
489
|
+
|
490
|
+
ar_journal:
|
491
|
+
table_title: Update journal
|
492
|
+
1ids: Identification
|
493
|
+
2diff: Difference
|
494
|
+
|
495
|
+
operation: Operation
|
496
|
+
ip: IP address
|
497
|
+
time: Update time
|
498
|
+
site_id: Site
|
499
|
+
user_id: User
|
500
|
+
tables: Table name
|
501
|
+
id: Record id
|
502
|
+
ids: Parent ids
|
503
|
+
diff: Differences
|
504
|
+
|
505
|
+
ar_ident:
|
506
|
+
table_title: Additional identification
|
507
|
+
|
508
|
+
key: Id key
|
509
|
+
value: Value
|
510
|
+
|
511
|
+
ar_key_value_store:
|
512
|
+
table_title: Numbering store
|
513
|
+
|
514
|
+
key: Id key
|
515
|
+
value: Value
|
516
|
+
|
517
|
+
ar_filter:
|
518
|
+
table_title: Filters definitions for browsing tables
|
519
|
+
|
520
|
+
ar_user_id: User name
|
521
|
+
table: Collection name
|
522
|
+
description: Description
|
523
|
+
filter: Filter definition
|
524
|
+
public: Is public
|
525
|
+
sort: Default sort
|
526
|
+
|
527
|
+
ar_memory:
|
528
|
+
fields: General
|
529
|
+
ztab: Advanced
|
530
|
+
ar_element: Element name
|
531
|
+
|
532
|
+
ar_removed_url:
|
533
|
+
table_title: URLs removed from site
|
534
|
+
|
535
|
+
url: URL
|
536
|
+
description: Description
|
537
|
+
ar_site_id: Site
|
538
|
+
updated_at: Updated
|
539
|
+
|
540
|
+
ar_gallery:
|
541
|
+
table_title: Picture gallery documents
|
542
|
+
|
543
|
+
title: Title
|
544
|
+
description: Description
|
545
|
+
picture: Big picture
|
546
|
+
thumbnail: Small picture
|
547
|
+
doc_id: Document
|
548
|
+
order: Order
|
549
|
+
active: Active
|
550
|
+
created_at: Created
|
551
|
+
|
552
|
+
ar_json_ld:
|
553
|
+
table_title: Schema data
|
554
|
+
choices_for_type: Corporate contact:Organization,Contact:ContactPoint
|
555
|
+
|
556
|
+
name: Name
|
557
|
+
type: Type
|
558
|
+
data: Data
|
559
|
+
created_at: Created
|
560
|
+
updated_at: Updated
|
561
|
+
ar_json_lds: Schema sub element
|
562
|
+
active: Active
|
563
|
+
|
564
|
+
|
565
|
+
ar_image:
|
566
|
+
table_title: Images manager
|
567
|
+
|
568
|
+
upload_file: Upload
|
569
|
+
name: File name
|
570
|
+
short: Short description
|
571
|
+
text: Description text
|
572
|
+
keep_original: Keep original
|
573
|
+
size_o: Original dimension
|
574
|
+
size_l: Large dimension
|
575
|
+
size_m: Medium dimension
|
576
|
+
size_s: Small dimension
|
577
|
+
size_ls: Large dimension
|
578
|
+
size_ms: Medium dimension
|
579
|
+
size_ss: Small dimension
|
580
|
+
offset_lx: X offset
|
581
|
+
offset_ly: Y offset
|
582
|
+
offset_mx: X offset
|
583
|
+
offset_my: Y offset
|
584
|
+
offset_sx: X offset
|
585
|
+
offset_sy: Y offset
|
586
|
+
preview_s: Image
|
587
|
+
preview_m: Image
|
588
|
+
preview_l: Image
|
589
|
+
categories: Categories
|
590
|
+
cats_input: Categories
|
591
|
+
categories_line: Categories
|
592
|
+
created_by: Uploaded by
|
593
|
+
|
594
|
+
ar_setup:
|
595
|
+
table_title: Applications settings
|
596
|
+
tab0: Options
|
597
|
+
tab00: Form
|
598
|
+
|
599
|
+
name: Setup name
|
600
|
+
form: Form
|
601
|
+
data: Data
|
602
|
+
editors: Editors
|
603
|
+
|
604
|
+
# help for forms #####################################################
|
605
|
+
|
606
|
+
help:
|
607
|
+
ar_site:
|
608
|
+
name: Name of the site eg. www.mysite.com
|
609
|
+
description: Short description of site
|
610
|
+
homepage_link: Shortcut link when just site name is in the url
|
611
|
+
error_link: Link to error page
|
612
|
+
css: Site wide CSS
|
613
|
+
header: Additional data used in page html header
|
614
|
+
route_name: Default route name for creating page link. ex. page. Leave blank if not used.
|
615
|
+
page_title: Default page title displayed in browser's top menu when title can not be extracted from document
|
616
|
+
page_table: Name of table holding data for pages
|
617
|
+
page_class: Rails model class name which defines table holding pages data usually DcPage
|
618
|
+
menu_class: Rails model class name which defines table holding menu data usually DcMenu
|
619
|
+
site_layout: Rails layout used to draw response. This is by default content layout.
|
620
|
+
files_directory: Directory name where uploaded files are located
|
621
|
+
logo: Logotype picture for the site
|
622
|
+
favicon: Favicon image. Enter file name relative to public directory.
|
623
|
+
ar_policies: Access policies defined for the site
|
624
|
+
active: Is the site active
|
625
|
+
settings: Various site settings
|
626
|
+
menu_name: Menu name for this site
|
627
|
+
ck_config: CK editor configuration javascript file
|
628
|
+
ck_css: CK editor configuration CSS file
|
629
|
+
alias_for: Is alias name for entered site name
|
630
|
+
rails_view: Rails view filename used as standard design
|
631
|
+
design: Standard design can also be defined at the site level
|
632
|
+
ar_parts: Parts contained in site
|
633
|
+
request_processor: Method which will provide output instead of ar_process_default_request
|
634
|
+
inherit_policy: Use policy defined on other site
|
635
|
+
|
636
|
+
ar_user:
|
637
|
+
username: Username
|
638
|
+
title: Title (dr, mag)
|
639
|
+
first_name: Users first name
|
640
|
+
last_name: Users last name
|
641
|
+
name: Name colected from firstname, title and lastname
|
642
|
+
address: Home address
|
643
|
+
post: Post and post city
|
644
|
+
country: Country
|
645
|
+
phone: Phone number
|
646
|
+
email: e-Mail address
|
647
|
+
picture: Picture file name
|
648
|
+
birthdate: Date of birth
|
649
|
+
about: Short description of user
|
650
|
+
last_visit: Users last visit
|
651
|
+
active: Account is active
|
652
|
+
valid_from: Account is valid from
|
653
|
+
valid_to: Account is valid until
|
654
|
+
updated_by: Account last updated by
|
655
|
+
group: This is group account
|
656
|
+
member: User is member in selected groups
|
657
|
+
member_a: User is member in selected groups
|
658
|
+
ar_user_roles: Roles for this user
|
659
|
+
password: Password
|
660
|
+
password_confirmation: Password confirmation
|
661
|
+
|
662
|
+
ar_user_role:
|
663
|
+
ar_role_id: User role
|
664
|
+
has_cms_menu: User is allowed to use CMS menu
|
665
|
+
valid_from: Role is valid from
|
666
|
+
valid_to: Role is valid to
|
667
|
+
updated_by: Role last updated b
|
668
|
+
active: Role is active
|
669
|
+
|
670
|
+
ar_design:
|
671
|
+
name: Unique design name
|
672
|
+
description: Short description of design
|
673
|
+
body: Body of design which will be rendered like any Rails view
|
674
|
+
params: Parameters specific to design
|
675
|
+
css: CSS for design
|
676
|
+
code: Ruby code to be evaluated when page is loading
|
677
|
+
author: Creater if design
|
678
|
+
updated_by: Last updated by
|
679
|
+
active: Is the design active
|
680
|
+
ar_parts: Parts of design
|
681
|
+
rails_view: Rails view (file) name which will be used to render design
|
682
|
+
site_id: Select site name if this design belongs to singe site
|
683
|
+
|
684
|
+
ar_poll:
|
685
|
+
name: Unique poll name
|
686
|
+
title: Title for the poll
|
687
|
+
sub_text: Short description of the poll
|
688
|
+
operation: Operation performed on submit
|
689
|
+
parameters: Aditional parameters for operation
|
690
|
+
display: How label is positioned related to input field
|
691
|
+
css: CSS specific to this poll
|
692
|
+
js: Javascript code specific to this poll
|
693
|
+
pre_display: Method to be run before poll is displayed. Usually for initial filling of form.
|
694
|
+
valid_from: Pole is valid from
|
695
|
+
valid_to: Pole is valid to
|
696
|
+
ar_poll_items: Items for this poll
|
697
|
+
captcha_type: Catpcha type name if captcha is used
|
698
|
+
form: You can specified input items same as input fields on AgileRails form.
|
699
|
+
|
700
|
+
ar_poll_item:
|
701
|
+
name: Name (alias) of returned field name
|
702
|
+
text: Caption of item
|
703
|
+
field_type: Input item type
|
704
|
+
Size: Input item size
|
705
|
+
mandatory: Item entry is mandatory
|
706
|
+
separator: Separator between items
|
707
|
+
options: Options for the item. Depends on item type.
|
708
|
+
order: Order of item on poll
|
709
|
+
active: Item is active
|
710
|
+
|
711
|
+
ar_poll_result:
|
712
|
+
ar_poll_id: Poll name
|
713
|
+
created_at: Date when poll result was submited
|
714
|
+
data: Data saved in YAML format
|
715
|
+
confirmed: Poll data was confirmed. Ex. User must click on link in email.
|
716
|
+
|
717
|
+
ar_policy:
|
718
|
+
name: Unique policy name
|
719
|
+
description: Description for this policy
|
720
|
+
is_default: This is default policy for the site
|
721
|
+
active: Policy is active
|
722
|
+
ar_policy_rules: Policy rules
|
723
|
+
message: Error message when blocked by this policy
|
724
|
+
|
725
|
+
ar_policy_rule:
|
726
|
+
active: Rule is active
|
727
|
+
updated_by: Last updated by
|
728
|
+
ar_role_id: User's role
|
729
|
+
permission: Access permission
|
730
|
+
|
731
|
+
ar_role:
|
732
|
+
name: Role name
|
733
|
+
system_name: System role name if required by application
|
734
|
+
active: Role is active
|
735
|
+
|
736
|
+
ar_simple_menu:
|
737
|
+
description: Short description of menu
|
738
|
+
css: CSS for this menu
|
739
|
+
div_name: Div id name around menu area
|
740
|
+
link_prepend: Link field usually holds direct link to document. Prepand field holds data, that has to be prepanded to the link.
|
741
|
+
active: Active
|
742
|
+
ar_simple_menu: Menu items
|
743
|
+
ar_site_id: Site to which this menu belongs to
|
744
|
+
|
745
|
+
ar_simple_menu_item:
|
746
|
+
caption: Caption of menu
|
747
|
+
picture: Picture for the menu
|
748
|
+
link: Link called when menu is chosen
|
749
|
+
link_prepend: Link field usually holds direct link to document. Prepand field holds data, that has to be prepanded to the link.
|
750
|
+
target: Target window for the link. Leave empty when same window.
|
751
|
+
order: Order on which menu item is shown. Lower number means prior position.
|
752
|
+
submenu: Submenu captions in form (caption\link).
|
753
|
+
css: CSS only for this menu item
|
754
|
+
active: Is active
|
755
|
+
policy_id: Menu item will be diplayed according to this policy
|
756
|
+
|
757
|
+
ar_menu:
|
758
|
+
description: Short description of menu
|
759
|
+
css: CSS for this menu
|
760
|
+
div_name: Div id name around menu area
|
761
|
+
active: Active
|
762
|
+
link_prepend: Link field usually holds direct link to document. Prepand field holds data, that has to be prepanded to the link.
|
763
|
+
ar_menu_items: Menu items
|
764
|
+
ar_site_id: Site to which this menu belongs to
|
765
|
+
|
766
|
+
ar_menu_item:
|
767
|
+
caption: Caption of menu item
|
768
|
+
picture: Picture for the menu
|
769
|
+
link: Link called when menu is chosen
|
770
|
+
link_prepend: Link field usually holds direct link to document. Prepand field holds data, that has to be prepanded to the link.
|
771
|
+
target: Target window for the link. Leave empty when same window.
|
772
|
+
order: Order on which menu item is shown. Lower number means prior position.
|
773
|
+
ar_menu_items: Submenu items
|
774
|
+
page_id: Page link
|
775
|
+
css: CSS only for this menu item
|
776
|
+
active: Is active
|
777
|
+
policy_id: Menu item will be diplayed according to this policy
|
778
|
+
hidden: Menu item will not be displayed, but it is active
|
779
|
+
clas: HTML class will be applied to menu item
|
780
|
+
content: Submenu will be displayed as HTML content
|
781
|
+
|
782
|
+
ar_page:
|
783
|
+
subject: Articles subject
|
784
|
+
link: Friendly link defined
|
785
|
+
sub_subject: Sub subject, short description of text
|
786
|
+
picture: Picture used in conjunction with page
|
787
|
+
gallery: Picture gallery id used with page
|
788
|
+
alt_link: Alternative link, by which page could be found
|
789
|
+
css: CSS only for this menu page
|
790
|
+
script: Javascript only for this page
|
791
|
+
params: Special parameters which may come handy when displaying page
|
792
|
+
menu_id: Top menu under where this page is displayed
|
793
|
+
author_id: Author of the article
|
794
|
+
author_name: Author of the article
|
795
|
+
publish_date: Publish date
|
796
|
+
valid_from: Article is valid from date
|
797
|
+
valid_to: Article is valid to date
|
798
|
+
comments: Comments on this article are allowed
|
799
|
+
active: Page is active
|
800
|
+
ar_parts: Parts of the article
|
801
|
+
policy_id: Access policy for the page
|
802
|
+
ar_site_id: The page belongs to one site only
|
803
|
+
ar_design_id: Design used for rendering page
|
804
|
+
ar_poll_id: Select poll, if poll is to be used with page
|
805
|
+
kats: Categories for this article
|
806
|
+
body: Content of this page
|
807
|
+
if_url: URL adress of page which will be loaded into IFrame
|
808
|
+
if_width: IFrame area width
|
809
|
+
if_height: IFrame area height
|
810
|
+
if_scroll: Scroll bars visibility
|
811
|
+
if_border: Thickness of border around IFrame area. When 0, no border is shown.
|
812
|
+
if_params: Parameters added to URL address
|
813
|
+
if_id: CSS id of IFrame object
|
814
|
+
if_class: CSS class of IFrame object
|
815
|
+
_update_menu: Update link in selected menu to point to this document
|
816
|
+
div_class: Class name given to top level div
|
817
|
+
|
818
|
+
ar_seo:
|
819
|
+
title: SEO optimised page title
|
820
|
+
meta_description: SEO optimised page description
|
821
|
+
canonical_link: Canonical link the, when page uses aditional parameters
|
822
|
+
ar_json_lds: Schema data available for this web page
|
823
|
+
|
824
|
+
ar_part:
|
825
|
+
name: Parts can be searched by name or by id
|
826
|
+
description: Short description of part
|
827
|
+
link: Link when part can be accessed with pretty link
|
828
|
+
picture: Picture contents of part
|
829
|
+
thumbnail: Small version of picture if available
|
830
|
+
body: Content of this part
|
831
|
+
css: CSS
|
832
|
+
script: Script, if script is included in part
|
833
|
+
script_type: Script type
|
834
|
+
piece_id: Piece name if part is connected to piece
|
835
|
+
div_id: Div id (position name) where this part is displayed as defined on design
|
836
|
+
order: Order between parts
|
837
|
+
updated_by: Last updated by
|
838
|
+
updated_at: Last updated at
|
839
|
+
active: Part is active
|
840
|
+
valid_from: Part is valid from
|
841
|
+
valid_to: Part is valid to
|
842
|
+
policy_id: Access policy for the part
|
843
|
+
|
844
|
+
ar_piece:
|
845
|
+
name: Unique name for piece
|
846
|
+
description: Short description of piece
|
847
|
+
picture: Picture contents of piece
|
848
|
+
link: Link when piece can be accessed with pretty link
|
849
|
+
thumbnail: Small version of picture if available
|
850
|
+
body: Content of this piece
|
851
|
+
css: CSS
|
852
|
+
script: Script, if script is included in piece
|
853
|
+
script_type: Script type
|
854
|
+
site_id: Site name where this piece will belong to
|
855
|
+
div_id: Div (position name) id on design where this piece is rendered
|
856
|
+
order: Order to be used when pieces are positioned in the same div (location)
|
857
|
+
updated_by: Last updated by
|
858
|
+
updated_at: Last updated at
|
859
|
+
active: Piece is active
|
860
|
+
valid_from: Piece is valid from
|
861
|
+
valid_to: Piece is valid to
|
862
|
+
|
863
|
+
ar_ad:
|
864
|
+
position: Position (div id) where this ad will be displayed
|
865
|
+
description: Short description
|
866
|
+
type: Content type of add
|
867
|
+
script: JavaScript script, when script type
|
868
|
+
link: Link to page (site, dokument) when ad is clicked
|
869
|
+
file: Picture or flash filename
|
870
|
+
height: Height of ad
|
871
|
+
width: Width of ad
|
872
|
+
valid_from: Ad is valid from
|
873
|
+
valid_to: Ad is valid to
|
874
|
+
displays: Maximum number of time this add is displayed
|
875
|
+
clicks: Maximum number of clicks this ad will receive
|
876
|
+
priority: Priority. Higher priority means ad is shown more often. Priority is calculated only between candidats to be displayed.
|
877
|
+
displayed: No. of times this add has been displayed
|
878
|
+
clicked: No. of times this ad has been clicked
|
879
|
+
active: Ad is active
|
880
|
+
updated_by: Record last updated by
|
881
|
+
ar_site_id: Ad is valid for the site
|
882
|
+
link_target: Define if link is open in new window or same
|
883
|
+
|
884
|
+
ar_permission:
|
885
|
+
table_name: Permission is valid for collection
|
886
|
+
is_default: This is default permission for all tables in database
|
887
|
+
active: Permission is active
|
888
|
+
ar_policy_rules: Defined policy rules
|
889
|
+
ar_permission_rules: Rules for access table data granular for user roles
|
890
|
+
|
891
|
+
ar_permission_rule:
|
892
|
+
active: Is active
|
893
|
+
ar_role_id: User's role
|
894
|
+
permission: Access permission
|
895
|
+
|
896
|
+
ar_folder_permission:
|
897
|
+
folder_name: Folder name
|
898
|
+
is_default: Is default
|
899
|
+
inherited: Inherit permissions from parent
|
900
|
+
active: Permission is valid
|
901
|
+
ar_folder_rules: Folder access rules
|
902
|
+
|
903
|
+
ar_folder_rule:
|
904
|
+
ar_role_id: User role
|
905
|
+
permission: Permission on a folder
|
906
|
+
|
907
|
+
ar_link:
|
908
|
+
link: Link to be redirected to different page
|
909
|
+
params: Aditional parameters passed to document renderer
|
910
|
+
redirect: Redirect to another link
|
911
|
+
page_id: Page redirected to by this shortcut link
|
912
|
+
ar_site_id: Link is valid for site
|
913
|
+
active: Link is active
|
914
|
+
|
915
|
+
ar_category:
|
916
|
+
name: Category name
|
917
|
+
description: Additional description of category
|
918
|
+
ctype: Category type. Could be used for grouping categories.
|
919
|
+
order: Additional order, which can be used for sorting.
|
920
|
+
parent: Parent category. Leave blank if this is top level category.
|
921
|
+
active: Category is active.
|
922
|
+
ar_site_id: Category is valid only for site
|
923
|
+
updated_at: Last update
|
924
|
+
|
925
|
+
ar_mail:
|
926
|
+
subject: Message subject
|
927
|
+
body: Message body
|
928
|
+
from: Message sender
|
929
|
+
to_test: Address where test message will be sent
|
930
|
+
to_list: Mail addresses lists where message will be sent
|
931
|
+
to_address: Mail addresses where message will be sent
|
932
|
+
schedule: Message will be sent after this hour
|
933
|
+
send_time: Time when message was sent
|
934
|
+
status: Status of message
|
935
|
+
css: CSS added to final message
|
936
|
+
|
937
|
+
ar_mail_list:
|
938
|
+
name: Mail list name
|
939
|
+
description: Aditional description of mailing list
|
940
|
+
params: Aditional parameters for list
|
941
|
+
active: Mailing list is active
|
942
|
+
|
943
|
+
ar_mail_address:
|
944
|
+
email: email address
|
945
|
+
ar_user_id: User if user is listed in users database
|
946
|
+
active: Address is active
|
947
|
+
reason: Description of deactivation
|
948
|
+
ar_mail_list_members: email is a member of this mail lists
|
949
|
+
|
950
|
+
ar_mail_list_member:
|
951
|
+
ar_mail_list_id: Mail list
|
952
|
+
active: Address is active
|
953
|
+
reason: Description of deactivation
|
954
|
+
|
955
|
+
ar_big_table:
|
956
|
+
key: Key (ident) used to retrieve key/values
|
957
|
+
site_id: Data will be used only for defined site. If empty, then it is default for all sites in database.
|
958
|
+
active: This key is active
|
959
|
+
ar_big_table_values: Values defined by this key
|
960
|
+
|
961
|
+
ar_big_table_value:
|
962
|
+
value: Value
|
963
|
+
ar_big_table_locales: Locale translations for the value
|
964
|
+
locales: "Localized translation of value descripotion in YAML format. eg:<br>en: English<br>sl: Slovensko"
|
965
|
+
|
966
|
+
ar_journal:
|
967
|
+
operation: Operation
|
968
|
+
ip: ip address from where operation was performed
|
969
|
+
time: Time of operation
|
970
|
+
site_id: Site
|
971
|
+
user_id: User
|
972
|
+
tables: Table name
|
973
|
+
id: Record id
|
974
|
+
ids: Parent ids
|
975
|
+
diff: Differences
|
976
|
+
|
977
|
+
ar_ident:
|
978
|
+
key: Key which defines ident
|
979
|
+
value: Ident value
|
980
|
+
|
981
|
+
ar_key_value_store:
|
982
|
+
key: Identification key
|
983
|
+
value: Stored value
|
984
|
+
|
985
|
+
ar_filter:
|
986
|
+
ar_user_id: User name when filter is for user only
|
987
|
+
table: Collection to which filter apply
|
988
|
+
description: Filter description
|
989
|
+
filter: Filter definition in YAML
|
990
|
+
public: Filter is available to all users
|
991
|
+
sort: Default sort when selecting filter
|
992
|
+
|
993
|
+
ar_removed_url:
|
994
|
+
url: URL which was removed from site
|
995
|
+
description: Reason why was URL removed
|
996
|
+
ar_site_id: Site that URL belongs to
|
997
|
+
|
998
|
+
ar_gallery:
|
999
|
+
title: Picture title
|
1000
|
+
description: Description of picture
|
1001
|
+
picture: Big picture file name
|
1002
|
+
thumbnail: Small picture file name
|
1003
|
+
doc_id: Document associated with gallery
|
1004
|
+
order: Order
|
1005
|
+
active: Document is active
|
1006
|
+
|
1007
|
+
ar_json_ld:
|
1008
|
+
name: Name of schema element
|
1009
|
+
type: Type of schema structure
|
1010
|
+
data: Data in YAML format
|
1011
|
+
active: Document is active
|
1012
|
+
add_schema: Add new schema
|
1013
|
+
add_error: Schema element %{schema} already exists!
|
1014
|
+
|
1015
|
+
ar_image:
|
1016
|
+
upload_file: Select file to upload
|
1017
|
+
name: Original file name
|
1018
|
+
short: Short image description
|
1019
|
+
text: Longer image description text
|
1020
|
+
keep_original: Keep original image
|
1021
|
+
size_o: Dimension of original image
|
1022
|
+
size_l: Dimension for large image
|
1023
|
+
size_m: Dimension form medium size image
|
1024
|
+
size_s: Dimension for small size image
|
1025
|
+
categories: Categorise images on specific keywords
|
1026
|
+
created_by: Image was uploaded by
|
1027
|
+
|
1028
|
+
ar_setup:
|
1029
|
+
name: Setup name (typically application or module name)
|
1030
|
+
form: Form definition for entering settings. Edit fields must be defined on tabs
|
1031
|
+
data: Actual data saved
|
1032
|
+
editors: List of users, which can edit this setup beside administrators
|