rwiki 0.1.3 → 0.2.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.
Files changed (220) hide show
  1. data/Capfile +2 -0
  2. data/Gemfile +30 -0
  3. data/Rakefile +22 -65
  4. data/VERSION +1 -1
  5. data/config.ru +11 -0
  6. data/config/config.yml.example +1 -0
  7. data/config/deploy.rb +37 -0
  8. data/features/create_page.feature +30 -20
  9. data/features/delete_page.feature +23 -18
  10. data/features/display_page.feature +10 -11
  11. data/features/editor.feature +45 -0
  12. data/features/history.feature +46 -0
  13. data/features/rename_page.feature +42 -37
  14. data/features/step_definitions/common_steps.rb +19 -47
  15. data/features/step_definitions/common_transforms.rb +5 -0
  16. data/features/step_definitions/dialog_box_steps.rb +16 -0
  17. data/features/step_definitions/history_steps.rb +11 -0
  18. data/features/step_definitions/tab_panel_steps.rb +27 -0
  19. data/features/step_definitions/tree_panel_steps.rb +42 -0
  20. data/features/step_definitions/wait_steps.rb +21 -0
  21. data/features/support/env.rb +6 -0
  22. data/features/tab_panel.feature +47 -0
  23. data/features/tree_panel.feature +14 -15
  24. data/lib/rwiki.rb +1 -0
  25. data/lib/rwiki/app.rb +14 -2
  26. data/lib/rwiki/models/folder.rb +1 -1
  27. data/lib/rwiki/models/node.rb +11 -1
  28. data/lib/rwiki/models/page.rb +1 -1
  29. data/public/favicon.ico +0 -0
  30. data/public/images/compressed.png +0 -0
  31. data/public/images/css.png +0 -0
  32. data/public/images/file.png +0 -0
  33. data/public/images/html.png +0 -0
  34. data/public/images/icon_word.png +0 -0
  35. data/public/images/image.png +0 -0
  36. data/public/images/javascript.png +0 -0
  37. data/public/images/pdf.png +0 -0
  38. data/public/images/php.png +0 -0
  39. data/public/images/presentation.png +0 -0
  40. data/public/images/ruby.png +0 -0
  41. data/public/images/shellscript.png +0 -0
  42. data/public/images/stylesheet.png +0 -0
  43. data/public/images/text.png +0 -0
  44. data/public/images/wordprocessing.png +0 -0
  45. data/public/javascripts/Rwiki.js +71 -29
  46. data/public/javascripts/Rwiki/EditorPanel.js +5 -37
  47. data/public/javascripts/Rwiki/EditorPanel/Editor.js +8 -44
  48. data/public/javascripts/Rwiki/EditorWindow.js +66 -0
  49. data/public/javascripts/Rwiki/FuzzyFinderDialog.js +61 -0
  50. data/public/javascripts/Rwiki/NavigationPanel.js +25 -0
  51. data/public/javascripts/Rwiki/NodeManager.js +2 -0
  52. data/public/javascripts/Rwiki/TabPanel.js +39 -2
  53. data/public/javascripts/Rwiki/TreePanel.js +39 -26
  54. data/public/javascripts/Rwiki/TreePanel/Menu.js +1 -1
  55. data/public/javascripts/Rwiki/TreePanel/Node.js +46 -0
  56. data/public/javascripts/vendor/ext/adapter/ext/ext-base-debug.js +836 -710
  57. data/public/javascripts/vendor/ext/adapter/ext/ext-base.js +5 -5
  58. data/public/javascripts/vendor/ext/adapter/jquery/ext-jquery-adapter-debug.js +47 -700
  59. data/public/javascripts/vendor/ext/adapter/jquery/ext-jquery-adapter.js +5 -5
  60. data/public/javascripts/vendor/ext/adapter/prototype/ext-prototype-adapter-debug.js +45 -698
  61. data/public/javascripts/vendor/ext/adapter/prototype/ext-prototype-adapter.js +5 -5
  62. data/public/javascripts/vendor/ext/adapter/yui/ext-yui-adapter-debug.js +39 -696
  63. data/public/javascripts/vendor/ext/adapter/yui/ext-yui-adapter.js +5 -5
  64. data/public/javascripts/vendor/ext/ext-all-debug-w-comments.js +17932 -12860
  65. data/public/javascripts/vendor/ext/ext-all-debug.js +11674 -8102
  66. data/public/javascripts/vendor/ext/ext-all.js +6 -6
  67. data/public/javascripts/vendor/ext/ux/StatusBar.js +418 -0
  68. data/public/resources/ext/charts.swf +0 -0
  69. data/public/resources/ext/css/debug.css +4 -4
  70. data/public/resources/ext/css/ext-all-notheme.css +204 -52
  71. data/public/resources/ext/css/ext-all.css +234 -54
  72. data/public/resources/ext/css/reset-min.css +4 -4
  73. data/public/resources/ext/css/structure/borders.css +4 -4
  74. data/public/resources/ext/css/structure/box.css +4 -4
  75. data/public/resources/ext/css/structure/button.css +7 -7
  76. data/public/resources/ext/css/structure/combo.css +4 -4
  77. data/public/resources/ext/css/structure/core.css +15 -5
  78. data/public/resources/ext/css/structure/date-picker.css +4 -4
  79. data/public/resources/ext/css/structure/dd.css +4 -4
  80. data/public/resources/ext/css/structure/debug.css +4 -4
  81. data/public/resources/ext/css/structure/dialog.css +6 -9
  82. data/public/resources/ext/css/structure/editor.css +4 -4
  83. data/public/resources/ext/css/structure/form.css +14 -4
  84. data/public/resources/ext/css/structure/grid.css +15 -5
  85. data/public/resources/ext/css/structure/layout.css +7 -7
  86. data/public/resources/ext/css/structure/list-view.css +4 -4
  87. data/public/resources/ext/css/structure/menu.css +13 -6
  88. data/public/resources/ext/css/structure/panel-reset.css +4 -4
  89. data/public/resources/ext/css/structure/panel.css +70 -22
  90. data/public/resources/ext/css/structure/pivotgrid.css +65 -0
  91. data/public/resources/ext/css/structure/progress.css +4 -4
  92. data/public/resources/ext/css/structure/qtips.css +4 -4
  93. data/public/resources/ext/css/structure/reset.css +11 -5
  94. data/public/resources/ext/css/structure/resizable.css +4 -4
  95. data/public/resources/ext/css/structure/slider.css +4 -4
  96. data/public/resources/ext/css/structure/tabs.css +13 -8
  97. data/public/resources/ext/css/structure/toolbar.css +5 -5
  98. data/public/resources/ext/css/structure/tree.css +11 -11
  99. data/public/resources/ext/css/structure/window.css +5 -5
  100. data/public/resources/ext/css/theme-access/borders.css +4 -4
  101. data/public/resources/ext/css/theme-access/box.css +4 -4
  102. data/public/resources/ext/css/theme-access/button.css +4 -4
  103. data/public/resources/ext/css/theme-access/combo.css +4 -4
  104. data/public/resources/ext/css/theme-access/core.css +4 -4
  105. data/public/resources/ext/css/theme-access/date-picker.css +4 -4
  106. data/public/resources/ext/css/theme-access/dd.css +4 -4
  107. data/public/resources/ext/css/theme-access/debug.css +4 -4
  108. data/public/resources/ext/css/theme-access/dialog.css +4 -4
  109. data/public/resources/ext/css/theme-access/editor.css +4 -4
  110. data/public/resources/ext/css/theme-access/form.css +4 -4
  111. data/public/resources/ext/css/theme-access/grid.css +4 -4
  112. data/public/resources/ext/css/theme-access/layout.css +4 -4
  113. data/public/resources/ext/css/theme-access/list-view.css +8 -4
  114. data/public/resources/ext/css/theme-access/menu.css +4 -4
  115. data/public/resources/ext/css/theme-access/panel.css +4 -4
  116. data/public/resources/ext/css/theme-access/progress.css +4 -4
  117. data/public/resources/ext/css/theme-access/qtips.css +4 -4
  118. data/public/resources/ext/css/theme-access/resizable.css +4 -4
  119. data/public/resources/ext/css/theme-access/slider.css +4 -4
  120. data/public/resources/ext/css/theme-access/tabs.css +4 -4
  121. data/public/resources/ext/css/theme-access/toolbar.css +4 -4
  122. data/public/resources/ext/css/theme-access/tree.css +4 -4
  123. data/public/resources/ext/css/theme-access/window.css +5 -5
  124. data/public/resources/ext/css/theme-gray/borders.css +4 -4
  125. data/public/resources/ext/css/theme-gray/box.css +4 -4
  126. data/public/resources/ext/css/theme-gray/button.css +4 -4
  127. data/public/resources/ext/css/theme-gray/combo.css +4 -4
  128. data/public/resources/ext/css/theme-gray/core.css +6 -4
  129. data/public/resources/ext/css/theme-gray/date-picker.css +4 -4
  130. data/public/resources/ext/css/theme-gray/dd.css +4 -4
  131. data/public/resources/ext/css/theme-gray/debug.css +4 -4
  132. data/public/resources/ext/css/theme-gray/dialog.css +4 -4
  133. data/public/resources/ext/css/theme-gray/editor.css +4 -4
  134. data/public/resources/ext/css/theme-gray/form.css +4 -4
  135. data/public/resources/ext/css/theme-gray/grid.css +10 -6
  136. data/public/resources/ext/css/theme-gray/layout.css +4 -4
  137. data/public/resources/ext/css/theme-gray/list-view.css +5 -5
  138. data/public/resources/ext/css/theme-gray/menu.css +4 -4
  139. data/public/resources/ext/css/theme-gray/panel.css +4 -4
  140. data/public/resources/ext/css/theme-gray/pivotgrid.css +28 -0
  141. data/public/resources/ext/css/theme-gray/progress.css +4 -4
  142. data/public/resources/ext/css/theme-gray/qtips.css +4 -4
  143. data/public/resources/ext/css/theme-gray/resizable.css +4 -4
  144. data/public/resources/ext/css/theme-gray/slider.css +4 -4
  145. data/public/resources/ext/css/theme-gray/tabs.css +4 -4
  146. data/public/resources/ext/css/theme-gray/toolbar.css +4 -4
  147. data/public/resources/ext/css/theme-gray/tree.css +4 -4
  148. data/public/resources/ext/css/theme-gray/window.css +4 -4
  149. data/public/resources/ext/css/visual/borders.css +4 -4
  150. data/public/resources/ext/css/visual/box.css +4 -4
  151. data/public/resources/ext/css/visual/button.css +4 -4
  152. data/public/resources/ext/css/visual/combo.css +4 -4
  153. data/public/resources/ext/css/visual/core.css +6 -4
  154. data/public/resources/ext/css/visual/date-picker.css +4 -4
  155. data/public/resources/ext/css/visual/dd.css +4 -4
  156. data/public/resources/ext/css/visual/debug.css +4 -4
  157. data/public/resources/ext/css/visual/dialog.css +4 -4
  158. data/public/resources/ext/css/visual/editor.css +4 -4
  159. data/public/resources/ext/css/visual/form.css +4 -4
  160. data/public/resources/ext/css/visual/grid.css +8 -4
  161. data/public/resources/ext/css/visual/layout.css +4 -4
  162. data/public/resources/ext/css/visual/list-view.css +4 -4
  163. data/public/resources/ext/css/visual/menu.css +4 -4
  164. data/public/resources/ext/css/visual/panel.css +4 -4
  165. data/public/resources/ext/css/visual/pivotgrid.css +28 -0
  166. data/public/resources/ext/css/visual/progress.css +4 -4
  167. data/public/resources/ext/css/visual/qtips.css +4 -4
  168. data/public/resources/ext/css/visual/resizable.css +4 -4
  169. data/public/resources/ext/css/visual/slider.css +4 -4
  170. data/public/resources/ext/css/visual/tabs.css +4 -4
  171. data/public/resources/ext/css/visual/toolbar.css +5 -5
  172. data/public/resources/ext/css/visual/tree.css +4 -4
  173. data/public/resources/ext/css/visual/window.css +4 -4
  174. data/public/resources/ext/css/xtheme-access.css +9 -5
  175. data/public/resources/ext/css/xtheme-blue.css +34 -6
  176. data/public/resources/ext/css/xtheme-gray.css +35 -7
  177. data/public/resources/ext/css/yourtheme.css +11 -5
  178. data/public/resources/ext/images/access/panel/tool-sprites.gif +0 -0
  179. data/public/resources/ext/images/default/grid/grid3-rowheader.gif +0 -0
  180. data/public/resources/ext/images/default/grid/refresh-disabled.gif +0 -0
  181. data/public/resources/ext/images/default/panel/tool-sprites.gif +0 -0
  182. data/public/resources/ext/images/gray/grid/sort-hd.gif +0 -0
  183. data/public/resources/ext/images/gray/panel/tool-sprites.gif +0 -0
  184. data/public/resources/ext/images/gray/window/left-corners.png +0 -0
  185. data/public/resources/ext/images/gray/window/left-right.png +0 -0
  186. data/public/resources/ext/images/gray/window/right-corners.png +0 -0
  187. data/public/resources/ext/images/gray/window/top-bottom.png +0 -0
  188. data/public/stylesheets/coderay.css +3 -0
  189. data/public/stylesheets/markitup.css +19 -0
  190. data/public/stylesheets/style.css +1 -1
  191. data/run_tests.sh +1 -0
  192. data/rwiki.gemspec +56 -37
  193. data/test/fixtures/pages/Info/dummy +0 -0
  194. data/test/rwiki/models/test_folder.rb +4 -4
  195. data/vendor/.gitkeep +0 -0
  196. data/views/layout.erb +13 -5
  197. metadata +78 -69
  198. data/.idea/projectCodeStyle.xml +0 -80
  199. data/.rvmrc +0 -1
  200. data/public/javascripts/Rwiki/SidePanel.js +0 -26
  201. data/public/javascripts/Rwiki/Toolbar.js +0 -31
  202. data/public/javascripts/Rwiki/Viewport.js +0 -10
  203. data/tmp/ExtDesigner/MyViewport.js +0 -18
  204. data/tmp/ExtDesigner/MyViewport.ui.js +0 -29
  205. data/tmp/ExtDesigner/Rwiki.EditorPanel.js +0 -19
  206. data/tmp/ExtDesigner/Rwiki.EditorPanel.ui.js +0 -27
  207. data/tmp/ExtDesigner/Rwiki.MainPanel.js +0 -19
  208. data/tmp/ExtDesigner/Rwiki.MainPanel.ui.js +0 -29
  209. data/tmp/ExtDesigner/Rwiki.TabPane.PageTab.js +0 -19
  210. data/tmp/ExtDesigner/Rwiki.TabPane.PageTab.ui.js +0 -19
  211. data/tmp/ExtDesigner/Rwiki.TabPanel.js +0 -19
  212. data/tmp/ExtDesigner/Rwiki.TabPanel.ui.js +0 -27
  213. data/tmp/ExtDesigner/Rwiki.TreePanel.js +0 -19
  214. data/tmp/ExtDesigner/Rwiki.TreePanel.ui.js +0 -27
  215. data/tmp/ExtDesigner/Rwiki.Viewport.js +0 -18
  216. data/tmp/ExtDesigner/Rwiki.Viewport.ui.js +0 -30
  217. data/tmp/ExtDesigner/rwiki.xds +0 -192
  218. data/tmp/ExtDesigner/xds_includeOrder.txt +0 -12
  219. data/tmp/ExtDesigner/xds_index.html +0 -26
  220. data/tmp/ExtDesigner/xds_index.js +0 -19
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-progress-wrap {
8
8
  border-color:#8E8E8E;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-tip .x-tip-close{
8
8
  background-image: url(../images/gray/qtip/close.gif);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-resizable-handle {
8
8
  background-color:#fff;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-slider-horz, .x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
8
8
  background-image:url(../images/default/slider/slider-bg.png);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-tab-panel-header, .x-tab-panel-footer {
8
8
  background-color: #eaeaea;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-toolbar{
8
8
  border-color:#d0d0d0;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-tree-node-expanded .x-tree-node-icon{
8
8
  background-image:url(../images/default/tree/folder-open.gif);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-window-proxy {
8
8
  background-color:#fcfcfc;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-panel-noborder .x-panel-header-noborder {
8
8
  border-bottom-color:#99bbe8;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-box-tl {
8
8
  background-image: url(../images/default/box/corners.gif);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-btn{
8
8
  font:normal 11px tahoma, verdana, helvetica;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-combo-list {
8
8
  border-color:#98c0f4;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .ext-el-mask {
8
8
  background-color: #ccc;
@@ -46,9 +46,11 @@
46
46
  background-color: #deecfd;
47
47
  }
48
48
 
49
+ /*
49
50
  .x-color-palette em:hover, .x-color-palette span:hover{
50
51
  background-color: #deecfd;
51
52
  }
53
+ */
52
54
 
53
55
  .x-color-palette em {
54
56
  border-color:#aca899;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-date-picker {
8
8
  border-color: #1b376c;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-dd-drag-ghost{
8
8
  color:#000;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  #x-debug-browser .x-tree .x-tree-node a span {
8
8
  color:#222297;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-window-dlg .ext-mb-text,
8
8
  .x-window-dlg .x-window-header-text {
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-html-editor-wrap {
8
8
  border-color:#a9bfd3;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-form-field {
8
8
  font:normal 12px tahoma, arial, helvetica, sans-serif;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-grid3 {
8
8
  background-color:#fff;
@@ -113,6 +113,10 @@ td.x-grid3-hd-over .x-grid3-hd-inner, td.sort-desc .x-grid3-hd-inner, td.sort-as
113
113
  background-image:url(../images/default/grid/col-move-bottom.gif);
114
114
  }
115
115
 
116
+ td.grid-hd-group-cell {
117
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x bottom;
118
+ }
119
+
116
120
  .x-grid3-row-selected {
117
121
  background-color: #dfe8f6 !important;
118
122
  background-image: none;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-border-layout-ct {
8
8
  background-color:#dfe8f6;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-list-header{
8
8
  background-color:#f9f9f9;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-menu {
8
8
  background-color:#f0f0f0;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-panel {
8
8
  border-color: #99bbe8;
@@ -0,0 +1,28 @@
1
+ /*!
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
+ */
7
+ .x-pivotgrid .x-grid3-header-offset table td {
8
+ background: url(../images/default/grid/grid3-hrow.gif) repeat-x 50% 100%;
9
+ border-left: 1px solid;
10
+ border-right: 1px solid;
11
+ border-left-color: #EEE;
12
+ border-right-color: #D0D0D0;
13
+ }
14
+
15
+ .x-pivotgrid .x-grid3-row-headers {
16
+ background-color: #f9f9f9;
17
+ }
18
+
19
+ .x-pivotgrid .x-grid3-row-headers table td {
20
+ background: #EEE url(../images/default/grid/grid3-rowheader.gif) repeat-x left top;
21
+ border-left: 1px solid;
22
+ border-right: 1px solid;
23
+ border-left-color: #EEE;
24
+ border-right-color: #D0D0D0;
25
+ border-bottom: 1px solid;
26
+ border-bottom-color: #D0D0D0;
27
+ height: 18px;
28
+ }
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-progress-wrap {
8
8
  border-color:#6593cf;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-tip .x-tip-close{
8
8
  background-image: url(../images/default/qtip/close.gif);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-resizable-handle {
8
8
  background-color:#fff;
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-slider-horz, .x-slider-horz .x-slider-end, .x-slider-horz .x-slider-inner {
8
8
  background-image:url(../images/default/slider/slider-bg.png);
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Ext JS Library 3.2.1
3
- * Copyright(c) 2006-2010 Ext JS, Inc.
4
- * licensing@extjs.com
5
- * http://www.extjs.com/license
2
+ * Ext JS Library 3.3.1
3
+ * Copyright(c) 2006-2010 Sencha Inc.
4
+ * licensing@sencha.com
5
+ * http://www.sencha.com/license
6
6
  */
7
7
  .x-tab-panel-header, .x-tab-panel-footer {
8
8
  background-color: #deecfd;