rsence-pre 2.3.0.16 → 2.3.0.17

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.
Files changed (37) hide show
  1. data/VERSION +1 -1
  2. data/conf/default_conf.yaml +53 -200
  3. data/js/chat/chat_panel/chat_panel.coffee +120 -0
  4. data/js/chat/speech_bubble/speech_bubble.coffee +56 -0
  5. data/js/chat/speech_bubble/themes/default/speech_bubble.css +84 -0
  6. data/js/chat/speech_bubble/themes/default/speech_bubble.html +7 -0
  7. data/js/chat/speech_bubble/themes/default/user_anon.png +0 -0
  8. data/js/comm/sessionwatcher/sessionwatcher.js +1 -1
  9. data/js/comm/values/values.js +2 -34
  10. data/js/controls/numerictextcontrol/numerictextcontrol.coffee +109 -0
  11. data/js/controls/onoffbutton/onoffbutton.coffee +44 -0
  12. data/js/controls/onoffbutton/themes/default/onoffbutton.css +50 -0
  13. data/js/controls/onoffbutton/themes/default/onoffbutton.html +10 -0
  14. data/js/controls/textcontrol/textcontrol.coffee +291 -0
  15. data/js/core/class/class.js +1 -1
  16. data/js/core/elem/elem.coffee +83 -1
  17. data/js/core/util/util_methods/util_methods.coffee +103 -0
  18. data/js/datetime/calendar/calendar.coffee +3 -0
  19. data/js/datetime/calendar_pulldown/calendar_pulldown.coffee +62 -0
  20. data/js/datetime/calendar_pulldown/themes/default/calendar_pulldown.css +16 -0
  21. data/js/datetime/calendar_pulldown/themes/default/calendar_pulldown.html +1 -0
  22. data/js/datetime/calendar_pulldown/themes/default/calendar_pulldown.png +0 -0
  23. data/js/datetime/datepicker/datepicker.coffee +59 -0
  24. data/js/datetime/datetimepicker/datetimepicker.coffee +7 -0
  25. data/js/datetime/datetimepicker/datetimepicker.js +2 -2
  26. data/js/datetime/momentjs/momentjs.js +1400 -0
  27. data/js/datetime/timepicker/timepicker.coffee +7 -0
  28. data/js/foundation/application/application.js +1 -1
  29. data/js/foundation/control/valueaction/valueaction.js +8 -1
  30. data/js/foundation/control/valueresponder/valueresponder.js +1 -1
  31. data/js/foundation/view/morphanimation/morphanimation.js +9 -3
  32. data/js/foundation/view/view.js +43 -33
  33. data/js/views/scrollview/scrollview.js +10 -0
  34. data/lib/rsence/default_config.rb +10 -6
  35. data/plugins/client_pkg/lib/client_pkg_build.rb +2 -2
  36. metadata +22 -4
  37. data/js/controls/textcontrol/textcontrol.js +0 -420
@@ -0,0 +1,7 @@
1
+ HTimePicker = HDatePicker.extend
2
+ controlDefaults: HDatePicker.prototype.controlDefaults.extend
3
+ fieldFormat: 'HH:mm:ss'
4
+ refreshAfter: 3
5
+ preserveTime: false
6
+ preserveDate: true
7
+ calendarPicker: false
@@ -24,7 +24,7 @@
24
24
  **
25
25
  ***/
26
26
  var//RSence.Foundation
27
- HApplication = HClass.extend({
27
+ HApplication = UtilMethods.extend({
28
28
 
29
29
  elemId: 0,
30
30
 
@@ -14,7 +14,14 @@ HValueAction = HClass.extend({
14
14
  if( _options.value ){
15
15
  this.value = _options.value;
16
16
  }
17
- if( _options.valueObj ){
17
+ if( _options.bind ){
18
+ var _valueObj = _options.bind;
19
+ if( typeof _valueObj == 'string' ){
20
+ _valueObj = HVM.values[ _valueObj ];
21
+ }
22
+ _valueObj.bind( this );
23
+ }
24
+ else if( _options.valueObj ){
18
25
  _options.valueObj.bind( this );
19
26
  }
20
27
  if( this.parent.addView instanceof Function ){
@@ -56,7 +56,7 @@ HValueResponder = HClass.extend({
56
56
  if(_value !== undefined && this['valueObj'] && this.valueDiffers(_value)) {
57
57
  var _valueManager = COMM.Values;
58
58
  this.value = _value;
59
- if( !~_valueManager._builtins.indexOf( _valueManager.type(_value) ) ){
59
+ if( !~_valueManager._builtinTypeChr.indexOf( _valueManager.type(_value) ) ){
60
60
  this.valueObj.set( _valueManager.clone( _value ) );
61
61
  }
62
62
  else {
@@ -226,19 +226,25 @@ HMorphAnimation = HClass.extend({
226
226
  *
227
227
  **/
228
228
  onAnimationStart: function() {
229
-
229
+ if(typeof this.startAnimation == 'function'){
230
+ this.startAnimation();
231
+ }
230
232
  },
231
233
 
232
234
  /** Extend the onAnimationEnd method, if you want to do something special
233
235
  * when an animation on this view is finished.
234
236
  **/
235
237
  onAnimationEnd: function() {
236
-
238
+ if(typeof this.endAnimation == 'function'){
239
+ this.endAnimation();
240
+ }
237
241
  },
238
242
 
239
243
  /** Extend this method if functionality is desired upon cancellation of animation.
240
244
  **/
241
245
  onAnimationCancel: function() {
242
-
246
+ if(typeof this.cancelAnimation == 'function'){
247
+ this.cancelAnimation();
248
+ }
243
249
  }
244
250
  });
@@ -14,16 +14,15 @@
14
14
  ** = Usage
15
15
  ** var myAppInstance = HApplication.nu();
16
16
  ** var rect1 = [10, 10, 100, 100];
17
- ** var myViewInstance = HView.nu( rect1, myAppInstance );
18
- ** var myViewInstance.setStyle('background-color','#ffcc00');
17
+ ** var myViewInstance = HView.nu( rect1, myAppInstance, { style: { backgroundColor: '#fc0' } } );
19
18
  ** var rect2 = [10, 10, 70, 70];
20
- ** var mySubView1 = HView.nu( rect2, myViewIntance );
21
- ** var rect3 [20, 20, 50, 50];
22
- ** var mySubView2 = HView.nu( rect3, mySubView1 );
19
+ ** var mySubView1 = HView.nu( rect2, myViewInstance, { style: { backgroundColor: '#cfc' } } );
20
+ ** var rect3 = [20, 20, 50, 50];
21
+ ** var mySubView2 = HView.nu( rect3, mySubView1, { style: { backgroundColor: '#000' } } );
23
22
  **
24
23
  ***/
25
24
  var//RSence.Foundation
26
- HView = HClass.extend({
25
+ HView = UtilMethods.extend({
27
26
 
28
27
  isView: true, // attribute to check if the object is a view
29
28
  isCtrl: false, // attribute to check for if the object is a control
@@ -129,7 +128,7 @@ HView = HClass.extend({
129
128
  optimizeWidthOnRefresh: true,
130
129
 
131
130
  /** The parent is the +_parent+ supplied to the constructor.
132
- * This is a complete object reference to the parent's namespace.
131
+ * This is a complete object reference to the parent's name-space.
133
132
  **/
134
133
  parent: null,
135
134
 
@@ -156,17 +155,17 @@ HView = HClass.extend({
156
155
  /** The app is the reference of the app process acting as
157
156
  * the root controller of the view tree of which this view is a
158
157
  * member.
159
- * This is a complete object reference to the app's namespace.
158
+ * This is a complete object reference to the app's name-space.
160
159
  **/
161
160
  app: null,
162
161
 
163
- /** The views array contains a list of subviews of this view
162
+ /** The views array contains a list of sub-views of this view
164
163
  * by id. To access the object reference, use the +HSystem.views+
165
164
  * array with the id.
166
165
  **/
167
166
  views: null,
168
167
 
169
- /** The viewsZOrder array contains a list of subviews ordered by
168
+ /** The viewsZOrder array contains a list of sub-views ordered by
170
169
  * zIndex. To change the order, use the bringToFront,
171
170
  * sendToBack, bringForwards, sendBackwards, bringToFrontOf and
172
171
  * sentToBackOf methods.
@@ -331,13 +330,13 @@ HView = HClass.extend({
331
330
  this.appId = this.parent.appId;
332
331
  this.app = HSystem.apps[this.appId];
333
332
 
334
- // subview-ids, index of HView-derived objects that are found in HSystem.views[viewId]
333
+ // sub-view ids, index of HView-derived objects that are found in HSystem.views[viewId]
335
334
  this.views = [];
336
335
 
337
- // Subviews in Z order.
336
+ // Sub-views in Z order.
338
337
  this.viewsZOrder = [];
339
338
 
340
- // Keep the view (and its subviews) hidden until its drawn.
339
+ // Keep the view (and its sub-views) hidden until its drawn.
341
340
  this._createElement();
342
341
 
343
342
  // Set the geometry
@@ -731,17 +730,17 @@ HView = HClass.extend({
731
730
  if(this.options.html){
732
731
  this.setHTML(this.options.html);
733
732
  }
734
- // Extended draw for components to define/extend.
733
+ // Extended draw for components to define / extend.
735
734
  // This is preferred over drawSubviews, when defining
736
735
  // parts of a complex component.
737
736
  if(typeof this.extDraw === 'function'){
738
737
  this.extDraw();
739
738
  }
740
- // Extended draw for the purpose of drawing subviews.
739
+ // Extended draw for the purpose of drawing sub-views.
741
740
  if(typeof this.drawSubviews === 'function'){
742
741
  this.drawSubviews();
743
742
  }
744
- // if options contain a subviews function, call it with the namespace of self
743
+ // if options contain a sub-views function, call it with the name-space of self
745
744
  if(this.options.subviews && typeof this.options.subviews == 'function'){
746
745
  this.options.subviews.call( this );
747
746
  }
@@ -768,7 +767,7 @@ HView = HClass.extend({
768
767
  /** = Description
769
768
  * Called once, when the layout of the view is initially drawn.
770
769
  * Doesn't do anything by itself, but provides an extension point for making
771
- * subviews.
770
+ * sub-views.
772
771
  *
773
772
  **/
774
773
  drawSubviews: function(){
@@ -1144,8 +1143,8 @@ HView = HClass.extend({
1144
1143
  },
1145
1144
 
1146
1145
  /** = Description
1147
- * Sets any arbitary style of the main DOM element of the component.
1148
- * Utilizes Element Manager's drawing queue/cache to perform the action.
1146
+ * Sets any arbitrary style of the main DOM element of the component.
1147
+ * Utilizes Element Manager's drawing queue / cache to perform the action.
1149
1148
  *
1150
1149
  * = Parameters
1151
1150
  * +_name+:: The style name (css syntax, eg. 'background-color')
@@ -1164,7 +1163,7 @@ HView = HClass.extend({
1164
1163
  },
1165
1164
 
1166
1165
  setStyles: function(_styles){
1167
- var _stylesObjType = COMM.Values.type(_styles);
1166
+ var _stylesObjType = this.typeChr(_styles);
1168
1167
  if(_stylesObjType==='a'){
1169
1168
  this.setStylesArray(_styles);
1170
1169
  }
@@ -1256,7 +1255,10 @@ HView = HClass.extend({
1256
1255
  *
1257
1256
  **/
1258
1257
  styleOfPart: function(_partName, _name, _force) {
1259
- if (this.markupElemIds[_partName]===undefined) {
1258
+ if (!this['markupElemIds']){
1259
+ !this.isProduction && console.log('Warning, styleOfPart: no markupElemIds');
1260
+ }
1261
+ else if (this.markupElemIds[_partName]===undefined) {
1260
1262
  !this.isProduction && console.log('Warning, styleOfPart: partName "'+_partName+'" does not exist for viewId '+this.viewId+'.');
1261
1263
  return '';
1262
1264
  }
@@ -1276,7 +1278,10 @@ HView = HClass.extend({
1276
1278
  *
1277
1279
  **/
1278
1280
  setMarkupOfPart: function( _partName, _value ) {
1279
- if (this.markupElemIds[_partName]===undefined) {
1281
+ if (!this['markupElemIds']){
1282
+ !this.isProduction && console.log('Warning, setMarkupOfPart: no markupElemIds');
1283
+ }
1284
+ else if (this.markupElemIds[_partName]===undefined) {
1280
1285
  !this.isProduction && console.log('Warning, setMarkupOfPart: partName "'+_partName+'" does not exist for viewId '+this.viewId+'.');
1281
1286
  }
1282
1287
  else {
@@ -1297,7 +1302,10 @@ HView = HClass.extend({
1297
1302
  *
1298
1303
  **/
1299
1304
  markupOfPart: function(_partName) {
1300
- if (this.markupElemIds[_partName]===undefined) {
1305
+ if (!this['markupElemIds']){
1306
+ !this.isProduction && console.log('Warning, markupOfPart: no markupElemIds');
1307
+ }
1308
+ else if (this.markupElemIds[_partName]===undefined) {
1301
1309
  !this.isProduction && console.log('Warning, markupOfPart: partName "'+_partName+'" does not exist for viewId '+this.viewId+'.');
1302
1310
  return '';
1303
1311
  }
@@ -1490,7 +1498,7 @@ HView = HClass.extend({
1490
1498
  // Delete the children first.
1491
1499
  var _childViewId, i;
1492
1500
  if(!this.views && !this.isProduction){
1493
- console.log('HView#die: no subviews for component name: ',this.componentName,', self:',this);
1501
+ console.log('HView#die: no sub-views for component name: ',this.componentName,', self:',this);
1494
1502
  }
1495
1503
  while (this.views && this.views.length !== 0) {
1496
1504
  _childViewId = this.views[0];
@@ -1522,7 +1530,7 @@ HView = HClass.extend({
1522
1530
 
1523
1531
  /** = Description
1524
1532
  * A convenience method to call #die after 10ms using a setTimeout.
1525
- * Use this method, if destroying self or destroying from a subview.
1533
+ * Use this method, if destroying self or destroying from a sub-view.
1526
1534
  *
1527
1535
  **/
1528
1536
  dieSoon: function(){
@@ -1551,7 +1559,7 @@ HView = HClass.extend({
1551
1559
  },
1552
1560
 
1553
1561
  /** = Description
1554
- * Adds a sub-view/component to the view. Called from inside the
1562
+ * Adds a sub-view / component to the view. Called from inside the
1555
1563
  * HView#constructor and should be automatic for all components that accept
1556
1564
  * the 'parent' parameter, usually the second argument, after the HRect. May
1557
1565
  * also be used to attach a freely floating component (removed with remove)
@@ -1638,7 +1646,7 @@ HView = HClass.extend({
1638
1646
  * merely alter its frame and bounds rectangle.
1639
1647
  *
1640
1648
  * = Parameters
1641
- * +_horizonal+:: Horizonal units to add to the width (negative units subtract)
1649
+ * +_horizonal+:: Horizontal units to add to the width (negative units subtract)
1642
1650
  * +_vertical+:: Vertical units to add to the height (negative units subtract)
1643
1651
  *
1644
1652
  * = Returns
@@ -1683,7 +1691,7 @@ HView = HClass.extend({
1683
1691
  return this;
1684
1692
  },
1685
1693
 
1686
- /** = Descripion
1694
+ /** = Description
1687
1695
  * This method moves the view to a new coordinate. It adjusts the
1688
1696
  * left and top components of the frame rectangle accordingly.
1689
1697
  * Since a View's frame rectangle must be aligned on screen pixels, only
@@ -1735,7 +1743,7 @@ HView = HClass.extend({
1735
1743
  * merely alter its frame and bounds rectangle.
1736
1744
  *
1737
1745
  * = Parameters
1738
- * +_horizonal+:: Horizonal units to change the x coordinate (negative units subtract)
1746
+ * +_horizonal+:: Horizontal units to change the x coordinate (negative units subtract)
1739
1747
  * +_vertical+:: Vertical units to add to change the y coordinate (negative units subtract)
1740
1748
  *
1741
1749
  * = Returns
@@ -1863,7 +1871,7 @@ HView = HClass.extend({
1863
1871
  if (this.parent) {
1864
1872
  var _index = this.zIndex();
1865
1873
  this.parent.viewsZOrder.splice(_index, 1); // removes this index from the arr
1866
- this.parent.viewsZOrder.splice(0, 0, this.viewId); // unshifts viewId
1874
+ this.parent.viewsZOrder.splice(0, 0, this.viewId); // un-shifts viewId
1867
1875
  this._updateZIndexAllSiblings();
1868
1876
  }
1869
1877
  return this;
@@ -1896,7 +1904,7 @@ HView = HClass.extend({
1896
1904
  * +_length+:: Optional, How many characters to count.
1897
1905
  * +_elemId+:: Optional, The element ID where the temporary string is created
1898
1906
  * in.
1899
- * +_wrap+:: Optional boolean value, wrap whitespaces?
1907
+ * +_wrap+:: Optional boolean value, wrap white-space?
1900
1908
  * +_extraCss+:: Optional, extra css to add.
1901
1909
  *
1902
1910
  * = Returns
@@ -1917,11 +1925,13 @@ HView = HClass.extend({
1917
1925
  _extraCss += 'white-space:nowrap;';
1918
1926
  }
1919
1927
 
1920
- var _stringElem = ELEM.make(_elemId,'span');
1928
+ var
1929
+ _stringParent = ELEM.make(_elemId,'div'),
1930
+ _stringElem = ELEM.make(_stringParent,'span');
1921
1931
  ELEM.setCSS(_stringElem, "visibility:hidden;"+_extraCss);
1922
1932
  ELEM.setHTML(_stringElem, _string);
1923
1933
  var _visibleSize=ELEM.getSize(_stringElem);
1924
- ELEM.del(_stringElem);
1934
+ ELEM.del(_stringElem); ELEM.del(_stringParent);
1925
1935
  return [_visibleSize[0]+_visibleSize[0]%2,_visibleSize[1]+_visibleSize[1]%2];
1926
1936
  },
1927
1937
 
@@ -9,6 +9,16 @@ HScrollView = HControl.extend({
9
9
  scrollX: true,
10
10
  scrollY: true
11
11
  }),
12
+ scrollToTop: function(){
13
+ ELEM.get(this.elemId).scrollTop = 0;
14
+ },
15
+ scrollToBottom: function(){
16
+ var
17
+ elem = ELEM.get( this.elemId ),
18
+ contentHeight = ELEM.getScrollSize(this.elemId)[1],
19
+ viewHeight = this.rect.height;
20
+ elem.scrollTop = contentHeight-viewHeight;
21
+ },
12
22
  drawSubviews: function(){
13
23
  if(this.options.scrollX === 'auto' || this.options.scrollY === 'auto'){
14
24
  this.setStyle('overflow','auto');
@@ -71,11 +71,7 @@ module RSence
71
71
 
72
72
  # Transporter-specific strings are set.
73
73
  config[:transporter_conf][:messages] = strings[:messages][:transporter]
74
-
75
- # Makes the distribution 'js' directory containing the client core the
76
- # first client package source directory.
77
- config[:client_pkg][:src_dirs].unshift( File.join( SERVER_PATH, 'js' ) )
78
-
74
+
79
75
  # The distributed standard plugins are in this directory.
80
76
  default_plugins_path = File.join( SERVER_PATH, 'plugins' )
81
77
  unless config[:plugin_paths].include? default_plugins_path
@@ -122,10 +118,18 @@ module RSence
122
118
  config[:plugin_paths].push( env_plugins_path )
123
119
  end
124
120
 
121
+ # Load client packaging configuration:
122
+ client_pkg_conf = File.join(SERVER_PATH,'conf','client_pkg.yaml')
123
+ config[:client_pkg] = YAML.load( File.read( client_pkg_conf ) )
124
+
125
+ # Makes the distribution 'js' directory containing the client core the
126
+ # first client package source directory.
127
+ config[:client_pkg][:src_dirs].unshift( File.join( SERVER_PATH, 'js' ) )
128
+
125
129
  # At this point, configuration files are read and ready.
126
130
 
127
131
  puts "plugin paths: #{config[:plugin_paths].inspect}" if args[:debug]
128
-
132
+
129
133
  # Override configuration options with command-line-options.
130
134
  config[:trace] = true if args[:trace_js]
131
135
  config[:debug_mode] = true if args[:debug]
@@ -207,10 +207,10 @@ class ClientPkgBuild
207
207
  js_data = CoffeeScript.compile( coffee_src, :bare => true )
208
208
  rescue CoffeeScript::CompilationError, ExecJS::RuntimeError
209
209
  if has_js
210
- js_data = %{console.log( "WARNING: CoffeeScript complilation failed for source file #{src_path.to_json}, using the js variant instead." );}
210
+ js_data = %{console.log( 'WARNING: CoffeeScript complilation failed for source file #{src_path.to_json}, using the js variant instead.' );}
211
211
  js_data += read_file( File.join( bundle_path, bundle_name+'.js' ) )
212
212
  else
213
- js_data = %{console.log( "WARNING: CoffeeScript complilation failed for source file #{src_path.to_json}" );}
213
+ js_data = %{console.log( 'WARNING: CoffeeScript complilation failed for source file #{src_path.to_json}' );}
214
214
  end
215
215
  end
216
216
  else
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.16
4
+ version: 2.3.0.17
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-01-17 00:00:00.000000000 Z
13
+ date: 2013-02-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rsence-deps
@@ -144,6 +144,11 @@ files:
144
144
  - plugins/ticket/lib/rsrc.rb
145
145
  - plugins/ticket/lib/upload.rb
146
146
  - plugins/ticket/ticket.rb
147
+ - js/chat/chat_panel/chat_panel.coffee
148
+ - js/chat/speech_bubble/speech_bubble.coffee
149
+ - js/chat/speech_bubble/themes/default/speech_bubble.css
150
+ - js/chat/speech_bubble/themes/default/speech_bubble.html
151
+ - js/chat/speech_bubble/themes/default/user_anon.png
147
152
  - js/comm/autosync/autosync.js
148
153
  - js/comm/comm.js
149
154
  - js/comm/jsloader/jsloader.js
@@ -184,6 +189,10 @@ files:
184
189
  - js/controls/dialogs/sheet/themes/default/sheet_warning.png
185
190
  - js/controls/imageview/imageview.js
186
191
  - js/controls/imageview/themes/default/blank.gif
192
+ - js/controls/numerictextcontrol/numerictextcontrol.coffee
193
+ - js/controls/onoffbutton/onoffbutton.coffee
194
+ - js/controls/onoffbutton/themes/default/onoffbutton.css
195
+ - js/controls/onoffbutton/themes/default/onoffbutton.html
187
196
  - js/controls/passwordcontrol/passwordcontrol.js
188
197
  - js/controls/passwordcontrol/themes/default/passwordcontrol.css
189
198
  - js/controls/passwordcontrol/themes/default/passwordcontrol.html
@@ -241,7 +250,7 @@ files:
241
250
  - js/controls/textarea/textarea.js
242
251
  - js/controls/textarea/themes/default/textarea.css
243
252
  - js/controls/textarea/themes/default/textarea.html
244
- - js/controls/textcontrol/textcontrol.js
253
+ - js/controls/textcontrol/textcontrol.coffee
245
254
  - js/controls/textcontrol/themes/default/textcontrol.css
246
255
  - js/controls/textcontrol/themes/default/textcontrol.html
247
256
  - js/controls/textcontrol/themes/default/textcontrol_parts1-ie6.gif
@@ -280,6 +289,7 @@ files:
280
289
  - js/core/iefix/iefix.js
281
290
  - js/core/rsence_ns/rsence_ns.coffee
282
291
  - js/core/rsence_ns/rsence_ns.js
292
+ - js/core/util/util_methods/util_methods.coffee
283
293
  - js/datetime/calendar/calendar.coffee
284
294
  - js/datetime/calendar/themes/default/calendar.css
285
295
  - js/datetime/calendar/themes/default/calendar.html
@@ -291,8 +301,16 @@ files:
291
301
  - js/datetime/calendar/themes/default/calendar_parts1.png
292
302
  - js/datetime/calendar/themes/default/calendar_parts2-ie6.gif
293
303
  - js/datetime/calendar/themes/default/calendar_parts2.png
304
+ - js/datetime/calendar_pulldown/calendar_pulldown.coffee
305
+ - js/datetime/calendar_pulldown/themes/default/calendar_pulldown.css
306
+ - js/datetime/calendar_pulldown/themes/default/calendar_pulldown.html
307
+ - js/datetime/calendar_pulldown/themes/default/calendar_pulldown.png
308
+ - js/datetime/datepicker/datepicker.coffee
309
+ - js/datetime/datetimepicker/datetimepicker.coffee
294
310
  - js/datetime/datetimepicker/datetimepicker.js
295
311
  - js/datetime/datetimevalue/datetimevalue.js
312
+ - js/datetime/momentjs/momentjs.js
313
+ - js/datetime/timepicker/timepicker.coffee
296
314
  - js/datetime/timesheet/themes/default/timesheet.css
297
315
  - js/datetime/timesheet/themes/default/timesheet.html
298
316
  - js/datetime/timesheet/timesheet.js
@@ -390,7 +408,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
390
408
  version: 1.3.1
391
409
  requirements: []
392
410
  rubyforge_project: rsence-
393
- rubygems_version: 1.8.24
411
+ rubygems_version: 1.8.25
394
412
  signing_key:
395
413
  specification_version: 3
396
414
  summary: Pre-Release 2.3 version of RSence.