rsence-pre 2.3.0.17 → 2.3.0.18
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.
- data/VERSION +1 -1
- data/conf/client_pkg.yaml +208 -0
- metadata +2 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.0.
|
1
|
+
2.3.0.18.pre
|
@@ -0,0 +1,208 @@
|
|
1
|
+
---
|
2
|
+
#### Client package build configuration
|
3
|
+
|
4
|
+
# Source directories to scan
|
5
|
+
:src_dirs: []
|
6
|
+
|
7
|
+
# List of theme names to include and pack
|
8
|
+
:theme_names:
|
9
|
+
- default # Makes default_theme.js containing css and html templates
|
10
|
+
- bright # Makes bright_theme.js containing css and html templates
|
11
|
+
|
12
|
+
# List of packages to build
|
13
|
+
:packages:
|
14
|
+
|
15
|
+
# The core package, loaded by default using a script tag in index_html
|
16
|
+
core:
|
17
|
+
|
18
|
+
# RSence.*
|
19
|
+
- rsence_ns
|
20
|
+
|
21
|
+
- locale_settings # HLocaleSettings
|
22
|
+
|
23
|
+
# RSence.Core
|
24
|
+
- class # HClass
|
25
|
+
- elem # ELEM
|
26
|
+
- event # Event
|
27
|
+
- util_methods # UtilMethods
|
28
|
+
|
29
|
+
# RSence.Util
|
30
|
+
- sha # SHA
|
31
|
+
|
32
|
+
# RSence.Foundation
|
33
|
+
- system # HSystem
|
34
|
+
- valueresponder # HValueResponder
|
35
|
+
- application # HApplication
|
36
|
+
|
37
|
+
# COMM
|
38
|
+
- comm # COMM
|
39
|
+
- queue # COMM.Queue
|
40
|
+
- session # COMM.Session
|
41
|
+
- transporter # COMM.Transporter
|
42
|
+
- sessionwatcher # COMM.SessionWatcher
|
43
|
+
- urlresponder # COMM.URLResponder
|
44
|
+
- autosync # ( automatic sync setup )
|
45
|
+
- values # COMM.Values
|
46
|
+
- value # HValue
|
47
|
+
- jsloader # COMM.JSLoader
|
48
|
+
- json_renderer # COMM.JSONRenderer
|
49
|
+
- valuematrix # HValueMatrixInterface & HValueMatrix
|
50
|
+
- point # HPoint
|
51
|
+
- rect # HRect
|
52
|
+
- thememanager # HThemeManager
|
53
|
+
- markupview # HMarkupView
|
54
|
+
- morphanimation # HMorphAnimation
|
55
|
+
- viewdefaults # HViewDefaults
|
56
|
+
- view # HView
|
57
|
+
- eventresponder # HEventResponder
|
58
|
+
- dummyvalue # HDummyValue
|
59
|
+
- eventmanager # EVENT
|
60
|
+
- controldefaults # HControlDefaults
|
61
|
+
- control # HControl
|
62
|
+
- valueaction # HValueAction
|
63
|
+
- dyncontrol # HDynControl
|
64
|
+
- centerview # HCenterView
|
65
|
+
- scrollview # HScrollView
|
66
|
+
- inlineview # HInlineView
|
67
|
+
|
68
|
+
# The default collection of simple control widgets (components)
|
69
|
+
controls:
|
70
|
+
- button # HButton & HClickValueButton
|
71
|
+
- checkbox # HCheckbox
|
72
|
+
- onoffbutton # HOnOffButton
|
73
|
+
- radiobutton # HRadioButton
|
74
|
+
- stringview # HStringView
|
75
|
+
- textcontrol # HTextControl
|
76
|
+
- numerictextcontrol # HNumericTextControl
|
77
|
+
- passwordcontrol # HPasswordControl
|
78
|
+
- textarea # HTextArea
|
79
|
+
- searchfield # HSearchField
|
80
|
+
- uploader # HUploader
|
81
|
+
- slider # HSlider
|
82
|
+
- vslider # HVSlider
|
83
|
+
- progressbar # HProgressBar
|
84
|
+
- progressindicator # HProgressIndicator
|
85
|
+
- imageview # HImageView
|
86
|
+
- stepper # HStepper
|
87
|
+
- validatorview # HValidatorView
|
88
|
+
- window # HWindow
|
89
|
+
- tab # HTab & HTabView & HTabItem
|
90
|
+
- sheet # HSheet
|
91
|
+
- alert_sheet # HAlertSheet
|
92
|
+
- confirm_sheet # HConfirmSheet
|
93
|
+
|
94
|
+
# Server error message application ( the Reload / Reset Session dialog )
|
95
|
+
servermessage:
|
96
|
+
- reloadapp # ReloadApp
|
97
|
+
|
98
|
+
# Special package for Internet Explorer 6.0
|
99
|
+
iefix:
|
100
|
+
- iefix
|
101
|
+
|
102
|
+
# Date and time -related control widgets (components)
|
103
|
+
# These are not complete; they are still under development
|
104
|
+
# and will be included in the controls package when finalized.
|
105
|
+
datetime:
|
106
|
+
- momentjs # moment.js by Tim Wood momentjs.com
|
107
|
+
- datetimevalue # HDateTime; going to be deprecated or re-factored
|
108
|
+
- calendar # HCalendar
|
109
|
+
- calendar_pulldown # HCalenderPulldown
|
110
|
+
- timesheet # HTimeSheet
|
111
|
+
- timesheet_item # HTimeSheetItem
|
112
|
+
- timesheet_item_edit # HTimeSheetItemEditor
|
113
|
+
- datepicker # HDatePicker
|
114
|
+
- timepicker # HTimePicker
|
115
|
+
- datetimepicker # HDateTimePicker
|
116
|
+
|
117
|
+
# List related control widgets (components)
|
118
|
+
# These are not complete; they are still under development
|
119
|
+
# and will be included in the controls package when finalized.
|
120
|
+
lists:
|
121
|
+
- listitems # HListItems
|
122
|
+
- checkboxlist # HCheckboxList
|
123
|
+
- radiobuttonlist # HRadiobuttonList
|
124
|
+
- propertylist # HPropertyList
|
125
|
+
- propertylisteditor # HPropertyEditor
|
126
|
+
- minimenu # HMiniMenu
|
127
|
+
- minimenuitem # HMiniMenuItem
|
128
|
+
- popupmenu # HPopupMenu
|
129
|
+
- menuitem # HMenuItem
|
130
|
+
|
131
|
+
tables:
|
132
|
+
- table # HTable
|
133
|
+
|
134
|
+
# Graphics related control widgets (components)
|
135
|
+
# These are not complete and there will probably never be any
|
136
|
+
# serious efforts to support legacy browsers, like old IE versions,
|
137
|
+
# unless someone is interested in sponsoring such efforts.
|
138
|
+
graphics:
|
139
|
+
- svgcontrol
|
140
|
+
|
141
|
+
# Chat related components
|
142
|
+
chat:
|
143
|
+
- speech_bubble # HSpeechBubble
|
144
|
+
- chat_panel # HChatPanel
|
145
|
+
|
146
|
+
# Special packages that include other packages
|
147
|
+
:compound_packages:
|
148
|
+
rsence:
|
149
|
+
- core
|
150
|
+
- default_theme
|
151
|
+
- controls
|
152
|
+
- lists
|
153
|
+
- datetime
|
154
|
+
- tables
|
155
|
+
- graphics
|
156
|
+
- chat
|
157
|
+
- servermessage
|
158
|
+
std_widgets:
|
159
|
+
- default_theme
|
160
|
+
- controls
|
161
|
+
- lists
|
162
|
+
- datetime
|
163
|
+
- tables
|
164
|
+
- graphics
|
165
|
+
- chat
|
166
|
+
- servermessage
|
167
|
+
|
168
|
+
# List of variables and other names beginning
|
169
|
+
# with a underscore that should not be obfuscated
|
170
|
+
:reserved_names:
|
171
|
+
- _ID
|
172
|
+
- _id
|
173
|
+
- _WIDTH
|
174
|
+
- _width
|
175
|
+
- _HEIGHT
|
176
|
+
- _height
|
177
|
+
- _
|
178
|
+
|
179
|
+
# List of file extensions considered graphics image types.
|
180
|
+
# Used for theme graphics inclusion.
|
181
|
+
:gfx_formats:
|
182
|
+
- .jpg
|
183
|
+
- .gif
|
184
|
+
- .png
|
185
|
+
- .swf
|
186
|
+
- .svg
|
187
|
+
- .pdf
|
188
|
+
|
189
|
+
# If disabled, makes packages out of single source bundles automatically
|
190
|
+
:dont_pack_undefined: true
|
191
|
+
|
192
|
+
# Replacement prefix for obfuscated names
|
193
|
+
:repl_prefix: _
|
194
|
+
|
195
|
+
# If enabled, doesn't obfuscate code (useful for debugging)
|
196
|
+
:no_obfuscation: false
|
197
|
+
|
198
|
+
# If enabled, doesn't remove whitespace (useful for debugging)
|
199
|
+
:no_whitespace_removal: false
|
200
|
+
|
201
|
+
# If enabled, doesn't make GNUzipped packages
|
202
|
+
:no_gzip: false
|
203
|
+
|
204
|
+
# The strategy for gzip, a number between 0 and 9
|
205
|
+
# - 0 means largest size, but fast compression
|
206
|
+
# - 9 means smallest size, but slow compression
|
207
|
+
# - any number in between is a compromise
|
208
|
+
:gz_strategy: 9
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsence-pre
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.0.
|
4
|
+
version: 2.3.0.18
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -120,6 +120,7 @@ files:
|
|
120
120
|
- setup/welcome/text/welcome.html
|
121
121
|
- setup/welcome/values.yaml
|
122
122
|
- setup/welcome/welcome.rb
|
123
|
+
- conf/client_pkg.yaml
|
123
124
|
- conf/default_conf.yaml
|
124
125
|
- conf/default_strings.yaml
|
125
126
|
- conf/rsence_command_strings.yaml
|