lino 25.1.2__py3-none-any.whl

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 (4655) hide show
  1. lino/.cvsignore +5 -0
  2. lino/SciTEDirectory.properties +2 -0
  3. lino/__init__.py +195 -0
  4. lino/ad.py +5 -0
  5. lino/api/__init__.py +20 -0
  6. lino/api/ad.py +8 -0
  7. lino/api/dd.py +240 -0
  8. lino/api/doctest.py +799 -0
  9. lino/api/rt.py +44 -0
  10. lino/api/selenium.py +298 -0
  11. lino/api/shell.py +23 -0
  12. lino/apps.py +1 -0
  13. lino/config/about/AboutBase.tmpl +12 -0
  14. lino/config/about/app.tmpl +18 -0
  15. lino/config/about/index.tmpl +51 -0
  16. lino/config/about/model.tmpl +42 -0
  17. lino/config/about.html.tmpl +41 -0
  18. lino/config/admin_main.html +1 -0
  19. lino/config/admin_main_base.html +109 -0
  20. lino/config/apps.html.tmpl +41 -0
  21. lino/config/letter_margin_bottom.html +3 -0
  22. lino/config/letter_margin_top.html +10 -0
  23. lino/config/plugins/eid_jslib.js +67 -0
  24. lino/config/unused/403.html +11 -0
  25. lino/config/unused/404.html +11 -0
  26. lino/config/unused/500.html +15 -0
  27. lino/config/welcome.html +7 -0
  28. lino/core/__init__.py +50 -0
  29. lino/core/actions.py +1452 -0
  30. lino/core/actors.py +2106 -0
  31. lino/core/auth/__init__.py +290 -0
  32. lino/core/auth/apps.py +1 -0
  33. lino/core/auth/backends.py +219 -0
  34. lino/core/auth/middleware.py +245 -0
  35. lino/core/auth/utils.py +129 -0
  36. lino/core/boundaction.py +187 -0
  37. lino/core/callbacks.py +229 -0
  38. lino/core/choicelists.py +1104 -0
  39. lino/core/classproperty.py +140 -0
  40. lino/core/constants.py +204 -0
  41. lino/core/dashboard.py +200 -0
  42. lino/core/dbtables.py +769 -0
  43. lino/core/dbutils.py +9 -0
  44. lino/core/ddh.py +94 -0
  45. lino/core/diff.py +167 -0
  46. lino/core/elems.py +2982 -0
  47. lino/core/exceptions.py +26 -0
  48. lino/core/fields.py +1774 -0
  49. lino/core/frames.py +45 -0
  50. lino/core/gfks.py +59 -0
  51. lino/core/help.py +0 -0
  52. lino/core/inject.py +403 -0
  53. lino/core/kernel.py +1265 -0
  54. lino/core/keyboard.py +45 -0
  55. lino/core/layouts.py +849 -0
  56. lino/core/management/__init__.py +1 -0
  57. lino/core/menus.py +378 -0
  58. lino/core/merge.py +262 -0
  59. lino/core/model.py +1033 -0
  60. lino/core/permissions.py +244 -0
  61. lino/core/plugin.py +244 -0
  62. lino/core/renderer.py +1299 -0
  63. lino/core/requests.py +2535 -0
  64. lino/core/roles.py +172 -0
  65. lino/core/signals.py +28 -0
  66. lino/core/site.py +2317 -0
  67. lino/core/store.py +1440 -0
  68. lino/core/tables.py +765 -0
  69. lino/core/urls.py +86 -0
  70. lino/core/user_types.py +27 -0
  71. lino/core/userprefs.py +103 -0
  72. lino/core/utils.py +1140 -0
  73. lino/core/views.py +188 -0
  74. lino/core/widgets.py +0 -0
  75. lino/core/workflows.py +298 -0
  76. lino/fake_migrations/__init__.py +0 -0
  77. lino/hello.py +18 -0
  78. lino/help_texts.py +708 -0
  79. lino/locale/bn/LC_MESSAGES/django.mo +0 -0
  80. lino/locale/bn/LC_MESSAGES/django.po +7773 -0
  81. lino/locale/de/LC_MESSAGES/django.mo +0 -0
  82. lino/locale/de/LC_MESSAGES/django.po +6966 -0
  83. lino/locale/django.pot +6723 -0
  84. lino/locale/es/LC_MESSAGES/django.mo +0 -0
  85. lino/locale/es/LC_MESSAGES/django.po +6797 -0
  86. lino/locale/et/LC_MESSAGES/django.mo +0 -0
  87. lino/locale/et/LC_MESSAGES/django.po +9246 -0
  88. lino/locale/fr/LC_MESSAGES/django.mo +0 -0
  89. lino/locale/fr/LC_MESSAGES/django.po +6890 -0
  90. lino/locale/nl/LC_MESSAGES/django.mo +0 -0
  91. lino/locale/nl/LC_MESSAGES/django.po +15936 -0
  92. lino/locale/pt/LC_MESSAGES/django.mo +0 -0
  93. lino/locale/pt/LC_MESSAGES/django.po +3925 -0
  94. lino/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  95. lino/locale/pt_BR/LC_MESSAGES/django.po +6781 -0
  96. lino/locale/zh_Hant/LC_MESSAGES/django.po +6775 -0
  97. lino/management/__init__.py +0 -0
  98. lino/management/commands/__init__.py +4 -0
  99. lino/management/commands/buildcache.py +13 -0
  100. lino/management/commands/demotest.py +135 -0
  101. lino/management/commands/diag.py +17 -0
  102. lino/management/commands/dump2py.py +567 -0
  103. lino/management/commands/dump_settings.py +63 -0
  104. lino/management/commands/initdb.py +311 -0
  105. lino/management/commands/install.py +58 -0
  106. lino/management/commands/makemigdump.py +36 -0
  107. lino/management/commands/makescreenshots.py +259 -0
  108. lino/management/commands/makeui.py +140 -0
  109. lino/management/commands/mergedata.py +75 -0
  110. lino/management/commands/monitor.py +160 -0
  111. lino/management/commands/passwd.py +106 -0
  112. lino/management/commands/prep.py +69 -0
  113. lino/management/commands/qtclient.py +168 -0
  114. lino/management/commands/resetsequences.py +29 -0
  115. lino/management/commands/run.py +36 -0
  116. lino/management/commands/show.py +46 -0
  117. lino/management/commands/syncscreenshots.py +59 -0
  118. lino/management/commands/update_conf.py +31 -0
  119. lino/mixins/__init__.py +288 -0
  120. lino/mixins/dupable.py +299 -0
  121. lino/mixins/duplicable.py +129 -0
  122. lino/mixins/human.py +435 -0
  123. lino/mixins/periods.py +383 -0
  124. lino/mixins/polymorphic.py +262 -0
  125. lino/mixins/printable.py +6 -0
  126. lino/mixins/ref.py +183 -0
  127. lino/mixins/registrable.py +200 -0
  128. lino/mixins/sequenced.py +529 -0
  129. lino/mixins/uploadable.py +3 -0
  130. lino/modlib/__init__.py +73 -0
  131. lino/modlib/about/__init__.py +15 -0
  132. lino/modlib/about/choicelists.py +53 -0
  133. lino/modlib/about/models.py +157 -0
  134. lino/modlib/awesomeuploader/__init__.py +59 -0
  135. lino/modlib/awesomeuploader/config/awesomeuploader/snippet.js +55 -0
  136. lino/modlib/awesomeuploader/models.py +33 -0
  137. lino/modlib/blacklist/__init__.py +27 -0
  138. lino/modlib/blacklist/models.py +67 -0
  139. lino/modlib/bootstrap3/README.txt +2 -0
  140. lino/modlib/bootstrap3/__init__.py +73 -0
  141. lino/modlib/bootstrap3/config/bootstrap3/base.html +107 -0
  142. lino/modlib/bootstrap3/config/bootstrap3/detail.html +24 -0
  143. lino/modlib/bootstrap3/config/bootstrap3/index.html +8 -0
  144. lino/modlib/bootstrap3/config/bootstrap3/table.html +13 -0
  145. lino/modlib/bootstrap3/models.py +30 -0
  146. lino/modlib/bootstrap3/renderer.py +85 -0
  147. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.css +476 -0
  148. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.css.map +1 -0
  149. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap-theme.min.css +5 -0
  150. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css +6584 -0
  151. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.css.map +1 -0
  152. lino/modlib/bootstrap3/static/bootstrap-3.3.4/css/bootstrap.min.css +5 -0
  153. lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.eot +0 -0
  154. lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.svg +288 -0
  155. lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.ttf +0 -0
  156. lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff +0 -0
  157. lino/modlib/bootstrap3/static/bootstrap-3.3.4/fonts/glyphicons-halflings-regular.woff2 +0 -0
  158. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.js +2317 -0
  159. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap.min.js +7 -0
  160. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/bootstrap_lino.js +4 -0
  161. lino/modlib/bootstrap3/static/bootstrap-3.3.4/js/npm.js +13 -0
  162. lino/modlib/bootstrap3/views.py +344 -0
  163. lino/modlib/changes/__init__.py +41 -0
  164. lino/modlib/changes/models.py +285 -0
  165. lino/modlib/changes/utils.py +86 -0
  166. lino/modlib/checkdata/__init__.py +85 -0
  167. lino/modlib/checkdata/choicelists.py +154 -0
  168. lino/modlib/checkdata/fixtures/__init__.py +0 -0
  169. lino/modlib/checkdata/fixtures/checkdata.py +14 -0
  170. lino/modlib/checkdata/management/__init__.py +0 -0
  171. lino/modlib/checkdata/management/commands/__init__.py +0 -0
  172. lino/modlib/checkdata/management/commands/checkdata.py +64 -0
  173. lino/modlib/checkdata/models.py +352 -0
  174. lino/modlib/checkdata/roles.py +10 -0
  175. lino/modlib/comments/__init__.py +55 -0
  176. lino/modlib/comments/choicelists.py +100 -0
  177. lino/modlib/comments/config/comments/comments.js +7 -0
  178. lino/modlib/comments/fixtures/__init__.py +0 -0
  179. lino/modlib/comments/fixtures/demo2.py +99 -0
  180. lino/modlib/comments/mixins.py +132 -0
  181. lino/modlib/comments/models.py +440 -0
  182. lino/modlib/comments/roles.py +32 -0
  183. lino/modlib/comments/ui.py +317 -0
  184. lino/modlib/dashboard/__init__.py +50 -0
  185. lino/modlib/dashboard/models.py +129 -0
  186. lino/modlib/dupable/__init__.py +25 -0
  187. lino/modlib/dupable/mixins.py +192 -0
  188. lino/modlib/dupable/models.py +142 -0
  189. lino/modlib/export_excel/__init__.py +18 -0
  190. lino/modlib/export_excel/models.py +148 -0
  191. lino/modlib/extjs/__init__.py +272 -0
  192. lino/modlib/extjs/config/extjs/index.html +192 -0
  193. lino/modlib/extjs/config/extjs/linoweb.js +4977 -0
  194. lino/modlib/extjs/config/extjs/service-worker.js +60 -0
  195. lino/modlib/extjs/ext_renderer.py +1527 -0
  196. lino/modlib/extjs/static/ext-3.3.1/INCLUDE_ORDER.txt +35 -0
  197. lino/modlib/extjs/static/ext-3.3.1/adapter/ext/ext-base-debug.js +2886 -0
  198. lino/modlib/extjs/static/ext-3.3.1/adapter/ext/ext-base.js +7 -0
  199. lino/modlib/extjs/static/ext-3.3.1/adapter/jquery/ext-jquery-adapter-debug.js +1797 -0
  200. lino/modlib/extjs/static/ext-3.3.1/adapter/jquery/ext-jquery-adapter.js +7 -0
  201. lino/modlib/extjs/static/ext-3.3.1/adapter/prototype/ext-prototype-adapter-debug.js +1826 -0
  202. lino/modlib/extjs/static/ext-3.3.1/adapter/prototype/ext-prototype-adapter.js +7 -0
  203. lino/modlib/extjs/static/ext-3.3.1/adapter/yui/ext-yui-adapter-debug.js +1592 -0
  204. lino/modlib/extjs/static/ext-3.3.1/adapter/yui/ext-yui-adapter.js +7 -0
  205. lino/modlib/extjs/static/ext-3.3.1/examples/README.txt +4 -0
  206. lino/modlib/extjs/static/ext-3.3.1/examples/button/buttons.css +31 -0
  207. lino/modlib/extjs/static/ext-3.3.1/examples/button/buttons.html +30 -0
  208. lino/modlib/extjs/static/ext-3.3.1/examples/button/buttons.js +184 -0
  209. lino/modlib/extjs/static/ext-3.3.1/examples/button/images/add.gif +0 -0
  210. lino/modlib/extjs/static/ext-3.3.1/examples/button/images/add16.gif +0 -0
  211. lino/modlib/extjs/static/ext-3.3.1/examples/button/images/add24.gif +0 -0
  212. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/app/calendar-list.js +18 -0
  213. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/app/event-list.js +110 -0
  214. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/app/test-app.js +310 -0
  215. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/calendar-all-debug.js +5246 -0
  216. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/calendar-all.js +7 -0
  217. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/index.html +63 -0
  218. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/css/calendar.css +859 -0
  219. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/css/examples.css +79 -0
  220. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/arrow.gif +0 -0
  221. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/bg.gif +0 -0
  222. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/calendar-sprites.gif +0 -0
  223. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/ext-cal-edit-hd.png +0 -0
  224. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/page-next.gif +0 -0
  225. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/resources/images/default/page-prev.gif +0 -0
  226. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/CalendarPanel.js +535 -0
  227. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/EventEditForm.js +228 -0
  228. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/EventEditWindow.js +286 -0
  229. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/EventRecord.js +145 -0
  230. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/Ext.calendar.js +60 -0
  231. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/WeekEventRenderer.js +167 -0
  232. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/dd/CalendarDD.js +259 -0
  233. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/dd/CalendarScrollManager.js +215 -0
  234. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/dd/DayViewDD.js +210 -0
  235. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/dd/StatusProxy.js +81 -0
  236. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/templates/BoxLayoutTemplate.js +139 -0
  237. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/templates/DayBodyTemplate.js +89 -0
  238. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/templates/DayHeaderTemplate.js +50 -0
  239. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/templates/DayViewTemplate.js +47 -0
  240. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/templates/MonthViewTemplate.js +70 -0
  241. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/CalendarView.js +1023 -0
  242. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/DayBodyView.js +447 -0
  243. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/DayHeaderView.js +105 -0
  244. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/DayView.js +197 -0
  245. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/MonthDayDetailView.js +111 -0
  246. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/MonthView.js +482 -0
  247. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/views/WeekView.js +24 -0
  248. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/widgets/CalendarPicker.js +66 -0
  249. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/widgets/DateRangeField.js +284 -0
  250. lino/modlib/extjs/static/ext-3.3.1/examples/calendar/src/widgets/ReminderField.js +75 -0
  251. lino/modlib/extjs/static/ext-3.3.1/examples/chart/bar.gif +0 -0
  252. lino/modlib/extjs/static/ext-3.3.1/examples/chart/chart.gif +0 -0
  253. lino/modlib/extjs/static/ext-3.3.1/examples/chart/charts.html +71 -0
  254. lino/modlib/extjs/static/ext-3.3.1/examples/chart/charts.js +156 -0
  255. lino/modlib/extjs/static/ext-3.3.1/examples/chart/pie-chart.html +31 -0
  256. lino/modlib/extjs/static/ext-3.3.1/examples/chart/pie-chart.js +53 -0
  257. lino/modlib/extjs/static/ext-3.3.1/examples/chart/reload-chart.html +31 -0
  258. lino/modlib/extjs/static/ext-3.3.1/examples/chart/reload-chart.js +51 -0
  259. lino/modlib/extjs/static/ext-3.3.1/examples/chart/stacked-bar-chart.html +31 -0
  260. lino/modlib/extjs/static/ext-3.3.1/examples/chart/stacked-bar-chart.js +48 -0
  261. lino/modlib/extjs/static/ext-3.3.1/examples/core/spotlight-example.js +77 -0
  262. lino/modlib/extjs/static/ext-3.3.1/examples/core/spotlight.html +37 -0
  263. lino/modlib/extjs/static/ext-3.3.1/examples/core/templates.html +36 -0
  264. lino/modlib/extjs/static/ext-3.3.1/examples/core/templates.js +75 -0
  265. lino/modlib/extjs/static/ext-3.3.1/examples/data.js +724 -0
  266. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dnd_grid_to_formpanel.html +25 -0
  267. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dnd_grid_to_formpanel.js +159 -0
  268. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dnd_grid_to_grid.html +22 -0
  269. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dnd_grid_to_grid.js +135 -0
  270. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dragdropzones.html +63 -0
  271. lino/modlib/extjs/static/ext-3.3.1/examples/dd/dragdropzones.js +285 -0
  272. lino/modlib/extjs/static/ext-3.3.1/examples/dd/field-to-grid-dd.html +32 -0
  273. lino/modlib/extjs/static/ext-3.3.1/examples/dd/field-to-grid-dd.js +317 -0
  274. lino/modlib/extjs/static/ext-3.3.1/examples/debug/debug-console.html +364 -0
  275. lino/modlib/extjs/static/ext-3.3.1/examples/debug/debug.png +0 -0
  276. lino/modlib/extjs/static/ext-3.3.1/examples/debug/inspector.gif +0 -0
  277. lino/modlib/extjs/static/ext-3.3.1/examples/debug/sheldon.xml +151 -0
  278. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/credits.txt +7 -0
  279. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/css/desktop.css +660 -0
  280. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/desktop.html +48 -0
  281. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/accordian.gif +0 -0
  282. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/bogus.png +0 -0
  283. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/desktop.gif +0 -0
  284. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/desktop3.jpg +0 -0
  285. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/gears.gif +0 -0
  286. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/gears.png +0 -0
  287. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/grid.png +0 -0
  288. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/grid32x32.gif +0 -0
  289. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/grid48x48.gif +0 -0
  290. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/grid48x48.png +0 -0
  291. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/hatch.gif +0 -0
  292. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/hd-bg.gif +0 -0
  293. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/hd-tb-bg.gif +0 -0
  294. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/icon_padlock.png +0 -0
  295. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/icons-bg.png +0 -0
  296. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/im32x32.gif +0 -0
  297. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/im48x48.gif +0 -0
  298. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/im48x48.png +0 -0
  299. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/launcher-bg.gif +0 -0
  300. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/launcher-btn.gif +0 -0
  301. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/logout.gif +0 -0
  302. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/logout.png +0 -0
  303. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/member.gif +0 -0
  304. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/member.png +0 -0
  305. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/powered.gif +0 -0
  306. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/powered.png +0 -0
  307. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/s.gif +0 -0
  308. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/tabs.gif +0 -0
  309. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/item-over.gif +0 -0
  310. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/scroll-left.gif +0 -0
  311. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/scroll-right.gif +0 -0
  312. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/start-menu-left-corners.png +0 -0
  313. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/start-menu-left-right.png +0 -0
  314. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/start-menu-right-corners.png +0 -0
  315. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/start-menu-right.png +0 -0
  316. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/start-menu-top-bottom.png +0 -0
  317. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/startbutton-icon.gif +0 -0
  318. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/startbutton.gif +0 -0
  319. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/taskbar-split-h.gif +0 -0
  320. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/taskbar-start-panel-bg.gif +0 -0
  321. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/taskbutton.gif +0 -0
  322. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/taskbar/black/taskbuttons-panel-bg.gif +0 -0
  323. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/winbar-bg.gif +0 -0
  324. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/winbar-btn.gif +0 -0
  325. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/images/windows-bg.gif +0 -0
  326. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/js/App.js +83 -0
  327. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/js/Desktop.js +214 -0
  328. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/js/Module.js +15 -0
  329. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/js/StartMenu.js +249 -0
  330. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/js/TaskBar.js +473 -0
  331. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/sample.js +423 -0
  332. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/blue.jpg +0 -0
  333. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/desk.jpg +0 -0
  334. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/desktop.jpg +0 -0
  335. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/desktop2.jpg +0 -0
  336. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/ext.gif +0 -0
  337. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/shiny.gif +0 -0
  338. lino/modlib/extjs/static/ext-3.3.1/examples/desktop/wallpapers/sky.jpg +0 -0
  339. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct-form.js +149 -0
  340. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct-form.php +29 -0
  341. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct-tree.js +29 -0
  342. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct-tree.php +30 -0
  343. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct.js +88 -0
  344. lino/modlib/extjs/static/ext-3.3.1/examples/direct/direct.php +47 -0
  345. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/api.php +31 -0
  346. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/classes/Profile.php +68 -0
  347. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/classes/TestAction.php +36 -0
  348. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/config.php +34 -0
  349. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/poll.php +6 -0
  350. lino/modlib/extjs/static/ext-3.3.1/examples/direct/php/router.php +101 -0
  351. lino/modlib/extjs/static/ext-3.3.1/examples/docs/index.html +44 -0
  352. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.DataView.LabelEditor.html +1 -0
  353. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.BoxLayoutTemplate.html +4 -0
  354. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.CalendarPanel.html +70 -0
  355. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.CalendarPicker.html +9 -0
  356. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.CalendarView.html +120 -0
  357. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DateRangeField.html +17 -0
  358. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayBodyTemplate.html +5 -0
  359. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayBodyView.html +143 -0
  360. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayHeaderTemplate.html +7 -0
  361. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayHeaderView.html +132 -0
  362. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayView.html +32 -0
  363. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.DayViewTemplate.html +6 -0
  364. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.EventEditForm.html +23 -0
  365. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.EventEditWindow.html +23 -0
  366. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.EventMappings.html +1 -0
  367. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.EventRecord.html +30 -0
  368. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.MonthView.html +130 -0
  369. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.MonthViewTemplate.html +5 -0
  370. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.ReminderField.html +9 -0
  371. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.calendar.WeekView.html +30 -0
  372. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.dd.ScrollManager.html +27 -0
  373. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.tree.ColumnResizer.html +3 -0
  374. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.DataViewTransition.html +22 -0
  375. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.FieldLabeler.html +10 -0
  376. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.FieldReplicator.html +10 -0
  377. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.GMapPanel.html +1 -0
  378. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.HBoxReorderer.html +41 -0
  379. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.ProgressBarPager.html +1 -0
  380. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.Reorderer.html +40 -0
  381. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.Spinner.html +1 -0
  382. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.StatusBar.html +281 -0
  383. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.TabCloseMenu.html +3 -0
  384. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.TabScrollerMenu.html +14 -0
  385. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.ToolbarDroppable.html +39 -0
  386. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.ToolbarReorderer.html +58 -0
  387. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.ValidationStatus.html +16 -0
  388. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.data.PagingMemoryProxy.html +1 -0
  389. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.form.FileUploadField.html +23 -0
  390. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.form.ItemSelector.html +12 -0
  391. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.form.MultiSelect.html +64 -0
  392. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.form.SelectBox.html +4 -0
  393. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.form.SpinnerField.html +1 -0
  394. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.BufferView.html +13 -0
  395. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.CheckColumn.html +24 -0
  396. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.GridFilters.html +190 -0
  397. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.GroupSummary.html +48 -0
  398. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.HybridSummary.html +68 -0
  399. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.RowEditor.html +31 -0
  400. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.RowExpander.html +33 -0
  401. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.TableGrid.html +1 -0
  402. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.BooleanFilter.html +66 -0
  403. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.DateFilter.html +90 -0
  404. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.Filter.html +72 -0
  405. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.ListFilter.html +173 -0
  406. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.NumericFilter.html +162 -0
  407. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.grid.filter.StringFilter.html +69 -0
  408. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.layout.CenterLayout.html +31 -0
  409. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.layout.RowLayout.html +55 -0
  410. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.menu.ListMenu.html +20 -0
  411. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.menu.RangeMenu.html +12 -0
  412. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.ColumnNodeUI.html +5 -0
  413. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.ColumnTree.html +1 -0
  414. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.TreeGrid.html +3 -0
  415. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.TreeGridLoader.html +1 -0
  416. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.TreeGridNodeUI.html +1 -0
  417. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.TreeGridSorter.html +11 -0
  418. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/Ext.ux.tree.XmlTreeLoader.html +8 -0
  419. lino/modlib/extjs/static/ext-3.3.1/examples/docs/output/tree.js +297 -0
  420. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/TabCloseMenu.js +150 -0
  421. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/accordian.gif +0 -0
  422. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/block-bg.gif +0 -0
  423. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/block-bottom.gif +0 -0
  424. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/block-top.gif +0 -0
  425. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/brick.png +0 -0
  426. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/class.gif +0 -0
  427. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/cmp.gif +0 -0
  428. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/collapse-all.gif +0 -0
  429. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/collapse-bg.gif +0 -0
  430. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/collapser.css +34 -0
  431. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/config.gif +0 -0
  432. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/css/ext-all.css +6789 -0
  433. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/css/xtheme-gray.css +1654 -0
  434. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/docs.css +356 -0
  435. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/docs.gif +0 -0
  436. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/docs.js +672 -0
  437. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/elbow-end.gif +0 -0
  438. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/event.gif +0 -0
  439. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/example.gif +0 -0
  440. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/expand-all.gif +0 -0
  441. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/expand-bg-over.gif +0 -0
  442. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/expand-bg.gif +0 -0
  443. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/expand-members.gif +0 -0
  444. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/ext-all.css +6789 -0
  445. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/ext-all.js +11 -0
  446. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/ext-base.js +7 -0
  447. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/extanim32.gif +0 -0
  448. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/extanim64.gif +0 -0
  449. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/extjs.gif +0 -0
  450. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/fav.gif +0 -0
  451. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/favicon.ico +0 -0
  452. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/folder.gif +0 -0
  453. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/folder_open.gif +0 -0
  454. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/form.png +0 -0
  455. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/forum.gif +0 -0
  456. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/hd-bg.gif +0 -0
  457. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/hd-bg.png +0 -0
  458. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/hide-inherited.gif +0 -0
  459. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/icon-grid.gif +0 -0
  460. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/corners-blue.gif +0 -0
  461. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/corners.gif +0 -0
  462. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/l-blue.gif +0 -0
  463. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/l.gif +0 -0
  464. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/r-blue.gif +0 -0
  465. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/r.gif +0 -0
  466. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/tb-blue.gif +0 -0
  467. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/box/tb.gif +0 -0
  468. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/arrow.gif +0 -0
  469. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/btn.gif +0 -0
  470. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/group-cs.gif +0 -0
  471. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/group-lr.gif +0 -0
  472. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/group-tb.gif +0 -0
  473. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow-b-noline.gif +0 -0
  474. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow-b.gif +0 -0
  475. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow-bo.gif +0 -0
  476. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow-noline.gif +0 -0
  477. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow-o.gif +0 -0
  478. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/button/s-arrow.gif +0 -0
  479. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/editor/tb-sprite.gif +0 -0
  480. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/checkbox.gif +0 -0
  481. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/clear-trigger.gif +0 -0
  482. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/clear-trigger.psd +0 -0
  483. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/date-trigger.gif +0 -0
  484. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/date-trigger.psd +0 -0
  485. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/error-tip-corners.gif +0 -0
  486. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/exclamation.gif +0 -0
  487. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/radio.gif +0 -0
  488. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/search-trigger.gif +0 -0
  489. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/search-trigger.psd +0 -0
  490. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/text-bg.gif +0 -0
  491. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/trigger-tpl.gif +0 -0
  492. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/trigger.gif +0 -0
  493. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/form/trigger.psd +0 -0
  494. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/arrow-left-white.gif +0 -0
  495. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/arrow-right-white.gif +0 -0
  496. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/col-move-bottom.gif +0 -0
  497. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/col-move-top.gif +0 -0
  498. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/columns.gif +0 -0
  499. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/dirty.gif +0 -0
  500. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/done.gif +0 -0
  501. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/drop-no.gif +0 -0
  502. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/drop-yes.gif +0 -0
  503. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/footer-bg.gif +0 -0
  504. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-blue-hd.gif +0 -0
  505. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-blue-split.gif +0 -0
  506. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-hrow.gif +0 -0
  507. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-loading.gif +0 -0
  508. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-split.gif +0 -0
  509. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid-vista-hd.gif +0 -0
  510. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid3-hd-btn.gif +0 -0
  511. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid3-hrow-over.gif +0 -0
  512. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid3-hrow.gif +0 -0
  513. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid3-special-col-bg.gif +0 -0
  514. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/grid3-special-col-sel-bg.gif +0 -0
  515. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/group-by.gif +0 -0
  516. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/group-collapse.gif +0 -0
  517. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/group-expand-sprite.gif +0 -0
  518. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/group-expand.gif +0 -0
  519. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hd-pop.gif +0 -0
  520. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-asc.gif +0 -0
  521. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-desc.gif +0 -0
  522. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-lock.gif +0 -0
  523. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-lock.png +0 -0
  524. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-unlock.gif +0 -0
  525. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/hmenu-unlock.png +0 -0
  526. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/invalid_line.gif +0 -0
  527. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/loading.gif +0 -0
  528. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/mso-hd.gif +0 -0
  529. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/nowait.gif +0 -0
  530. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-first-disabled.gif +0 -0
  531. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-first.gif +0 -0
  532. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-last-disabled.gif +0 -0
  533. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-last.gif +0 -0
  534. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-next-disabled.gif +0 -0
  535. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-next.gif +0 -0
  536. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-prev-disabled.gif +0 -0
  537. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/page-prev.gif +0 -0
  538. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/pick-button.gif +0 -0
  539. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/refresh.gif +0 -0
  540. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/row-check-sprite.gif +0 -0
  541. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/row-expand-sprite.gif +0 -0
  542. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/row-over.gif +0 -0
  543. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/row-sel.gif +0 -0
  544. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/sort-hd.gif +0 -0
  545. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/sort_asc.gif +0 -0
  546. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/sort_desc.gif +0 -0
  547. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/grid/wait.gif +0 -0
  548. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/checked.gif +0 -0
  549. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/group-checked.gif +0 -0
  550. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/item-over.gif +0 -0
  551. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/menu-parent.gif +0 -0
  552. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/menu.gif +0 -0
  553. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/menu/unchecked.gif +0 -0
  554. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/corners-sprite.gif +0 -0
  555. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/left-right.gif +0 -0
  556. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/light-hd.gif +0 -0
  557. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/tool-sprite-tpl.gif +0 -0
  558. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/tool-sprites.gif +0 -0
  559. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/tools-sprites-trans.gif +0 -0
  560. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/top-bottom.gif +0 -0
  561. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/white-corners-sprite.gif +0 -0
  562. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/white-left-right.gif +0 -0
  563. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/panel/white-top-bottom.gif +0 -0
  564. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/progress/progress-bg.gif +0 -0
  565. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/qtip/close.gif +0 -0
  566. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/qtip/tip-anchor-sprite.gif +0 -0
  567. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/qtip/tip-sprite.gif +0 -0
  568. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/shared/glass-bg.gif +0 -0
  569. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/shared/hd-sprite.gif +0 -0
  570. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/shared/left-btn.gif +0 -0
  571. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/shared/right-btn.gif +0 -0
  572. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/e-handle-dark.gif +0 -0
  573. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/e-handle.gif +0 -0
  574. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/ne-handle-dark.gif +0 -0
  575. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/ne-handle.gif +0 -0
  576. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/nw-handle-dark.gif +0 -0
  577. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/nw-handle.gif +0 -0
  578. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/s-handle-dark.gif +0 -0
  579. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/s-handle.gif +0 -0
  580. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/se-handle-dark.gif +0 -0
  581. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/se-handle.gif +0 -0
  582. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/square.gif +0 -0
  583. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/sw-handle-dark.gif +0 -0
  584. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/sizer/sw-handle.gif +0 -0
  585. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/slider/slider-bg.png +0 -0
  586. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/slider/slider-thumb.png +0 -0
  587. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/slider/slider-v-bg.png +0 -0
  588. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/slider/slider-v-thumb.png +0 -0
  589. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/scroll-left.gif +0 -0
  590. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/scroll-right.gif +0 -0
  591. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-btm-inactive-left-bg.gif +0 -0
  592. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-btm-inactive-right-bg.gif +0 -0
  593. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-btm-left-bg.gif +0 -0
  594. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-btm-right-bg.gif +0 -0
  595. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-close.gif +0 -0
  596. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-strip-bg.gif +0 -0
  597. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tab-strip-btm-bg.gif +0 -0
  598. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tabs/tabs-sprite.gif +0 -0
  599. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/bg.gif +0 -0
  600. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/btn-arrow-light.gif +0 -0
  601. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/btn-arrow.gif +0 -0
  602. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/btn-over-bg.gif +0 -0
  603. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/gray-bg.gif +0 -0
  604. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/more.gif +0 -0
  605. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/s-arrow-bo.gif +0 -0
  606. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/tb-btn-sprite.gif +0 -0
  607. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/tb-xl-btn-sprite.gif +0 -0
  608. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/toolbar/tb-xl-sep.gif +0 -0
  609. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/arrows.gif +0 -0
  610. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-add.gif +0 -0
  611. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-between.gif +0 -0
  612. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-no.gif +0 -0
  613. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-over.gif +0 -0
  614. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-under.gif +0 -0
  615. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/drop-yes.gif +0 -0
  616. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-end-minus-nl.gif +0 -0
  617. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-end-minus.gif +0 -0
  618. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-end-plus-nl.gif +0 -0
  619. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-end-plus.gif +0 -0
  620. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-end.gif +0 -0
  621. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-line.gif +0 -0
  622. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-minus-nl.gif +0 -0
  623. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-minus.gif +0 -0
  624. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-plus-nl.gif +0 -0
  625. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow-plus.gif +0 -0
  626. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/elbow.gif +0 -0
  627. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/folder-open.gif +0 -0
  628. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/folder.gif +0 -0
  629. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/leaf.gif +0 -0
  630. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/loading.gif +0 -0
  631. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/tree/s.gif +0 -0
  632. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/icon-error.gif +0 -0
  633. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/icon-info.gif +0 -0
  634. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/icon-question.gif +0 -0
  635. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/icon-warning.gif +0 -0
  636. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/left-corners.png +0 -0
  637. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/left-right.png +0 -0
  638. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/right-corners.png +0 -0
  639. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/access/window/top-bottom.png +0 -0
  640. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/corners-blue.gif +0 -0
  641. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/corners.gif +0 -0
  642. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/l-blue.gif +0 -0
  643. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/l.gif +0 -0
  644. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/r-blue.gif +0 -0
  645. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/r.gif +0 -0
  646. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/tb-blue.gif +0 -0
  647. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/box/tb.gif +0 -0
  648. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/arrow.gif +0 -0
  649. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/btn.gif +0 -0
  650. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/group-cs.gif +0 -0
  651. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/group-lr.gif +0 -0
  652. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/group-tb.gif +0 -0
  653. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow-b-noline.gif +0 -0
  654. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow-b.gif +0 -0
  655. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow-bo.gif +0 -0
  656. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow-noline.gif +0 -0
  657. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow-o.gif +0 -0
  658. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/button/s-arrow.gif +0 -0
  659. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/dd/drop-add.gif +0 -0
  660. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/dd/drop-no.gif +0 -0
  661. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/dd/drop-yes.gif +0 -0
  662. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/editor/tb-sprite.gif +0 -0
  663. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/checkbox.gif +0 -0
  664. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/clear-trigger.gif +0 -0
  665. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/clear-trigger.psd +0 -0
  666. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/date-trigger.gif +0 -0
  667. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/date-trigger.psd +0 -0
  668. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/error-tip-corners.gif +0 -0
  669. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/exclamation.gif +0 -0
  670. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/radio.gif +0 -0
  671. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/search-trigger.gif +0 -0
  672. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/search-trigger.psd +0 -0
  673. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/text-bg.gif +0 -0
  674. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/trigger-square.gif +0 -0
  675. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/trigger-square.psd +0 -0
  676. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/trigger-tpl.gif +0 -0
  677. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/trigger.gif +0 -0
  678. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/form/trigger.psd +0 -0
  679. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/gradient-bg.gif +0 -0
  680. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/arrow-left-white.gif +0 -0
  681. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/arrow-right-white.gif +0 -0
  682. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/col-move-bottom.gif +0 -0
  683. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/col-move-top.gif +0 -0
  684. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/columns.gif +0 -0
  685. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/dirty.gif +0 -0
  686. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/done.gif +0 -0
  687. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/drop-no.gif +0 -0
  688. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/drop-yes.gif +0 -0
  689. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/footer-bg.gif +0 -0
  690. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-blue-hd.gif +0 -0
  691. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-blue-split.gif +0 -0
  692. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-hrow.gif +0 -0
  693. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-loading.gif +0 -0
  694. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-split.gif +0 -0
  695. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid-vista-hd.gif +0 -0
  696. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid3-hd-btn.gif +0 -0
  697. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid3-hrow-over.gif +0 -0
  698. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid3-hrow.gif +0 -0
  699. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid3-special-col-bg.gif +0 -0
  700. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/grid3-special-col-sel-bg.gif +0 -0
  701. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/group-by.gif +0 -0
  702. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/group-collapse.gif +0 -0
  703. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/group-expand-sprite.gif +0 -0
  704. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/group-expand.gif +0 -0
  705. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hd-pop.gif +0 -0
  706. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-asc.gif +0 -0
  707. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-desc.gif +0 -0
  708. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-lock.gif +0 -0
  709. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-lock.png +0 -0
  710. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-unlock.gif +0 -0
  711. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/hmenu-unlock.png +0 -0
  712. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/invalid_line.gif +0 -0
  713. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/loading.gif +0 -0
  714. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/mso-hd.gif +0 -0
  715. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/nowait.gif +0 -0
  716. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-first-disabled.gif +0 -0
  717. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-first.gif +0 -0
  718. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-last-disabled.gif +0 -0
  719. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-last.gif +0 -0
  720. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-next-disabled.gif +0 -0
  721. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-next.gif +0 -0
  722. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-prev-disabled.gif +0 -0
  723. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/page-prev.gif +0 -0
  724. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/pick-button.gif +0 -0
  725. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/refresh.gif +0 -0
  726. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/row-check-sprite.gif +0 -0
  727. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/row-expand-sprite.gif +0 -0
  728. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/row-over.gif +0 -0
  729. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/row-sel.gif +0 -0
  730. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/sort-hd.gif +0 -0
  731. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/sort_asc.gif +0 -0
  732. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/sort_desc.gif +0 -0
  733. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/grid/wait.gif +0 -0
  734. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/collapse.gif +0 -0
  735. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/expand.gif +0 -0
  736. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/gradient-bg.gif +0 -0
  737. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/mini-bottom.gif +0 -0
  738. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/mini-left.gif +0 -0
  739. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/mini-right.gif +0 -0
  740. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/mini-top.gif +0 -0
  741. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/ns-collapse.gif +0 -0
  742. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/ns-expand.gif +0 -0
  743. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/panel-close.gif +0 -0
  744. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/panel-title-bg.gif +0 -0
  745. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/panel-title-light-bg.gif +0 -0
  746. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/stick.gif +0 -0
  747. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/stuck.gif +0 -0
  748. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/tab-close-on.gif +0 -0
  749. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/layout/tab-close.gif +0 -0
  750. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/checked.gif +0 -0
  751. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/group-checked.gif +0 -0
  752. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/item-over.gif +0 -0
  753. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/menu-parent.gif +0 -0
  754. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/menu.gif +0 -0
  755. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/menu/unchecked.gif +0 -0
  756. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/corners-sprite.gif +0 -0
  757. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/left-right.gif +0 -0
  758. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/light-hd.gif +0 -0
  759. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/tool-sprite-tpl.gif +0 -0
  760. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/tool-sprites.gif +0 -0
  761. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/tools-sprites-trans.gif +0 -0
  762. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/top-bottom.gif +0 -0
  763. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/top-bottom.png +0 -0
  764. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/white-corners-sprite.gif +0 -0
  765. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/white-left-right.gif +0 -0
  766. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/panel/white-top-bottom.gif +0 -0
  767. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/progress/progress-bg.gif +0 -0
  768. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/qtip/bg.gif +0 -0
  769. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/qtip/close.gif +0 -0
  770. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/qtip/tip-anchor-sprite.gif +0 -0
  771. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/qtip/tip-sprite.gif +0 -0
  772. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/s.gif +0 -0
  773. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shadow-c.png +0 -0
  774. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shadow-lr.png +0 -0
  775. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shadow.png +0 -0
  776. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/blue-loading.gif +0 -0
  777. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/calendar.gif +0 -0
  778. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/glass-bg.gif +0 -0
  779. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/hd-sprite.gif +0 -0
  780. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/large-loading.gif +0 -0
  781. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/left-btn.gif +0 -0
  782. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/loading-balls.gif +0 -0
  783. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/right-btn.gif +0 -0
  784. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/shared/warning.gif +0 -0
  785. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/e-handle-dark.gif +0 -0
  786. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/e-handle.gif +0 -0
  787. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/ne-handle-dark.gif +0 -0
  788. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/ne-handle.gif +0 -0
  789. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/nw-handle-dark.gif +0 -0
  790. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/nw-handle.gif +0 -0
  791. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/s-handle-dark.gif +0 -0
  792. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/s-handle.gif +0 -0
  793. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/se-handle-dark.gif +0 -0
  794. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/se-handle.gif +0 -0
  795. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/square.gif +0 -0
  796. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/sw-handle-dark.gif +0 -0
  797. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/sizer/sw-handle.gif +0 -0
  798. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/slider/slider-bg.png +0 -0
  799. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/slider/slider-thumb.png +0 -0
  800. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/slider/slider-v-bg.png +0 -0
  801. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/slider/slider-v-thumb.png +0 -0
  802. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/scroll-left.gif +0 -0
  803. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/scroll-right.gif +0 -0
  804. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/scroller-bg.gif +0 -0
  805. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-inactive-left-bg.gif +0 -0
  806. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-inactive-right-bg.gif +0 -0
  807. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-left-bg.gif +0 -0
  808. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-over-left-bg.gif +0 -0
  809. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-over-right-bg.gif +0 -0
  810. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-btm-right-bg.gif +0 -0
  811. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-close.gif +0 -0
  812. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-strip-bg.gif +0 -0
  813. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-strip-bg.png +0 -0
  814. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tab-strip-btm-bg.gif +0 -0
  815. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tabs/tabs-sprite.gif +0 -0
  816. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/bg.gif +0 -0
  817. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/btn-arrow-light.gif +0 -0
  818. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/btn-arrow.gif +0 -0
  819. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/btn-over-bg.gif +0 -0
  820. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/gray-bg.gif +0 -0
  821. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/more.gif +0 -0
  822. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/tb-bg.gif +0 -0
  823. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/tb-btn-sprite.gif +0 -0
  824. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/tb-xl-btn-sprite.gif +0 -0
  825. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/toolbar/tb-xl-sep.gif +0 -0
  826. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/arrows.gif +0 -0
  827. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-add.gif +0 -0
  828. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-between.gif +0 -0
  829. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-no.gif +0 -0
  830. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-over.gif +0 -0
  831. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-under.gif +0 -0
  832. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/drop-yes.gif +0 -0
  833. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-end-minus-nl.gif +0 -0
  834. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-end-minus.gif +0 -0
  835. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-end-plus-nl.gif +0 -0
  836. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-end-plus.gif +0 -0
  837. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-end.gif +0 -0
  838. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-line.gif +0 -0
  839. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-minus-nl.gif +0 -0
  840. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-minus.gif +0 -0
  841. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-plus-nl.gif +0 -0
  842. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow-plus.gif +0 -0
  843. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/elbow.gif +0 -0
  844. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/folder-open.gif +0 -0
  845. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/folder.gif +0 -0
  846. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/leaf.gif +0 -0
  847. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/loading.gif +0 -0
  848. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/tree/s.gif +0 -0
  849. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/icon-error.gif +0 -0
  850. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/icon-info.gif +0 -0
  851. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/icon-question.gif +0 -0
  852. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/icon-warning.gif +0 -0
  853. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/left-corners.png +0 -0
  854. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/left-corners.psd +0 -0
  855. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/left-right.png +0 -0
  856. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/left-right.psd +0 -0
  857. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/right-corners.png +0 -0
  858. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/right-corners.psd +0 -0
  859. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/top-bottom.png +0 -0
  860. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/default/window/top-bottom.psd +0 -0
  861. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/btn-arrow.gif +0 -0
  862. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/btn-sprite.gif +0 -0
  863. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/btn.gif +0 -0
  864. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/group-cs.gif +0 -0
  865. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/group-lr.gif +0 -0
  866. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/group-tb.gif +0 -0
  867. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/s-arrow-bo.gif +0 -0
  868. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/button/s-arrow-o.gif +0 -0
  869. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/form/clear-trigger.gif +0 -0
  870. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/form/date-trigger.gif +0 -0
  871. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/form/search-trigger.gif +0 -0
  872. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/form/trigger-square.gif +0 -0
  873. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/form/trigger.gif +0 -0
  874. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/gradient-bg.gif +0 -0
  875. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/col-move-bottom.gif +0 -0
  876. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/col-move-top.gif +0 -0
  877. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-hd-btn.gif +0 -0
  878. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-hrow-over.gif +0 -0
  879. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-hrow-over2.gif +0 -0
  880. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-hrow.gif +0 -0
  881. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-hrow2.gif +0 -0
  882. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-special-col-bg.gif +0 -0
  883. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-special-col-bg2.gif +0 -0
  884. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/grid3-special-col-sel-bg.gif +0 -0
  885. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/group-collapse.gif +0 -0
  886. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/group-expand-sprite.gif +0 -0
  887. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/group-expand.gif +0 -0
  888. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/page-first.gif +0 -0
  889. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/page-last.gif +0 -0
  890. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/page-next.gif +0 -0
  891. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/page-prev.gif +0 -0
  892. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/refresh.gif +0 -0
  893. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/row-expand-sprite.gif +0 -0
  894. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/sort_asc.gif +0 -0
  895. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/grid/sort_desc.gif +0 -0
  896. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/menu/group-checked.gif +0 -0
  897. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/menu/item-over-disabled.gif +0 -0
  898. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/menu/item-over.gif +0 -0
  899. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/menu/menu-parent.gif +0 -0
  900. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/corners-sprite.gif +0 -0
  901. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/left-right.gif +0 -0
  902. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/light-hd.gif +0 -0
  903. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/tool-sprite-tpl.gif +0 -0
  904. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/tool-sprites.gif +0 -0
  905. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/tools-sprites-trans.gif +0 -0
  906. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/top-bottom.gif +0 -0
  907. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/top-bottom.png +0 -0
  908. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/white-corners-sprite.gif +0 -0
  909. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/white-left-right.gif +0 -0
  910. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/panel/white-top-bottom.gif +0 -0
  911. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/progress/progress-bg.gif +0 -0
  912. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/qtip/bg.gif +0 -0
  913. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/qtip/close.gif +0 -0
  914. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/qtip/tip-anchor-sprite.gif +0 -0
  915. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/qtip/tip-sprite.gif +0 -0
  916. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/s.gif +0 -0
  917. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/shared/hd-sprite.gif +0 -0
  918. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/shared/left-btn.gif +0 -0
  919. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/shared/right-btn.gif +0 -0
  920. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/e-handle.gif +0 -0
  921. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/ne-handle.gif +0 -0
  922. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/nw-handle.gif +0 -0
  923. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/s-handle.gif +0 -0
  924. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/se-handle.gif +0 -0
  925. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/square.gif +0 -0
  926. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/sizer/sw-handle.gif +0 -0
  927. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/slider/slider-thumb.png +0 -0
  928. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/slider/slider-v-thumb.png +0 -0
  929. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/scroll-left.gif +0 -0
  930. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/scroll-right.gif +0 -0
  931. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/scroller-bg.gif +0 -0
  932. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif +0 -0
  933. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif +0 -0
  934. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-left-bg.gif +0 -0
  935. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-over-left-bg.gif +0 -0
  936. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-over-right-bg.gif +0 -0
  937. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-btm-right-bg.gif +0 -0
  938. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-close.gif +0 -0
  939. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-strip-bg.gif +0 -0
  940. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-strip-bg.png +0 -0
  941. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tab-strip-btm-bg.gif +0 -0
  942. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tabs/tabs-sprite.gif +0 -0
  943. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/bg.gif +0 -0
  944. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/btn-arrow-light.gif +0 -0
  945. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/btn-arrow.gif +0 -0
  946. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/btn-over-bg.gif +0 -0
  947. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/gray-bg.gif +0 -0
  948. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/more.gif +0 -0
  949. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/tb-bg.gif +0 -0
  950. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/toolbar/tb-btn-sprite.gif +0 -0
  951. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tree/arrows.gif +0 -0
  952. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tree/elbow-end-minus-nl.gif +0 -0
  953. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tree/elbow-end-minus.gif +0 -0
  954. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tree/elbow-end-plus-nl.gif +0 -0
  955. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/tree/elbow-end-plus.gif +0 -0
  956. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/icon-error.gif +0 -0
  957. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/icon-info.gif +0 -0
  958. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/icon-question.gif +0 -0
  959. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/icon-warning.gif +0 -0
  960. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/left-corners.png +0 -0
  961. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/left-corners.pspimage +0 -0
  962. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/left-right.png +0 -0
  963. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/right-corners.png +0 -0
  964. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/gray/window/top-bottom.png +0 -0
  965. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/bg-center.gif +0 -0
  966. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/bg-left.gif +0 -0
  967. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/bg-right.gif +0 -0
  968. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/close.gif +0 -0
  969. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/collapse.gif +0 -0
  970. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/dlg-bg.gif +0 -0
  971. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/e-handle.gif +0 -0
  972. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/expand.gif +0 -0
  973. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/hd-sprite.gif +0 -0
  974. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/s-handle.gif +0 -0
  975. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/se-handle.gif +0 -0
  976. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/basic-dialog/w-handle.gif +0 -0
  977. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/gradient-bg.gif +0 -0
  978. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/grid/grid-split.gif +0 -0
  979. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/grid/grid-vista-hd.gif +0 -0
  980. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/collapse.gif +0 -0
  981. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/expand.gif +0 -0
  982. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/gradient-bg.gif +0 -0
  983. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/ns-collapse.gif +0 -0
  984. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/ns-expand.gif +0 -0
  985. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/panel-close.gif +0 -0
  986. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/panel-title-bg.gif +0 -0
  987. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/panel-title-light-bg.gif +0 -0
  988. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/stick.gif +0 -0
  989. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/tab-close-on.gif +0 -0
  990. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/layout/tab-close.gif +0 -0
  991. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/qtip/bg.gif +0 -0
  992. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/qtip/tip-sprite.gif +0 -0
  993. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/s.gif +0 -0
  994. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/e-handle-dark.gif +0 -0
  995. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/e-handle.gif +0 -0
  996. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/ne-handle-dark.gif +0 -0
  997. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/ne-handle.gif +0 -0
  998. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/nw-handle-dark.gif +0 -0
  999. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/nw-handle.gif +0 -0
  1000. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/s-handle-dark.gif +0 -0
  1001. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/s-handle.gif +0 -0
  1002. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/se-handle-dark.gif +0 -0
  1003. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/se-handle.gif +0 -0
  1004. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/sw-handle-dark.gif +0 -0
  1005. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/sizer/sw-handle.gif +0 -0
  1006. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif +0 -0
  1007. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif +0 -0
  1008. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/tabs/tab-btm-left-bg.gif +0 -0
  1009. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/tabs/tab-btm-right-bg.gif +0 -0
  1010. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/tabs/tab-sprite.gif +0 -0
  1011. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/toolbar/gray-bg.gif +0 -0
  1012. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/vista/toolbar/tb-btn-sprite.gif +0 -0
  1013. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/README.txt +2 -0
  1014. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/corners-blue.gif +0 -0
  1015. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/corners.gif +0 -0
  1016. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/l-blue.gif +0 -0
  1017. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/l.gif +0 -0
  1018. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/r-blue.gif +0 -0
  1019. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/r.gif +0 -0
  1020. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/tb-blue.gif +0 -0
  1021. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/box/tb.gif +0 -0
  1022. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/arrow.gif +0 -0
  1023. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/btn.gif +0 -0
  1024. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/group-cs.gif +0 -0
  1025. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/group-lr.gif +0 -0
  1026. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/group-tb.gif +0 -0
  1027. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow-b-noline.gif +0 -0
  1028. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow-b.gif +0 -0
  1029. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow-bo.gif +0 -0
  1030. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow-noline.gif +0 -0
  1031. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow-o.gif +0 -0
  1032. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/button/s-arrow.gif +0 -0
  1033. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/dd/drop-add.gif +0 -0
  1034. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/dd/drop-no.gif +0 -0
  1035. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/dd/drop-yes.gif +0 -0
  1036. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/editor/tb-sprite.gif +0 -0
  1037. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/checkbox.gif +0 -0
  1038. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/clear-trigger.gif +0 -0
  1039. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/clear-trigger.psd +0 -0
  1040. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/date-trigger.gif +0 -0
  1041. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/date-trigger.psd +0 -0
  1042. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/error-tip-corners.gif +0 -0
  1043. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/exclamation.gif +0 -0
  1044. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/radio.gif +0 -0
  1045. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/search-trigger.gif +0 -0
  1046. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/search-trigger.psd +0 -0
  1047. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/text-bg.gif +0 -0
  1048. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/trigger-square.gif +0 -0
  1049. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/trigger-square.psd +0 -0
  1050. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/trigger-tpl.gif +0 -0
  1051. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/trigger.gif +0 -0
  1052. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/form/trigger.psd +0 -0
  1053. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/gradient-bg.gif +0 -0
  1054. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/arrow-left-white.gif +0 -0
  1055. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/arrow-right-white.gif +0 -0
  1056. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/col-move-bottom.gif +0 -0
  1057. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/col-move-top.gif +0 -0
  1058. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/columns.gif +0 -0
  1059. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/dirty.gif +0 -0
  1060. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/done.gif +0 -0
  1061. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/drop-no.gif +0 -0
  1062. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/drop-yes.gif +0 -0
  1063. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/footer-bg.gif +0 -0
  1064. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-blue-hd.gif +0 -0
  1065. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-blue-split.gif +0 -0
  1066. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-hrow.gif +0 -0
  1067. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-loading.gif +0 -0
  1068. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-split.gif +0 -0
  1069. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid-vista-hd.gif +0 -0
  1070. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid3-hd-btn.gif +0 -0
  1071. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid3-hrow-over.gif +0 -0
  1072. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid3-hrow.gif +0 -0
  1073. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid3-special-col-bg.gif +0 -0
  1074. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/grid3-special-col-sel-bg.gif +0 -0
  1075. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/group-by.gif +0 -0
  1076. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/group-collapse.gif +0 -0
  1077. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/group-expand-sprite.gif +0 -0
  1078. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/group-expand.gif +0 -0
  1079. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hd-pop.gif +0 -0
  1080. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-asc.gif +0 -0
  1081. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-desc.gif +0 -0
  1082. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-lock.gif +0 -0
  1083. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-lock.png +0 -0
  1084. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-unlock.gif +0 -0
  1085. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/hmenu-unlock.png +0 -0
  1086. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/invalid_line.gif +0 -0
  1087. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/loading.gif +0 -0
  1088. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/mso-hd.gif +0 -0
  1089. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/nowait.gif +0 -0
  1090. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-first-disabled.gif +0 -0
  1091. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-first.gif +0 -0
  1092. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-last-disabled.gif +0 -0
  1093. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-last.gif +0 -0
  1094. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-next-disabled.gif +0 -0
  1095. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-next.gif +0 -0
  1096. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-prev-disabled.gif +0 -0
  1097. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/page-prev.gif +0 -0
  1098. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/pick-button.gif +0 -0
  1099. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/refresh.gif +0 -0
  1100. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/row-check-sprite.gif +0 -0
  1101. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/row-expand-sprite.gif +0 -0
  1102. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/row-over.gif +0 -0
  1103. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/row-sel.gif +0 -0
  1104. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/sort-hd.gif +0 -0
  1105. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/sort_asc.gif +0 -0
  1106. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/sort_desc.gif +0 -0
  1107. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/grid/wait.gif +0 -0
  1108. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/collapse.gif +0 -0
  1109. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/expand.gif +0 -0
  1110. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/gradient-bg.gif +0 -0
  1111. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/mini-bottom.gif +0 -0
  1112. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/mini-left.gif +0 -0
  1113. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/mini-right.gif +0 -0
  1114. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/mini-top.gif +0 -0
  1115. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/ns-collapse.gif +0 -0
  1116. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/ns-expand.gif +0 -0
  1117. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/panel-close.gif +0 -0
  1118. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/panel-title-bg.gif +0 -0
  1119. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/panel-title-light-bg.gif +0 -0
  1120. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/stick.gif +0 -0
  1121. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/stuck.gif +0 -0
  1122. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/tab-close-on.gif +0 -0
  1123. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/layout/tab-close.gif +0 -0
  1124. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/checked.gif +0 -0
  1125. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/group-checked.gif +0 -0
  1126. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/item-over.gif +0 -0
  1127. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/menu-parent.gif +0 -0
  1128. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/menu.gif +0 -0
  1129. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/menu/unchecked.gif +0 -0
  1130. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/corners-sprite.gif +0 -0
  1131. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/left-right.gif +0 -0
  1132. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/light-hd.gif +0 -0
  1133. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/tool-sprite-tpl.gif +0 -0
  1134. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/tool-sprites.gif +0 -0
  1135. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/tools-sprites-trans.gif +0 -0
  1136. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/top-bottom.gif +0 -0
  1137. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/top-bottom.png +0 -0
  1138. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/white-corners-sprite.gif +0 -0
  1139. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/white-left-right.gif +0 -0
  1140. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/panel/white-top-bottom.gif +0 -0
  1141. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/progress/progress-bg.gif +0 -0
  1142. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/qtip/bg.gif +0 -0
  1143. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/qtip/close.gif +0 -0
  1144. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/qtip/tip-anchor-sprite.gif +0 -0
  1145. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/qtip/tip-sprite.gif +0 -0
  1146. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/s.gif +0 -0
  1147. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shadow-c.png +0 -0
  1148. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shadow-lr.png +0 -0
  1149. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shadow.png +0 -0
  1150. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/blue-loading.gif +0 -0
  1151. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/calendar.gif +0 -0
  1152. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/glass-bg.gif +0 -0
  1153. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/hd-sprite.gif +0 -0
  1154. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/large-loading.gif +0 -0
  1155. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/left-btn.gif +0 -0
  1156. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/loading-balls.gif +0 -0
  1157. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/right-btn.gif +0 -0
  1158. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/shared/warning.gif +0 -0
  1159. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/e-handle-dark.gif +0 -0
  1160. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/e-handle.gif +0 -0
  1161. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/ne-handle-dark.gif +0 -0
  1162. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/ne-handle.gif +0 -0
  1163. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/nw-handle-dark.gif +0 -0
  1164. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/nw-handle.gif +0 -0
  1165. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/s-handle-dark.gif +0 -0
  1166. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/s-handle.gif +0 -0
  1167. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/se-handle-dark.gif +0 -0
  1168. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/se-handle.gif +0 -0
  1169. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/square.gif +0 -0
  1170. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/sw-handle-dark.gif +0 -0
  1171. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/sizer/sw-handle.gif +0 -0
  1172. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/slider/slider-bg.png +0 -0
  1173. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/slider/slider-thumb.png +0 -0
  1174. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/slider/slider-v-bg.png +0 -0
  1175. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/slider/slider-v-thumb.png +0 -0
  1176. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/scroll-left.gif +0 -0
  1177. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/scroll-right.gif +0 -0
  1178. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/scroller-bg.gif +0 -0
  1179. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-inactive-left-bg.gif +0 -0
  1180. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-inactive-right-bg.gif +0 -0
  1181. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-left-bg.gif +0 -0
  1182. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-over-left-bg.gif +0 -0
  1183. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-over-right-bg.gif +0 -0
  1184. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-btm-right-bg.gif +0 -0
  1185. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-close.gif +0 -0
  1186. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-strip-bg.gif +0 -0
  1187. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-strip-bg.png +0 -0
  1188. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tab-strip-btm-bg.gif +0 -0
  1189. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tabs/tabs-sprite.gif +0 -0
  1190. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/bg.gif +0 -0
  1191. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/btn-arrow-light.gif +0 -0
  1192. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/btn-arrow.gif +0 -0
  1193. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/btn-over-bg.gif +0 -0
  1194. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/gray-bg.gif +0 -0
  1195. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/more.gif +0 -0
  1196. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/tb-bg.gif +0 -0
  1197. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/tb-btn-sprite.gif +0 -0
  1198. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/tb-xl-btn-sprite.gif +0 -0
  1199. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/toolbar/tb-xl-sep.gif +0 -0
  1200. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/arrows.gif +0 -0
  1201. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-add.gif +0 -0
  1202. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-between.gif +0 -0
  1203. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-no.gif +0 -0
  1204. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-over.gif +0 -0
  1205. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-under.gif +0 -0
  1206. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/drop-yes.gif +0 -0
  1207. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-end-minus-nl.gif +0 -0
  1208. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-end-minus.gif +0 -0
  1209. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-end-plus-nl.gif +0 -0
  1210. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-end-plus.gif +0 -0
  1211. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-end.gif +0 -0
  1212. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-line.gif +0 -0
  1213. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-minus-nl.gif +0 -0
  1214. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-minus.gif +0 -0
  1215. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-plus-nl.gif +0 -0
  1216. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow-plus.gif +0 -0
  1217. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/elbow.gif +0 -0
  1218. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/folder-open.gif +0 -0
  1219. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/folder.gif +0 -0
  1220. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/leaf.gif +0 -0
  1221. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/loading.gif +0 -0
  1222. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/tree/s.gif +0 -0
  1223. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/icon-error.gif +0 -0
  1224. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/icon-info.gif +0 -0
  1225. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/icon-question.gif +0 -0
  1226. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/icon-warning.gif +0 -0
  1227. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/left-corners.png +0 -0
  1228. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/left-corners.psd +0 -0
  1229. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/left-right.png +0 -0
  1230. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/left-right.psd +0 -0
  1231. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/right-corners.png +0 -0
  1232. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/right-corners.psd +0 -0
  1233. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/top-bottom.png +0 -0
  1234. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/images/yourtheme/window/top-bottom.psd +0 -0
  1235. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/inherited.gif +0 -0
  1236. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/member-collapsed.gif +0 -0
  1237. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/member-expanded.gif +0 -0
  1238. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/member-hover.gif +0 -0
  1239. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/method.gif +0 -0
  1240. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/minus.gif +0 -0
  1241. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/pkg-closed.gif +0 -0
  1242. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/pkg-open.gif +0 -0
  1243. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/pkg.gif +0 -0
  1244. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/plus.gif +0 -0
  1245. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/prettify/prettify.css +1 -0
  1246. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/prettify/prettify.js +25 -0
  1247. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/print.css +206 -0
  1248. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/print.gif +0 -0
  1249. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/prop.gif +0 -0
  1250. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/reset.css +7 -0
  1251. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/s.gif +0 -0
  1252. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/static.gif +0 -0
  1253. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/style.css +360 -0
  1254. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/tabs.gif +0 -0
  1255. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/title-ux.png +0 -0
  1256. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/tree-bg.gif +0 -0
  1257. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/wel-bg.gif +0 -0
  1258. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/welcome-bg.gif +0 -0
  1259. lino/modlib/extjs/static/ext-3.3.1/examples/docs/resources/welcome.css +25 -0
  1260. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/BooleanFilter.html +113 -0
  1261. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/BoxLayoutTemplate.html +150 -0
  1262. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/BufferView.html +254 -0
  1263. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CalendarDD.html +270 -0
  1264. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CalendarPanel.html +545 -0
  1265. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CalendarPicker.html +77 -0
  1266. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CalendarScrollManager.html +225 -0
  1267. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CalendarView.html +1034 -0
  1268. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CenterLayout.html +73 -0
  1269. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/CheckColumn.html +81 -0
  1270. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ColumnHeaderGroup.html +491 -0
  1271. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ColumnNodeUI.html +120 -0
  1272. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DataView-more.html +170 -0
  1273. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DataViewTransition.html +328 -0
  1274. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DateFilter.html +323 -0
  1275. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DateRangeField.html +295 -0
  1276. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayBodyTemplate.html +100 -0
  1277. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayBodyView.html +458 -0
  1278. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayHeaderTemplate.html +61 -0
  1279. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayHeaderView.html +116 -0
  1280. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayView.html +208 -0
  1281. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayViewDD.html +221 -0
  1282. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/DayViewTemplate.html +58 -0
  1283. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/EventEditForm.html +239 -0
  1284. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/EventEditWindow.html +296 -0
  1285. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/EventRecord.html +156 -0
  1286. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Ext.calendar.html +70 -0
  1287. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/FieldLabeler.html +156 -0
  1288. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/FieldReplicator.html +94 -0
  1289. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/FileUploadField.html +193 -0
  1290. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Filter.html +195 -0
  1291. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Focus.html +824 -0
  1292. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/GMapPanel.html +225 -0
  1293. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/GridFilters.html +751 -0
  1294. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/GroupSummary.html +410 -0
  1295. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/GroupTab.html +277 -0
  1296. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/GroupTabPanel.html +315 -0
  1297. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ItemSelector.html +346 -0
  1298. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ListFilter.html +186 -0
  1299. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ListMenu.html +187 -0
  1300. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/LockingGridView.html +943 -0
  1301. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/MonthDayDetailView.html +122 -0
  1302. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/MonthView.html +493 -0
  1303. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/MonthViewTemplate.html +81 -0
  1304. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/MultiSelect.html +614 -0
  1305. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/NumericFilter.html +212 -0
  1306. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/PagingMemoryProxy.html +107 -0
  1307. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/PanelResizer.html +69 -0
  1308. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Portal.html +215 -0
  1309. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/PortalColumn.html +25 -0
  1310. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Portlet.html +26 -0
  1311. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ProgressBarPager.html +119 -0
  1312. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/RangeMenu.html +139 -0
  1313. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ReminderField.html +86 -0
  1314. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Reorderer.html +435 -0
  1315. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/RowEditor.html +542 -0
  1316. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/RowExpander.html +251 -0
  1317. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/RowLayout.html +189 -0
  1318. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/SearchField.html +63 -0
  1319. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/SelectBox.html +215 -0
  1320. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/SlidingPager.html +49 -0
  1321. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Spinner.html +453 -0
  1322. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/SpinnerField.html +72 -0
  1323. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/Spotlight.html +156 -0
  1324. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/StatusBar.html +429 -0
  1325. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/StatusProxy.html +91 -0
  1326. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/StringFilter.html +143 -0
  1327. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TabCloseMenu.html +160 -0
  1328. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TabScrollerMenu.html +234 -0
  1329. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TableGrid.html +98 -0
  1330. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ToolbarDroppable.html +169 -0
  1331. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ToolbarReorderer.html +203 -0
  1332. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGrid.html +420 -0
  1333. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGridColumnResizer.html +129 -0
  1334. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGridColumns.html +50 -0
  1335. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGridLoader.html +28 -0
  1336. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGridNodeUI.html +117 -0
  1337. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/TreeGridSorter.html +147 -0
  1338. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ValidationStatus.html +206 -0
  1339. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/WeekEventRenderer.html +178 -0
  1340. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/WeekView.html +34 -0
  1341. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/XmlTreeLoader.html +117 -0
  1342. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ux-all-debug.html +10614 -0
  1343. lino/modlib/extjs/static/ext-3.3.1/examples/docs/source/ux-all.html +24 -0
  1344. lino/modlib/extjs/static/ext-3.3.1/examples/docs/welcome.html +45 -0
  1345. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/FeedGrid.js +162 -0
  1346. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/FeedPanel.js +180 -0
  1347. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/FeedViewer.js +83 -0
  1348. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/FeedWindow.js +128 -0
  1349. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/MainPanel.js +237 -0
  1350. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/feed-proxy.php +12 -0
  1351. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/feed-viewer.css +252 -0
  1352. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/article.gif +0 -0
  1353. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/bg.gif +0 -0
  1354. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/bullet.gif +0 -0
  1355. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/cancel.gif +0 -0
  1356. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/cmp-bg.gif +0 -0
  1357. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/comment-bg.gif +0 -0
  1358. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/delete.gif +0 -0
  1359. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/details.gif +0 -0
  1360. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/feed-item.gif +0 -0
  1361. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/forward.gif +0 -0
  1362. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/go-to-post.gif +0 -0
  1363. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/grid-hrow.gif +0 -0
  1364. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/header-bar.gif +0 -0
  1365. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/header.gif +0 -0
  1366. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/myfeeds.gif +0 -0
  1367. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/new_tab.gif +0 -0
  1368. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/new_window.gif +0 -0
  1369. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/post-bg.gif +0 -0
  1370. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/post.gif +0 -0
  1371. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/preview-bottom.gif +0 -0
  1372. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/preview-hide.gif +0 -0
  1373. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/preview-right.gif +0 -0
  1374. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/preview.gif +0 -0
  1375. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/refresh.gif +0 -0
  1376. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/rss.gif +0 -0
  1377. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/rss_add.gif +0 -0
  1378. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/rss_delete.gif +0 -0
  1379. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/rss_load.gif +0 -0
  1380. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/signin.gif +0 -0
  1381. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/signout.gif +0 -0
  1382. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/suggested.gif +0 -0
  1383. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/tab-close-on.gif +0 -0
  1384. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/tab-close.gif +0 -0
  1385. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/toolbar.gif +0 -0
  1386. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/wait.gif +0 -0
  1387. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/warning.gif +0 -0
  1388. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/images/win-bg.gif +0 -0
  1389. lino/modlib/extjs/static/ext-3.3.1/examples/feed-viewer/view.html +37 -0
  1390. lino/modlib/extjs/static/ext-3.3.1/examples/form/absform.html +27 -0
  1391. lino/modlib/extjs/static/ext-3.3.1/examples/form/absform.js +63 -0
  1392. lino/modlib/extjs/static/ext-3.3.1/examples/form/adv-vtypes.html +30 -0
  1393. lino/modlib/extjs/static/ext-3.3.1/examples/form/adv-vtypes.js +114 -0
  1394. lino/modlib/extjs/static/ext-3.3.1/examples/form/anchoring.html +27 -0
  1395. lino/modlib/extjs/static/ext-3.3.1/examples/form/anchoring.js +50 -0
  1396. lino/modlib/extjs/static/ext-3.3.1/examples/form/check-radio.html +28 -0
  1397. lino/modlib/extjs/static/ext-3.3.1/examples/form/check-radio.js +338 -0
  1398. lino/modlib/extjs/static/ext-3.3.1/examples/form/combos.css +30 -0
  1399. lino/modlib/extjs/static/ext-3.3.1/examples/form/combos.html +237 -0
  1400. lino/modlib/extjs/static/ext-3.3.1/examples/form/combos.js +109 -0
  1401. lino/modlib/extjs/static/ext-3.3.1/examples/form/composite-field.html +35 -0
  1402. lino/modlib/extjs/static/ext-3.3.1/examples/form/composite-field.js +199 -0
  1403. lino/modlib/extjs/static/ext-3.3.1/examples/form/custom-access.html +101 -0
  1404. lino/modlib/extjs/static/ext-3.3.1/examples/form/custom-access.js +68 -0
  1405. lino/modlib/extjs/static/ext-3.3.1/examples/form/custom.html +61 -0
  1406. lino/modlib/extjs/static/ext-3.3.1/examples/form/custom.js +68 -0
  1407. lino/modlib/extjs/static/ext-3.3.1/examples/form/dynamic.html +35 -0
  1408. lino/modlib/extjs/static/ext-3.3.1/examples/form/dynamic.js +391 -0
  1409. lino/modlib/extjs/static/ext-3.3.1/examples/form/file-upload.html +74 -0
  1410. lino/modlib/extjs/static/ext-3.3.1/examples/form/file-upload.js +108 -0
  1411. lino/modlib/extjs/static/ext-3.3.1/examples/form/file-upload.php +3 -0
  1412. lino/modlib/extjs/static/ext-3.3.1/examples/form/form-grid-access.html +63 -0
  1413. lino/modlib/extjs/static/ext-3.3.1/examples/form/form-grid-access.js +196 -0
  1414. lino/modlib/extjs/static/ext-3.3.1/examples/form/form-grid.html +51 -0
  1415. lino/modlib/extjs/static/ext-3.3.1/examples/form/form-grid.js +198 -0
  1416. lino/modlib/extjs/static/ext-3.3.1/examples/form/forms.css +29 -0
  1417. lino/modlib/extjs/static/ext-3.3.1/examples/form/forum-search.html +47 -0
  1418. lino/modlib/extjs/static/ext-3.3.1/examples/form/forum-search.js +50 -0
  1419. lino/modlib/extjs/static/ext-3.3.1/examples/form/states.js +62 -0
  1420. lino/modlib/extjs/static/ext-3.3.1/examples/form/vbox-form.html +37 -0
  1421. lino/modlib/extjs/static/ext-3.3.1/examples/form/vbox-form.js +59 -0
  1422. lino/modlib/extjs/static/ext-3.3.1/examples/form/xml-errors.xml +17 -0
  1423. lino/modlib/extjs/static/ext-3.3.1/examples/form/xml-form.html +43 -0
  1424. lino/modlib/extjs/static/ext-3.3.1/examples/form/xml-form.js +126 -0
  1425. lino/modlib/extjs/static/ext-3.3.1/examples/form/xml-form.xml +13 -0
  1426. lino/modlib/extjs/static/ext-3.3.1/examples/forum/bg.gif +0 -0
  1427. lino/modlib/extjs/static/ext-3.3.1/examples/forum/cmp-bg.gif +0 -0
  1428. lino/modlib/extjs/static/ext-3.3.1/examples/forum/details.gif +0 -0
  1429. lino/modlib/extjs/static/ext-3.3.1/examples/forum/forum.css +139 -0
  1430. lino/modlib/extjs/static/ext-3.3.1/examples/forum/forum.gif +0 -0
  1431. lino/modlib/extjs/static/ext-3.3.1/examples/forum/forum.html +22 -0
  1432. lino/modlib/extjs/static/ext-3.3.1/examples/forum/forum.js +406 -0
  1433. lino/modlib/extjs/static/ext-3.3.1/examples/forum/message.png +0 -0
  1434. lino/modlib/extjs/static/ext-3.3.1/examples/forum/message_edit.png +0 -0
  1435. lino/modlib/extjs/static/ext-3.3.1/examples/forum/messages.png +0 -0
  1436. lino/modlib/extjs/static/ext-3.3.1/examples/forum/preview.png +0 -0
  1437. lino/modlib/extjs/static/ext-3.3.1/examples/grid/ColumnHeaderGroup.html +32 -0
  1438. lino/modlib/extjs/static/ext-3.3.1/examples/grid/array-grid.html +60 -0
  1439. lino/modlib/extjs/static/ext-3.3.1/examples/grid/array-grid.js +167 -0
  1440. lino/modlib/extjs/static/ext-3.3.1/examples/grid/binding-with-classes.html +25 -0
  1441. lino/modlib/extjs/static/ext-3.3.1/examples/grid/binding-with-classes.js +219 -0
  1442. lino/modlib/extjs/static/ext-3.3.1/examples/grid/binding.html +31 -0
  1443. lino/modlib/extjs/static/ext-3.3.1/examples/grid/binding.js +84 -0
  1444. lino/modlib/extjs/static/ext-3.3.1/examples/grid/buffer.html +52 -0
  1445. lino/modlib/extjs/static/ext-3.3.1/examples/grid/buffer.js +89 -0
  1446. lino/modlib/extjs/static/ext-3.3.1/examples/grid/column-header-group.js +131 -0
  1447. lino/modlib/extjs/static/ext-3.3.1/examples/grid/details.gif +0 -0
  1448. lino/modlib/extjs/static/ext-3.3.1/examples/grid/edit-grid.html +55 -0
  1449. lino/modlib/extjs/static/ext-3.3.1/examples/grid/edit-grid.js +151 -0
  1450. lino/modlib/extjs/static/ext-3.3.1/examples/grid/from-markup.html +70 -0
  1451. lino/modlib/extjs/static/ext-3.3.1/examples/grid/from-markup.js +20 -0
  1452. lino/modlib/extjs/static/ext-3.3.1/examples/grid/gen-names.js +26 -0
  1453. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grid-examples.css +59 -0
  1454. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grid-plugins.html +55 -0
  1455. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grid-plugins.js +236 -0
  1456. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grouping.css +6 -0
  1457. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grouping.html +56 -0
  1458. lino/modlib/extjs/static/ext-3.3.1/examples/grid/grouping.js +104 -0
  1459. lino/modlib/extjs/static/ext-3.3.1/examples/grid/locking-grid.html +38 -0
  1460. lino/modlib/extjs/static/ext-3.3.1/examples/grid/locking-grid.js +100 -0
  1461. lino/modlib/extjs/static/ext-3.3.1/examples/grid/multiple-sorting.css +15 -0
  1462. lino/modlib/extjs/static/ext-3.3.1/examples/grid/multiple-sorting.html +32 -0
  1463. lino/modlib/extjs/static/ext-3.3.1/examples/grid/multiple-sorting.js +222 -0
  1464. lino/modlib/extjs/static/ext-3.3.1/examples/grid/paging.html +32 -0
  1465. lino/modlib/extjs/static/ext-3.3.1/examples/grid/paging.js +121 -0
  1466. lino/modlib/extjs/static/ext-3.3.1/examples/grid/plants.xml +327 -0
  1467. lino/modlib/extjs/static/ext-3.3.1/examples/grid/progress-bar-pager.html +36 -0
  1468. lino/modlib/extjs/static/ext-3.3.1/examples/grid/progress-bar-pager.js +111 -0
  1469. lino/modlib/extjs/static/ext-3.3.1/examples/grid/property-grid.html +43 -0
  1470. lino/modlib/extjs/static/ext-3.3.1/examples/grid/property-grid.js +50 -0
  1471. lino/modlib/extjs/static/ext-3.3.1/examples/grid/row-editor-data.json +61 -0
  1472. lino/modlib/extjs/static/ext-3.3.1/examples/grid/row-editor.html +74 -0
  1473. lino/modlib/extjs/static/ext-3.3.1/examples/grid/row-editor.js +295 -0
  1474. lino/modlib/extjs/static/ext-3.3.1/examples/grid/sheldon.xml +151 -0
  1475. lino/modlib/extjs/static/ext-3.3.1/examples/grid/sliding-pager.html +32 -0
  1476. lino/modlib/extjs/static/ext-3.3.1/examples/grid/sliding-pager.js +110 -0
  1477. lino/modlib/extjs/static/ext-3.3.1/examples/grid/topic.gif +0 -0
  1478. lino/modlib/extjs/static/ext-3.3.1/examples/grid/totals-hybrid.html +65 -0
  1479. lino/modlib/extjs/static/ext-3.3.1/examples/grid/totals-hybrid.js +165 -0
  1480. lino/modlib/extjs/static/ext-3.3.1/examples/grid/totals-hybrid.json +24 -0
  1481. lino/modlib/extjs/static/ext-3.3.1/examples/grid/totals.html +63 -0
  1482. lino/modlib/extjs/static/ext-3.3.1/examples/grid/totals.js +166 -0
  1483. lino/modlib/extjs/static/ext-3.3.1/examples/grid/xml-grid.html +35 -0
  1484. lino/modlib/extjs/static/ext-3.3.1/examples/grid/xml-grid.js +43 -0
  1485. lino/modlib/extjs/static/ext-3.3.1/examples/grid-filtering/grid-demo.sql +50 -0
  1486. lino/modlib/extjs/static/ext-3.3.1/examples/grid-filtering/grid-filter-local.html +54 -0
  1487. lino/modlib/extjs/static/ext-3.3.1/examples/grid-filtering/grid-filter-local.js +234 -0
  1488. lino/modlib/extjs/static/ext-3.3.1/examples/grid-filtering/grid-filter.json +221 -0
  1489. lino/modlib/extjs/static/ext-3.3.1/examples/grid-filtering/grid-filter.php +101 -0
  1490. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/grouptabs.html +57 -0
  1491. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/grouptabs.js +120 -0
  1492. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/images/group.png +0 -0
  1493. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/images/subscriptions.png +0 -0
  1494. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/images/templates.png +0 -0
  1495. lino/modlib/extjs/static/ext-3.3.1/examples/grouptabs/images/tickets.png +0 -0
  1496. lino/modlib/extjs/static/ext-3.3.1/examples/history/history.html +32 -0
  1497. lino/modlib/extjs/static/ext-3.3.1/examples/history/history.js +91 -0
  1498. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/Flash/swfupload.swf +0 -0
  1499. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/plugins/SWFObject_License.txt +4 -0
  1500. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/plugins/swfupload.cookies.js +59 -0
  1501. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/plugins/swfupload.queue.js +104 -0
  1502. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/plugins/swfupload.speed.js +348 -0
  1503. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/plugins/swfupload.swfobject.js +117 -0
  1504. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/swfupload.js +986 -0
  1505. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/SWFUpload/swfupload_license.txt +12 -0
  1506. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/arrow_up.png +0 -0
  1507. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/box_upload.png +0 -0
  1508. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/cancel.png +0 -0
  1509. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/folder_add.png +0 -0
  1510. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/folder_add_sm.png +0 -0
  1511. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/icons/tag_blue_add.png +0 -0
  1512. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/selected.gif +0 -0
  1513. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/kids_hug.jpg +0 -0
  1514. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/kids_hug2.jpg +0 -0
  1515. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/sara_pink.jpg +0 -0
  1516. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/sara_pumpkin.jpg +0 -0
  1517. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/sara_smile.jpg +0 -0
  1518. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/up_to_something.jpg +0 -0
  1519. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/zack.jpg +0 -0
  1520. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/zack_dress.jpg +0 -0
  1521. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/zack_hat.jpg +0 -0
  1522. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/zack_sink.jpg +0 -0
  1523. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/images/thumbs/zacks_grill.jpg +0 -0
  1524. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/img-org.css +102 -0
  1525. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/AlbumTree.js +147 -0
  1526. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/AlbumWin.js +65 -0
  1527. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/AlbumsPanel.js +96 -0
  1528. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/App.js +222 -0
  1529. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/Checkable.js +193 -0
  1530. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/DirectCombo.js +69 -0
  1531. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/ImageDv.js +116 -0
  1532. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/ImagePanel.js +72 -0
  1533. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/ImageThumbPanel.js +209 -0
  1534. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/MultiCombo.js +919 -0
  1535. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/TagWin.js +71 -0
  1536. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/imgorg/UploadQueue.js +173 -0
  1537. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/index.html +41 -0
  1538. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/api.php +32 -0
  1539. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/classes/Albums.php +72 -0
  1540. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/classes/Images.php +104 -0
  1541. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/classes/Tags.php +23 -0
  1542. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/config.php +60 -0
  1543. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/poll.php +6 -0
  1544. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/router.php +101 -0
  1545. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/php/sql/setup.php +72 -0
  1546. lino/modlib/extjs/static/ext-3.3.1/examples/image-organizer/readme.txt +20 -0
  1547. lino/modlib/extjs/static/ext-3.3.1/examples/index.html +170 -0
  1548. lino/modlib/extjs/static/ext-3.3.1/examples/init.js +159 -0
  1549. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/FeedGrid.js +162 -0
  1550. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/FeedPanel.js +180 -0
  1551. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/FeedViewer.js +83 -0
  1552. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/FeedWindow.js +128 -0
  1553. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/MainPanel.js +245 -0
  1554. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/feed-proxy.php +12 -0
  1555. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/feed-viewer-access.css +209 -0
  1556. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/feed-viewer.css +259 -0
  1557. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/article.gif +0 -0
  1558. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/bg.gif +0 -0
  1559. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/bullet.gif +0 -0
  1560. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/cancel.gif +0 -0
  1561. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/cmp-bg.gif +0 -0
  1562. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/comment-bg.gif +0 -0
  1563. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/delete.gif +0 -0
  1564. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/details.gif +0 -0
  1565. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/feed-item.gif +0 -0
  1566. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/forward.gif +0 -0
  1567. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/go-to-post.gif +0 -0
  1568. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/grid-hrow.gif +0 -0
  1569. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/header-bar.gif +0 -0
  1570. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/header.gif +0 -0
  1571. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/myfeeds.gif +0 -0
  1572. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/new_tab.gif +0 -0
  1573. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/new_window.gif +0 -0
  1574. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/post-bg.gif +0 -0
  1575. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/post.gif +0 -0
  1576. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/preview-bottom.gif +0 -0
  1577. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/preview-hide.gif +0 -0
  1578. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/preview-right.gif +0 -0
  1579. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/preview.gif +0 -0
  1580. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/refresh.gif +0 -0
  1581. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/rss.gif +0 -0
  1582. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/rss_add.gif +0 -0
  1583. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/rss_delete.gif +0 -0
  1584. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/rss_load.gif +0 -0
  1585. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/signin.gif +0 -0
  1586. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/signout.gif +0 -0
  1587. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/suggested.gif +0 -0
  1588. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/tab-close-on.gif +0 -0
  1589. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/tab-close.gif +0 -0
  1590. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/toolbar.gif +0 -0
  1591. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/wait.gif +0 -0
  1592. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/warning.gif +0 -0
  1593. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/images/win-bg.gif +0 -0
  1594. lino/modlib/extjs/static/ext-3.3.1/examples/key-feed-viewer/view.html +63 -0
  1595. lino/modlib/extjs/static/ext-3.3.1/examples/layout/accordion.html +89 -0
  1596. lino/modlib/extjs/static/ext-3.3.1/examples/layout/anchor.html +51 -0
  1597. lino/modlib/extjs/static/ext-3.3.1/examples/layout/column.html +120 -0
  1598. lino/modlib/extjs/static/ext-3.3.1/examples/layout/complex.html +188 -0
  1599. lino/modlib/extjs/static/ext-3.3.1/examples/layout/hbox.html +371 -0
  1600. lino/modlib/extjs/static/ext-3.3.1/examples/layout/table.html +59 -0
  1601. lino/modlib/extjs/static/ext-3.3.1/examples/layout/vbox.html +445 -0
  1602. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/disk.png +0 -0
  1603. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/email_go.png +0 -0
  1604. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/layout-browser-hd-bg.gif +0 -0
  1605. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/layout-icon.gif +0 -0
  1606. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/page_attach.png +0 -0
  1607. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/printer.png +0 -0
  1608. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/images/spellcheck.png +0 -0
  1609. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layout-browser.css +115 -0
  1610. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layout-browser.html +426 -0
  1611. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layout-browser.js +113 -0
  1612. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layouts/basic.js +409 -0
  1613. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layouts/combination.js +242 -0
  1614. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/layouts/custom.js +50 -0
  1615. lino/modlib/extjs/static/ext-3.3.1/examples/layout-browser/tree-data.json +75 -0
  1616. lino/modlib/extjs/static/ext-3.3.1/examples/locale/ContactForm-nl.js +21 -0
  1617. lino/modlib/extjs/static/ext-3.3.1/examples/locale/ContactForm.js +95 -0
  1618. lino/modlib/extjs/static/ext-3.3.1/examples/locale/dutch-form.html +41 -0
  1619. lino/modlib/extjs/static/ext-3.3.1/examples/locale/dutch-provinces.js +23 -0
  1620. lino/modlib/extjs/static/ext-3.3.1/examples/locale/languages.js +55 -0
  1621. lino/modlib/extjs/static/ext-3.3.1/examples/locale/multi-lang.html +43 -0
  1622. lino/modlib/extjs/static/ext-3.3.1/examples/locale/multi-lang.js +149 -0
  1623. lino/modlib/extjs/static/ext-3.3.1/examples/menu/actions.html +27 -0
  1624. lino/modlib/extjs/static/ext-3.3.1/examples/menu/actions.js +66 -0
  1625. lino/modlib/extjs/static/ext-3.3.1/examples/menu/images/delete.gif +0 -0
  1626. lino/modlib/extjs/static/ext-3.3.1/examples/menu/images/edit.gif +0 -0
  1627. lino/modlib/extjs/static/ext-3.3.1/examples/menu/images/find.gif +0 -0
  1628. lino/modlib/extjs/static/ext-3.3.1/examples/menu/images/group.gif +0 -0
  1629. lino/modlib/extjs/static/ext-3.3.1/examples/menu/images/view.gif +0 -0
  1630. lino/modlib/extjs/static/ext-3.3.1/examples/menu/list-items.gif +0 -0
  1631. lino/modlib/extjs/static/ext-3.3.1/examples/menu/menu-show.gif +0 -0
  1632. lino/modlib/extjs/static/ext-3.3.1/examples/menu/menus.css +45 -0
  1633. lino/modlib/extjs/static/ext-3.3.1/examples/menu/menus.html +33 -0
  1634. lino/modlib/extjs/static/ext-3.3.1/examples/menu/menus.js +251 -0
  1635. lino/modlib/extjs/static/ext-3.3.1/examples/menu/preview.png +0 -0
  1636. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/images/comment-bg.gif +0 -0
  1637. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/images/comment.gif +0 -0
  1638. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/images/download.gif +0 -0
  1639. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/images/warning.gif +0 -0
  1640. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/msg-box.html +85 -0
  1641. lino/modlib/extjs/static/ext-3.3.1/examples/message-box/msg-box.js +113 -0
  1642. lino/modlib/extjs/static/ext-3.3.1/examples/multiselect/multiselect-demo.html +31 -0
  1643. lino/modlib/extjs/static/ext-3.3.1/examples/multiselect/multiselect-demo.js +124 -0
  1644. lino/modlib/extjs/static/ext-3.3.1/examples/organizer/organizer.css +82 -0
  1645. lino/modlib/extjs/static/ext-3.3.1/examples/organizer/organizer.html +36 -0
  1646. lino/modlib/extjs/static/ext-3.3.1/examples/organizer/organizer.js +212 -0
  1647. lino/modlib/extjs/static/ext-3.3.1/examples/panel/BubblePanel.js +10 -0
  1648. lino/modlib/extjs/static/ext-3.3.1/examples/panel/bubble-panel.html +45 -0
  1649. lino/modlib/extjs/static/ext-3.3.1/examples/panel/bubble-panel.js +35 -0
  1650. lino/modlib/extjs/static/ext-3.3.1/examples/panel/css/bubble.css +69 -0
  1651. lino/modlib/extjs/static/ext-3.3.1/examples/panel/images/bubble-cs.gif +0 -0
  1652. lino/modlib/extjs/static/ext-3.3.1/examples/panel/images/bubble-lr.gif +0 -0
  1653. lino/modlib/extjs/static/ext-3.3.1/examples/panel/images/bubble-tb.gif +0 -0
  1654. lino/modlib/extjs/static/ext-3.3.1/examples/panel/panels.html +47 -0
  1655. lino/modlib/extjs/static/ext-3.3.1/examples/panel/panels.js +55 -0
  1656. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/AxisGrid.js +175 -0
  1657. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/ConfigPanel.js +178 -0
  1658. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/countries.html +38 -0
  1659. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/countries.js +80 -0
  1660. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/countries.json +1281 -0
  1661. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/data.json +3602 -0
  1662. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/faker.js +68 -0
  1663. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/people.html +46 -0
  1664. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/people.js +105 -0
  1665. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/people.json +1 -0
  1666. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/reconfigurable.html +23 -0
  1667. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/reconfigurable.js +98 -0
  1668. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/simple.html +28 -0
  1669. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/simple.js +62 -0
  1670. lino/modlib/extjs/static/ext-3.3.1/examples/pivotgrid/simple.json +4802 -0
  1671. lino/modlib/extjs/static/ext-3.3.1/examples/portal/portal.html +41 -0
  1672. lino/modlib/extjs/static/ext-3.3.1/examples/portal/portal.js +115 -0
  1673. lino/modlib/extjs/static/ext-3.3.1/examples/portal/sample-grid.js +99 -0
  1674. lino/modlib/extjs/static/ext-3.3.1/examples/portal/sample.css +25 -0
  1675. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/basic.css +38 -0
  1676. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/basic.html +184 -0
  1677. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/basic.js +90 -0
  1678. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/sara.jpg +0 -0
  1679. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/sara_and_zack.jpg +0 -0
  1680. lino/modlib/extjs/static/ext-3.3.1/examples/resizable/zack.jpg +0 -0
  1681. lino/modlib/extjs/static/ext-3.3.1/examples/restful/app.php +14 -0
  1682. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/app/controllers/users.php +62 -0
  1683. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/app/models/user.php +7 -0
  1684. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/init.php +17 -0
  1685. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/lib/application_controller.php +42 -0
  1686. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/lib/model.php +72 -0
  1687. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/lib/request.php +77 -0
  1688. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/lib/response.php +22 -0
  1689. lino/modlib/extjs/static/ext-3.3.1/examples/restful/remote/lib/session_db.php +42 -0
  1690. lino/modlib/extjs/static/ext-3.3.1/examples/restful/restful-thumb.gif +0 -0
  1691. lino/modlib/extjs/static/ext-3.3.1/examples/restful/restful.css +97 -0
  1692. lino/modlib/extjs/static/ext-3.3.1/examples/restful/restful.html +48 -0
  1693. lino/modlib/extjs/static/ext-3.3.1/examples/restful/restful.js +136 -0
  1694. lino/modlib/extjs/static/ext-3.3.1/examples/samples.css +48 -0
  1695. lino/modlib/extjs/static/ext-3.3.1/examples/shared/code-display.js +375 -0
  1696. lino/modlib/extjs/static/ext-3.3.1/examples/shared/examples.css +58 -0
  1697. lino/modlib/extjs/static/ext-3.3.1/examples/shared/examples.js +108 -0
  1698. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/App.js +236 -0
  1699. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/css/extjs.css +484 -0
  1700. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/arrow.png +0 -0
  1701. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/bd-bg.gif +0 -0
  1702. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/big-box.png +0 -0
  1703. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/c-sep-l.gif +0 -0
  1704. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/c-sep.gif +0 -0
  1705. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/check.png +0 -0
  1706. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/checked.gif +0 -0
  1707. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/corners-sprite.gif +0 -0
  1708. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/extanim32.gif +0 -0
  1709. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/extjs2.png +0 -0
  1710. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/ft-bg.png +0 -0
  1711. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/ft.png +0 -0
  1712. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/full-box.png +0 -0
  1713. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/gxt.png +0 -0
  1714. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/inner-hd.png +0 -0
  1715. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/left-right.gif +0 -0
  1716. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/med-box.png +0 -0
  1717. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/med-shd.png +0 -0
  1718. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/msg-bg.png +0 -0
  1719. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-left-over.gif +0 -0
  1720. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-left-over.png +0 -0
  1721. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-left.gif +0 -0
  1722. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-left.png +0 -0
  1723. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-over.gif +0 -0
  1724. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-right-over.gif +0 -0
  1725. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-right-over.png +0 -0
  1726. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-right.gif +0 -0
  1727. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-right.png +0 -0
  1728. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/nav-spacer.gif +0 -0
  1729. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/pdf.gif +0 -0
  1730. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/sample-over.gif +0 -0
  1731. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/side-box.png +0 -0
  1732. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/top-bottom.gif +0 -0
  1733. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/images/topbar.png +0 -0
  1734. lino/modlib/extjs/static/ext-3.3.1/examples/shared/extjs/site.js +29 -0
  1735. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/arrow-down.gif +0 -0
  1736. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/arrow-up.gif +0 -0
  1737. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/SILK.txt +3 -0
  1738. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/accept.png +0 -0
  1739. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/add.gif +0 -0
  1740. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/add.png +0 -0
  1741. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/application_go.png +0 -0
  1742. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/application_view_list.png +0 -0
  1743. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/book.png +0 -0
  1744. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/cog.png +0 -0
  1745. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/cog_edit.png +0 -0
  1746. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/connect.gif +0 -0
  1747. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/connect.png +0 -0
  1748. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/control_rewind.png +0 -0
  1749. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/cross.gif +0 -0
  1750. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/delete.gif +0 -0
  1751. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/error.png +0 -0
  1752. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/feed_add.png +0 -0
  1753. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/feed_delete.png +0 -0
  1754. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/feed_error.png +0 -0
  1755. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/folder_go.png +0 -0
  1756. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/folder_wrench.png +0 -0
  1757. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/grid.png +0 -0
  1758. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/image_add.png +0 -0
  1759. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/information.png +0 -0
  1760. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/plugin.gif +0 -0
  1761. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/plugin_add.gif +0 -0
  1762. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/rss_go.png +0 -0
  1763. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/table_refresh.png +0 -0
  1764. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user.gif +0 -0
  1765. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user.png +0 -0
  1766. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_add.gif +0 -0
  1767. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_add.png +0 -0
  1768. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_comment.png +0 -0
  1769. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_delete.gif +0 -0
  1770. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_delete.png +0 -0
  1771. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_edit.png +0 -0
  1772. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_female.gif +0 -0
  1773. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_female.png +0 -0
  1774. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_gray.png +0 -0
  1775. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_green.gif +0 -0
  1776. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_green.png +0 -0
  1777. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_orange.png +0 -0
  1778. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_red.png +0 -0
  1779. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_suit.gif +0 -0
  1780. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/fam/user_suit.png +0 -0
  1781. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/save.gif +0 -0
  1782. lino/modlib/extjs/static/ext-3.3.1/examples/shared/icons/silk.css +185 -0
  1783. lino/modlib/extjs/static/ext-3.3.1/examples/shared/info-bg.gif +0 -0
  1784. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/acc-tree.gif +0 -0
  1785. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/air.gif +0 -0
  1786. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/anchor.gif +0 -0
  1787. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/animated-dataview.png +0 -0
  1788. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/blank.gif +0 -0
  1789. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/border-layout.gif +0 -0
  1790. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/buttons.gif +0 -0
  1791. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/calendar.gif +0 -0
  1792. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/chart-pie.gif +0 -0
  1793. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/chart-reload.gif +0 -0
  1794. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/chart-stacked.gif +0 -0
  1795. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/charts.gif +0 -0
  1796. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/chooser.gif +0 -0
  1797. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/combo-custom.gif +0 -0
  1798. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/combo.gif +0 -0
  1799. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/data-view.gif +0 -0
  1800. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/dd-fieldtogrid.gif +0 -0
  1801. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/dd-gridtoformpanel.gif +0 -0
  1802. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/dd-gridtogrid.gif +0 -0
  1803. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/dd-zones.gif +0 -0
  1804. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/debug-console.gif +0 -0
  1805. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/desktop.gif +0 -0
  1806. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/direct.gif +0 -0
  1807. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/docs.gif +0 -0
  1808. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/editor.gif +0 -0
  1809. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/feeds.gif +0 -0
  1810. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-adv-vtypes.gif +0 -0
  1811. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-check-radio.gif +0 -0
  1812. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-composite.png +0 -0
  1813. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-custom-access.gif +0 -0
  1814. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-custom.gif +0 -0
  1815. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-dynamic.gif +0 -0
  1816. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-file-upload.gif +0 -0
  1817. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-grid-binding-access.gif +0 -0
  1818. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-grid-binding.gif +0 -0
  1819. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-multiselect.gif +0 -0
  1820. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-slider.png +0 -0
  1821. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-spinner.gif +0 -0
  1822. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-vbox.gif +0 -0
  1823. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/form-xml.gif +0 -0
  1824. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/forum.gif +0 -0
  1825. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/gmap-panel.gif +0 -0
  1826. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-array.gif +0 -0
  1827. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-buffer.gif +0 -0
  1828. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-columngrouping.gif +0 -0
  1829. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-data-binding.gif +0 -0
  1830. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-edit.gif +0 -0
  1831. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-filter.gif +0 -0
  1832. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-from-markup.gif +0 -0
  1833. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-grouping.gif +0 -0
  1834. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-locking.gif +0 -0
  1835. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-multiple-sorting.png +0 -0
  1836. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-paging.gif +0 -0
  1837. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-plugins.gif +0 -0
  1838. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-property.gif +0 -0
  1839. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-row-editor.gif +0 -0
  1840. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-summary.gif +0 -0
  1841. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/grid-xml.gif +0 -0
  1842. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/group-tabs.gif +0 -0
  1843. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/history.gif +0 -0
  1844. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/keyboard.gif +0 -0
  1845. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-absolute.gif +0 -0
  1846. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-accordion.gif +0 -0
  1847. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-anchor.gif +0 -0
  1848. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-browser.gif +0 -0
  1849. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-column.gif +0 -0
  1850. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-form.gif +0 -0
  1851. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-table.gif +0 -0
  1852. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/layout-vbox.gif +0 -0
  1853. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/list-view.gif +0 -0
  1854. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/locale-dutch.gif +0 -0
  1855. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/locale-switch.gif +0 -0
  1856. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/msg-box.gif +0 -0
  1857. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/multisort-dataview.png +0 -0
  1858. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/organizer.gif +0 -0
  1859. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/panel-bubble.gif +0 -0
  1860. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/panel.gif +0 -0
  1861. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/pivotgrid-cellcls.gif +0 -0
  1862. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/pivotgrid-people.gif +0 -0
  1863. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/pivotgrid.gif +0 -0
  1864. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/portal.gif +0 -0
  1865. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/progress-bar-pager.gif +0 -0
  1866. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/progress.gif +0 -0
  1867. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/qtips.gif +0 -0
  1868. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/resizable.gif +0 -0
  1869. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/restful-thumb.gif +0 -0
  1870. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/slider-pager.gif +0 -0
  1871. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/slider.gif +0 -0
  1872. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/spotlight.gif +0 -0
  1873. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/statusbar-adv.gif +0 -0
  1874. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/statusbar-demo.gif +0 -0
  1875. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tab-panel-scroller-menu.gif +0 -0
  1876. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tabs-adv.gif +0 -0
  1877. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tabs.gif +0 -0
  1878. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tasks.gif +0 -0
  1879. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/templates.gif +0 -0
  1880. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/themes.gif +0 -0
  1881. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar-actions.gif +0 -0
  1882. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar-button-groups.gif +0 -0
  1883. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar-droppable.png +0 -0
  1884. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar-overflow.gif +0 -0
  1885. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar-reorderable.png +0 -0
  1886. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/toolbar.gif +0 -0
  1887. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tree-check.gif +0 -0
  1888. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tree-columns.gif +0 -0
  1889. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tree-reorder.gif +0 -0
  1890. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tree-two.gif +0 -0
  1891. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/tree-xml-loader.gif +0 -0
  1892. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/window-layout.gif +0 -0
  1893. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/window.gif +0 -0
  1894. lino/modlib/extjs/static/ext-3.3.1/examples/shared/screens/writer-thumb.gif +0 -0
  1895. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/ajax-tip.html +3 -0
  1896. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/editor.html +29 -0
  1897. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/editor.js +87 -0
  1898. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/images/custom-bar.gif +0 -0
  1899. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/images/house.jpg +0 -0
  1900. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/progress-bar.css +32 -0
  1901. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/progress-bar.html +57 -0
  1902. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/progress-bar.js +111 -0
  1903. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/qtips.css +33 -0
  1904. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/qtips.html +70 -0
  1905. lino/modlib/extjs/static/ext-3.3.1/examples/simple-widgets/qtips.js +75 -0
  1906. lino/modlib/extjs/static/ext-3.3.1/examples/slider/images/slider-bg.png +0 -0
  1907. lino/modlib/extjs/static/ext-3.3.1/examples/slider/images/slider-thumb.png +0 -0
  1908. lino/modlib/extjs/static/ext-3.3.1/examples/slider/images/ticks.gif +0 -0
  1909. lino/modlib/extjs/static/ext-3.3.1/examples/slider/slider-field.html +28 -0
  1910. lino/modlib/extjs/static/ext-3.3.1/examples/slider/slider-field.js +64 -0
  1911. lino/modlib/extjs/static/ext-3.3.1/examples/slider/slider.css +18 -0
  1912. lino/modlib/extjs/static/ext-3.3.1/examples/slider/slider.html +52 -0
  1913. lino/modlib/extjs/static/ext-3.3.1/examples/slider/slider.js +83 -0
  1914. lino/modlib/extjs/static/ext-3.3.1/examples/spinner/spinner.html +61 -0
  1915. lino/modlib/extjs/static/ext-3.3.1/examples/spinner/spinner.js +38 -0
  1916. lino/modlib/extjs/static/ext-3.3.1/examples/state/README.txt +16 -0
  1917. lino/modlib/extjs/static/ext-3.3.1/examples/state/SessionProvider.js +18 -0
  1918. lino/modlib/extjs/static/ext-3.3.1/examples/state/get-state.php +10 -0
  1919. lino/modlib/extjs/static/ext-3.3.1/examples/state/save-state.php +16 -0
  1920. lino/modlib/extjs/static/ext-3.3.1/examples/statusbar/fake.php +4 -0
  1921. lino/modlib/extjs/static/ext-3.3.1/examples/statusbar/statusbar-advanced.html +48 -0
  1922. lino/modlib/extjs/static/ext-3.3.1/examples/statusbar/statusbar-advanced.js +71 -0
  1923. lino/modlib/extjs/static/ext-3.3.1/examples/statusbar/statusbar-demo.html +49 -0
  1924. lino/modlib/extjs/static/ext-3.3.1/examples/statusbar/statusbar-demo.js +243 -0
  1925. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/ajax1.htm +3 -0
  1926. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/ajax2.htm +7 -0
  1927. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tab-scroller-menu.css +30 -0
  1928. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tab-scroller-menu.gif +0 -0
  1929. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tab-scroller-menu.html +40 -0
  1930. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tab-scroller-menu.js +51 -0
  1931. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tabs-adv.html +37 -0
  1932. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tabs-adv.js +41 -0
  1933. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tabs-example.css +34 -0
  1934. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tabs-example.js +53 -0
  1935. lino/modlib/extjs/static/ext-3.3.1/examples/tabs/tabs.html +54 -0
  1936. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/classes.js +162 -0
  1937. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/db/ext-air-db.js +103 -0
  1938. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/db/ext-db.js +263 -0
  1939. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/db/ext-gears-db.js +77 -0
  1940. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/gears.js +65 -0
  1941. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/check.gif +0 -0
  1942. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/delete.gif +0 -0
  1943. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/edit.gif +0 -0
  1944. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/hd-check.gif +0 -0
  1945. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/hrow.gif +0 -0
  1946. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-active.gif +0 -0
  1947. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-all.gif +0 -0
  1948. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-by-category.gif +0 -0
  1949. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-by-date.gif +0 -0
  1950. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-complete.gif +0 -0
  1951. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-no-group.gif +0 -0
  1952. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-show-active.gif +0 -0
  1953. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-show-all.gif +0 -0
  1954. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/icon-show-complete.gif +0 -0
  1955. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/images/s.gif +0 -0
  1956. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/tasks.css +150 -0
  1957. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/tasks.html +66 -0
  1958. lino/modlib/extjs/static/ext-3.3.1/examples/tasks/tasks.js +441 -0
  1959. lino/modlib/extjs/static/ext-3.3.1/examples/themes/index.html +104 -0
  1960. lino/modlib/extjs/static/ext-3.3.1/examples/themes/styleswitcher.js +91 -0
  1961. lino/modlib/extjs/static/ext-3.3.1/examples/themes/themes.js +590 -0
  1962. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/droppable.html +32 -0
  1963. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/droppable.js +109 -0
  1964. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/images/add.gif +0 -0
  1965. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/images/add16.gif +0 -0
  1966. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/images/add24.gif +0 -0
  1967. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/images/money_add.png +0 -0
  1968. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/images/money_delete.png +0 -0
  1969. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/overflow.html +31 -0
  1970. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/overflow.js +56 -0
  1971. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/reorderable.html +31 -0
  1972. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/reorderable.js +53 -0
  1973. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/toolbars.css +80 -0
  1974. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/toolbars.html +27 -0
  1975. lino/modlib/extjs/static/ext-3.3.1/examples/toolbar/toolbars.js +351 -0
  1976. lino/modlib/extjs/static/ext-3.3.1/examples/tree/ARIA.js +110 -0
  1977. lino/modlib/extjs/static/ext-3.3.1/examples/tree/album.gif +0 -0
  1978. lino/modlib/extjs/static/ext-3.3.1/examples/tree/aria-tree.html +60 -0
  1979. lino/modlib/extjs/static/ext-3.3.1/examples/tree/aria-tree.js +45 -0
  1980. lino/modlib/extjs/static/ext-3.3.1/examples/tree/center-bg.gif +0 -0
  1981. lino/modlib/extjs/static/ext-3.3.1/examples/tree/check-nodes.json +61 -0
  1982. lino/modlib/extjs/static/ext-3.3.1/examples/tree/check-tree.html +37 -0
  1983. lino/modlib/extjs/static/ext-3.3.1/examples/tree/check-tree.js +60 -0
  1984. lino/modlib/extjs/static/ext-3.3.1/examples/tree/column-data.json +159 -0
  1985. lino/modlib/extjs/static/ext-3.3.1/examples/tree/column-tree.css +12 -0
  1986. lino/modlib/extjs/static/ext-3.3.1/examples/tree/column-tree.html +32 -0
  1987. lino/modlib/extjs/static/ext-3.3.1/examples/tree/column-tree.js +41 -0
  1988. lino/modlib/extjs/static/ext-3.3.1/examples/tree/get-nodes.php +66 -0
  1989. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/cmp-bg.gif +0 -0
  1990. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/dance_fever.jpg +0 -0
  1991. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/gangster_zack.jpg +0 -0
  1992. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/kids_hug.jpg +0 -0
  1993. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/kids_hug2.jpg +0 -0
  1994. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/sara_pink.jpg +0 -0
  1995. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/sara_pumpkin.jpg +0 -0
  1996. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/sara_smile.jpg +0 -0
  1997. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/up_to_something.jpg +0 -0
  1998. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/zack.jpg +0 -0
  1999. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/zack_dress.jpg +0 -0
  2000. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/zack_hat.jpg +0 -0
  2001. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/zack_sink.jpg +0 -0
  2002. lino/modlib/extjs/static/ext-3.3.1/examples/tree/images/thumbs/zacks_grill.jpg +0 -0
  2003. lino/modlib/extjs/static/ext-3.3.1/examples/tree/reorder.html +31 -0
  2004. lino/modlib/extjs/static/ext-3.3.1/examples/tree/reorder.js +32 -0
  2005. lino/modlib/extjs/static/ext-3.3.1/examples/tree/save-dep.php +3 -0
  2006. lino/modlib/extjs/static/ext-3.3.1/examples/tree/two-trees.html +45 -0
  2007. lino/modlib/extjs/static/ext-3.3.1/examples/tree/two-trees.js +78 -0
  2008. lino/modlib/extjs/static/ext-3.3.1/examples/tree/xml-tree-data.xml +33 -0
  2009. lino/modlib/extjs/static/ext-3.3.1/examples/tree/xml-tree-loader.css +31 -0
  2010. lino/modlib/extjs/static/ext-3.3.1/examples/tree/xml-tree-loader.html +41 -0
  2011. lino/modlib/extjs/static/ext-3.3.1/examples/tree/xml-tree-loader.js +99 -0
  2012. lino/modlib/extjs/static/ext-3.3.1/examples/treegrid/tree-grid.js +47 -0
  2013. lino/modlib/extjs/static/ext-3.3.1/examples/treegrid/treegrid-data.json +165 -0
  2014. lino/modlib/extjs/static/ext-3.3.1/examples/treegrid/treegrid.html +25 -0
  2015. lino/modlib/extjs/static/ext-3.3.1/examples/ux/BufferView.js +244 -0
  2016. lino/modlib/extjs/static/ext-3.3.1/examples/ux/CenterLayout.js +62 -0
  2017. lino/modlib/extjs/static/ext-3.3.1/examples/ux/CheckColumn.js +71 -0
  2018. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ColumnHeaderGroup.js +481 -0
  2019. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ColumnNodeUI.js +109 -0
  2020. lino/modlib/extjs/static/ext-3.3.1/examples/ux/DataView-more.js +160 -0
  2021. lino/modlib/extjs/static/ext-3.3.1/examples/ux/DataViewTransition.js +318 -0
  2022. lino/modlib/extjs/static/ext-3.3.1/examples/ux/FieldLabeler.js +146 -0
  2023. lino/modlib/extjs/static/ext-3.3.1/examples/ux/FieldReplicator.js +84 -0
  2024. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Focus.js +814 -0
  2025. lino/modlib/extjs/static/ext-3.3.1/examples/ux/GMapPanel.js +215 -0
  2026. lino/modlib/extjs/static/ext-3.3.1/examples/ux/GroupSummary.js +399 -0
  2027. lino/modlib/extjs/static/ext-3.3.1/examples/ux/GroupTab.js +266 -0
  2028. lino/modlib/extjs/static/ext-3.3.1/examples/ux/GroupTabPanel.js +304 -0
  2029. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ItemSelector.js +335 -0
  2030. lino/modlib/extjs/static/ext-3.3.1/examples/ux/LockingGridView.js +933 -0
  2031. lino/modlib/extjs/static/ext-3.3.1/examples/ux/MultiSelect.js +603 -0
  2032. lino/modlib/extjs/static/ext-3.3.1/examples/ux/PagingMemoryProxy.js +96 -0
  2033. lino/modlib/extjs/static/ext-3.3.1/examples/ux/PanelResizer.js +59 -0
  2034. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Portal.js +204 -0
  2035. lino/modlib/extjs/static/ext-3.3.1/examples/ux/PortalColumn.js +14 -0
  2036. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Portlet.js +15 -0
  2037. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ProgressBarPager.js +108 -0
  2038. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Reorderer.js +425 -0
  2039. lino/modlib/extjs/static/ext-3.3.1/examples/ux/RowEditor.js +531 -0
  2040. lino/modlib/extjs/static/ext-3.3.1/examples/ux/RowExpander.js +241 -0
  2041. lino/modlib/extjs/static/ext-3.3.1/examples/ux/RowLayout.js +178 -0
  2042. lino/modlib/extjs/static/ext-3.3.1/examples/ux/SearchField.js +53 -0
  2043. lino/modlib/extjs/static/ext-3.3.1/examples/ux/SelectBox.js +204 -0
  2044. lino/modlib/extjs/static/ext-3.3.1/examples/ux/SlidingPager.js +39 -0
  2045. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Spinner.js +443 -0
  2046. lino/modlib/extjs/static/ext-3.3.1/examples/ux/SpinnerField.js +61 -0
  2047. lino/modlib/extjs/static/ext-3.3.1/examples/ux/Spotlight.js +146 -0
  2048. lino/modlib/extjs/static/ext-3.3.1/examples/ux/TabCloseMenu.js +150 -0
  2049. lino/modlib/extjs/static/ext-3.3.1/examples/ux/TabScrollerMenu.js +223 -0
  2050. lino/modlib/extjs/static/ext-3.3.1/examples/ux/TableGrid.js +87 -0
  2051. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ToolbarDroppable.js +159 -0
  2052. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ToolbarReorderer.js +193 -0
  2053. lino/modlib/extjs/static/ext-3.3.1/examples/ux/XmlTreeLoader.js +106 -0
  2054. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/CenterLayout.css +14 -0
  2055. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/ColumnHeaderGroup.css +9 -0
  2056. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/ColumnNodeUI.css +66 -0
  2057. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/GroupSummary.css +26 -0
  2058. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/GroupTab.css +226 -0
  2059. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/LockingGridView.css +34 -0
  2060. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/MultiSelect.css +32 -0
  2061. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/PanelResizer.css +19 -0
  2062. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/Portal.css +40 -0
  2063. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/RowEditor.css +61 -0
  2064. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/Spinner.css +56 -0
  2065. lino/modlib/extjs/static/ext-3.3.1/examples/ux/css/ux-all.css +772 -0
  2066. lino/modlib/extjs/static/ext-3.3.1/examples/ux/fileuploadfield/FileUploadField.js +182 -0
  2067. lino/modlib/extjs/static/ext-3.3.1/examples/ux/fileuploadfield/css/fileuploadfield.css +33 -0
  2068. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/GridFilters.js +740 -0
  2069. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/css/GridFilters.css +54 -0
  2070. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/css/RangeMenu.css +20 -0
  2071. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/BooleanFilter.js +103 -0
  2072. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/DateFilter.js +313 -0
  2073. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/Filter.js +185 -0
  2074. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/ListFilter.js +176 -0
  2075. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/NumericFilter.js +202 -0
  2076. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/filter/StringFilter.js +132 -0
  2077. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/equals.png +0 -0
  2078. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/find.png +0 -0
  2079. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/greater_than.png +0 -0
  2080. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/less_than.png +0 -0
  2081. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/sort_filtered_asc.gif +0 -0
  2082. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/images/sort_filtered_desc.gif +0 -0
  2083. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/menu/ListMenu.js +177 -0
  2084. lino/modlib/extjs/static/ext-3.3.1/examples/ux/gridfilters/menu/RangeMenu.js +128 -0
  2085. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/bottom2.gif +0 -0
  2086. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/down2.gif +0 -0
  2087. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/elbow-minus-nl.gif +0 -0
  2088. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/elbow-plus-nl.gif +0 -0
  2089. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/left2.gif +0 -0
  2090. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/panel-handle.gif +0 -0
  2091. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/right2.gif +0 -0
  2092. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/row-editor-bg.gif +0 -0
  2093. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/row-editor-btns.gif +0 -0
  2094. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/spinner-split.gif +0 -0
  2095. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/spinner.gif +0 -0
  2096. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/summary-bg.gif +0 -0
  2097. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/summary-group-bg.gif +0 -0
  2098. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/top2.gif +0 -0
  2099. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/up2.gif +0 -0
  2100. lino/modlib/extjs/static/ext-3.3.1/examples/ux/images/x-grouptabs-corners.gif +0 -0
  2101. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/StatusBar.js +418 -0
  2102. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/ValidationStatus.js +196 -0
  2103. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/css/statusbar.css +121 -0
  2104. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/images/accept.png +0 -0
  2105. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/images/exclamation.gif +0 -0
  2106. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/images/loading.gif +0 -0
  2107. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/images/saved.png +0 -0
  2108. lino/modlib/extjs/static/ext-3.3.1/examples/ux/statusbar/images/saving.gif +0 -0
  2109. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGrid.js +410 -0
  2110. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGridColumnResizer.js +119 -0
  2111. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGridColumns.js +39 -0
  2112. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGridLoader.js +18 -0
  2113. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGridNodeUI.js +107 -0
  2114. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/TreeGridSorter.js +137 -0
  2115. lino/modlib/extjs/static/ext-3.3.1/examples/ux/treegrid/treegrid.css +57 -0
  2116. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ux-all-debug.js +10604 -0
  2117. lino/modlib/extjs/static/ext-3.3.1/examples/ux/ux-all.js +14 -0
  2118. lino/modlib/extjs/static/ext-3.3.1/examples/view/animated-dataview.css +65 -0
  2119. lino/modlib/extjs/static/ext-3.3.1/examples/view/animated-dataview.html +26 -0
  2120. lino/modlib/extjs/static/ext-3.3.1/examples/view/animated-dataview.js +120 -0
  2121. lino/modlib/extjs/static/ext-3.3.1/examples/view/chooser-example.js +33 -0
  2122. lino/modlib/extjs/static/ext-3.3.1/examples/view/chooser.css +75 -0
  2123. lino/modlib/extjs/static/ext-3.3.1/examples/view/chooser.html +30 -0
  2124. lino/modlib/extjs/static/ext-3.3.1/examples/view/chooser.js +236 -0
  2125. lino/modlib/extjs/static/ext-3.3.1/examples/view/data-view.css +53 -0
  2126. lino/modlib/extjs/static/ext-3.3.1/examples/view/data-view.html +30 -0
  2127. lino/modlib/extjs/static/ext-3.3.1/examples/view/data-view.js +69 -0
  2128. lino/modlib/extjs/static/ext-3.3.1/examples/view/get-images.php +14 -0
  2129. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Audiovox-CDM8600.png +0 -0
  2130. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/BlackBerry-Curve-8520-BlackBerry.png +0 -0
  2131. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/BlackBerry-Curve-8900-BlackBerry.png +0 -0
  2132. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/LG-KC910-Renoir.png +0 -0
  2133. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/LG-KS360.png +0 -0
  2134. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/LG-PRADA-KE850.png +0 -0
  2135. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/LG-Xenon-GR500.png +0 -0
  2136. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Motorola-RAZR-V3.png +0 -0
  2137. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Motorola-SLVR-L6i.png +0 -0
  2138. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Motorola-W377.png +0 -0
  2139. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Nokia-5310-XpressMusic.png +0 -0
  2140. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Nokia-E63-Smartphone-110-MB.png +0 -0
  2141. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Nokia-N85.png +0 -0
  2142. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Nokia-N900-Smartphone-32-GB.png +0 -0
  2143. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Samsung-SGH-U600-Ultra-Edition-10.9.png +0 -0
  2144. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Sony-Ericsson-C510a-Cyber-shot.png +0 -0
  2145. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Sony-Ericsson-W580i-Walkman.png +0 -0
  2146. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Sony-Ericsson-W705a-Walkman.png +0 -0
  2147. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/Sony-Ericsson-XPERIA-X1.png +0 -0
  2148. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/phones/T-Mobile-Sidekick-3-Smartphone-64-MB.png +0 -0
  2149. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/selected.gif +0 -0
  2150. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/slider-thumb.png +0 -0
  2151. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/dance_fever.jpg +0 -0
  2152. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/gangster_zack.jpg +0 -0
  2153. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/kids_hug.jpg +0 -0
  2154. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/kids_hug2.jpg +0 -0
  2155. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/sara_pink.jpg +0 -0
  2156. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/sara_pumpkin.jpg +0 -0
  2157. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/sara_smile.jpg +0 -0
  2158. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/up_to_something.jpg +0 -0
  2159. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/zack.jpg +0 -0
  2160. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/zack_dress.jpg +0 -0
  2161. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/zack_hat.jpg +0 -0
  2162. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/zack_sink.jpg +0 -0
  2163. lino/modlib/extjs/static/ext-3.3.1/examples/view/images/thumbs/zacks_grill.jpg +0 -0
  2164. lino/modlib/extjs/static/ext-3.3.1/examples/view/list-view.css +9 -0
  2165. lino/modlib/extjs/static/ext-3.3.1/examples/view/list-view.html +26 -0
  2166. lino/modlib/extjs/static/ext-3.3.1/examples/view/list-view.js +60 -0
  2167. lino/modlib/extjs/static/ext-3.3.1/examples/view/multisort-dataview.html +30 -0
  2168. lino/modlib/extjs/static/ext-3.3.1/examples/view/multisort-dataview.js +174 -0
  2169. lino/modlib/extjs/static/ext-3.3.1/examples/window/gmap.html +42 -0
  2170. lino/modlib/extjs/static/ext-3.3.1/examples/window/gmap.js +58 -0
  2171. lino/modlib/extjs/static/ext-3.3.1/examples/window/hello.html +49 -0
  2172. lino/modlib/extjs/static/ext-3.3.1/examples/window/hello.js +43 -0
  2173. lino/modlib/extjs/static/ext-3.3.1/examples/window/layout.html +38 -0
  2174. lino/modlib/extjs/static/ext-3.3.1/examples/window/layout.js +61 -0
  2175. lino/modlib/extjs/static/ext-3.3.1/examples/writer/UserForm.js +133 -0
  2176. lino/modlib/extjs/static/ext-3.3.1/examples/writer/UserGrid.js +134 -0
  2177. lino/modlib/extjs/static/ext-3.3.1/examples/writer/app.php +17 -0
  2178. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/app/controllers/users.php +106 -0
  2179. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/app/models/user.php +7 -0
  2180. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/init.php +17 -0
  2181. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/lib/application_controller.php +44 -0
  2182. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/lib/model.php +72 -0
  2183. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/lib/request.php +77 -0
  2184. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/lib/response.php +22 -0
  2185. lino/modlib/extjs/static/ext-3.3.1/examples/writer/remote/lib/session_db.php +42 -0
  2186. lino/modlib/extjs/static/ext-3.3.1/examples/writer/writer-thumb.gif +0 -0
  2187. lino/modlib/extjs/static/ext-3.3.1/examples/writer/writer.css +6 -0
  2188. lino/modlib/extjs/static/ext-3.3.1/examples/writer/writer.html +71 -0
  2189. lino/modlib/extjs/static/ext-3.3.1/examples/writer/writer.js +125 -0
  2190. lino/modlib/extjs/static/ext-3.3.1/ext-all-debug-w-comments.js +78773 -0
  2191. lino/modlib/extjs/static/ext-3.3.1/ext-all-debug.js +51256 -0
  2192. lino/modlib/extjs/static/ext-3.3.1/ext-all.js +11 -0
  2193. lino/modlib/extjs/static/ext-3.3.1/ext.jsb2 +1640 -0
  2194. lino/modlib/extjs/static/ext-3.3.1/gpl-3.0.txt +674 -0
  2195. lino/modlib/extjs/static/ext-3.3.1/index.html +344 -0
  2196. lino/modlib/extjs/static/ext-3.3.1/license.txt +41 -0
  2197. lino/modlib/extjs/static/ext-3.3.1/pkgs/cmp-foundation-debug.js +14754 -0
  2198. lino/modlib/extjs/static/ext-3.3.1/pkgs/cmp-foundation.js +7 -0
  2199. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-foundation-debug.js +4804 -0
  2200. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-foundation.js +7 -0
  2201. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-grouping-debug.js +263 -0
  2202. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-grouping.js +7 -0
  2203. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-json-debug.js +649 -0
  2204. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-json.js +7 -0
  2205. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-list-views-debug.js +1539 -0
  2206. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-list-views.js +7 -0
  2207. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-xml-debug.js +479 -0
  2208. lino/modlib/extjs/static/ext-3.3.1/pkgs/data-xml.js +7 -0
  2209. lino/modlib/extjs/static/ext-3.3.1/pkgs/direct-debug.js +1162 -0
  2210. lino/modlib/extjs/static/ext-3.3.1/pkgs/direct.js +7 -0
  2211. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-core-debug.js +7918 -0
  2212. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-core.js +7 -0
  2213. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-dd-debug.js +4802 -0
  2214. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-dd.js +7 -0
  2215. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-foundation-debug.js +8022 -0
  2216. lino/modlib/extjs/static/ext-3.3.1/pkgs/ext-foundation.js +7 -0
  2217. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-buttons-debug.js +1146 -0
  2218. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-buttons.js +7 -0
  2219. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-charts-debug.js +1927 -0
  2220. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-charts.js +10 -0
  2221. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-forms-debug.js +9220 -0
  2222. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-forms.js +7 -0
  2223. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-editor-debug.js +621 -0
  2224. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-editor.js +7 -0
  2225. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-foundation-debug.js +7212 -0
  2226. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-foundation.js +7 -0
  2227. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-grouping-debug.js +609 -0
  2228. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-grouping.js +7 -0
  2229. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-property-debug.js +468 -0
  2230. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-grid-property.js +7 -0
  2231. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-history-debug.js +216 -0
  2232. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-history.js +7 -0
  2233. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-menu-debug.js +1701 -0
  2234. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-menu.js +7 -0
  2235. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tabs-debug.js +1132 -0
  2236. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tabs.js +7 -0
  2237. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tips-debug.js +1146 -0
  2238. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tips.js +7 -0
  2239. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-toolbars-debug.js +1216 -0
  2240. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-toolbars.js +7 -0
  2241. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tree-debug.js +4836 -0
  2242. lino/modlib/extjs/static/ext-3.3.1/pkgs/pkg-tree.js +7 -0
  2243. lino/modlib/extjs/static/ext-3.3.1/pkgs/resizable-debug.js +770 -0
  2244. lino/modlib/extjs/static/ext-3.3.1/pkgs/resizable.js +7 -0
  2245. lino/modlib/extjs/static/ext-3.3.1/pkgs/state-debug.js +304 -0
  2246. lino/modlib/extjs/static/ext-3.3.1/pkgs/state.js +7 -0
  2247. lino/modlib/extjs/static/ext-3.3.1/pkgs/window-debug.js +2024 -0
  2248. lino/modlib/extjs/static/ext-3.3.1/pkgs/window.js +7 -0
  2249. lino/modlib/extjs/static/ext-3.3.1/release-notes.html +139 -0
  2250. lino/modlib/extjs/static/ext-3.3.1/resources/charts.swf +0 -0
  2251. lino/modlib/extjs/static/ext-3.3.1/resources/css/README.txt +6 -0
  2252. lino/modlib/extjs/static/ext-3.3.1/resources/css/debug.css +43 -0
  2253. lino/modlib/extjs/static/ext-3.3.1/resources/css/ext-all-notheme.css +5302 -0
  2254. lino/modlib/extjs/static/ext-3.3.1/resources/css/ext-all.css +6969 -0
  2255. lino/modlib/extjs/static/ext-3.3.1/resources/css/reset-min.css +7 -0
  2256. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/borders.css +54 -0
  2257. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/box.css +80 -0
  2258. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/button.css +445 -0
  2259. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/combo.css +45 -0
  2260. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/core.css +341 -0
  2261. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/date-picker.css +271 -0
  2262. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/dd.css +61 -0
  2263. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/debug.css +26 -0
  2264. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/dialog.css +59 -0
  2265. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/editor.css +92 -0
  2266. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/form.css +573 -0
  2267. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/grid.css +588 -0
  2268. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/layout.css +296 -0
  2269. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/list-view.css +86 -0
  2270. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/menu.css +245 -0
  2271. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/panel-reset.css +130 -0
  2272. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/panel.css +493 -0
  2273. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/pivotgrid.css +65 -0
  2274. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/progress.css +46 -0
  2275. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/qtips.css +153 -0
  2276. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/reset.css +13 -0
  2277. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/resizable.css +149 -0
  2278. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/slider.css +103 -0
  2279. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/tabs.css +392 -0
  2280. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/toolbar.css +246 -0
  2281. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/tree.css +218 -0
  2282. lino/modlib/extjs/static/ext-3.3.1/resources/css/structure/window.css +222 -0
  2283. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/borders.css +25 -0
  2284. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/box.css +74 -0
  2285. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/button.css +136 -0
  2286. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/combo.css +43 -0
  2287. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/core.css +81 -0
  2288. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/date-picker.css +145 -0
  2289. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/dd.css +29 -0
  2290. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/debug.css +24 -0
  2291. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/dialog.css +34 -0
  2292. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/editor.css +16 -0
  2293. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/form.css +176 -0
  2294. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/grid.css +288 -0
  2295. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/layout.css +56 -0
  2296. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/list-view.css +43 -0
  2297. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/menu.css +79 -0
  2298. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/panel.css +94 -0
  2299. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/progress.css +35 -0
  2300. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/qtips.css +44 -0
  2301. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/resizable.css +44 -0
  2302. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/slider.css +21 -0
  2303. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/tabs.css +119 -0
  2304. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/toolbar.css +120 -0
  2305. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/tree.css +165 -0
  2306. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-access/window.css +87 -0
  2307. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/borders.css +29 -0
  2308. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/box.css +74 -0
  2309. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/button.css +94 -0
  2310. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/combo.css +43 -0
  2311. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/core.css +83 -0
  2312. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/date-picker.css +143 -0
  2313. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/dd.css +29 -0
  2314. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/debug.css +24 -0
  2315. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/dialog.css +34 -0
  2316. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/editor.css +13 -0
  2317. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/form.css +117 -0
  2318. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/grid.css +276 -0
  2319. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/layout.css +53 -0
  2320. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/list-view.css +37 -0
  2321. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/menu.css +82 -0
  2322. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/panel.css +87 -0
  2323. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/pivotgrid.css +28 -0
  2324. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/progress.css +32 -0
  2325. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/qtips.css +44 -0
  2326. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/resizable.css +43 -0
  2327. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/slider.css +21 -0
  2328. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/tabs.css +127 -0
  2329. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/toolbar.css +95 -0
  2330. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/tree.css +157 -0
  2331. lino/modlib/extjs/static/ext-3.3.1/resources/css/theme-gray/window.css +86 -0
  2332. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/borders.css +25 -0
  2333. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/box.css +74 -0
  2334. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/button.css +94 -0
  2335. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/combo.css +43 -0
  2336. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/core.css +82 -0
  2337. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/date-picker.css +143 -0
  2338. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/dd.css +29 -0
  2339. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/debug.css +24 -0
  2340. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/dialog.css +34 -0
  2341. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/editor.css +13 -0
  2342. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/form.css +123 -0
  2343. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/grid.css +277 -0
  2344. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/layout.css +53 -0
  2345. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/list-view.css +37 -0
  2346. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/menu.css +87 -0
  2347. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/panel.css +87 -0
  2348. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/pivotgrid.css +28 -0
  2349. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/progress.css +32 -0
  2350. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/qtips.css +44 -0
  2351. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/resizable.css +43 -0
  2352. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/slider.css +21 -0
  2353. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/tabs.css +127 -0
  2354. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/toolbar.css +95 -0
  2355. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/tree.css +152 -0
  2356. lino/modlib/extjs/static/ext-3.3.1/resources/css/visual/window.css +86 -0
  2357. lino/modlib/extjs/static/ext-3.3.1/resources/css/xtheme-access.css +1820 -0
  2358. lino/modlib/extjs/static/ext-3.3.1/resources/css/xtheme-blue.css +1674 -0
  2359. lino/modlib/extjs/static/ext-3.3.1/resources/css/xtheme-gray.css +1682 -0
  2360. lino/modlib/extjs/static/ext-3.3.1/resources/css/yourtheme.css +1652 -0
  2361. lino/modlib/extjs/static/ext-3.3.1/resources/expressinstall.swf +0 -0
  2362. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/corners-blue.gif +0 -0
  2363. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/corners.gif +0 -0
  2364. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/l-blue.gif +0 -0
  2365. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/l.gif +0 -0
  2366. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/r-blue.gif +0 -0
  2367. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/r.gif +0 -0
  2368. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/tb-blue.gif +0 -0
  2369. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/box/tb.gif +0 -0
  2370. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/arrow.gif +0 -0
  2371. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/btn.gif +0 -0
  2372. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/group-cs.gif +0 -0
  2373. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/group-lr.gif +0 -0
  2374. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/group-tb.gif +0 -0
  2375. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow-b-noline.gif +0 -0
  2376. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow-b.gif +0 -0
  2377. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow-bo.gif +0 -0
  2378. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow-noline.gif +0 -0
  2379. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow-o.gif +0 -0
  2380. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/button/s-arrow.gif +0 -0
  2381. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/editor/tb-sprite.gif +0 -0
  2382. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/checkbox.gif +0 -0
  2383. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/clear-trigger.gif +0 -0
  2384. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/clear-trigger.psd +0 -0
  2385. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/date-trigger.gif +0 -0
  2386. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/date-trigger.psd +0 -0
  2387. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/error-tip-corners.gif +0 -0
  2388. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/exclamation.gif +0 -0
  2389. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/radio.gif +0 -0
  2390. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/search-trigger.gif +0 -0
  2391. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/search-trigger.psd +0 -0
  2392. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/text-bg.gif +0 -0
  2393. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/trigger-tpl.gif +0 -0
  2394. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/trigger.gif +0 -0
  2395. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/form/trigger.psd +0 -0
  2396. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/arrow-left-white.gif +0 -0
  2397. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/arrow-right-white.gif +0 -0
  2398. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/col-move-bottom.gif +0 -0
  2399. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/col-move-top.gif +0 -0
  2400. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/columns.gif +0 -0
  2401. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/dirty.gif +0 -0
  2402. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/done.gif +0 -0
  2403. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/drop-no.gif +0 -0
  2404. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/drop-yes.gif +0 -0
  2405. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/footer-bg.gif +0 -0
  2406. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-blue-hd.gif +0 -0
  2407. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-blue-split.gif +0 -0
  2408. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-hrow.gif +0 -0
  2409. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-loading.gif +0 -0
  2410. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-split.gif +0 -0
  2411. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid-vista-hd.gif +0 -0
  2412. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid3-hd-btn.gif +0 -0
  2413. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid3-hrow-over.gif +0 -0
  2414. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid3-hrow.gif +0 -0
  2415. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid3-special-col-bg.gif +0 -0
  2416. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/grid3-special-col-sel-bg.gif +0 -0
  2417. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/group-by.gif +0 -0
  2418. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/group-collapse.gif +0 -0
  2419. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/group-expand-sprite.gif +0 -0
  2420. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/group-expand.gif +0 -0
  2421. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hd-pop.gif +0 -0
  2422. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-asc.gif +0 -0
  2423. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-desc.gif +0 -0
  2424. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-lock.gif +0 -0
  2425. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-lock.png +0 -0
  2426. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-unlock.gif +0 -0
  2427. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/hmenu-unlock.png +0 -0
  2428. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/invalid_line.gif +0 -0
  2429. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/loading.gif +0 -0
  2430. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/mso-hd.gif +0 -0
  2431. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/nowait.gif +0 -0
  2432. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-first-disabled.gif +0 -0
  2433. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-first.gif +0 -0
  2434. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-last-disabled.gif +0 -0
  2435. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-last.gif +0 -0
  2436. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-next-disabled.gif +0 -0
  2437. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-next.gif +0 -0
  2438. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-prev-disabled.gif +0 -0
  2439. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/page-prev.gif +0 -0
  2440. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/pick-button.gif +0 -0
  2441. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/refresh.gif +0 -0
  2442. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/row-check-sprite.gif +0 -0
  2443. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/row-expand-sprite.gif +0 -0
  2444. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/row-over.gif +0 -0
  2445. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/row-sel.gif +0 -0
  2446. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/sort-hd.gif +0 -0
  2447. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/sort_asc.gif +0 -0
  2448. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/sort_desc.gif +0 -0
  2449. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/grid/wait.gif +0 -0
  2450. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/checked.gif +0 -0
  2451. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/group-checked.gif +0 -0
  2452. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/item-over.gif +0 -0
  2453. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/menu-parent.gif +0 -0
  2454. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/menu.gif +0 -0
  2455. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/menu/unchecked.gif +0 -0
  2456. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/corners-sprite.gif +0 -0
  2457. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/left-right.gif +0 -0
  2458. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/light-hd.gif +0 -0
  2459. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/tool-sprite-tpl.gif +0 -0
  2460. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/tool-sprites.gif +0 -0
  2461. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/tools-sprites-trans.gif +0 -0
  2462. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/top-bottom.gif +0 -0
  2463. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/white-corners-sprite.gif +0 -0
  2464. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/white-left-right.gif +0 -0
  2465. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/panel/white-top-bottom.gif +0 -0
  2466. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/progress/progress-bg.gif +0 -0
  2467. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/qtip/close.gif +0 -0
  2468. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/qtip/tip-anchor-sprite.gif +0 -0
  2469. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/qtip/tip-sprite.gif +0 -0
  2470. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/shared/glass-bg.gif +0 -0
  2471. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/shared/hd-sprite.gif +0 -0
  2472. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/shared/left-btn.gif +0 -0
  2473. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/shared/right-btn.gif +0 -0
  2474. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/e-handle-dark.gif +0 -0
  2475. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/e-handle.gif +0 -0
  2476. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/ne-handle-dark.gif +0 -0
  2477. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/ne-handle.gif +0 -0
  2478. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/nw-handle-dark.gif +0 -0
  2479. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/nw-handle.gif +0 -0
  2480. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/s-handle-dark.gif +0 -0
  2481. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/s-handle.gif +0 -0
  2482. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/se-handle-dark.gif +0 -0
  2483. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/se-handle.gif +0 -0
  2484. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/square.gif +0 -0
  2485. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/sw-handle-dark.gif +0 -0
  2486. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/sizer/sw-handle.gif +0 -0
  2487. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/slider/slider-bg.png +0 -0
  2488. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/slider/slider-thumb.png +0 -0
  2489. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/slider/slider-v-bg.png +0 -0
  2490. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/slider/slider-v-thumb.png +0 -0
  2491. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/scroll-left.gif +0 -0
  2492. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/scroll-right.gif +0 -0
  2493. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-btm-inactive-left-bg.gif +0 -0
  2494. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-btm-inactive-right-bg.gif +0 -0
  2495. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-btm-left-bg.gif +0 -0
  2496. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-btm-right-bg.gif +0 -0
  2497. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-close.gif +0 -0
  2498. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-strip-bg.gif +0 -0
  2499. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tab-strip-btm-bg.gif +0 -0
  2500. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tabs/tabs-sprite.gif +0 -0
  2501. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/bg.gif +0 -0
  2502. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/btn-arrow-light.gif +0 -0
  2503. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/btn-arrow.gif +0 -0
  2504. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/btn-over-bg.gif +0 -0
  2505. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/gray-bg.gif +0 -0
  2506. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/more.gif +0 -0
  2507. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/s-arrow-bo.gif +0 -0
  2508. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/tb-btn-sprite.gif +0 -0
  2509. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/tb-xl-btn-sprite.gif +0 -0
  2510. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/toolbar/tb-xl-sep.gif +0 -0
  2511. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/arrows.gif +0 -0
  2512. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-add.gif +0 -0
  2513. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-between.gif +0 -0
  2514. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-no.gif +0 -0
  2515. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-over.gif +0 -0
  2516. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-under.gif +0 -0
  2517. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/drop-yes.gif +0 -0
  2518. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-end-minus-nl.gif +0 -0
  2519. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-end-minus.gif +0 -0
  2520. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-end-plus-nl.gif +0 -0
  2521. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-end-plus.gif +0 -0
  2522. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-end.gif +0 -0
  2523. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-line.gif +0 -0
  2524. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-minus-nl.gif +0 -0
  2525. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-minus.gif +0 -0
  2526. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-plus-nl.gif +0 -0
  2527. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow-plus.gif +0 -0
  2528. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/elbow.gif +0 -0
  2529. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/folder-open.gif +0 -0
  2530. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/folder.gif +0 -0
  2531. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/leaf.gif +0 -0
  2532. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/loading.gif +0 -0
  2533. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/tree/s.gif +0 -0
  2534. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/icon-error.gif +0 -0
  2535. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/icon-info.gif +0 -0
  2536. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/icon-question.gif +0 -0
  2537. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/icon-warning.gif +0 -0
  2538. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/left-corners.png +0 -0
  2539. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/left-right.png +0 -0
  2540. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/right-corners.png +0 -0
  2541. lino/modlib/extjs/static/ext-3.3.1/resources/images/access/window/top-bottom.png +0 -0
  2542. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/corners-blue.gif +0 -0
  2543. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/corners.gif +0 -0
  2544. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/l-blue.gif +0 -0
  2545. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/l.gif +0 -0
  2546. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/r-blue.gif +0 -0
  2547. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/r.gif +0 -0
  2548. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/tb-blue.gif +0 -0
  2549. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/box/tb.gif +0 -0
  2550. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/arrow.gif +0 -0
  2551. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/btn.gif +0 -0
  2552. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/group-cs.gif +0 -0
  2553. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/group-lr.gif +0 -0
  2554. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/group-tb.gif +0 -0
  2555. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow-b-noline.gif +0 -0
  2556. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow-b.gif +0 -0
  2557. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow-bo.gif +0 -0
  2558. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow-noline.gif +0 -0
  2559. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow-o.gif +0 -0
  2560. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/button/s-arrow.gif +0 -0
  2561. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/dd/drop-add.gif +0 -0
  2562. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/dd/drop-no.gif +0 -0
  2563. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/dd/drop-yes.gif +0 -0
  2564. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/editor/tb-sprite.gif +0 -0
  2565. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/checkbox.gif +0 -0
  2566. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/clear-trigger.gif +0 -0
  2567. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/clear-trigger.psd +0 -0
  2568. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/date-trigger.gif +0 -0
  2569. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/date-trigger.psd +0 -0
  2570. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/error-tip-corners.gif +0 -0
  2571. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/exclamation.gif +0 -0
  2572. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/radio.gif +0 -0
  2573. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/search-trigger.gif +0 -0
  2574. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/search-trigger.psd +0 -0
  2575. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/text-bg.gif +0 -0
  2576. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/trigger-square.gif +0 -0
  2577. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/trigger-square.psd +0 -0
  2578. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/trigger-tpl.gif +0 -0
  2579. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/trigger.gif +0 -0
  2580. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/form/trigger.psd +0 -0
  2581. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/gradient-bg.gif +0 -0
  2582. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/arrow-left-white.gif +0 -0
  2583. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/arrow-right-white.gif +0 -0
  2584. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/col-move-bottom.gif +0 -0
  2585. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/col-move-top.gif +0 -0
  2586. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/columns.gif +0 -0
  2587. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/dirty.gif +0 -0
  2588. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/done.gif +0 -0
  2589. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/drop-no.gif +0 -0
  2590. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/drop-yes.gif +0 -0
  2591. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/footer-bg.gif +0 -0
  2592. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-blue-hd.gif +0 -0
  2593. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-blue-split.gif +0 -0
  2594. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-hrow.gif +0 -0
  2595. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-loading.gif +0 -0
  2596. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-split.gif +0 -0
  2597. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid-vista-hd.gif +0 -0
  2598. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-hd-btn.gif +0 -0
  2599. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-hrow-over.gif +0 -0
  2600. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-hrow.gif +0 -0
  2601. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-rowheader.gif +0 -0
  2602. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-special-col-bg.gif +0 -0
  2603. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/grid3-special-col-sel-bg.gif +0 -0
  2604. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/group-by.gif +0 -0
  2605. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/group-collapse.gif +0 -0
  2606. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/group-expand-sprite.gif +0 -0
  2607. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/group-expand.gif +0 -0
  2608. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hd-pop.gif +0 -0
  2609. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-asc.gif +0 -0
  2610. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-desc.gif +0 -0
  2611. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-lock.gif +0 -0
  2612. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-lock.png +0 -0
  2613. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-unlock.gif +0 -0
  2614. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/hmenu-unlock.png +0 -0
  2615. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/invalid_line.gif +0 -0
  2616. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/loading.gif +0 -0
  2617. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/mso-hd.gif +0 -0
  2618. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/nowait.gif +0 -0
  2619. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-first-disabled.gif +0 -0
  2620. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-first.gif +0 -0
  2621. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-last-disabled.gif +0 -0
  2622. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-last.gif +0 -0
  2623. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-next-disabled.gif +0 -0
  2624. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-next.gif +0 -0
  2625. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-prev-disabled.gif +0 -0
  2626. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/page-prev.gif +0 -0
  2627. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/pick-button.gif +0 -0
  2628. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/refresh-disabled.gif +0 -0
  2629. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/refresh.gif +0 -0
  2630. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/row-check-sprite.gif +0 -0
  2631. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/row-expand-sprite.gif +0 -0
  2632. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/row-over.gif +0 -0
  2633. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/row-sel.gif +0 -0
  2634. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/sort-hd.gif +0 -0
  2635. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/sort_asc.gif +0 -0
  2636. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/sort_desc.gif +0 -0
  2637. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/grid/wait.gif +0 -0
  2638. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/collapse.gif +0 -0
  2639. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/expand.gif +0 -0
  2640. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/gradient-bg.gif +0 -0
  2641. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/mini-bottom.gif +0 -0
  2642. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/mini-left.gif +0 -0
  2643. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/mini-right.gif +0 -0
  2644. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/mini-top.gif +0 -0
  2645. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/ns-collapse.gif +0 -0
  2646. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/ns-expand.gif +0 -0
  2647. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/panel-close.gif +0 -0
  2648. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/panel-title-bg.gif +0 -0
  2649. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/panel-title-light-bg.gif +0 -0
  2650. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/stick.gif +0 -0
  2651. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/stuck.gif +0 -0
  2652. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/tab-close-on.gif +0 -0
  2653. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/layout/tab-close.gif +0 -0
  2654. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/checked.gif +0 -0
  2655. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/group-checked.gif +0 -0
  2656. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/item-over.gif +0 -0
  2657. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/menu-parent.gif +0 -0
  2658. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/menu.gif +0 -0
  2659. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/menu/unchecked.gif +0 -0
  2660. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/corners-sprite.gif +0 -0
  2661. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/left-right.gif +0 -0
  2662. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/light-hd.gif +0 -0
  2663. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/tool-sprite-tpl.gif +0 -0
  2664. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/tool-sprites.gif +0 -0
  2665. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/tools-sprites-trans.gif +0 -0
  2666. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/top-bottom.gif +0 -0
  2667. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/top-bottom.png +0 -0
  2668. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/white-corners-sprite.gif +0 -0
  2669. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/white-left-right.gif +0 -0
  2670. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/panel/white-top-bottom.gif +0 -0
  2671. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/progress/progress-bg.gif +0 -0
  2672. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/qtip/bg.gif +0 -0
  2673. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/qtip/close.gif +0 -0
  2674. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/qtip/tip-anchor-sprite.gif +0 -0
  2675. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/qtip/tip-sprite.gif +0 -0
  2676. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/s.gif +0 -0
  2677. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shadow-c.png +0 -0
  2678. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shadow-lr.png +0 -0
  2679. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shadow.png +0 -0
  2680. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/blue-loading.gif +0 -0
  2681. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/calendar.gif +0 -0
  2682. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/glass-bg.gif +0 -0
  2683. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/hd-sprite.gif +0 -0
  2684. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/large-loading.gif +0 -0
  2685. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/left-btn.gif +0 -0
  2686. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/loading-balls.gif +0 -0
  2687. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/right-btn.gif +0 -0
  2688. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/shared/warning.gif +0 -0
  2689. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/e-handle-dark.gif +0 -0
  2690. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/e-handle.gif +0 -0
  2691. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/ne-handle-dark.gif +0 -0
  2692. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/ne-handle.gif +0 -0
  2693. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/nw-handle-dark.gif +0 -0
  2694. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/nw-handle.gif +0 -0
  2695. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/s-handle-dark.gif +0 -0
  2696. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/s-handle.gif +0 -0
  2697. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/se-handle-dark.gif +0 -0
  2698. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/se-handle.gif +0 -0
  2699. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/square.gif +0 -0
  2700. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/sw-handle-dark.gif +0 -0
  2701. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/sizer/sw-handle.gif +0 -0
  2702. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/slider/slider-bg.png +0 -0
  2703. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/slider/slider-thumb.png +0 -0
  2704. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/slider/slider-v-bg.png +0 -0
  2705. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/slider/slider-v-thumb.png +0 -0
  2706. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/scroll-left.gif +0 -0
  2707. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/scroll-right.gif +0 -0
  2708. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/scroller-bg.gif +0 -0
  2709. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-inactive-left-bg.gif +0 -0
  2710. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-inactive-right-bg.gif +0 -0
  2711. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-left-bg.gif +0 -0
  2712. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-over-left-bg.gif +0 -0
  2713. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-over-right-bg.gif +0 -0
  2714. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-btm-right-bg.gif +0 -0
  2715. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-close.gif +0 -0
  2716. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-strip-bg.gif +0 -0
  2717. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-strip-bg.png +0 -0
  2718. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tab-strip-btm-bg.gif +0 -0
  2719. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tabs/tabs-sprite.gif +0 -0
  2720. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/bg.gif +0 -0
  2721. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/btn-arrow-light.gif +0 -0
  2722. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/btn-arrow.gif +0 -0
  2723. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/btn-over-bg.gif +0 -0
  2724. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/gray-bg.gif +0 -0
  2725. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/more.gif +0 -0
  2726. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/tb-bg.gif +0 -0
  2727. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/tb-btn-sprite.gif +0 -0
  2728. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/tb-xl-btn-sprite.gif +0 -0
  2729. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/toolbar/tb-xl-sep.gif +0 -0
  2730. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/arrows.gif +0 -0
  2731. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-add.gif +0 -0
  2732. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-between.gif +0 -0
  2733. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-no.gif +0 -0
  2734. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-over.gif +0 -0
  2735. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-under.gif +0 -0
  2736. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/drop-yes.gif +0 -0
  2737. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-end-minus-nl.gif +0 -0
  2738. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-end-minus.gif +0 -0
  2739. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-end-plus-nl.gif +0 -0
  2740. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-end-plus.gif +0 -0
  2741. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-end.gif +0 -0
  2742. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-line.gif +0 -0
  2743. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-minus-nl.gif +0 -0
  2744. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-minus.gif +0 -0
  2745. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-plus-nl.gif +0 -0
  2746. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow-plus.gif +0 -0
  2747. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/elbow.gif +0 -0
  2748. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/folder-open.gif +0 -0
  2749. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/folder.gif +0 -0
  2750. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/leaf.gif +0 -0
  2751. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/loading.gif +0 -0
  2752. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/tree/s.gif +0 -0
  2753. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/icon-error.gif +0 -0
  2754. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/icon-info.gif +0 -0
  2755. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/icon-question.gif +0 -0
  2756. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/icon-warning.gif +0 -0
  2757. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/left-corners.png +0 -0
  2758. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/left-corners.psd +0 -0
  2759. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/left-right.png +0 -0
  2760. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/left-right.psd +0 -0
  2761. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/right-corners.png +0 -0
  2762. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/right-corners.psd +0 -0
  2763. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/top-bottom.png +0 -0
  2764. lino/modlib/extjs/static/ext-3.3.1/resources/images/default/window/top-bottom.psd +0 -0
  2765. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/btn-arrow.gif +0 -0
  2766. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/btn-sprite.gif +0 -0
  2767. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/btn.gif +0 -0
  2768. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/group-cs.gif +0 -0
  2769. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/group-lr.gif +0 -0
  2770. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/group-tb.gif +0 -0
  2771. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/s-arrow-bo.gif +0 -0
  2772. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/button/s-arrow-o.gif +0 -0
  2773. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/form/clear-trigger.gif +0 -0
  2774. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/form/date-trigger.gif +0 -0
  2775. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/form/search-trigger.gif +0 -0
  2776. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/form/trigger-square.gif +0 -0
  2777. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/form/trigger.gif +0 -0
  2778. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/gradient-bg.gif +0 -0
  2779. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/col-move-bottom.gif +0 -0
  2780. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/col-move-top.gif +0 -0
  2781. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-hd-btn.gif +0 -0
  2782. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-hrow-over.gif +0 -0
  2783. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-hrow-over2.gif +0 -0
  2784. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-hrow.gif +0 -0
  2785. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-hrow2.gif +0 -0
  2786. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-special-col-bg.gif +0 -0
  2787. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-special-col-bg2.gif +0 -0
  2788. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/grid3-special-col-sel-bg.gif +0 -0
  2789. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/group-collapse.gif +0 -0
  2790. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/group-expand-sprite.gif +0 -0
  2791. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/group-expand.gif +0 -0
  2792. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/page-first.gif +0 -0
  2793. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/page-last.gif +0 -0
  2794. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/page-next.gif +0 -0
  2795. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/page-prev.gif +0 -0
  2796. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/refresh.gif +0 -0
  2797. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/row-expand-sprite.gif +0 -0
  2798. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/sort-hd.gif +0 -0
  2799. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/sort_asc.gif +0 -0
  2800. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/grid/sort_desc.gif +0 -0
  2801. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/menu/group-checked.gif +0 -0
  2802. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/menu/item-over-disabled.gif +0 -0
  2803. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/menu/item-over.gif +0 -0
  2804. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/menu/menu-parent.gif +0 -0
  2805. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/corners-sprite.gif +0 -0
  2806. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/left-right.gif +0 -0
  2807. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/light-hd.gif +0 -0
  2808. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/tool-sprite-tpl.gif +0 -0
  2809. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/tool-sprites.gif +0 -0
  2810. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/tools-sprites-trans.gif +0 -0
  2811. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/top-bottom.gif +0 -0
  2812. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/top-bottom.png +0 -0
  2813. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/white-corners-sprite.gif +0 -0
  2814. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/white-left-right.gif +0 -0
  2815. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/panel/white-top-bottom.gif +0 -0
  2816. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/progress/progress-bg.gif +0 -0
  2817. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/qtip/bg.gif +0 -0
  2818. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/qtip/close.gif +0 -0
  2819. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/qtip/tip-anchor-sprite.gif +0 -0
  2820. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/qtip/tip-sprite.gif +0 -0
  2821. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/s.gif +0 -0
  2822. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/shared/hd-sprite.gif +0 -0
  2823. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/shared/left-btn.gif +0 -0
  2824. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/shared/right-btn.gif +0 -0
  2825. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/e-handle.gif +0 -0
  2826. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/ne-handle.gif +0 -0
  2827. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/nw-handle.gif +0 -0
  2828. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/s-handle.gif +0 -0
  2829. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/se-handle.gif +0 -0
  2830. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/square.gif +0 -0
  2831. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/sizer/sw-handle.gif +0 -0
  2832. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/slider/slider-thumb.png +0 -0
  2833. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/slider/slider-v-thumb.png +0 -0
  2834. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/scroll-left.gif +0 -0
  2835. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/scroll-right.gif +0 -0
  2836. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/scroller-bg.gif +0 -0
  2837. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif +0 -0
  2838. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif +0 -0
  2839. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-left-bg.gif +0 -0
  2840. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-over-left-bg.gif +0 -0
  2841. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-over-right-bg.gif +0 -0
  2842. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-btm-right-bg.gif +0 -0
  2843. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-close.gif +0 -0
  2844. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-strip-bg.gif +0 -0
  2845. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-strip-bg.png +0 -0
  2846. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tab-strip-btm-bg.gif +0 -0
  2847. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tabs/tabs-sprite.gif +0 -0
  2848. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/bg.gif +0 -0
  2849. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/btn-arrow-light.gif +0 -0
  2850. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/btn-arrow.gif +0 -0
  2851. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/btn-over-bg.gif +0 -0
  2852. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/gray-bg.gif +0 -0
  2853. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/more.gif +0 -0
  2854. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/tb-bg.gif +0 -0
  2855. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/toolbar/tb-btn-sprite.gif +0 -0
  2856. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tree/arrows.gif +0 -0
  2857. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tree/elbow-end-minus-nl.gif +0 -0
  2858. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tree/elbow-end-minus.gif +0 -0
  2859. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tree/elbow-end-plus-nl.gif +0 -0
  2860. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/tree/elbow-end-plus.gif +0 -0
  2861. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/icon-error.gif +0 -0
  2862. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/icon-info.gif +0 -0
  2863. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/icon-question.gif +0 -0
  2864. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/icon-warning.gif +0 -0
  2865. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/left-corners.png +0 -0
  2866. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/left-right.png +0 -0
  2867. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/right-corners.png +0 -0
  2868. lino/modlib/extjs/static/ext-3.3.1/resources/images/gray/window/top-bottom.png +0 -0
  2869. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/bg-center.gif +0 -0
  2870. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/bg-left.gif +0 -0
  2871. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/bg-right.gif +0 -0
  2872. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/close.gif +0 -0
  2873. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/collapse.gif +0 -0
  2874. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/dlg-bg.gif +0 -0
  2875. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/e-handle.gif +0 -0
  2876. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/expand.gif +0 -0
  2877. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/hd-sprite.gif +0 -0
  2878. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/s-handle.gif +0 -0
  2879. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/se-handle.gif +0 -0
  2880. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/basic-dialog/w-handle.gif +0 -0
  2881. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/gradient-bg.gif +0 -0
  2882. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/grid/grid-split.gif +0 -0
  2883. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/grid/grid-vista-hd.gif +0 -0
  2884. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/collapse.gif +0 -0
  2885. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/expand.gif +0 -0
  2886. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/gradient-bg.gif +0 -0
  2887. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/ns-collapse.gif +0 -0
  2888. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/ns-expand.gif +0 -0
  2889. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/panel-close.gif +0 -0
  2890. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/panel-title-bg.gif +0 -0
  2891. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/panel-title-light-bg.gif +0 -0
  2892. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/stick.gif +0 -0
  2893. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/tab-close-on.gif +0 -0
  2894. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/layout/tab-close.gif +0 -0
  2895. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/qtip/bg.gif +0 -0
  2896. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/qtip/tip-sprite.gif +0 -0
  2897. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/s.gif +0 -0
  2898. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/e-handle-dark.gif +0 -0
  2899. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/e-handle.gif +0 -0
  2900. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/ne-handle-dark.gif +0 -0
  2901. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/ne-handle.gif +0 -0
  2902. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/nw-handle-dark.gif +0 -0
  2903. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/nw-handle.gif +0 -0
  2904. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/s-handle-dark.gif +0 -0
  2905. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/s-handle.gif +0 -0
  2906. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/se-handle-dark.gif +0 -0
  2907. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/se-handle.gif +0 -0
  2908. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/sw-handle-dark.gif +0 -0
  2909. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/sizer/sw-handle.gif +0 -0
  2910. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif +0 -0
  2911. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif +0 -0
  2912. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/tabs/tab-btm-left-bg.gif +0 -0
  2913. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/tabs/tab-btm-right-bg.gif +0 -0
  2914. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/tabs/tab-sprite.gif +0 -0
  2915. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/toolbar/gray-bg.gif +0 -0
  2916. lino/modlib/extjs/static/ext-3.3.1/resources/images/vista/toolbar/tb-btn-sprite.gif +0 -0
  2917. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/README.txt +2 -0
  2918. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/corners-blue.gif +0 -0
  2919. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/corners.gif +0 -0
  2920. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/l-blue.gif +0 -0
  2921. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/l.gif +0 -0
  2922. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/r-blue.gif +0 -0
  2923. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/r.gif +0 -0
  2924. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/tb-blue.gif +0 -0
  2925. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/box/tb.gif +0 -0
  2926. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/arrow.gif +0 -0
  2927. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/btn.gif +0 -0
  2928. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/group-cs.gif +0 -0
  2929. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/group-lr.gif +0 -0
  2930. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/group-tb.gif +0 -0
  2931. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow-b-noline.gif +0 -0
  2932. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow-b.gif +0 -0
  2933. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow-bo.gif +0 -0
  2934. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow-noline.gif +0 -0
  2935. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow-o.gif +0 -0
  2936. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/button/s-arrow.gif +0 -0
  2937. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/dd/drop-add.gif +0 -0
  2938. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/dd/drop-no.gif +0 -0
  2939. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/dd/drop-yes.gif +0 -0
  2940. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/editor/tb-sprite.gif +0 -0
  2941. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/checkbox.gif +0 -0
  2942. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/clear-trigger.gif +0 -0
  2943. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/clear-trigger.psd +0 -0
  2944. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/date-trigger.gif +0 -0
  2945. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/date-trigger.psd +0 -0
  2946. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/error-tip-corners.gif +0 -0
  2947. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/exclamation.gif +0 -0
  2948. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/radio.gif +0 -0
  2949. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/search-trigger.gif +0 -0
  2950. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/search-trigger.psd +0 -0
  2951. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/text-bg.gif +0 -0
  2952. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/trigger-square.gif +0 -0
  2953. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/trigger-square.psd +0 -0
  2954. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/trigger-tpl.gif +0 -0
  2955. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/trigger.gif +0 -0
  2956. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/form/trigger.psd +0 -0
  2957. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/gradient-bg.gif +0 -0
  2958. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/arrow-left-white.gif +0 -0
  2959. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/arrow-right-white.gif +0 -0
  2960. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/col-move-bottom.gif +0 -0
  2961. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/col-move-top.gif +0 -0
  2962. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/columns.gif +0 -0
  2963. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/dirty.gif +0 -0
  2964. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/done.gif +0 -0
  2965. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/drop-no.gif +0 -0
  2966. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/drop-yes.gif +0 -0
  2967. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/footer-bg.gif +0 -0
  2968. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-blue-hd.gif +0 -0
  2969. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-blue-split.gif +0 -0
  2970. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-hrow.gif +0 -0
  2971. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-loading.gif +0 -0
  2972. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-split.gif +0 -0
  2973. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid-vista-hd.gif +0 -0
  2974. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid3-hd-btn.gif +0 -0
  2975. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid3-hrow-over.gif +0 -0
  2976. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid3-hrow.gif +0 -0
  2977. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid3-special-col-bg.gif +0 -0
  2978. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/grid3-special-col-sel-bg.gif +0 -0
  2979. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/group-by.gif +0 -0
  2980. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/group-collapse.gif +0 -0
  2981. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/group-expand-sprite.gif +0 -0
  2982. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/group-expand.gif +0 -0
  2983. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hd-pop.gif +0 -0
  2984. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-asc.gif +0 -0
  2985. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-desc.gif +0 -0
  2986. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-lock.gif +0 -0
  2987. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-lock.png +0 -0
  2988. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-unlock.gif +0 -0
  2989. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/hmenu-unlock.png +0 -0
  2990. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/invalid_line.gif +0 -0
  2991. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/loading.gif +0 -0
  2992. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/mso-hd.gif +0 -0
  2993. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/nowait.gif +0 -0
  2994. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-first-disabled.gif +0 -0
  2995. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-first.gif +0 -0
  2996. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-last-disabled.gif +0 -0
  2997. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-last.gif +0 -0
  2998. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-next-disabled.gif +0 -0
  2999. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-next.gif +0 -0
  3000. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-prev-disabled.gif +0 -0
  3001. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/page-prev.gif +0 -0
  3002. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/pick-button.gif +0 -0
  3003. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/refresh.gif +0 -0
  3004. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/row-check-sprite.gif +0 -0
  3005. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/row-expand-sprite.gif +0 -0
  3006. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/row-over.gif +0 -0
  3007. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/row-sel.gif +0 -0
  3008. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/sort-hd.gif +0 -0
  3009. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/sort_asc.gif +0 -0
  3010. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/sort_desc.gif +0 -0
  3011. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/grid/wait.gif +0 -0
  3012. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/collapse.gif +0 -0
  3013. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/expand.gif +0 -0
  3014. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/gradient-bg.gif +0 -0
  3015. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/mini-bottom.gif +0 -0
  3016. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/mini-left.gif +0 -0
  3017. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/mini-right.gif +0 -0
  3018. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/mini-top.gif +0 -0
  3019. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/ns-collapse.gif +0 -0
  3020. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/ns-expand.gif +0 -0
  3021. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/panel-close.gif +0 -0
  3022. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/panel-title-bg.gif +0 -0
  3023. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/panel-title-light-bg.gif +0 -0
  3024. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/stick.gif +0 -0
  3025. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/stuck.gif +0 -0
  3026. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/tab-close-on.gif +0 -0
  3027. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/layout/tab-close.gif +0 -0
  3028. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/checked.gif +0 -0
  3029. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/group-checked.gif +0 -0
  3030. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/item-over.gif +0 -0
  3031. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/menu-parent.gif +0 -0
  3032. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/menu.gif +0 -0
  3033. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/menu/unchecked.gif +0 -0
  3034. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/corners-sprite.gif +0 -0
  3035. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/left-right.gif +0 -0
  3036. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/light-hd.gif +0 -0
  3037. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/tool-sprite-tpl.gif +0 -0
  3038. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/tool-sprites.gif +0 -0
  3039. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/tools-sprites-trans.gif +0 -0
  3040. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/top-bottom.gif +0 -0
  3041. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/top-bottom.png +0 -0
  3042. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/white-corners-sprite.gif +0 -0
  3043. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/white-left-right.gif +0 -0
  3044. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/panel/white-top-bottom.gif +0 -0
  3045. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/progress/progress-bg.gif +0 -0
  3046. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/qtip/bg.gif +0 -0
  3047. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/qtip/close.gif +0 -0
  3048. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/qtip/tip-anchor-sprite.gif +0 -0
  3049. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/qtip/tip-sprite.gif +0 -0
  3050. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/s.gif +0 -0
  3051. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shadow-c.png +0 -0
  3052. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shadow-lr.png +0 -0
  3053. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shadow.png +0 -0
  3054. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/blue-loading.gif +0 -0
  3055. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/calendar.gif +0 -0
  3056. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/glass-bg.gif +0 -0
  3057. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/hd-sprite.gif +0 -0
  3058. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/large-loading.gif +0 -0
  3059. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/left-btn.gif +0 -0
  3060. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/loading-balls.gif +0 -0
  3061. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/right-btn.gif +0 -0
  3062. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/shared/warning.gif +0 -0
  3063. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/e-handle-dark.gif +0 -0
  3064. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/e-handle.gif +0 -0
  3065. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/ne-handle-dark.gif +0 -0
  3066. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/ne-handle.gif +0 -0
  3067. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/nw-handle-dark.gif +0 -0
  3068. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/nw-handle.gif +0 -0
  3069. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/s-handle-dark.gif +0 -0
  3070. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/s-handle.gif +0 -0
  3071. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/se-handle-dark.gif +0 -0
  3072. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/se-handle.gif +0 -0
  3073. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/square.gif +0 -0
  3074. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/sw-handle-dark.gif +0 -0
  3075. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/sizer/sw-handle.gif +0 -0
  3076. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/slider/slider-bg.png +0 -0
  3077. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/slider/slider-thumb.png +0 -0
  3078. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/slider/slider-v-bg.png +0 -0
  3079. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/slider/slider-v-thumb.png +0 -0
  3080. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/scroll-left.gif +0 -0
  3081. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/scroll-right.gif +0 -0
  3082. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/scroller-bg.gif +0 -0
  3083. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-inactive-left-bg.gif +0 -0
  3084. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-inactive-right-bg.gif +0 -0
  3085. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-left-bg.gif +0 -0
  3086. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-over-left-bg.gif +0 -0
  3087. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-over-right-bg.gif +0 -0
  3088. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-btm-right-bg.gif +0 -0
  3089. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-close.gif +0 -0
  3090. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-strip-bg.gif +0 -0
  3091. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-strip-bg.png +0 -0
  3092. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tab-strip-btm-bg.gif +0 -0
  3093. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tabs/tabs-sprite.gif +0 -0
  3094. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/bg.gif +0 -0
  3095. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/btn-arrow-light.gif +0 -0
  3096. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/btn-arrow.gif +0 -0
  3097. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/btn-over-bg.gif +0 -0
  3098. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/gray-bg.gif +0 -0
  3099. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/more.gif +0 -0
  3100. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/tb-bg.gif +0 -0
  3101. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/tb-btn-sprite.gif +0 -0
  3102. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/tb-xl-btn-sprite.gif +0 -0
  3103. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/toolbar/tb-xl-sep.gif +0 -0
  3104. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/arrows.gif +0 -0
  3105. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-add.gif +0 -0
  3106. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-between.gif +0 -0
  3107. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-no.gif +0 -0
  3108. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-over.gif +0 -0
  3109. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-under.gif +0 -0
  3110. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/drop-yes.gif +0 -0
  3111. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-end-minus-nl.gif +0 -0
  3112. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-end-minus.gif +0 -0
  3113. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-end-plus-nl.gif +0 -0
  3114. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-end-plus.gif +0 -0
  3115. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-end.gif +0 -0
  3116. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-line.gif +0 -0
  3117. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-minus-nl.gif +0 -0
  3118. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-minus.gif +0 -0
  3119. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-plus-nl.gif +0 -0
  3120. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow-plus.gif +0 -0
  3121. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/elbow.gif +0 -0
  3122. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/folder-open.gif +0 -0
  3123. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/folder.gif +0 -0
  3124. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/leaf.gif +0 -0
  3125. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/loading.gif +0 -0
  3126. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/tree/s.gif +0 -0
  3127. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/icon-error.gif +0 -0
  3128. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/icon-info.gif +0 -0
  3129. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/icon-question.gif +0 -0
  3130. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/icon-warning.gif +0 -0
  3131. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/left-corners.png +0 -0
  3132. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/left-corners.psd +0 -0
  3133. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/left-right.png +0 -0
  3134. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/left-right.psd +0 -0
  3135. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/right-corners.png +0 -0
  3136. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/right-corners.psd +0 -0
  3137. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/top-bottom.png +0 -0
  3138. lino/modlib/extjs/static/ext-3.3.1/resources/images/yourtheme/window/top-bottom.psd +0 -0
  3139. lino/modlib/extjs/static/ext-3.3.1/src/adapter/ext-base-dom-more.js +9 -0
  3140. lino/modlib/extjs/static/ext-3.3.1/src/adapter/jquery-bridge.js +579 -0
  3141. lino/modlib/extjs/static/ext-3.3.1/src/adapter/prototype-bridge.js +608 -0
  3142. lino/modlib/extjs/static/ext-3.3.1/src/adapter/yui-bridge.js +374 -0
  3143. lino/modlib/extjs/static/ext-3.3.1/src/core/CompositeElement.js +112 -0
  3144. lino/modlib/extjs/static/ext-3.3.1/src/core/CompositeElementLite-more.js +75 -0
  3145. lino/modlib/extjs/static/ext-3.3.1/src/core/DomHelper-more.js +154 -0
  3146. lino/modlib/extjs/static/ext-3.3.1/src/core/Element-more.js +200 -0
  3147. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.alignment.js +417 -0
  3148. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.dd.js +46 -0
  3149. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.fx-more.js +162 -0
  3150. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.insertion-more.js +57 -0
  3151. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.keys.js +52 -0
  3152. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.position-more.js +176 -0
  3153. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.scroll-more.js +118 -0
  3154. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.style-more.js +360 -0
  3155. lino/modlib/extjs/static/ext-3.3.1/src/core/Element.traversal-more.js +20 -0
  3156. lino/modlib/extjs/static/ext-3.3.1/src/core/Error.js +81 -0
  3157. lino/modlib/extjs/static/ext-3.3.1/src/core/EventManager-more.js +335 -0
  3158. lino/modlib/extjs/static/ext-3.3.1/src/core/Ext-more.js +688 -0
  3159. lino/modlib/extjs/static/ext-3.3.1/src/core/Template-more.js +137 -0
  3160. lino/modlib/extjs/static/ext-3.3.1/src/data/Api.js +285 -0
  3161. lino/modlib/extjs/static/ext-3.3.1/src/data/ArrayReader.js +103 -0
  3162. lino/modlib/extjs/static/ext-3.3.1/src/data/ArrayStore.js +70 -0
  3163. lino/modlib/extjs/static/ext-3.3.1/src/data/DataField.js +203 -0
  3164. lino/modlib/extjs/static/ext-3.3.1/src/data/DataProxy.js +511 -0
  3165. lino/modlib/extjs/static/ext-3.3.1/src/data/DataReader.js +228 -0
  3166. lino/modlib/extjs/static/ext-3.3.1/src/data/DataWriter.js +210 -0
  3167. lino/modlib/extjs/static/ext-3.3.1/src/data/DirectProxy.js +173 -0
  3168. lino/modlib/extjs/static/ext-3.3.1/src/data/DirectStore.js +54 -0
  3169. lino/modlib/extjs/static/ext-3.3.1/src/data/GroupingStore.js +263 -0
  3170. lino/modlib/extjs/static/ext-3.3.1/src/data/HttpProxy.js +261 -0
  3171. lino/modlib/extjs/static/ext-3.3.1/src/data/JsonReader.js +358 -0
  3172. lino/modlib/extjs/static/ext-3.3.1/src/data/JsonStore.js +49 -0
  3173. lino/modlib/extjs/static/ext-3.3.1/src/data/JsonWriter.js +96 -0
  3174. lino/modlib/extjs/static/ext-3.3.1/src/data/MemoryProxy.js +69 -0
  3175. lino/modlib/extjs/static/ext-3.3.1/src/data/Record.js +415 -0
  3176. lino/modlib/extjs/static/ext-3.3.1/src/data/Request.js +41 -0
  3177. lino/modlib/extjs/static/ext-3.3.1/src/data/Response.js +39 -0
  3178. lino/modlib/extjs/static/ext-3.3.1/src/data/ScriptTagProxy.js +305 -0
  3179. lino/modlib/extjs/static/ext-3.3.1/src/data/SortTypes.js +91 -0
  3180. lino/modlib/extjs/static/ext-3.3.1/src/data/Store.js +1977 -0
  3181. lino/modlib/extjs/static/ext-3.3.1/src/data/StoreMgr.js +72 -0
  3182. lino/modlib/extjs/static/ext-3.3.1/src/data/Tree.js +833 -0
  3183. lino/modlib/extjs/static/ext-3.3.1/src/data/Types.js +187 -0
  3184. lino/modlib/extjs/static/ext-3.3.1/src/data/XmlReader.js +259 -0
  3185. lino/modlib/extjs/static/ext-3.3.1/src/data/XmlStore.js +75 -0
  3186. lino/modlib/extjs/static/ext-3.3.1/src/data/XmlWriter.js +158 -0
  3187. lino/modlib/extjs/static/ext-3.3.1/src/dd/DDCore.js +3158 -0
  3188. lino/modlib/extjs/static/ext-3.3.1/src/dd/DragSource.js +370 -0
  3189. lino/modlib/extjs/static/ext-3.3.1/src/dd/DragTracker.js +251 -0
  3190. lino/modlib/extjs/static/ext-3.3.1/src/dd/DragZone.js +141 -0
  3191. lino/modlib/extjs/static/ext-3.3.1/src/dd/DropTarget.js +122 -0
  3192. lino/modlib/extjs/static/ext-3.3.1/src/dd/DropZone.js +262 -0
  3193. lino/modlib/extjs/static/ext-3.3.1/src/dd/Registry.js +127 -0
  3194. lino/modlib/extjs/static/ext-3.3.1/src/dd/ScrollManager.js +213 -0
  3195. lino/modlib/extjs/static/ext-3.3.1/src/dd/StatusProxy.js +175 -0
  3196. lino/modlib/extjs/static/ext-3.3.1/src/debug.js +907 -0
  3197. lino/modlib/extjs/static/ext-3.3.1/src/direct/Direct.js +235 -0
  3198. lino/modlib/extjs/static/ext-3.3.1/src/direct/Event.js +34 -0
  3199. lino/modlib/extjs/static/ext-3.3.1/src/direct/JsonProvider.js +45 -0
  3200. lino/modlib/extjs/static/ext-3.3.1/src/direct/PollingProvider.js +151 -0
  3201. lino/modlib/extjs/static/ext-3.3.1/src/direct/Provider.js +110 -0
  3202. lino/modlib/extjs/static/ext-3.3.1/src/direct/RemotingProvider.js +380 -0
  3203. lino/modlib/extjs/static/ext-3.3.1/src/direct/Transaction.js +32 -0
  3204. lino/modlib/extjs/static/ext-3.3.1/src/error-checking.js +364 -0
  3205. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/carousel/carousel.js +333 -0
  3206. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/jsonp/jsonp.js +78 -0
  3207. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/lightbox/lightbox.js +366 -0
  3208. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/menu/menu.js +258 -0
  3209. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/rating/rating.js +267 -0
  3210. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/examples/tabs/tabs.js +79 -0
  3211. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-ajax.js +371 -0
  3212. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-anim-extra.js +305 -0
  3213. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-anim.js +475 -0
  3214. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-begin.js +18 -0
  3215. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-dom.js +160 -0
  3216. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-end.js +21 -0
  3217. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-event.js +359 -0
  3218. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-point.js +17 -0
  3219. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/adapter/ext-base-region.js +81 -0
  3220. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/CompositeElementLite.js +322 -0
  3221. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/DomHelper.js +426 -0
  3222. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/DomQuery.js +932 -0
  3223. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.fx.js +421 -0
  3224. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.insertion.js +145 -0
  3225. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.js +985 -0
  3226. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.position.js +301 -0
  3227. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.scroll.js +58 -0
  3228. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.style.js +503 -0
  3229. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Element.traversal.js +175 -0
  3230. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/EventManager.js +933 -0
  3231. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Ext.js +1051 -0
  3232. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Fx.js +1112 -0
  3233. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Loader.js +96 -0
  3234. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/core/Template.js +246 -0
  3235. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/data/Connection.js +583 -0
  3236. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/util/DelayedTask.js +70 -0
  3237. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/util/JSON.js +190 -0
  3238. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/util/Observable.js +528 -0
  3239. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/src/util/TaskMgr.js +180 -0
  3240. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/test/yui_2.6.0/yui/build/logger/logger-min.js +15 -0
  3241. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/test/yui_2.6.0/yui/build/yahoo-dom-event/yahoo-dom-event.js +18 -0
  3242. lino/modlib/extjs/static/ext-3.3.1/src/ext-core/test/yui_2.6.0/yui/build/yuitest/yuitest-min.js +17 -0
  3243. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-af.js +185 -0
  3244. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-am.js +359 -0
  3245. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-bg.js +279 -0
  3246. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ca.js +316 -0
  3247. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-cs.js +311 -0
  3248. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-da.js +297 -0
  3249. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-de.js +346 -0
  3250. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-el_GR.js +309 -0
  3251. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-en.js +346 -0
  3252. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-en_GB.js +322 -0
  3253. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-es.js +319 -0
  3254. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-fa.js +273 -0
  3255. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-fi.js +303 -0
  3256. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-fr.js +346 -0
  3257. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-fr_CA.js +218 -0
  3258. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-gr.js +175 -0
  3259. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-he.js +293 -0
  3260. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-hr.js +296 -0
  3261. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-hu.js +297 -0
  3262. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-id.js +303 -0
  3263. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-it.js +296 -0
  3264. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ja.js +319 -0
  3265. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ko.js +268 -0
  3266. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-lt.js +334 -0
  3267. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-lv.js +177 -0
  3268. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-mk.js +176 -0
  3269. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-nl.js +324 -0
  3270. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-no_NB.js +295 -0
  3271. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-no_NN.js +295 -0
  3272. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-pl.js +304 -0
  3273. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-pt.js +261 -0
  3274. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-pt_BR.js +303 -0
  3275. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-pt_PT.js +298 -0
  3276. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ro.js +296 -0
  3277. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ru.js +320 -0
  3278. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-sk.js +182 -0
  3279. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-sl.js +177 -0
  3280. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-sr.js +180 -0
  3281. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-sr_RS.js +179 -0
  3282. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-sv_SE.js +179 -0
  3283. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-th.js +295 -0
  3284. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-tr.js +307 -0
  3285. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-ukr.js +263 -0
  3286. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-vn.js +181 -0
  3287. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-zh_CN.js +263 -0
  3288. lino/modlib/extjs/static/ext-3.3.1/src/locale/ext-lang-zh_TW.js +178 -0
  3289. lino/modlib/extjs/static/ext-3.3.1/src/state/CookieProvider.js +94 -0
  3290. lino/modlib/extjs/static/ext-3.3.1/src/state/Provider.js +154 -0
  3291. lino/modlib/extjs/static/ext-3.3.1/src/state/StateManager.js +69 -0
  3292. lino/modlib/extjs/static/ext-3.3.1/src/util/AbstractManager.js +112 -0
  3293. lino/modlib/extjs/static/ext-3.3.1/src/util/CSS.js +161 -0
  3294. lino/modlib/extjs/static/ext-3.3.1/src/util/ClickRepeater.js +214 -0
  3295. lino/modlib/extjs/static/ext-3.3.1/src/util/Cookies.js +96 -0
  3296. lino/modlib/extjs/static/ext-3.3.1/src/util/Date.js +1334 -0
  3297. lino/modlib/extjs/static/ext-3.3.1/src/util/Format.js +367 -0
  3298. lino/modlib/extjs/static/ext-3.3.1/src/util/Function.js +240 -0
  3299. lino/modlib/extjs/static/ext-3.3.1/src/util/History.js +216 -0
  3300. lino/modlib/extjs/static/ext-3.3.1/src/util/KeyMap.js +242 -0
  3301. lino/modlib/extjs/static/ext-3.3.1/src/util/KeyNav.js +167 -0
  3302. lino/modlib/extjs/static/ext-3.3.1/src/util/MixedCollection.js +670 -0
  3303. lino/modlib/extjs/static/ext-3.3.1/src/util/Observable-more.js +226 -0
  3304. lino/modlib/extjs/static/ext-3.3.1/src/util/TextMetrics.js +136 -0
  3305. lino/modlib/extjs/static/ext-3.3.1/src/util/UpdateManager.js +536 -0
  3306. lino/modlib/extjs/static/ext-3.3.1/src/util/XTemplate.js +478 -0
  3307. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Action.js +253 -0
  3308. lino/modlib/extjs/static/ext-3.3.1/src/widgets/BoxComponent.js +591 -0
  3309. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Button.js +840 -0
  3310. lino/modlib/extjs/static/ext-3.3.1/src/widgets/ButtonGroup.js +106 -0
  3311. lino/modlib/extjs/static/ext-3.3.1/src/widgets/ColorPalette.js +172 -0
  3312. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Component.js +1801 -0
  3313. lino/modlib/extjs/static/ext-3.3.1/src/widgets/ComponentMgr.js +196 -0
  3314. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Container.js +1000 -0
  3315. lino/modlib/extjs/static/ext-3.3.1/src/widgets/CycleButton.js +193 -0
  3316. lino/modlib/extjs/static/ext-3.3.1/src/widgets/DataView.js +787 -0
  3317. lino/modlib/extjs/static/ext-3.3.1/src/widgets/DatePicker.js +795 -0
  3318. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Editor.js +401 -0
  3319. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Layer.js +469 -0
  3320. lino/modlib/extjs/static/ext-3.3.1/src/widgets/LoadMask.js +129 -0
  3321. lino/modlib/extjs/static/ext-3.3.1/src/widgets/MessageBox.js +644 -0
  3322. lino/modlib/extjs/static/ext-3.3.1/src/widgets/PagingToolbar.js +537 -0
  3323. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Panel.js +1799 -0
  3324. lino/modlib/extjs/static/ext-3.3.1/src/widgets/PanelDD.js +158 -0
  3325. lino/modlib/extjs/static/ext-3.3.1/src/widgets/ProgressBar.js +306 -0
  3326. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Resizable.js +770 -0
  3327. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Shadow.js +203 -0
  3328. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Slider.js +967 -0
  3329. lino/modlib/extjs/static/ext-3.3.1/src/widgets/SplitBar.js +436 -0
  3330. lino/modlib/extjs/static/ext-3.3.1/src/widgets/SplitButton.js +126 -0
  3331. lino/modlib/extjs/static/ext-3.3.1/src/widgets/TabPanel.js +1132 -0
  3332. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Toolbar.js +585 -0
  3333. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Viewport.js +125 -0
  3334. lino/modlib/extjs/static/ext-3.3.1/src/widgets/Window.js +1033 -0
  3335. lino/modlib/extjs/static/ext-3.3.1/src/widgets/WindowManager.js +209 -0
  3336. lino/modlib/extjs/static/ext-3.3.1/src/widgets/chart/Chart.js +1002 -0
  3337. lino/modlib/extjs/static/ext-3.3.1/src/widgets/chart/EventProxy.js +20 -0
  3338. lino/modlib/extjs/static/ext-3.3.1/src/widgets/chart/FlashComponent.js +137 -0
  3339. lino/modlib/extjs/static/ext-3.3.1/src/widgets/chart/swfobject.js +788 -0
  3340. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Action.js +778 -0
  3341. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/BasicForm.js +810 -0
  3342. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Checkbox.js +178 -0
  3343. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/CheckboxGroup.js +496 -0
  3344. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Combo.js +1358 -0
  3345. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/CompositeField.js +445 -0
  3346. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/DateField.js +446 -0
  3347. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/DisplayField.js +98 -0
  3348. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Field.js +750 -0
  3349. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/FieldSet.js +297 -0
  3350. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Form.js +358 -0
  3351. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Hidden.js +41 -0
  3352. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/HtmlEditor.js +1263 -0
  3353. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Label.js +64 -0
  3354. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/NumberField.js +194 -0
  3355. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/Radio.js +80 -0
  3356. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/RadioGroup.js +122 -0
  3357. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/SliderField.js +183 -0
  3358. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/TextArea.js +120 -0
  3359. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/TextField.js +548 -0
  3360. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/TimeField.js +188 -0
  3361. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/TriggerField.js +407 -0
  3362. lino/modlib/extjs/static/ext-3.3.1/src/widgets/form/VTypes.js +135 -0
  3363. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/AbstractSelectionModel.js +99 -0
  3364. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/CellSelectionModel.js +286 -0
  3365. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/CheckboxSelectionModel.js +121 -0
  3366. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/Column.js +674 -0
  3367. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/ColumnDD.js +206 -0
  3368. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/ColumnModel.js +655 -0
  3369. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/ColumnSplitDD.js +63 -0
  3370. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/EditorGrid.js +328 -0
  3371. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/GridDD.js +95 -0
  3372. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/GridEditor.js +21 -0
  3373. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/GridPanel.js +1121 -0
  3374. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/GridView.js +2517 -0
  3375. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/GroupingView.js +609 -0
  3376. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/PivotAxis.js +319 -0
  3377. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/PivotGrid.js +389 -0
  3378. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/PivotGridView.js +437 -0
  3379. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/PropertyGrid.js +468 -0
  3380. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/RowNumberer.js +62 -0
  3381. lino/modlib/extjs/static/ext-3.3.1/src/widgets/grid/RowSelectionModel.js +541 -0
  3382. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/AbsoluteLayout.js +83 -0
  3383. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/AccordionLayout.js +202 -0
  3384. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/AnchorLayout.js +266 -0
  3385. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/AutoLayout.js +32 -0
  3386. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/BorderLayout.js +1151 -0
  3387. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/BoxLayout.js +344 -0
  3388. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/CardLayout.js +147 -0
  3389. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/ColumnLayout.js +176 -0
  3390. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/ContainerLayout.js +309 -0
  3391. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/FitLayout.js +58 -0
  3392. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/FormLayout.js +360 -0
  3393. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/HBoxLayout.js +291 -0
  3394. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/MenuLayout.js +102 -0
  3395. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/TableLayout.js +210 -0
  3396. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/ToolbarLayout.js +439 -0
  3397. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/VBoxLayout.js +293 -0
  3398. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/box/MenuOverflow.js +351 -0
  3399. lino/modlib/extjs/static/ext-3.3.1/src/widgets/layout/box/ScrollerOverflow.js +507 -0
  3400. lino/modlib/extjs/static/ext-3.3.1/src/widgets/list/Column.js +158 -0
  3401. lino/modlib/extjs/static/ext-3.3.1/src/widgets/list/ColumnResizer.js +159 -0
  3402. lino/modlib/extjs/static/ext-3.3.1/src/widgets/list/ListView.js +389 -0
  3403. lino/modlib/extjs/static/ext-3.3.1/src/widgets/list/Sorter.js +73 -0
  3404. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/BaseItem.js +166 -0
  3405. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/CheckItem.js +117 -0
  3406. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/ColorMenu.js +109 -0
  3407. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/DateMenu.js +125 -0
  3408. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/Item.js +224 -0
  3409. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/Menu.js +718 -0
  3410. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/MenuMgr.js +206 -0
  3411. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/Separator.js +42 -0
  3412. lino/modlib/extjs/static/ext-3.3.1/src/widgets/menu/TextItem.js +48 -0
  3413. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tips/QuickTip.js +221 -0
  3414. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tips/QuickTips.js +179 -0
  3415. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tips/SliderTip.js +74 -0
  3416. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tips/Tip.js +161 -0
  3417. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tips/ToolTip.js +539 -0
  3418. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/AsyncTreeNode.js +114 -0
  3419. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeDragZone.js +82 -0
  3420. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeDropZone.js +321 -0
  3421. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeEditor.js +177 -0
  3422. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeEventModel.js +198 -0
  3423. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeFilter.js +114 -0
  3424. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeLoader.js +357 -0
  3425. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeNode.js +627 -0
  3426. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeNodeUI.js +676 -0
  3427. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreePanel.js +981 -0
  3428. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeSelectionModel.js +325 -0
  3429. lino/modlib/extjs/static/ext-3.3.1/src/widgets/tree/TreeSorter.js +114 -0
  3430. lino/modlib/extjs/static/ext-3.3.1/test/performance/window.js +494 -0
  3431. lino/modlib/extjs/static/ext-3.3.1/test/unit/Array.js +69 -0
  3432. lino/modlib/extjs/static/ext-3.3.1/test/unit/Ext/Template.js +179 -0
  3433. lino/modlib/extjs/static/ext-3.3.1/test/unit/Ext/XTemplate.js +77 -0
  3434. lino/modlib/extjs/static/ext-3.3.1/test/unit/Ext.js +953 -0
  3435. lino/modlib/extjs/static/ext-3.3.1/test/unit/Function.js +145 -0
  3436. lino/modlib/extjs/static/ext-3.3.1/test/unit/Number.js +35 -0
  3437. lino/modlib/extjs/static/ext-3.3.1/test/unit/String.js +64 -0
  3438. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/ArrayReader.js +40 -0
  3439. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/DataField.js +148 -0
  3440. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/GroupingStore.js +386 -0
  3441. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/JsonReader.js +171 -0
  3442. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/Store.js +588 -0
  3443. lino/modlib/extjs/static/ext-3.3.1/test/unit/data/Types.js +182 -0
  3444. lino/modlib/extjs/static/ext-3.3.1/test/unit/direct/Direct.js +88 -0
  3445. lino/modlib/extjs/static/ext-3.3.1/test/unit/util/JSON.js +32 -0
  3446. lino/modlib/extjs/static/ext-3.3.1/test/unit/util/MixedCollection.js +543 -0
  3447. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/BasicForm.js +433 -0
  3448. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/Container.js +472 -0
  3449. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/FormPanel.js +109 -0
  3450. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/GridPanel.js +103 -0
  3451. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/Slider.js +204 -0
  3452. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/form/CompositeField.js +201 -0
  3453. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/layout/BoxLayout.js +19 -0
  3454. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/layout/ContainerLayout.js +160 -0
  3455. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/layout/FormLayout.js +97 -0
  3456. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/layout/HBoxLayout.js +543 -0
  3457. lino/modlib/extjs/static/ext-3.3.1/test/unit/widgets/layout/VBoxLayout.js +542 -0
  3458. lino/modlib/extjs/static/ext-3.3.1/welcome/images/bg-x.png +0 -0
  3459. lino/modlib/extjs/static/ext-3.3.1/welcome/images/button_join_us.png +0 -0
  3460. lino/modlib/extjs/static/ext-3.3.1/welcome/images/ext-comp.png +0 -0
  3461. lino/modlib/extjs/static/ext-3.3.1/welcome/images/li.png +0 -0
  3462. lino/modlib/extjs/static/ext-3.3.1/welcome/images/logo-sencha-sm.png +0 -0
  3463. lino/modlib/extjs/static/ext-3.3.1/welcome/images/social_sprite.gif +0 -0
  3464. lino/modlib/extjs/static/ext-3.3.1/welcome/images/social_sprite.png +0 -0
  3465. lino/modlib/extjs/static/extjs/Critical.png +0 -0
  3466. lino/modlib/extjs/static/extjs/Ext.ux.form.DateTime.js +689 -0
  3467. lino/modlib/extjs/static/extjs/Help.png +0 -0
  3468. lino/modlib/extjs/static/extjs/Info.png +0 -0
  3469. lino/modlib/extjs/static/extjs/Warning.png +0 -0
  3470. lino/modlib/extjs/static/extjs/lino.css +449 -0
  3471. lino/modlib/extjs/static/filterRow/ReadMe.txt +8 -0
  3472. lino/modlib/extjs/static/filterRow/example/com_extensiondemo_content.sql +121 -0
  3473. lino/modlib/extjs/static/filterRow/example/db.php +37 -0
  3474. lino/modlib/extjs/static/filterRow/example/demo.js +80 -0
  3475. lino/modlib/extjs/static/filterRow/example/index.php +89 -0
  3476. lino/modlib/extjs/static/filterRow/filterRow.css +35 -0
  3477. lino/modlib/extjs/static/filterRow/filterRow.js +269 -0
  3478. lino/modlib/extjs/static/filterRow/images/Copy of filter.JPG +0 -0
  3479. lino/modlib/extjs/static/filterRow/images/Thumbs.db +0 -0
  3480. lino/modlib/extjs/static/filterRow/images/clearfilter.png +0 -0
  3481. lino/modlib/extjs/static/filterRow/images/clearfilterOption.png +0 -0
  3482. lino/modlib/extjs/static/filterRow/images/filter.JPG +0 -0
  3483. lino/modlib/extjs/static/filterRow/images/filter.png +0 -0
  3484. lino/modlib/extjs/static/filterRow/images/grid3-hrow-over.gif +0 -0
  3485. lino/modlib/extjs/static/filterRow/images/grid3-hrow.gif +0 -0
  3486. lino/modlib/extjs/static/filterRow/images/grid3-hrow2-over.gif +0 -0
  3487. lino/modlib/extjs/static/filterRow/images/moreOptions.png +0 -0
  3488. lino/modlib/extjs/static/filterRow/index.html +0 -0
  3489. lino/modlib/extjs/views.py +596 -0
  3490. lino/modlib/forms/__init__.py +51 -0
  3491. lino/modlib/forms/models.py +0 -0
  3492. lino/modlib/forms/renderer.py +74 -0
  3493. lino/modlib/forms/views.py +311 -0
  3494. lino/modlib/gfks/__init__.py +33 -0
  3495. lino/modlib/gfks/fields.py +88 -0
  3496. lino/modlib/gfks/mixins.py +81 -0
  3497. lino/modlib/gfks/models.py +214 -0
  3498. lino/modlib/help/__init__.py +119 -0
  3499. lino/modlib/help/config/makehelp/actor.tpl.rst +17 -0
  3500. lino/modlib/help/config/makehelp/actors.tpl.rst +11 -0
  3501. lino/modlib/help/config/makehelp/conf.tpl.py +43 -0
  3502. lino/modlib/help/config/makehelp/copyright.tpl.rst +9 -0
  3503. lino/modlib/help/config/makehelp/index.tpl.rst +16 -0
  3504. lino/modlib/help/config/makehelp/model.tpl.rst +11 -0
  3505. lino/modlib/help/config/makehelp/models.tpl.rst +16 -0
  3506. lino/modlib/help/config/makehelp/plugin.tpl.rst +25 -0
  3507. lino/modlib/help/config/makehelp/plugins.tpl.rst +15 -0
  3508. lino/modlib/help/fixtures/__init__.py +0 -0
  3509. lino/modlib/help/fixtures/demo2.py +22 -0
  3510. lino/modlib/help/management/__init__.py +0 -0
  3511. lino/modlib/help/management/commands/__init__.py +0 -0
  3512. lino/modlib/help/management/commands/makehelp.py +533 -0
  3513. lino/modlib/help/models.py +98 -0
  3514. lino/modlib/help/utils.py +112 -0
  3515. lino/modlib/importfilters/__init__.py +26 -0
  3516. lino/modlib/importfilters/models.py +110 -0
  3517. lino/modlib/ipdict/__init__.py +38 -0
  3518. lino/modlib/ipdict/models.py +45 -0
  3519. lino/modlib/jinja/__init__.py +110 -0
  3520. lino/modlib/jinja/choicelists.py +44 -0
  3521. lino/modlib/jinja/config/jinja/status.jinja.rst +14 -0
  3522. lino/modlib/jinja/loader.py +52 -0
  3523. lino/modlib/jinja/management/__init__.py +0 -0
  3524. lino/modlib/jinja/management/commands/__init__.py +0 -0
  3525. lino/modlib/jinja/management/commands/showsettings.py +15 -0
  3526. lino/modlib/jinja/management/commands/status.py +19 -0
  3527. lino/modlib/jinja/renderer.py +178 -0
  3528. lino/modlib/languages/__init__.py +35 -0
  3529. lino/modlib/languages/fixtures/__init__.py +0 -0
  3530. lino/modlib/languages/fixtures/all_languages.py +800 -0
  3531. lino/modlib/languages/fixtures/few_languages.py +28 -0
  3532. lino/modlib/languages/fixtures/iso-639-3_20100707.tab +7705 -0
  3533. lino/modlib/languages/models.py +30 -0
  3534. lino/modlib/linod/__init__.py +79 -0
  3535. lino/modlib/linod/choicelists.py +82 -0
  3536. lino/modlib/linod/consumers.py +191 -0
  3537. lino/modlib/linod/management/__init__.py +0 -0
  3538. lino/modlib/linod/management/commands/__init__.py +0 -0
  3539. lino/modlib/linod/management/commands/linod.py +93 -0
  3540. lino/modlib/linod/mixins.py +255 -0
  3541. lino/modlib/linod/models.py +73 -0
  3542. lino/modlib/linod/routing.py +67 -0
  3543. lino/modlib/linod/utils.py +12 -0
  3544. lino/modlib/memo/__init__.py +160 -0
  3545. lino/modlib/memo/mixins.py +298 -0
  3546. lino/modlib/memo/models.py +96 -0
  3547. lino/modlib/memo/parser.py +386 -0
  3548. lino/modlib/memo/views.py +15 -0
  3549. lino/modlib/notify/__init__.py +170 -0
  3550. lino/modlib/notify/actions.py +82 -0
  3551. lino/modlib/notify/api.py +112 -0
  3552. lino/modlib/notify/choicelists.py +44 -0
  3553. lino/modlib/notify/config/notify/individual.eml +14 -0
  3554. lino/modlib/notify/config/notify/summary.eml +18 -0
  3555. lino/modlib/notify/consumers.py +40 -0
  3556. lino/modlib/notify/fixtures/__init__.py +0 -0
  3557. lino/modlib/notify/fixtures/demo2.py +32 -0
  3558. lino/modlib/notify/mixins.py +99 -0
  3559. lino/modlib/notify/models.py +539 -0
  3560. lino/modlib/notify/static/img/lino-logo.png +0 -0
  3561. lino/modlib/notify/static/js/push.js/CONTRIBUTING.md +26 -0
  3562. lino/modlib/notify/static/js/push.js/LICENSE.md +21 -0
  3563. lino/modlib/notify/static/js/push.js/karma.conf.js +67 -0
  3564. lino/modlib/notify/static/js/push.js/push.js +530 -0
  3565. lino/modlib/notify/static/js/push.js/push.min.js +38 -0
  3566. lino/modlib/notify/static/js/push.js/push_tests.js +251 -0
  3567. lino/modlib/notify/static/js/push.js/sw.js +0 -0
  3568. lino/modlib/notify/utils.py +8 -0
  3569. lino/modlib/notify/views.py +29 -0
  3570. lino/modlib/odata/__init__.py +36 -0
  3571. lino/modlib/odata/config/odata/csdl.xml +10 -0
  3572. lino/modlib/odata/views.py +210 -0
  3573. lino/modlib/office/__init__.py +13 -0
  3574. lino/modlib/office/roles.py +17 -0
  3575. lino/modlib/periods/__init__.py +31 -0
  3576. lino/modlib/periods/choicelists.py +46 -0
  3577. lino/modlib/periods/fixtures/std.py +23 -0
  3578. lino/modlib/periods/mixins.py +151 -0
  3579. lino/modlib/periods/models.py +218 -0
  3580. lino/modlib/printing/__init__.py +24 -0
  3581. lino/modlib/printing/actions.py +341 -0
  3582. lino/modlib/printing/choicelists.py +302 -0
  3583. lino/modlib/printing/config/report/Default.odt +0 -0
  3584. lino/modlib/printing/config/report/Default.wk.html +6 -0
  3585. lino/modlib/printing/mixins.py +273 -0
  3586. lino/modlib/printing/models.py +6 -0
  3587. lino/modlib/printing/utils.py +23 -0
  3588. lino/modlib/publisher/__init__.py +74 -0
  3589. lino/modlib/publisher/choicelists.py +235 -0
  3590. lino/modlib/publisher/config/publisher/base.html +14 -0
  3591. lino/modlib/publisher/config/publisher/default_list.pub.html +20 -0
  3592. lino/modlib/publisher/config/publisher/item.pub.html +5 -0
  3593. lino/modlib/publisher/config/publisher/login.html +17 -0
  3594. lino/modlib/publisher/config/publisher/page.pub.html +41 -0
  3595. lino/modlib/publisher/fixtures/__init__.py +0 -0
  3596. lino/modlib/publisher/fixtures/std.py +27 -0
  3597. lino/modlib/publisher/mixins.py +163 -0
  3598. lino/modlib/publisher/models.py +403 -0
  3599. lino/modlib/publisher/renderer.py +45 -0
  3600. lino/modlib/publisher/ui.py +177 -0
  3601. lino/modlib/publisher/views.py +58 -0
  3602. lino/modlib/restful/__init__.py +57 -0
  3603. lino/modlib/restful/fields.py +17 -0
  3604. lino/modlib/restful/serializers.py +39 -0
  3605. lino/modlib/restful/urls.py +34 -0
  3606. lino/modlib/search/__init__.py +134 -0
  3607. lino/modlib/search/config/search/currency.xml +17 -0
  3608. lino/modlib/search/config/search/schema.xml +1060 -0
  3609. lino/modlib/search/config/search/solrconfig.xml +1446 -0
  3610. lino/modlib/search/management/__init__.py +1 -0
  3611. lino/modlib/search/management/commands/__init__.py +0 -0
  3612. lino/modlib/search/management/commands/build_solr_schema_v2.py +36 -0
  3613. lino/modlib/search/management/commands/createindexes.py +65 -0
  3614. lino/modlib/search/mixins.py +157 -0
  3615. lino/modlib/search/models.py +222 -0
  3616. lino/modlib/search/roles.py +10 -0
  3617. lino/modlib/search/search/indexes.json +1 -0
  3618. lino/modlib/search/search/mappings/comment.json +1 -0
  3619. lino/modlib/search/search/mappings/ticket.json +1 -0
  3620. lino/modlib/search/search_indexes.py +41 -0
  3621. lino/modlib/search/utils.py +207 -0
  3622. lino/modlib/smtpd/__init__.py +20 -0
  3623. lino/modlib/smtpd/management/__init__.py +0 -0
  3624. lino/modlib/smtpd/management/commands/__init__.py +0 -0
  3625. lino/modlib/smtpd/management/commands/recmail.py +67 -0
  3626. lino/modlib/smtpd/signals.py +25 -0
  3627. lino/modlib/summaries/__init__.py +18 -0
  3628. lino/modlib/summaries/fixtures/__init__.py +0 -0
  3629. lino/modlib/summaries/fixtures/checksummaries.py +13 -0
  3630. lino/modlib/summaries/management/__init__.py +0 -0
  3631. lino/modlib/summaries/management/commands/__init__.py +0 -0
  3632. lino/modlib/summaries/management/commands/checksummaries.py +30 -0
  3633. lino/modlib/summaries/mixins.py +190 -0
  3634. lino/modlib/summaries/models.py +61 -0
  3635. lino/modlib/system/__init__.py +43 -0
  3636. lino/modlib/system/actions.py +41 -0
  3637. lino/modlib/system/choicelists.py +281 -0
  3638. lino/modlib/system/fixtures/__init__.py +0 -0
  3639. lino/modlib/system/fixtures/std.py +5 -0
  3640. lino/modlib/system/mixins.py +550 -0
  3641. lino/modlib/system/models.py +341 -0
  3642. lino/modlib/tinymce/__init__.py +152 -0
  3643. lino/modlib/tinymce/config/tinymce/tinymce.js +286 -0
  3644. lino/modlib/tinymce/fixtures/__init__.py +0 -0
  3645. lino/modlib/tinymce/fixtures/std.py +18 -0
  3646. lino/modlib/tinymce/models.py +53 -0
  3647. lino/modlib/tinymce/static/README.txt +6 -0
  3648. lino/modlib/tinymce/static/byteforce/Ext.ux.TinyMCE.js +767 -0
  3649. lino/modlib/tinymce/static/byteforce/Ext.ux.TinyMCE.min.js +1 -0
  3650. lino/modlib/tinymce/static/byteforce/release-notes.txt +116 -0
  3651. lino/modlib/tinymce/static/tinymce-3.4.8/example.html +19 -0
  3652. lino/modlib/tinymce/static/tinymce-3.4.8/langs/de.js +1 -0
  3653. lino/modlib/tinymce/static/tinymce-3.4.8/langs/en.js +1 -0
  3654. lino/modlib/tinymce/static/tinymce-3.4.8/langs/et.js +1 -0
  3655. lino/modlib/tinymce/static/tinymce-3.4.8/langs/fr.js +1 -0
  3656. lino/modlib/tinymce/static/tinymce-3.4.8/langs/nl.js +1 -0
  3657. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/css/advhr.css +5 -0
  3658. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/editor_plugin.js +1 -0
  3659. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/editor_plugin_src.js +57 -0
  3660. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/js/rule.js +43 -0
  3661. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/langs/de_dlg.js +1 -0
  3662. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/langs/en_dlg.js +1 -0
  3663. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/langs/et_dlg.js +1 -0
  3664. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/langs/fr_dlg.js +1 -0
  3665. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/langs/nl_dlg.js +1 -0
  3666. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advhr/rule.htm +58 -0
  3667. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/css/advimage.css +13 -0
  3668. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/editor_plugin.js +1 -0
  3669. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/editor_plugin_src.js +50 -0
  3670. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/image.htm +235 -0
  3671. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/img/sample.gif +0 -0
  3672. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/js/image.js +462 -0
  3673. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/langs/de_dlg.js +1 -0
  3674. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/langs/en_dlg.js +1 -0
  3675. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/langs/et_dlg.js +1 -0
  3676. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/langs/fr_dlg.js +1 -0
  3677. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advimage/langs/nl_dlg.js +1 -0
  3678. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/css/advlink.css +8 -0
  3679. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/editor_plugin.js +1 -0
  3680. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/editor_plugin_src.js +61 -0
  3681. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/js/advlink.js +539 -0
  3682. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/langs/de_dlg.js +1 -0
  3683. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/langs/en_dlg.js +1 -0
  3684. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/langs/et_dlg.js +1 -0
  3685. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/langs/fr_dlg.js +1 -0
  3686. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/langs/nl_dlg.js +1 -0
  3687. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlink/link.htm +338 -0
  3688. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlist/editor_plugin.js +1 -0
  3689. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/advlist/editor_plugin_src.js +176 -0
  3690. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autolink/editor_plugin.js +1 -0
  3691. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autolink/editor_plugin_src.js +172 -0
  3692. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autoresize/editor_plugin.js +1 -0
  3693. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autoresize/editor_plugin_src.js +119 -0
  3694. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autosave/editor_plugin.js +1 -0
  3695. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autosave/editor_plugin_src.js +431 -0
  3696. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/autosave/langs/en.js +4 -0
  3697. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/bbcode/editor_plugin.js +1 -0
  3698. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/bbcode/editor_plugin_src.js +120 -0
  3699. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/contextmenu/editor_plugin.js +1 -0
  3700. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/contextmenu/editor_plugin_src.js +161 -0
  3701. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/directionality/editor_plugin.js +1 -0
  3702. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/directionality/editor_plugin_src.js +82 -0
  3703. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/editor_plugin.js +1 -0
  3704. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/editor_plugin_src.js +43 -0
  3705. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/emotions.htm +42 -0
  3706. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-cool.gif +0 -0
  3707. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-cry.gif +0 -0
  3708. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-embarassed.gif +0 -0
  3709. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  3710. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-frown.gif +0 -0
  3711. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-innocent.gif +0 -0
  3712. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-kiss.gif +0 -0
  3713. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-laughing.gif +0 -0
  3714. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  3715. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-sealed.gif +0 -0
  3716. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-smile.gif +0 -0
  3717. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-surprised.gif +0 -0
  3718. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  3719. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-undecided.gif +0 -0
  3720. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-wink.gif +0 -0
  3721. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/img/smiley-yell.gif +0 -0
  3722. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/js/emotions.js +43 -0
  3723. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/langs/de_dlg.js +1 -0
  3724. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/langs/en_dlg.js +1 -0
  3725. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/langs/et_dlg.js +1 -0
  3726. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/langs/fr_dlg.js +1 -0
  3727. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/emotions/langs/nl_dlg.js +1 -0
  3728. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/dialog.htm +22 -0
  3729. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/editor_plugin.js +1 -0
  3730. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/editor_plugin_src.js +84 -0
  3731. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/img/example.gif +0 -0
  3732. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/js/dialog.js +19 -0
  3733. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/langs/en.js +3 -0
  3734. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example/langs/en_dlg.js +3 -0
  3735. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example_dependency/editor_plugin.js +1 -0
  3736. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/example_dependency/editor_plugin_src.js +50 -0
  3737. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/css/fullpage.css +143 -0
  3738. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/editor_plugin.js +1 -0
  3739. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/editor_plugin_src.js +405 -0
  3740. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/fullpage.htm +259 -0
  3741. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/js/fullpage.js +232 -0
  3742. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/langs/de_dlg.js +1 -0
  3743. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/langs/en_dlg.js +1 -0
  3744. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/langs/et_dlg.js +1 -0
  3745. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/langs/fr_dlg.js +1 -0
  3746. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullpage/langs/nl_dlg.js +1 -0
  3747. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullscreen/editor_plugin.js +1 -0
  3748. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullscreen/editor_plugin_src.js +159 -0
  3749. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/fullscreen/fullscreen.htm +110 -0
  3750. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/iespell/editor_plugin.js +1 -0
  3751. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/iespell/editor_plugin_src.js +54 -0
  3752. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/editor_plugin.js +1 -0
  3753. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/editor_plugin_src.js +699 -0
  3754. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  3755. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  3756. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  3757. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  3758. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  3759. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  3760. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  3761. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  3762. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/inlinepopups/template.htm +387 -0
  3763. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/insertdatetime/editor_plugin.js +1 -0
  3764. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/insertdatetime/editor_plugin_src.js +83 -0
  3765. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/layer/editor_plugin.js +1 -0
  3766. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/layer/editor_plugin_src.js +262 -0
  3767. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/legacyoutput/editor_plugin.js +1 -0
  3768. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/legacyoutput/editor_plugin_src.js +139 -0
  3769. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/lists/editor_plugin.js +1 -0
  3770. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/lists/editor_plugin_src.js +946 -0
  3771. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/css/media.css +17 -0
  3772. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/editor_plugin.js +1 -0
  3773. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/editor_plugin_src.js +890 -0
  3774. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/js/embed.js +73 -0
  3775. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/js/media.js +464 -0
  3776. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/langs/de_dlg.js +1 -0
  3777. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/langs/en_dlg.js +1 -0
  3778. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/langs/et_dlg.js +1 -0
  3779. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/langs/fr_dlg.js +1 -0
  3780. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/langs/nl_dlg.js +1 -0
  3781. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/media/media.htm +922 -0
  3782. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/nonbreaking/editor_plugin.js +1 -0
  3783. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/nonbreaking/editor_plugin_src.js +54 -0
  3784. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/noneditable/editor_plugin.js +1 -0
  3785. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/noneditable/editor_plugin_src.js +95 -0
  3786. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/pagebreak/editor_plugin.js +1 -0
  3787. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/pagebreak/editor_plugin_src.js +74 -0
  3788. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/editor_plugin.js +1 -0
  3789. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/editor_plugin_src.js +871 -0
  3790. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/js/pastetext.js +36 -0
  3791. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/js/pasteword.js +51 -0
  3792. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/langs/de_dlg.js +1 -0
  3793. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/langs/en_dlg.js +1 -0
  3794. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/langs/et_dlg.js +1 -0
  3795. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/langs/fr_dlg.js +1 -0
  3796. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/langs/nl_dlg.js +1 -0
  3797. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/pastetext.htm +27 -0
  3798. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/paste/pasteword.htm +21 -0
  3799. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/preview/editor_plugin.js +1 -0
  3800. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/preview/editor_plugin_src.js +53 -0
  3801. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/preview/example.html +28 -0
  3802. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/preview/jscripts/embed.js +73 -0
  3803. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/preview/preview.html +17 -0
  3804. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/print/editor_plugin.js +1 -0
  3805. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/print/editor_plugin_src.js +34 -0
  3806. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/save/editor_plugin.js +1 -0
  3807. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/save/editor_plugin_src.js +101 -0
  3808. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/css/searchreplace.css +6 -0
  3809. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/editor_plugin.js +1 -0
  3810. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/editor_plugin_src.js +61 -0
  3811. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/js/searchreplace.js +142 -0
  3812. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/langs/de_dlg.js +1 -0
  3813. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/langs/en_dlg.js +1 -0
  3814. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/langs/et_dlg.js +1 -0
  3815. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/langs/fr_dlg.js +1 -0
  3816. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/langs/nl_dlg.js +1 -0
  3817. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/searchreplace/searchreplace.htm +100 -0
  3818. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/spellchecker/css/content.css +1 -0
  3819. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/spellchecker/editor_plugin.js +1 -0
  3820. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/spellchecker/editor_plugin_src.js +436 -0
  3821. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/spellchecker/img/wline.gif +0 -0
  3822. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/css/props.css +13 -0
  3823. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/editor_plugin.js +1 -0
  3824. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/editor_plugin_src.js +55 -0
  3825. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/js/props.js +635 -0
  3826. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/langs/de_dlg.js +1 -0
  3827. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/langs/en_dlg.js +1 -0
  3828. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/langs/et_dlg.js +1 -0
  3829. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/langs/fr_dlg.js +1 -0
  3830. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/langs/nl_dlg.js +1 -0
  3831. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/style/props.htm +840 -0
  3832. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/tabfocus/editor_plugin.js +1 -0
  3833. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/tabfocus/editor_plugin_src.js +122 -0
  3834. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/cell.htm +180 -0
  3835. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/css/cell.css +17 -0
  3836. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/css/row.css +25 -0
  3837. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/css/table.css +13 -0
  3838. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/editor_plugin.js +1 -0
  3839. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/editor_plugin_src.js +1408 -0
  3840. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/js/cell.js +319 -0
  3841. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/js/merge_cells.js +27 -0
  3842. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/js/row.js +237 -0
  3843. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/js/table.js +488 -0
  3844. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/langs/de_dlg.js +1 -0
  3845. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/langs/en_dlg.js +1 -0
  3846. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/langs/et_dlg.js +1 -0
  3847. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/langs/fr_dlg.js +1 -0
  3848. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/langs/nl_dlg.js +1 -0
  3849. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/merge_cells.htm +32 -0
  3850. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/row.htm +158 -0
  3851. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/table/table.htm +188 -0
  3852. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/blank.htm +12 -0
  3853. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/css/template.css +23 -0
  3854. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/editor_plugin.js +1 -0
  3855. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/editor_plugin_src.js +159 -0
  3856. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/js/template.js +106 -0
  3857. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/langs/de_dlg.js +1 -0
  3858. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/langs/en_dlg.js +1 -0
  3859. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/langs/et_dlg.js +1 -0
  3860. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/langs/fr_dlg.js +1 -0
  3861. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/langs/nl_dlg.js +1 -0
  3862. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/template/template.htm +31 -0
  3863. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/visualchars/editor_plugin.js +1 -0
  3864. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/visualchars/editor_plugin_src.js +83 -0
  3865. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordc/langs/de_dlg.js +1 -0
  3866. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordc/langs/et_dlg.js +1 -0
  3867. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordc/langs/fr_dlg.js +1 -0
  3868. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordc/langs/nl_dlg.js +1 -0
  3869. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordcount/editor_plugin.js +1 -0
  3870. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/wordcount/editor_plugin_src.js +114 -0
  3871. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/abbr.htm +142 -0
  3872. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/acronym.htm +142 -0
  3873. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/attributes.htm +149 -0
  3874. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/cite.htm +142 -0
  3875. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/css/attributes.css +11 -0
  3876. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/css/popup.css +9 -0
  3877. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/del.htm +162 -0
  3878. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/editor_plugin.js +1 -0
  3879. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/editor_plugin_src.js +132 -0
  3880. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/ins.htm +162 -0
  3881. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/abbr.js +28 -0
  3882. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/acronym.js +28 -0
  3883. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/attributes.js +111 -0
  3884. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/cite.js +28 -0
  3885. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/del.js +53 -0
  3886. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/element_common.js +229 -0
  3887. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/js/ins.js +53 -0
  3888. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/langs/de_dlg.js +1 -0
  3889. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/langs/en_dlg.js +1 -0
  3890. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/langs/et_dlg.js +1 -0
  3891. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/langs/fr_dlg.js +1 -0
  3892. lino/modlib/tinymce/static/tinymce-3.4.8/plugins/xhtmlxtras/langs/nl_dlg.js +1 -0
  3893. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/about.htm +52 -0
  3894. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/anchor.htm +26 -0
  3895. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/charmap.htm +55 -0
  3896. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/color_picker.htm +74 -0
  3897. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/editor_template.js +1 -0
  3898. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/editor_template_src.js +1362 -0
  3899. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/image.htm +80 -0
  3900. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/colorpicker.jpg +0 -0
  3901. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/flash.gif +0 -0
  3902. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/icons.gif +0 -0
  3903. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/iframe.gif +0 -0
  3904. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/pagebreak.gif +0 -0
  3905. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/quicktime.gif +0 -0
  3906. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/realmedia.gif +0 -0
  3907. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/shockwave.gif +0 -0
  3908. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/trans.gif +0 -0
  3909. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/video.gif +0 -0
  3910. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/img/windowsmedia.gif +0 -0
  3911. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/about.js +73 -0
  3912. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/anchor.js +43 -0
  3913. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/charmap.js +363 -0
  3914. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/color_picker.js +329 -0
  3915. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/image.js +251 -0
  3916. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/link.js +153 -0
  3917. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/js/source_editor.js +56 -0
  3918. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/de.js +1 -0
  3919. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/de_dlg.js +1 -0
  3920. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/en.js +1 -0
  3921. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/en_dlg.js +1 -0
  3922. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/et.js +1 -0
  3923. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/et_dlg.js +1 -0
  3924. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/fr.js +1 -0
  3925. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/fr_dlg.js +1 -0
  3926. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/nl.js +1 -0
  3927. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/langs/nl_dlg.js +1 -0
  3928. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/link.htm +57 -0
  3929. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/shortcuts.htm +47 -0
  3930. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/content.css +50 -0
  3931. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/dialog.css +117 -0
  3932. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/buttons.png +0 -0
  3933. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/items.gif +0 -0
  3934. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  3935. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/menu_check.gif +0 -0
  3936. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/progress.gif +0 -0
  3937. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/img/tabs.gif +0 -0
  3938. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/default/ui.css +214 -0
  3939. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/highcontrast/content.css +24 -0
  3940. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/highcontrast/dialog.css +105 -0
  3941. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/highcontrast/ui.css +102 -0
  3942. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/content.css +48 -0
  3943. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/dialog.css +117 -0
  3944. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  3945. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  3946. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  3947. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/ui.css +217 -0
  3948. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/ui_black.css +8 -0
  3949. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  3950. lino/modlib/tinymce/static/tinymce-3.4.8/themes/advanced/source_editor.htm +25 -0
  3951. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/editor_template.js +1 -0
  3952. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/editor_template_src.js +84 -0
  3953. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/img/icons.gif +0 -0
  3954. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/langs/de.js +1 -0
  3955. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/langs/en.js +1 -0
  3956. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/langs/et.js +1 -0
  3957. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/langs/fr.js +1 -0
  3958. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/langs/nl.js +1 -0
  3959. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/skins/default/content.css +25 -0
  3960. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/skins/default/ui.css +32 -0
  3961. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/skins/o2k7/content.css +17 -0
  3962. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  3963. lino/modlib/tinymce/static/tinymce-3.4.8/themes/simple/skins/o2k7/ui.css +35 -0
  3964. lino/modlib/tinymce/static/tinymce-3.4.8/tiny_mce.js +1 -0
  3965. lino/modlib/tinymce/static/tinymce-3.4.8/tiny_mce_popup.js +5 -0
  3966. lino/modlib/tinymce/static/tinymce-3.4.8/tiny_mce_src.js +16802 -0
  3967. lino/modlib/tinymce/static/tinymce-3.4.8/utils/editable_selects.js +70 -0
  3968. lino/modlib/tinymce/static/tinymce-3.4.8/utils/form_utils.js +210 -0
  3969. lino/modlib/tinymce/static/tinymce-3.4.8/utils/mctabs.js +162 -0
  3970. lino/modlib/tinymce/static/tinymce-3.4.8/utils/validate.js +252 -0
  3971. lino/modlib/tinymce/static/tinymce-3.5.11/langs/de.js +1 -0
  3972. lino/modlib/tinymce/static/tinymce-3.5.11/langs/en.js +1 -0
  3973. lino/modlib/tinymce/static/tinymce-3.5.11/langs/et.js +1 -0
  3974. lino/modlib/tinymce/static/tinymce-3.5.11/langs/fr.js +1 -0
  3975. lino/modlib/tinymce/static/tinymce-3.5.11/langs/it.js +1 -0
  3976. lino/modlib/tinymce/static/tinymce-3.5.11/langs/nl.js +1 -0
  3977. lino/modlib/tinymce/static/tinymce-3.5.11/license.txt +504 -0
  3978. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/css/advhr.css +5 -0
  3979. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/editor_plugin.js +1 -0
  3980. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/editor_plugin_src.js +57 -0
  3981. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/js/rule.js +43 -0
  3982. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/de_dlg.js +1 -0
  3983. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/en_dlg.js +1 -0
  3984. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/et_dlg.js +1 -0
  3985. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/fr_dlg.js +1 -0
  3986. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/it_dlg.js +1 -0
  3987. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/langs/nl_dlg.js +1 -0
  3988. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advhr/rule.htm +58 -0
  3989. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/css/advimage.css +13 -0
  3990. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/editor_plugin.js +1 -0
  3991. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/editor_plugin_src.js +50 -0
  3992. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/image.htm +235 -0
  3993. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/img/sample.gif +0 -0
  3994. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/js/image.js +464 -0
  3995. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/de_dlg.js +1 -0
  3996. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/en_dlg.js +1 -0
  3997. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/et_dlg.js +1 -0
  3998. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/fr_dlg.js +1 -0
  3999. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/it_dlg.js +1 -0
  4000. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advimage/langs/nl_dlg.js +1 -0
  4001. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/css/advlink.css +8 -0
  4002. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/editor_plugin.js +1 -0
  4003. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/editor_plugin_src.js +61 -0
  4004. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/js/advlink.js +543 -0
  4005. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/de_dlg.js +1 -0
  4006. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/en_dlg.js +1 -0
  4007. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/et_dlg.js +1 -0
  4008. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/fr_dlg.js +1 -0
  4009. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/it_dlg.js +1 -0
  4010. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/langs/nl_dlg.js +1 -0
  4011. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlink/link.htm +338 -0
  4012. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlist/editor_plugin.js +1 -0
  4013. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/advlist/editor_plugin_src.js +176 -0
  4014. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autolink/editor_plugin.js +1 -0
  4015. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autolink/editor_plugin_src.js +184 -0
  4016. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autoresize/editor_plugin.js +1 -0
  4017. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autoresize/editor_plugin_src.js +119 -0
  4018. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autosave/editor_plugin.js +1 -0
  4019. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/autosave/editor_plugin_src.js +433 -0
  4020. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/bbcode/editor_plugin.js +1 -0
  4021. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/bbcode/editor_plugin_src.js +120 -0
  4022. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/contextmenu/editor_plugin.js +1 -0
  4023. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/contextmenu/editor_plugin_src.js +163 -0
  4024. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/directionality/editor_plugin.js +1 -0
  4025. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/directionality/editor_plugin_src.js +85 -0
  4026. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/editor_plugin.js +1 -0
  4027. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/editor_plugin_src.js +43 -0
  4028. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/emotions.htm +42 -0
  4029. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-cool.gif +0 -0
  4030. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-cry.gif +0 -0
  4031. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-embarassed.gif +0 -0
  4032. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
  4033. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-frown.gif +0 -0
  4034. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-innocent.gif +0 -0
  4035. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-kiss.gif +0 -0
  4036. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-laughing.gif +0 -0
  4037. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-money-mouth.gif +0 -0
  4038. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-sealed.gif +0 -0
  4039. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-smile.gif +0 -0
  4040. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-surprised.gif +0 -0
  4041. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-tongue-out.gif +0 -0
  4042. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-undecided.gif +0 -0
  4043. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-wink.gif +0 -0
  4044. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/img/smiley-yell.gif +0 -0
  4045. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/js/emotions.js +43 -0
  4046. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/de_dlg.js +1 -0
  4047. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/en_dlg.js +1 -0
  4048. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/et_dlg.js +1 -0
  4049. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/fr_dlg.js +1 -0
  4050. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/it_dlg.js +1 -0
  4051. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/emotions/langs/nl_dlg.js +1 -0
  4052. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/dialog.htm +22 -0
  4053. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/editor_plugin.js +1 -0
  4054. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/editor_plugin_src.js +84 -0
  4055. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/img/example.gif +0 -0
  4056. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/js/dialog.js +19 -0
  4057. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/langs/en.js +3 -0
  4058. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example/langs/en_dlg.js +3 -0
  4059. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example_dependency/editor_plugin.js +1 -0
  4060. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/example_dependency/editor_plugin_src.js +50 -0
  4061. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/css/fullpage.css +143 -0
  4062. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/editor_plugin.js +1 -0
  4063. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/editor_plugin_src.js +405 -0
  4064. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/fullpage.htm +259 -0
  4065. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/js/fullpage.js +232 -0
  4066. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/de_dlg.js +1 -0
  4067. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/en_dlg.js +1 -0
  4068. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/et_dlg.js +1 -0
  4069. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/fr_dlg.js +1 -0
  4070. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/it_dlg.js +1 -0
  4071. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullpage/langs/nl_dlg.js +1 -0
  4072. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullscreen/editor_plugin.js +1 -0
  4073. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullscreen/editor_plugin_src.js +234 -0
  4074. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/fullscreen/fullscreen.htm +117 -0
  4075. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/iespell/editor_plugin.js +1 -0
  4076. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/iespell/editor_plugin_src.js +54 -0
  4077. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/editor_plugin.js +1 -0
  4078. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/editor_plugin_src.js +699 -0
  4079. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  4080. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  4081. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  4082. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  4083. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  4084. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  4085. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  4086. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/skins/clearlooks2/window.css +90 -0
  4087. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/inlinepopups/template.htm +387 -0
  4088. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/insertdatetime/editor_plugin.js +1 -0
  4089. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/insertdatetime/editor_plugin_src.js +83 -0
  4090. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/layer/editor_plugin.js +1 -0
  4091. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/layer/editor_plugin_src.js +262 -0
  4092. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/legacyoutput/editor_plugin.js +1 -0
  4093. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/legacyoutput/editor_plugin_src.js +139 -0
  4094. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/lists/editor_plugin.js +1 -0
  4095. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/lists/editor_plugin_src.js +955 -0
  4096. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/css/media.css +17 -0
  4097. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/editor_plugin.js +1 -0
  4098. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/editor_plugin_src.js +898 -0
  4099. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/js/embed.js +73 -0
  4100. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/js/media.js +513 -0
  4101. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/de_dlg.js +1 -0
  4102. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/en_dlg.js +1 -0
  4103. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/et_dlg.js +1 -0
  4104. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/fr_dlg.js +1 -0
  4105. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/it_dlg.js +1 -0
  4106. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/langs/nl_dlg.js +1 -0
  4107. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/media.htm +922 -0
  4108. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/media/moxieplayer.swf +0 -0
  4109. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/nonbreaking/editor_plugin.js +1 -0
  4110. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/nonbreaking/editor_plugin_src.js +54 -0
  4111. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/noneditable/editor_plugin.js +1 -0
  4112. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/noneditable/editor_plugin_src.js +537 -0
  4113. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/pagebreak/editor_plugin.js +1 -0
  4114. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/pagebreak/editor_plugin_src.js +74 -0
  4115. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/editor_plugin.js +1 -0
  4116. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/editor_plugin_src.js +887 -0
  4117. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/js/pastetext.js +36 -0
  4118. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/js/pasteword.js +51 -0
  4119. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/de_dlg.js +1 -0
  4120. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/en_dlg.js +1 -0
  4121. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/et_dlg.js +1 -0
  4122. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/fr_dlg.js +1 -0
  4123. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/it_dlg.js +1 -0
  4124. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/langs/nl_dlg.js +1 -0
  4125. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/pastetext.htm +27 -0
  4126. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/paste/pasteword.htm +21 -0
  4127. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/preview/editor_plugin.js +1 -0
  4128. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/preview/editor_plugin_src.js +53 -0
  4129. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/preview/example.html +28 -0
  4130. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/preview/jscripts/embed.js +73 -0
  4131. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/preview/preview.html +17 -0
  4132. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/print/editor_plugin.js +1 -0
  4133. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/print/editor_plugin_src.js +34 -0
  4134. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/save/editor_plugin.js +1 -0
  4135. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/save/editor_plugin_src.js +101 -0
  4136. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/css/searchreplace.css +6 -0
  4137. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/editor_plugin.js +1 -0
  4138. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/editor_plugin_src.js +61 -0
  4139. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/js/searchreplace.js +152 -0
  4140. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/de_dlg.js +1 -0
  4141. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/en_dlg.js +1 -0
  4142. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/et_dlg.js +1 -0
  4143. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/fr_dlg.js +1 -0
  4144. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/it_dlg.js +1 -0
  4145. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/langs/nl_dlg.js +1 -0
  4146. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/searchreplace/searchreplace.htm +100 -0
  4147. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/spellchecker/css/content.css +1 -0
  4148. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/spellchecker/editor_plugin.js +1 -0
  4149. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/spellchecker/editor_plugin_src.js +471 -0
  4150. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/spellchecker/img/wline.gif +0 -0
  4151. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/css/props.css +14 -0
  4152. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/editor_plugin.js +1 -0
  4153. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/editor_plugin_src.js +71 -0
  4154. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/js/props.js +709 -0
  4155. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/de_dlg.js +1 -0
  4156. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/en_dlg.js +1 -0
  4157. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/et_dlg.js +1 -0
  4158. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/fr_dlg.js +1 -0
  4159. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/it_dlg.js +1 -0
  4160. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/langs/nl_dlg.js +1 -0
  4161. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/props.htm +845 -0
  4162. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/style/readme.txt +19 -0
  4163. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/tabfocus/editor_plugin.js +1 -0
  4164. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/tabfocus/editor_plugin_src.js +122 -0
  4165. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/cell.htm +180 -0
  4166. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/css/cell.css +17 -0
  4167. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/css/row.css +25 -0
  4168. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/css/table.css +13 -0
  4169. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/editor_plugin.js +1 -0
  4170. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/editor_plugin_src.js +1456 -0
  4171. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/js/cell.js +319 -0
  4172. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/js/merge_cells.js +27 -0
  4173. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/js/row.js +254 -0
  4174. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/js/table.js +501 -0
  4175. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/de_dlg.js +1 -0
  4176. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/en_dlg.js +1 -0
  4177. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/et_dlg.js +1 -0
  4178. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/fr_dlg.js +1 -0
  4179. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/it_dlg.js +1 -0
  4180. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/langs/nl_dlg.js +1 -0
  4181. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/merge_cells.htm +32 -0
  4182. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/row.htm +158 -0
  4183. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/table/table.htm +188 -0
  4184. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/blank.htm +12 -0
  4185. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/css/template.css +23 -0
  4186. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/editor_plugin.js +1 -0
  4187. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/editor_plugin_src.js +159 -0
  4188. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/js/template.js +106 -0
  4189. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/de_dlg.js +1 -0
  4190. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/en_dlg.js +1 -0
  4191. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/et_dlg.js +1 -0
  4192. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/fr_dlg.js +1 -0
  4193. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/it_dlg.js +1 -0
  4194. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/langs/nl_dlg.js +1 -0
  4195. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/template/template.htm +31 -0
  4196. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/visualblocks/css/visualblocks.css +21 -0
  4197. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/visualblocks/editor_plugin.js +1 -0
  4198. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/visualblocks/editor_plugin_src.js +63 -0
  4199. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/visualchars/editor_plugin.js +1 -0
  4200. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/visualchars/editor_plugin_src.js +83 -0
  4201. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/wordcount/editor_plugin.js +1 -0
  4202. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/wordcount/editor_plugin_src.js +122 -0
  4203. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/abbr.htm +142 -0
  4204. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/acronym.htm +142 -0
  4205. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/attributes.htm +149 -0
  4206. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/cite.htm +142 -0
  4207. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/css/attributes.css +11 -0
  4208. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/css/popup.css +9 -0
  4209. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/del.htm +162 -0
  4210. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/editor_plugin.js +1 -0
  4211. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/editor_plugin_src.js +132 -0
  4212. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/ins.htm +162 -0
  4213. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/abbr.js +28 -0
  4214. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/acronym.js +28 -0
  4215. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/attributes.js +111 -0
  4216. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/cite.js +28 -0
  4217. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/del.js +53 -0
  4218. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/element_common.js +229 -0
  4219. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/js/ins.js +53 -0
  4220. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/de_dlg.js +1 -0
  4221. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/en_dlg.js +1 -0
  4222. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/et_dlg.js +1 -0
  4223. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/fr_dlg.js +1 -0
  4224. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/it_dlg.js +1 -0
  4225. lino/modlib/tinymce/static/tinymce-3.5.11/plugins/xhtmlxtras/langs/nl_dlg.js +1 -0
  4226. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/about.htm +52 -0
  4227. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/anchor.htm +26 -0
  4228. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/charmap.htm +55 -0
  4229. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/color_picker.htm +70 -0
  4230. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/editor_template.js +1 -0
  4231. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/editor_template_src.js +1490 -0
  4232. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/image.htm +80 -0
  4233. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/colorpicker.jpg +0 -0
  4234. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/flash.gif +0 -0
  4235. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/icons.gif +0 -0
  4236. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/iframe.gif +0 -0
  4237. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/pagebreak.gif +0 -0
  4238. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/quicktime.gif +0 -0
  4239. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/realmedia.gif +0 -0
  4240. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/shockwave.gif +0 -0
  4241. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/trans.gif +0 -0
  4242. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/video.gif +0 -0
  4243. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/img/windowsmedia.gif +0 -0
  4244. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/about.js +73 -0
  4245. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/anchor.js +56 -0
  4246. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/charmap.js +363 -0
  4247. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/color_picker.js +345 -0
  4248. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/image.js +253 -0
  4249. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/link.js +159 -0
  4250. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/js/source_editor.js +78 -0
  4251. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/de.js +1 -0
  4252. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/de_dlg.js +1 -0
  4253. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/en.js +1 -0
  4254. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/en_dlg.js +1 -0
  4255. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/et.js +1 -0
  4256. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/et_dlg.js +1 -0
  4257. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/fr.js +1 -0
  4258. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/fr_dlg.js +1 -0
  4259. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/it.js +1 -0
  4260. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/it_dlg.js +1 -0
  4261. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/nl.js +1 -0
  4262. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/langs/nl_dlg.js +1 -0
  4263. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/link.htm +57 -0
  4264. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/shortcuts.htm +47 -0
  4265. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/content.css +50 -0
  4266. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/dialog.css +118 -0
  4267. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/buttons.png +0 -0
  4268. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/items.gif +0 -0
  4269. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  4270. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/menu_check.gif +0 -0
  4271. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/progress.gif +0 -0
  4272. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/img/tabs.gif +0 -0
  4273. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/default/ui.css +219 -0
  4274. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/highcontrast/content.css +24 -0
  4275. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/highcontrast/dialog.css +106 -0
  4276. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/highcontrast/ui.css +106 -0
  4277. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/content.css +48 -0
  4278. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/dialog.css +118 -0
  4279. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  4280. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  4281. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  4282. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/ui.css +222 -0
  4283. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/ui_black.css +8 -0
  4284. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  4285. lino/modlib/tinymce/static/tinymce-3.5.11/themes/advanced/source_editor.htm +25 -0
  4286. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/editor_template.js +1 -0
  4287. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/editor_template_src.js +84 -0
  4288. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/img/icons.gif +0 -0
  4289. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/de.js +1 -0
  4290. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/en.js +1 -0
  4291. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/et.js +1 -0
  4292. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/fr.js +1 -0
  4293. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/it.js +1 -0
  4294. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/langs/nl.js +1 -0
  4295. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/skins/default/content.css +25 -0
  4296. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/skins/default/ui.css +32 -0
  4297. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/skins/o2k7/content.css +17 -0
  4298. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/skins/o2k7/img/button_bg.png +0 -0
  4299. lino/modlib/tinymce/static/tinymce-3.5.11/themes/simple/skins/o2k7/ui.css +35 -0
  4300. lino/modlib/tinymce/static/tinymce-3.5.11/tiny_mce.js +1 -0
  4301. lino/modlib/tinymce/static/tinymce-3.5.11/tiny_mce_popup.js +5 -0
  4302. lino/modlib/tinymce/static/tinymce-3.5.11/tiny_mce_src.js +19156 -0
  4303. lino/modlib/tinymce/static/tinymce-3.5.11/utils/editable_selects.js +70 -0
  4304. lino/modlib/tinymce/static/tinymce-3.5.11/utils/form_utils.js +210 -0
  4305. lino/modlib/tinymce/static/tinymce-3.5.11/utils/mctabs.js +162 -0
  4306. lino/modlib/tinymce/static/tinymce-3.5.11/utils/validate.js +252 -0
  4307. lino/modlib/tinymce/static/tinymce-4.1.10/LICENSE.TXT +504 -0
  4308. lino/modlib/tinymce/static/tinymce-4.1.10/changelog.txt +772 -0
  4309. lino/modlib/tinymce/static/tinymce-4.1.10/langs/readme.md +3 -0
  4310. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/advlist/plugin.min.js +1 -0
  4311. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/anchor/plugin.min.js +1 -0
  4312. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/autolink/plugin.min.js +1 -0
  4313. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/autoresize/plugin.min.js +1 -0
  4314. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/autosave/plugin.min.js +1 -0
  4315. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/bbcode/plugin.min.js +1 -0
  4316. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/charmap/plugin.min.js +1 -0
  4317. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/code/plugin.min.js +1 -0
  4318. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/colorpicker/plugin.min.js +1 -0
  4319. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/contextmenu/plugin.min.js +1 -0
  4320. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/directionality/plugin.min.js +1 -0
  4321. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-cool.gif +0 -0
  4322. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-cry.gif +0 -0
  4323. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-embarassed.gif +0 -0
  4324. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-foot-in-mouth.gif +0 -0
  4325. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-frown.gif +0 -0
  4326. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-innocent.gif +0 -0
  4327. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-kiss.gif +0 -0
  4328. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-laughing.gif +0 -0
  4329. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-money-mouth.gif +0 -0
  4330. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-sealed.gif +0 -0
  4331. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-smile.gif +0 -0
  4332. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-surprised.gif +0 -0
  4333. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-tongue-out.gif +0 -0
  4334. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-undecided.gif +0 -0
  4335. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-wink.gif +0 -0
  4336. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/img/smiley-yell.gif +0 -0
  4337. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/emoticons/plugin.min.js +1 -0
  4338. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/example/dialog.html +8 -0
  4339. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/example/plugin.min.js +1 -0
  4340. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/example_dependency/plugin.min.js +1 -0
  4341. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/fullpage/plugin.min.js +1 -0
  4342. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/fullscreen/plugin.min.js +1 -0
  4343. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/hr/plugin.min.js +1 -0
  4344. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/image/plugin.min.js +1 -0
  4345. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/importcss/plugin.min.js +1 -0
  4346. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/insertdatetime/plugin.min.js +1 -0
  4347. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/layer/plugin.min.js +1 -0
  4348. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/legacyoutput/plugin.min.js +1 -0
  4349. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/link/plugin.min.js +1 -0
  4350. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/lists/plugin.min.js +1 -0
  4351. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/media/moxieplayer.swf +0 -0
  4352. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/media/plugin.min.js +1 -0
  4353. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/nonbreaking/plugin.min.js +1 -0
  4354. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/noneditable/plugin.min.js +1 -0
  4355. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/pagebreak/plugin.min.js +1 -0
  4356. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/paste/plugin.min.js +1 -0
  4357. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/preview/plugin.min.js +1 -0
  4358. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/print/plugin.min.js +1 -0
  4359. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/save/plugin.min.js +1 -0
  4360. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/searchreplace/plugin.min.js +1 -0
  4361. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/spellchecker/plugin.min.js +1 -0
  4362. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/tabfocus/plugin.min.js +1 -0
  4363. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/table/plugin.min.js +1 -0
  4364. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/template/plugin.min.js +1 -0
  4365. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/textcolor/plugin.min.js +1 -0
  4366. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/textpattern/plugin.min.js +1 -0
  4367. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/visualblocks/css/visualblocks.css +135 -0
  4368. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/visualblocks/plugin.min.js +1 -0
  4369. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/visualchars/plugin.min.js +1 -0
  4370. lino/modlib/tinymce/static/tinymce-4.1.10/plugins/wordcount/plugin.min.js +1 -0
  4371. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/content.inline.min.css +1 -0
  4372. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/content.min.css +1 -0
  4373. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce-small.eot +0 -0
  4374. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce-small.svg +62 -0
  4375. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce-small.ttf +0 -0
  4376. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce-small.woff +0 -0
  4377. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce.eot +0 -0
  4378. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce.svg +63 -0
  4379. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce.ttf +0 -0
  4380. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/fonts/tinymce.woff +0 -0
  4381. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/img/anchor.gif +0 -0
  4382. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/img/loader.gif +0 -0
  4383. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/img/object.gif +0 -0
  4384. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/img/trans.gif +0 -0
  4385. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/skin.ie7.min.css +1 -0
  4386. lino/modlib/tinymce/static/tinymce-4.1.10/skins/lightgray/skin.min.css +1 -0
  4387. lino/modlib/tinymce/static/tinymce-4.1.10/themes/modern/theme.min.js +1 -0
  4388. lino/modlib/tinymce/static/tinymce-4.1.10/tinymce.min.js +13 -0
  4389. lino/modlib/tinymce/static/tinymce_content.css +58 -0
  4390. lino/modlib/tinymce/views.py +58 -0
  4391. lino/modlib/uploads/__init__.py +86 -0
  4392. lino/modlib/uploads/actions.py +44 -0
  4393. lino/modlib/uploads/choicelists.py +45 -0
  4394. lino/modlib/uploads/dummy_upload.odt +0 -0
  4395. lino/modlib/uploads/dummy_upload.pdf +0 -0
  4396. lino/modlib/uploads/fixtures/__init__.py +0 -0
  4397. lino/modlib/uploads/fixtures/demo3.py +20 -0
  4398. lino/modlib/uploads/mixins.py +233 -0
  4399. lino/modlib/uploads/models.py +467 -0
  4400. lino/modlib/uploads/roles.py +8 -0
  4401. lino/modlib/uploads/ui.py +275 -0
  4402. lino/modlib/uploads/utils.py +113 -0
  4403. lino/modlib/users/__init__.py +87 -0
  4404. lino/modlib/users/actions.py +566 -0
  4405. lino/modlib/users/choicelists.py +131 -0
  4406. lino/modlib/users/config/users/User/welcome.body.html +6 -0
  4407. lino/modlib/users/config/users/verification_response.html +29 -0
  4408. lino/modlib/users/config/users/welcome_email.eml +39 -0
  4409. lino/modlib/users/fixtures/__init__.py +0 -0
  4410. lino/modlib/users/fixtures/demo.py +5 -0
  4411. lino/modlib/users/fixtures/demo2.py +17 -0
  4412. lino/modlib/users/fixtures/demo_users.py +53 -0
  4413. lino/modlib/users/fixtures/std.py +25 -0
  4414. lino/modlib/users/mixins.py +469 -0
  4415. lino/modlib/users/models.py +484 -0
  4416. lino/modlib/users/roles.py +16 -0
  4417. lino/modlib/users/ui.py +432 -0
  4418. lino/modlib/users/utils.py +72 -0
  4419. lino/modlib/weasyprint/__init__.py +75 -0
  4420. lino/modlib/weasyprint/choicelists.py +57 -0
  4421. lino/modlib/weasyprint/config/weasyprint/base.weasy.html +175 -0
  4422. lino/modlib/weasyprint/models.py +5 -0
  4423. lino/modlib/wkhtmltopdf/__init__.py +32 -0
  4424. lino/modlib/wkhtmltopdf/choicelists.py +61 -0
  4425. lino/modlib/wkhtmltopdf/models.py +10 -0
  4426. lino/projects/__init__.py +11 -0
  4427. lino/projects/std/__init__.py +12 -0
  4428. lino/projects/std/settings.py +96 -0
  4429. lino/projects/std/settings_test.py +19 -0
  4430. lino/sandbox/bcss/PerformInvestigation.py +2260 -0
  4431. lino/sandbox/bcss/SSDNReply.py +3924 -0
  4432. lino/sandbox/bcss/SSDNRequest.py +3723 -0
  4433. lino/sandbox/bcss/__init__.py +0 -0
  4434. lino/sandbox/bcss/readme.txt +1 -0
  4435. lino/sandbox/bcss/test.py +92 -0
  4436. lino/sandbox/bcss/test2.py +128 -0
  4437. lino/sandbox/bcss/test3.py +161 -0
  4438. lino/sandbox/bcss/test4.py +167 -0
  4439. lino/sandbox/contacts/__init__.py +0 -0
  4440. lino/sandbox/contacts/fixtures/__init__.py +0 -0
  4441. lino/sandbox/contacts/fixtures/demo.py +365 -0
  4442. lino/sandbox/contacts/manage.py +10 -0
  4443. lino/sandbox/contacts/models.py +395 -0
  4444. lino/sandbox/contacts/settings.py +67 -0
  4445. lino/sandbox/tx25/XSD/RetrieveTIGroupsV3.wsdl +65 -0
  4446. lino/sandbox/tx25/XSD/RetrieveTIGroupsV3.xsd +286 -0
  4447. lino/sandbox/tx25/XSD/rn25_Release201104.xsd +2855 -0
  4448. lino/sandbox/tx25/xsd2py1.py +68 -0
  4449. lino/sandbox/tx25/xsd2py2.py +62 -0
  4450. lino/sandbox/tx25/xsd2py3.py +56 -0
  4451. lino/sphinxcontrib/__init__.py +125 -0
  4452. lino/sphinxcontrib/actordoc.py +639 -0
  4453. lino/sphinxcontrib/base.py +52 -0
  4454. lino/sphinxcontrib/help_texts_extractor.py +259 -0
  4455. lino/sphinxcontrib/logo/__init__.py +61 -0
  4456. lino/sphinxcontrib/logo/make_favicons.py +9 -0
  4457. lino/sphinxcontrib/logo/src/lino-web-logo.xcf +0 -0
  4458. lino/sphinxcontrib/logo/src/logo_web.xcf +0 -0
  4459. lino/sphinxcontrib/logo/src/synodal-icon.png +0 -0
  4460. lino/sphinxcontrib/logo/src/synodal-icon.svg +410 -0
  4461. lino/sphinxcontrib/logo/src/synodal-logo-1.svg +279 -0
  4462. lino/sphinxcontrib/logo/src/synodal-logo-2.svg +298 -0
  4463. lino/sphinxcontrib/logo/src/synodal-logo-colors.svg +234 -0
  4464. lino/sphinxcontrib/logo/src/synodal-logo.svg +310 -0
  4465. lino/sphinxcontrib/logo/static/centeredlogo.css +5 -0
  4466. lino/sphinxcontrib/logo/static/favicon-20140303.ico +0 -0
  4467. lino/sphinxcontrib/logo/static/favicon-20140306.ico +0 -0
  4468. lino/sphinxcontrib/logo/static/favicon.ico +0 -0
  4469. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-114x114.png +0 -0
  4470. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-120x120.png +0 -0
  4471. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-144x144.png +0 -0
  4472. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-152x152.png +0 -0
  4473. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-167x167.png +0 -0
  4474. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-180x180.png +0 -0
  4475. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-57x57.png +0 -0
  4476. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-60x60.png +0 -0
  4477. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-72x72.png +0 -0
  4478. lino/sphinxcontrib/logo/static/favicons/apple-touch-icon-76x76.png +0 -0
  4479. lino/sphinxcontrib/logo/static/favicons/favicon-16x16.png +0 -0
  4480. lino/sphinxcontrib/logo/static/favicons/favicon-180x180.png +0 -0
  4481. lino/sphinxcontrib/logo/static/favicons/favicon-196x196.png +0 -0
  4482. lino/sphinxcontrib/logo/static/favicons/favicon-32x32.png +0 -0
  4483. lino/sphinxcontrib/logo/static/favicons/favicon-64x64.png +0 -0
  4484. lino/sphinxcontrib/logo/static/favicons/favicon-96x96.png +0 -0
  4485. lino/sphinxcontrib/logo/static/favicons/favicon.ico +0 -0
  4486. lino/sphinxcontrib/logo/static/favicons/mstile-270x270.png +0 -0
  4487. lino/sphinxcontrib/logo/static/favicons/mstile-310x150.png +0 -0
  4488. lino/sphinxcontrib/logo/static/favicons/mstile-310x310.png +0 -0
  4489. lino/sphinxcontrib/logo/static/favicons/mstile-70x70.png +0 -0
  4490. lino/sphinxcontrib/logo/static/lino-logo-2.png +0 -0
  4491. lino/sphinxcontrib/logo/static/lino-logo.png +0 -0
  4492. lino/sphinxcontrib/logo/static/lino-logo.svg +122 -0
  4493. lino/sphinxcontrib/logo/static/lino-web-logo.png +0 -0
  4494. lino/sphinxcontrib/logo/static/linodocs.css +63 -0
  4495. lino/sphinxcontrib/logo/static/logo-20140302.png +0 -0
  4496. lino/sphinxcontrib/logo/static/logo-20140306.png +0 -0
  4497. lino/sphinxcontrib/logo/static/logo-gerd.jpg +0 -0
  4498. lino/sphinxcontrib/logo/static/logo.jpg +0 -0
  4499. lino/sphinxcontrib/logo/static/logo.png +0 -0
  4500. lino/sphinxcontrib/logo/static/logo_web.png +0 -0
  4501. lino/sphinxcontrib/logo/static/logo_web2.png +0 -0
  4502. lino/sphinxcontrib/logo/static/logo_web3.png +0 -0
  4503. lino/sphinxcontrib/logo/static/synodal-logo.png +0 -0
  4504. lino/sphinxcontrib/logo/templates/footer.html +10 -0
  4505. lino/sphinxcontrib/logo/templates/globaltoc.html +8 -0
  4506. lino/sphinxcontrib/logo/templates/layout.html +18 -0
  4507. lino/sphinxcontrib/logo/templates/links.html +4 -0
  4508. lino/sphinxcontrib/logo/templates/part-of-synodalsoft.html +31 -0
  4509. lino/sphinxcontrib/logo/templates/unused_copyright.html +4 -0
  4510. lino/static/blueprint.css +8 -0
  4511. lino/static/bootstrap.css +66 -0
  4512. lino/static/cgi/getip.py +40 -0
  4513. lino/static/contacts.Person.jpg +0 -0
  4514. lino/static/eid-applet/readme.txt +12 -0
  4515. lino/static/eid-applet/test.html +54 -0
  4516. lino/static/favicon1.ico +0 -0
  4517. lino/static/favicon2.ico +0 -0
  4518. lino/static/images/default/grid/calendar.png +0 -0
  4519. lino/static/images/default/grid/calendar256.png +0 -0
  4520. lino/static/images/default/grid/delete.gif +0 -0
  4521. lino/static/images/default/grid/detail.png +0 -0
  4522. lino/static/images/default/grid/email.png +0 -0
  4523. lino/static/images/default/grid/email64.png +0 -0
  4524. lino/static/images/default/grid/new.gif +0 -0
  4525. lino/static/images/default/grid/new.png +0 -0
  4526. lino/static/images/default/grid/new64.png +0 -0
  4527. lino/static/images/default/grid/save.gif +0 -0
  4528. lino/static/images/default/grid/save.png +0 -0
  4529. lino/static/images/default/grid/save48.png +0 -0
  4530. lino/static/images/mjames/accept.png +0 -0
  4531. lino/static/images/mjames/add.png +0 -0
  4532. lino/static/images/mjames/application_form.png +0 -0
  4533. lino/static/images/mjames/application_view_columns.png +0 -0
  4534. lino/static/images/mjames/application_view_detail.png +0 -0
  4535. lino/static/images/mjames/application_view_list.png +0 -0
  4536. lino/static/images/mjames/arrow_divide.png +0 -0
  4537. lino/static/images/mjames/arrow_down.png +0 -0
  4538. lino/static/images/mjames/arrow_join.png +0 -0
  4539. lino/static/images/mjames/arrow_undo.png +0 -0
  4540. lino/static/images/mjames/arrow_up.png +0 -0
  4541. lino/static/images/mjames/attach.png +0 -0
  4542. lino/static/images/mjames/basket.png +0 -0
  4543. lino/static/images/mjames/bell.png +0 -0
  4544. lino/static/images/mjames/book.png +0 -0
  4545. lino/static/images/mjames/book_link.png +0 -0
  4546. lino/static/images/mjames/calendar.png +0 -0
  4547. lino/static/images/mjames/cancel.png +0 -0
  4548. lino/static/images/mjames/cross.png +0 -0
  4549. lino/static/images/mjames/database_gear.png +0 -0
  4550. lino/static/images/mjames/date_add.png +0 -0
  4551. lino/static/images/mjames/date_delete.png +0 -0
  4552. lino/static/images/mjames/date_edit.png +0 -0
  4553. lino/static/images/mjames/date_next.png +0 -0
  4554. lino/static/images/mjames/date_previous.png +0 -0
  4555. lino/static/images/mjames/delete.png +0 -0
  4556. lino/static/images/mjames/disk.png +0 -0
  4557. lino/static/images/mjames/disk_multiple.png +0 -0
  4558. lino/static/images/mjames/email_add.png +0 -0
  4559. lino/static/images/mjames/email_go.png +0 -0
  4560. lino/static/images/mjames/emoticon_smile.png +0 -0
  4561. lino/static/images/mjames/emoticon_unhappy.png +0 -0
  4562. lino/static/images/mjames/eye.png +0 -0
  4563. lino/static/images/mjames/flag_blue.png +0 -0
  4564. lino/static/images/mjames/flag_green.png +0 -0
  4565. lino/static/images/mjames/hourglass.png +0 -0
  4566. lino/static/images/mjames/html.png +0 -0
  4567. lino/static/images/mjames/lightning.png +0 -0
  4568. lino/static/images/mjames/money.png +0 -0
  4569. lino/static/images/mjames/page_add.png +0 -0
  4570. lino/static/images/mjames/page_excel.png +0 -0
  4571. lino/static/images/mjames/page_go.png +0 -0
  4572. lino/static/images/mjames/page_white_acrobat.png +0 -0
  4573. lino/static/images/mjames/pencil.png +0 -0
  4574. lino/static/images/mjames/printer.png +0 -0
  4575. lino/static/images/mjames/printer_delete.png +0 -0
  4576. lino/static/images/mjames/script.png +0 -0
  4577. lino/static/images/mjames/script_add.png +0 -0
  4578. lino/static/images/mjames/telephone.png +0 -0
  4579. lino/static/images/mjames/transmit.png +0 -0
  4580. lino/static/images/mjames/vcard.png +0 -0
  4581. lino/static/images/mjames/vcard_add.png +0 -0
  4582. lino/static/images/mjames/world_add.png +0 -0
  4583. lino/static/images/mjames/world_go.png +0 -0
  4584. lino/static/images/mjames/wrench.png +0 -0
  4585. lino/static/images/wikipedia/external_text.png +0 -0
  4586. lino/static/images/xsite/link.gif +0 -0
  4587. lino/static/images/xsite/link.png +0 -0
  4588. lino/static/jasmine/specs.js +85 -0
  4589. lino/static/lino64.png +0 -0
  4590. lino/static/phantomjs/screenshooter.js +146 -0
  4591. lino/static/plain/lino.css +212 -0
  4592. lino/static/styles.css +13 -0
  4593. lino/templates_old/404.html +12 -0
  4594. lino/templates_old/500.html +12 -0
  4595. lino/templates_old/base.html +48 -0
  4596. lino/templates_old/base_site.html +10 -0
  4597. lino/utils/__init__.py +708 -0
  4598. lino/utils/addressable.py +78 -0
  4599. lino/utils/ajax.py +79 -0
  4600. lino/utils/choosers.py +532 -0
  4601. lino/utils/code.py +210 -0
  4602. lino/utils/config.py +254 -0
  4603. lino/utils/cycler.py +59 -0
  4604. lino/utils/daemoncommand.py +334 -0
  4605. lino/utils/dataserializer.py +116 -0
  4606. lino/utils/dates.py +45 -0
  4607. lino/utils/dbfreader.py +466 -0
  4608. lino/utils/dblogger.py +31 -0
  4609. lino/utils/diag.py +508 -0
  4610. lino/utils/djangotest.py +225 -0
  4611. lino/utils/dpy.py +596 -0
  4612. lino/utils/format_date.py +116 -0
  4613. lino/utils/html.py +102 -0
  4614. lino/utils/html2odf.py +165 -0
  4615. lino/utils/html2xhtml.py +77 -0
  4616. lino/utils/instantiator.py +230 -0
  4617. lino/utils/jinja.py +56 -0
  4618. lino/utils/jscompressor.py +147 -0
  4619. lino/utils/jsgen.py +515 -0
  4620. lino/utils/latex.py +79 -0
  4621. lino/utils/mdbtools.py +168 -0
  4622. lino/utils/media.py +59 -0
  4623. lino/utils/mldbc/__init__.py +40 -0
  4624. lino/utils/mldbc/fields.py +88 -0
  4625. lino/utils/mldbc/mixins.py +70 -0
  4626. lino/utils/mti.py +320 -0
  4627. lino/utils/mytidylib.py +150 -0
  4628. lino/utils/odsreader.py +143 -0
  4629. lino/utils/odsreader_sample.ods +0 -0
  4630. lino/utils/pdf.py +24 -0
  4631. lino/utils/pythontest.py +146 -0
  4632. lino/utils/pyuca.py +131 -0
  4633. lino/utils/quantities.py +229 -0
  4634. lino/utils/ranges.py +131 -0
  4635. lino/utils/report.py +268 -0
  4636. lino/utils/requests.py +55 -0
  4637. lino/utils/restify.py +489 -0
  4638. lino/utils/screenshots.py +68 -0
  4639. lino/utils/sendchanges.py +216 -0
  4640. lino/utils/socks.py +24 -0
  4641. lino/utils/soup.py +311 -0
  4642. lino/utils/sql.py +225 -0
  4643. lino/utils/sqllog.py +99 -0
  4644. lino/utils/ssin.py +163 -0
  4645. lino/utils/test.py +235 -0
  4646. lino/utils/textfields.py +91 -0
  4647. lino/utils/ucsv.py +82 -0
  4648. lino/utils/watch.py +1 -0
  4649. lino/utils/weekly.py +55 -0
  4650. lino/utils/xml.py +29 -0
  4651. lino-25.1.2.dist-info/METADATA +734 -0
  4652. lino-25.1.2.dist-info/RECORD +4655 -0
  4653. lino-25.1.2.dist-info/WHEEL +4 -0
  4654. lino-25.1.2.dist-info/licenses/AUTHORS.rst +29 -0
  4655. lino-25.1.2.dist-info/licenses/COPYING +661 -0
@@ -0,0 +1,4804 @@
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
+
8
+ /**
9
+ * @class Ext.data.Api
10
+ * @extends Object
11
+ * Ext.data.Api is a singleton designed to manage the data API including methods
12
+ * for validating a developer's DataProxy API. Defines variables for CRUD actions
13
+ * create, read, update and destroy in addition to a mapping of RESTful HTTP methods
14
+ * GET, POST, PUT and DELETE to CRUD actions.
15
+ * @singleton
16
+ */
17
+ Ext.data.Api = (function() {
18
+
19
+ // private validActions. validActions is essentially an inverted hash of Ext.data.Api.actions, where value becomes the key.
20
+ // Some methods in this singleton (e.g.: getActions, getVerb) will loop through actions with the code <code>for (var verb in this.actions)</code>
21
+ // For efficiency, some methods will first check this hash for a match. Those methods which do acces validActions will cache their result here.
22
+ // We cannot pre-define this hash since the developer may over-ride the actions at runtime.
23
+ var validActions = {};
24
+
25
+ return {
26
+ /**
27
+ * Defined actions corresponding to remote actions:
28
+ * <pre><code>
29
+ actions: {
30
+ create : 'create', // Text representing the remote-action to create records on server.
31
+ read : 'read', // Text representing the remote-action to read/load data from server.
32
+ update : 'update', // Text representing the remote-action to update records on server.
33
+ destroy : 'destroy' // Text representing the remote-action to destroy records on server.
34
+ }
35
+ * </code></pre>
36
+ * @property actions
37
+ * @type Object
38
+ */
39
+ actions : {
40
+ create : 'create',
41
+ read : 'read',
42
+ update : 'update',
43
+ destroy : 'destroy'
44
+ },
45
+
46
+ /**
47
+ * Defined {CRUD action}:{HTTP method} pairs to associate HTTP methods with the
48
+ * corresponding actions for {@link Ext.data.DataProxy#restful RESTful proxies}.
49
+ * Defaults to:
50
+ * <pre><code>
51
+ restActions : {
52
+ create : 'POST',
53
+ read : 'GET',
54
+ update : 'PUT',
55
+ destroy : 'DELETE'
56
+ },
57
+ * </code></pre>
58
+ */
59
+ restActions : {
60
+ create : 'POST',
61
+ read : 'GET',
62
+ update : 'PUT',
63
+ destroy : 'DELETE'
64
+ },
65
+
66
+ /**
67
+ * Returns true if supplied action-name is a valid API action defined in <code>{@link #actions}</code> constants
68
+ * @param {String} action Action to test for availability.
69
+ * @return {Boolean}
70
+ */
71
+ isAction : function(action) {
72
+ return (Ext.data.Api.actions[action]) ? true : false;
73
+ },
74
+
75
+ /**
76
+ * Returns the actual CRUD action KEY "create", "read", "update" or "destroy" from the supplied action-name. This method is used internally and shouldn't generally
77
+ * need to be used directly. The key/value pair of Ext.data.Api.actions will often be identical but this is not necessarily true. A developer can override this naming
78
+ * convention if desired. However, the framework internally calls methods based upon the KEY so a way of retreiving the the words "create", "read", "update" and "destroy" is
79
+ * required. This method will cache discovered KEYS into the private validActions hash.
80
+ * @param {String} name The runtime name of the action.
81
+ * @return {String||null} returns the action-key, or verb of the user-action or null if invalid.
82
+ * @nodoc
83
+ */
84
+ getVerb : function(name) {
85
+ if (validActions[name]) {
86
+ return validActions[name]; // <-- found in cache. return immediately.
87
+ }
88
+ for (var verb in this.actions) {
89
+ if (this.actions[verb] === name) {
90
+ validActions[name] = verb;
91
+ break;
92
+ }
93
+ }
94
+ return (validActions[name] !== undefined) ? validActions[name] : null;
95
+ },
96
+
97
+ /**
98
+ * Returns true if the supplied API is valid; that is, check that all keys match defined actions
99
+ * otherwise returns an array of mistakes.
100
+ * @return {String[]|true}
101
+ */
102
+ isValid : function(api){
103
+ var invalid = [];
104
+ var crud = this.actions; // <-- cache a copy of the actions.
105
+ for (var action in api) {
106
+ if (!(action in crud)) {
107
+ invalid.push(action);
108
+ }
109
+ }
110
+ return (!invalid.length) ? true : invalid;
111
+ },
112
+
113
+ /**
114
+ * Returns true if the supplied verb upon the supplied proxy points to a unique url in that none of the other api-actions
115
+ * point to the same url. The question is important for deciding whether to insert the "xaction" HTTP parameter within an
116
+ * Ajax request. This method is used internally and shouldn't generally need to be called directly.
117
+ * @param {Ext.data.DataProxy} proxy
118
+ * @param {String} verb
119
+ * @return {Boolean}
120
+ */
121
+ hasUniqueUrl : function(proxy, verb) {
122
+ var url = (proxy.api[verb]) ? proxy.api[verb].url : null;
123
+ var unique = true;
124
+ for (var action in proxy.api) {
125
+ if ((unique = (action === verb) ? true : (proxy.api[action].url != url) ? true : false) === false) {
126
+ break;
127
+ }
128
+ }
129
+ return unique;
130
+ },
131
+
132
+ /**
133
+ * This method is used internally by <tt>{@link Ext.data.DataProxy DataProxy}</tt> and should not generally need to be used directly.
134
+ * Each action of a DataProxy api can be initially defined as either a String or an Object. When specified as an object,
135
+ * one can explicitly define the HTTP method (GET|POST) to use for each CRUD action. This method will prepare the supplied API, setting
136
+ * each action to the Object form. If your API-actions do not explicitly define the HTTP method, the "method" configuration-parameter will
137
+ * be used. If the method configuration parameter is not specified, POST will be used.
138
+ <pre><code>
139
+ new Ext.data.HttpProxy({
140
+ method: "POST", // <-- default HTTP method when not specified.
141
+ api: {
142
+ create: 'create.php',
143
+ load: 'read.php',
144
+ save: 'save.php',
145
+ destroy: 'destroy.php'
146
+ }
147
+ });
148
+
149
+ // Alternatively, one can use the object-form to specify the API
150
+ new Ext.data.HttpProxy({
151
+ api: {
152
+ load: {url: 'read.php', method: 'GET'},
153
+ create: 'create.php',
154
+ destroy: 'destroy.php',
155
+ save: 'update.php'
156
+ }
157
+ });
158
+ </code></pre>
159
+ *
160
+ * @param {Ext.data.DataProxy} proxy
161
+ */
162
+ prepare : function(proxy) {
163
+ if (!proxy.api) {
164
+ proxy.api = {}; // <-- No api? create a blank one.
165
+ }
166
+ for (var verb in this.actions) {
167
+ var action = this.actions[verb];
168
+ proxy.api[action] = proxy.api[action] || proxy.url || proxy.directFn;
169
+ if (typeof(proxy.api[action]) == 'string') {
170
+ proxy.api[action] = {
171
+ url: proxy.api[action],
172
+ method: (proxy.restful === true) ? Ext.data.Api.restActions[action] : undefined
173
+ };
174
+ }
175
+ }
176
+ },
177
+
178
+ /**
179
+ * Prepares a supplied Proxy to be RESTful. Sets the HTTP method for each api-action to be one of
180
+ * GET, POST, PUT, DELETE according to the defined {@link #restActions}.
181
+ * @param {Ext.data.DataProxy} proxy
182
+ */
183
+ restify : function(proxy) {
184
+ proxy.restful = true;
185
+ for (var verb in this.restActions) {
186
+ proxy.api[this.actions[verb]].method ||
187
+ (proxy.api[this.actions[verb]].method = this.restActions[verb]);
188
+ }
189
+ // TODO: perhaps move this interceptor elsewhere? like into DataProxy, perhaps? Placed here
190
+ // to satisfy initial 3.0 final release of REST features.
191
+ proxy.onWrite = proxy.onWrite.createInterceptor(function(action, o, response, rs) {
192
+ var reader = o.reader;
193
+ var res = new Ext.data.Response({
194
+ action: action,
195
+ raw: response
196
+ });
197
+
198
+ switch (response.status) {
199
+ case 200: // standard 200 response, send control back to HttpProxy#onWrite by returning true from this intercepted #onWrite
200
+ return true;
201
+ break;
202
+ case 201: // entity created but no response returned
203
+ if (Ext.isEmpty(res.raw.responseText)) {
204
+ res.success = true;
205
+ } else {
206
+ //if the response contains data, treat it like a 200
207
+ return true;
208
+ }
209
+ break;
210
+ case 204: // no-content. Create a fake response.
211
+ res.success = true;
212
+ res.data = null;
213
+ break;
214
+ default:
215
+ return true;
216
+ break;
217
+ }
218
+ if (res.success === true) {
219
+ this.fireEvent("write", this, action, res.data, res, rs, o.request.arg);
220
+ } else {
221
+ this.fireEvent('exception', this, 'remote', action, o, res, rs);
222
+ }
223
+ o.request.callback.call(o.request.scope, res.data, res, res.success);
224
+
225
+ return false; // <-- false to prevent intercepted function from running.
226
+ }, proxy);
227
+ }
228
+ };
229
+ })();
230
+
231
+ /**
232
+ * Ext.data.Response
233
+ * Experimental. Do not use directly.
234
+ */
235
+ Ext.data.Response = function(params, response) {
236
+ Ext.apply(this, params, {
237
+ raw: response
238
+ });
239
+ };
240
+ Ext.data.Response.prototype = {
241
+ message : null,
242
+ success : false,
243
+ status : null,
244
+ root : null,
245
+ raw : null,
246
+
247
+ getMessage : function() {
248
+ return this.message;
249
+ },
250
+ getSuccess : function() {
251
+ return this.success;
252
+ },
253
+ getStatus : function() {
254
+ return this.status;
255
+ },
256
+ getRoot : function() {
257
+ return this.root;
258
+ },
259
+ getRawResponse : function() {
260
+ return this.raw;
261
+ }
262
+ };
263
+
264
+ /**
265
+ * @class Ext.data.Api.Error
266
+ * @extends Ext.Error
267
+ * Error class for Ext.data.Api errors
268
+ */
269
+ Ext.data.Api.Error = Ext.extend(Ext.Error, {
270
+ constructor : function(message, arg) {
271
+ this.arg = arg;
272
+ Ext.Error.call(this, message);
273
+ },
274
+ name: 'Ext.data.Api'
275
+ });
276
+ Ext.apply(Ext.data.Api.Error.prototype, {
277
+ lang: {
278
+ 'action-url-undefined': 'No fallback url defined for this action. When defining a DataProxy api, please be sure to define an url for each CRUD action in Ext.data.Api.actions or define a default url in addition to your api-configuration.',
279
+ 'invalid': 'received an invalid API-configuration. Please ensure your proxy API-configuration contains only the actions defined in Ext.data.Api.actions',
280
+ 'invalid-url': 'Invalid url. Please review your proxy configuration.',
281
+ 'execute': 'Attempted to execute an unknown action. Valid API actions are defined in Ext.data.Api.actions"'
282
+ }
283
+ });
284
+
285
+
286
+
287
+ /**
288
+ * @class Ext.data.SortTypes
289
+ * @singleton
290
+ * Defines the default sorting (casting?) comparison functions used when sorting data.
291
+ */
292
+ Ext.data.SortTypes = {
293
+ /**
294
+ * Default sort that does nothing
295
+ * @param {Mixed} s The value being converted
296
+ * @return {Mixed} The comparison value
297
+ */
298
+ none : function(s){
299
+ return s;
300
+ },
301
+
302
+ /**
303
+ * The regular expression used to strip tags
304
+ * @type {RegExp}
305
+ * @property
306
+ */
307
+ stripTagsRE : /<\/?[^>]+>/gi,
308
+
309
+ /**
310
+ * Strips all HTML tags to sort on text only
311
+ * @param {Mixed} s The value being converted
312
+ * @return {String} The comparison value
313
+ */
314
+ asText : function(s){
315
+ return String(s).replace(this.stripTagsRE, "");
316
+ },
317
+
318
+ /**
319
+ * Strips all HTML tags to sort on text only - Case insensitive
320
+ * @param {Mixed} s The value being converted
321
+ * @return {String} The comparison value
322
+ */
323
+ asUCText : function(s){
324
+ return String(s).toUpperCase().replace(this.stripTagsRE, "");
325
+ },
326
+
327
+ /**
328
+ * Case insensitive string
329
+ * @param {Mixed} s The value being converted
330
+ * @return {String} The comparison value
331
+ */
332
+ asUCString : function(s) {
333
+ return String(s).toUpperCase();
334
+ },
335
+
336
+ /**
337
+ * Date sorting
338
+ * @param {Mixed} s The value being converted
339
+ * @return {Number} The comparison value
340
+ */
341
+ asDate : function(s) {
342
+ if(!s){
343
+ return 0;
344
+ }
345
+ if(Ext.isDate(s)){
346
+ return s.getTime();
347
+ }
348
+ return Date.parse(String(s));
349
+ },
350
+
351
+ /**
352
+ * Float sorting
353
+ * @param {Mixed} s The value being converted
354
+ * @return {Float} The comparison value
355
+ */
356
+ asFloat : function(s) {
357
+ var val = parseFloat(String(s).replace(/,/g, ""));
358
+ return isNaN(val) ? 0 : val;
359
+ },
360
+
361
+ /**
362
+ * Integer sorting
363
+ * @param {Mixed} s The value being converted
364
+ * @return {Number} The comparison value
365
+ */
366
+ asInt : function(s) {
367
+ var val = parseInt(String(s).replace(/,/g, ""), 10);
368
+ return isNaN(val) ? 0 : val;
369
+ }
370
+ };/**
371
+ * @class Ext.data.Record
372
+ * <p>Instances of this class encapsulate both Record <em>definition</em> information, and Record
373
+ * <em>value</em> information for use in {@link Ext.data.Store} objects, or any code which needs
374
+ * to access Records cached in an {@link Ext.data.Store} object.</p>
375
+ * <p>Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
376
+ * Instances are usually only created by {@link Ext.data.Reader} implementations when processing unformatted data
377
+ * objects.</p>
378
+ * <p>Note that an instance of a Record class may only belong to one {@link Ext.data.Store Store} at a time.
379
+ * In order to copy data from one Store to another, use the {@link #copy} method to create an exact
380
+ * copy of the Record, and insert the new instance into the other Store.</p>
381
+ * <p>When serializing a Record for submission to the server, be aware that it contains many private
382
+ * properties, and also a reference to its owning Store which in turn holds references to its Records.
383
+ * This means that a whole Record may not be encoded using {@link Ext.util.JSON.encode}. Instead, use the
384
+ * <code>{@link #data}</code> and <code>{@link #id}</code> properties.</p>
385
+ * <p>Record objects generated by this constructor inherit all the methods of Ext.data.Record listed below.</p>
386
+ * @constructor
387
+ * <p>This constructor should not be used to create Record objects. Instead, use {@link #create} to
388
+ * generate a subclass of Ext.data.Record configured with information about its constituent fields.<p>
389
+ * <p><b>The generated constructor has the same signature as this constructor.</b></p>
390
+ * @param {Object} data (Optional) An object, the properties of which provide values for the new Record's
391
+ * fields. If not specified the <code>{@link Ext.data.Field#defaultValue defaultValue}</code>
392
+ * for each field will be assigned.
393
+ * @param {Object} id (Optional) The id of the Record. The id is used by the
394
+ * {@link Ext.data.Store} object which owns the Record to index its collection
395
+ * of Records (therefore this id should be unique within each store). If an
396
+ * <code>id</code> is not specified a <b><code>{@link #phantom}</code></b>
397
+ * Record will be created with an {@link #Record.id automatically generated id}.
398
+ */
399
+ Ext.data.Record = function(data, id){
400
+ // if no id, call the auto id method
401
+ this.id = (id || id === 0) ? id : Ext.data.Record.id(this);
402
+ this.data = data || {};
403
+ };
404
+
405
+ /**
406
+ * Generate a constructor for a specific Record layout.
407
+ * @param {Array} o An Array of <b>{@link Ext.data.Field Field}</b> definition objects.
408
+ * The constructor generated by this method may be used to create new Record instances. The data
409
+ * object must contain properties named after the {@link Ext.data.Field field}
410
+ * <b><tt>{@link Ext.data.Field#name}s</tt></b>. Example usage:<pre><code>
411
+ // create a Record constructor from a description of the fields
412
+ var TopicRecord = Ext.data.Record.create([ // creates a subclass of Ext.data.Record
413
+ {{@link Ext.data.Field#name name}: 'title', {@link Ext.data.Field#mapping mapping}: 'topic_title'},
414
+ {name: 'author', mapping: 'username', allowBlank: false},
415
+ {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
416
+ {name: 'lastPost', mapping: 'post_time', type: 'date'},
417
+ {name: 'lastPoster', mapping: 'user2'},
418
+ {name: 'excerpt', mapping: 'post_text', allowBlank: false},
419
+ // In the simplest case, if no properties other than <tt>name</tt> are required,
420
+ // a field definition may consist of just a String for the field name.
421
+ 'signature'
422
+ ]);
423
+
424
+ // create Record instance
425
+ var myNewRecord = new TopicRecord(
426
+ {
427
+ title: 'Do my job please',
428
+ author: 'noobie',
429
+ totalPosts: 1,
430
+ lastPost: new Date(),
431
+ lastPoster: 'Animal',
432
+ excerpt: 'No way dude!',
433
+ signature: ''
434
+ },
435
+ id // optionally specify the id of the record otherwise {@link #Record.id one is auto-assigned}
436
+ );
437
+ myStore.{@link Ext.data.Store#add add}(myNewRecord);
438
+ </code></pre>
439
+ * @method create
440
+ * @return {Function} A constructor which is used to create new Records according
441
+ * to the definition. The constructor has the same signature as {@link #Record}.
442
+ * @static
443
+ */
444
+ Ext.data.Record.create = function(o){
445
+ var f = Ext.extend(Ext.data.Record, {});
446
+ var p = f.prototype;
447
+ p.fields = new Ext.util.MixedCollection(false, function(field){
448
+ return field.name;
449
+ });
450
+ for(var i = 0, len = o.length; i < len; i++){
451
+ p.fields.add(new Ext.data.Field(o[i]));
452
+ }
453
+ f.getField = function(name){
454
+ return p.fields.get(name);
455
+ };
456
+ return f;
457
+ };
458
+
459
+ Ext.data.Record.PREFIX = 'ext-record';
460
+ Ext.data.Record.AUTO_ID = 1;
461
+ Ext.data.Record.EDIT = 'edit';
462
+ Ext.data.Record.REJECT = 'reject';
463
+ Ext.data.Record.COMMIT = 'commit';
464
+
465
+
466
+ /**
467
+ * Generates a sequential id. This method is typically called when a record is {@link #create}d
468
+ * and {@link #Record no id has been specified}. The returned id takes the form:
469
+ * <tt>&#123;PREFIX}-&#123;AUTO_ID}</tt>.<div class="mdetail-params"><ul>
470
+ * <li><b><tt>PREFIX</tt></b> : String<p class="sub-desc"><tt>Ext.data.Record.PREFIX</tt>
471
+ * (defaults to <tt>'ext-record'</tt>)</p></li>
472
+ * <li><b><tt>AUTO_ID</tt></b> : String<p class="sub-desc"><tt>Ext.data.Record.AUTO_ID</tt>
473
+ * (defaults to <tt>1</tt> initially)</p></li>
474
+ * </ul></div>
475
+ * @param {Record} rec The record being created. The record does not exist, it's a {@link #phantom}.
476
+ * @return {String} auto-generated string id, <tt>"ext-record-i++'</tt>;
477
+ */
478
+ Ext.data.Record.id = function(rec) {
479
+ rec.phantom = true;
480
+ return [Ext.data.Record.PREFIX, '-', Ext.data.Record.AUTO_ID++].join('');
481
+ };
482
+
483
+ Ext.data.Record.prototype = {
484
+ /**
485
+ * <p><b>This property is stored in the Record definition's <u>prototype</u></b></p>
486
+ * A MixedCollection containing the defined {@link Ext.data.Field Field}s for this Record. Read-only.
487
+ * @property fields
488
+ * @type Ext.util.MixedCollection
489
+ */
490
+ /**
491
+ * An object hash representing the data for this Record. Every field name in the Record definition
492
+ * is represented by a property of that name in this object. Note that unless you specified a field
493
+ * with {@link Ext.data.Field#name name} "id" in the Record definition, this will <b>not</b> contain
494
+ * an <tt>id</tt> property.
495
+ * @property data
496
+ * @type {Object}
497
+ */
498
+ /**
499
+ * The unique ID of the Record {@link #Record as specified at construction time}.
500
+ * @property id
501
+ * @type {Object}
502
+ */
503
+ /**
504
+ * <p><b>Only present if this Record was created by an {@link Ext.data.XmlReader XmlReader}</b>.</p>
505
+ * <p>The XML element which was the source of the data for this Record.</p>
506
+ * @property node
507
+ * @type {XMLElement}
508
+ */
509
+ /**
510
+ * <p><b>Only present if this Record was created by an {@link Ext.data.ArrayReader ArrayReader} or a {@link Ext.data.JsonReader JsonReader}</b>.</p>
511
+ * <p>The Array or object which was the source of the data for this Record.</p>
512
+ * @property json
513
+ * @type {Array|Object}
514
+ */
515
+ /**
516
+ * Readonly flag - true if this Record has been modified.
517
+ * @type Boolean
518
+ */
519
+ dirty : false,
520
+ editing : false,
521
+ error : null,
522
+ /**
523
+ * This object contains a key and value storing the original values of all modified
524
+ * fields or is null if no fields have been modified.
525
+ * @property modified
526
+ * @type {Object}
527
+ */
528
+ modified : null,
529
+ /**
530
+ * <tt>true</tt> when the record does not yet exist in a server-side database (see
531
+ * {@link #markDirty}). Any record which has a real database pk set as its id property
532
+ * is NOT a phantom -- it's real.
533
+ * @property phantom
534
+ * @type {Boolean}
535
+ */
536
+ phantom : false,
537
+
538
+ // private
539
+ join : function(store){
540
+ /**
541
+ * The {@link Ext.data.Store} to which this Record belongs.
542
+ * @property store
543
+ * @type {Ext.data.Store}
544
+ */
545
+ this.store = store;
546
+ },
547
+
548
+ /**
549
+ * Set the {@link Ext.data.Field#name named field} to the specified value. For example:
550
+ * <pre><code>
551
+ // record has a field named 'firstname'
552
+ var Employee = Ext.data.Record.{@link #create}([
553
+ {name: 'firstname'},
554
+ ...
555
+ ]);
556
+
557
+ // update the 2nd record in the store:
558
+ var rec = myStore.{@link Ext.data.Store#getAt getAt}(1);
559
+
560
+ // set the value (shows dirty flag):
561
+ rec.set('firstname', 'Betty');
562
+
563
+ // commit the change (removes dirty flag):
564
+ rec.{@link #commit}();
565
+
566
+ // update the record in the store, bypass setting dirty flag,
567
+ // and do not store the change in the {@link Ext.data.Store#getModifiedRecords modified records}
568
+ rec.{@link #data}['firstname'] = 'Wilma'; // updates record, but not the view
569
+ rec.{@link #commit}(); // updates the view
570
+ * </code></pre>
571
+ * <b>Notes</b>:<div class="mdetail-params"><ul>
572
+ * <li>If the store has a writer and <code>autoSave=true</code>, each set()
573
+ * will execute an XHR to the server.</li>
574
+ * <li>Use <code>{@link #beginEdit}</code> to prevent the store's <code>update</code>
575
+ * event firing while using set().</li>
576
+ * <li>Use <code>{@link #endEdit}</code> to have the store's <code>update</code>
577
+ * event fire.</li>
578
+ * </ul></div>
579
+ * @param {String} name The {@link Ext.data.Field#name name of the field} to set.
580
+ * @param {String/Object/Array} value The value to set the field to.
581
+ */
582
+ set : function(name, value){
583
+ var encode = Ext.isPrimitive(value) ? String : Ext.encode;
584
+ if(encode(this.data[name]) == encode(value)) {
585
+ return;
586
+ }
587
+ this.dirty = true;
588
+ if(!this.modified){
589
+ this.modified = {};
590
+ }
591
+ if(this.modified[name] === undefined){
592
+ this.modified[name] = this.data[name];
593
+ }
594
+ this.data[name] = value;
595
+ if(!this.editing){
596
+ this.afterEdit();
597
+ }
598
+ },
599
+
600
+ // private
601
+ afterEdit : function(){
602
+ if (this.store != undefined && typeof this.store.afterEdit == "function") {
603
+ this.store.afterEdit(this);
604
+ }
605
+ },
606
+
607
+ // private
608
+ afterReject : function(){
609
+ if(this.store){
610
+ this.store.afterReject(this);
611
+ }
612
+ },
613
+
614
+ // private
615
+ afterCommit : function(){
616
+ if(this.store){
617
+ this.store.afterCommit(this);
618
+ }
619
+ },
620
+
621
+ /**
622
+ * Get the value of the {@link Ext.data.Field#name named field}.
623
+ * @param {String} name The {@link Ext.data.Field#name name of the field} to get the value of.
624
+ * @return {Object} The value of the field.
625
+ */
626
+ get : function(name){
627
+ return this.data[name];
628
+ },
629
+
630
+ /**
631
+ * Begin an edit. While in edit mode, no events (e.g.. the <code>update</code> event)
632
+ * are relayed to the containing store.
633
+ * See also: <code>{@link #endEdit}</code> and <code>{@link #cancelEdit}</code>.
634
+ */
635
+ beginEdit : function(){
636
+ this.editing = true;
637
+ this.modified = this.modified || {};
638
+ },
639
+
640
+ /**
641
+ * Cancels all changes made in the current edit operation.
642
+ */
643
+ cancelEdit : function(){
644
+ this.editing = false;
645
+ delete this.modified;
646
+ },
647
+
648
+ /**
649
+ * End an edit. If any data was modified, the containing store is notified
650
+ * (ie, the store's <code>update</code> event will fire).
651
+ */
652
+ endEdit : function(){
653
+ this.editing = false;
654
+ if(this.dirty){
655
+ this.afterEdit();
656
+ }
657
+ },
658
+
659
+ /**
660
+ * Usually called by the {@link Ext.data.Store} which owns the Record.
661
+ * Rejects all changes made to the Record since either creation, or the last commit operation.
662
+ * Modified fields are reverted to their original values.
663
+ * <p>Developers should subscribe to the {@link Ext.data.Store#update} event
664
+ * to have their code notified of reject operations.</p>
665
+ * @param {Boolean} silent (optional) True to skip notification of the owning
666
+ * store of the change (defaults to false)
667
+ */
668
+ reject : function(silent){
669
+ var m = this.modified;
670
+ for(var n in m){
671
+ if(typeof m[n] != "function"){
672
+ this.data[n] = m[n];
673
+ }
674
+ }
675
+ this.dirty = false;
676
+ delete this.modified;
677
+ this.editing = false;
678
+ if(silent !== true){
679
+ this.afterReject();
680
+ }
681
+ },
682
+
683
+ /**
684
+ * Usually called by the {@link Ext.data.Store} which owns the Record.
685
+ * Commits all changes made to the Record since either creation, or the last commit operation.
686
+ * <p>Developers should subscribe to the {@link Ext.data.Store#update} event
687
+ * to have their code notified of commit operations.</p>
688
+ * @param {Boolean} silent (optional) True to skip notification of the owning
689
+ * store of the change (defaults to false)
690
+ */
691
+ commit : function(silent){
692
+ this.dirty = false;
693
+ delete this.modified;
694
+ this.editing = false;
695
+ if(silent !== true){
696
+ this.afterCommit();
697
+ }
698
+ },
699
+
700
+ /**
701
+ * Gets a hash of only the fields that have been modified since this Record was created or commited.
702
+ * @return Object
703
+ */
704
+ getChanges : function(){
705
+ var m = this.modified, cs = {};
706
+ for(var n in m){
707
+ if(m.hasOwnProperty(n)){
708
+ cs[n] = this.data[n];
709
+ }
710
+ }
711
+ return cs;
712
+ },
713
+
714
+ // private
715
+ hasError : function(){
716
+ return this.error !== null;
717
+ },
718
+
719
+ // private
720
+ clearError : function(){
721
+ this.error = null;
722
+ },
723
+
724
+ /**
725
+ * Creates a copy (clone) of this Record.
726
+ * @param {String} id (optional) A new Record id, defaults to the id
727
+ * of the record being copied. See <code>{@link #id}</code>.
728
+ * To generate a phantom record with a new id use:<pre><code>
729
+ var rec = record.copy(); // clone the record
730
+ Ext.data.Record.id(rec); // automatically generate a unique sequential id
731
+ * </code></pre>
732
+ * @return {Record}
733
+ */
734
+ copy : function(newId) {
735
+ return new this.constructor(Ext.apply({}, this.data), newId || this.id);
736
+ },
737
+
738
+ /**
739
+ * Returns <tt>true</tt> if the passed field name has been <code>{@link #modified}</code>
740
+ * since the load or last commit.
741
+ * @param {String} fieldName {@link Ext.data.Field.{@link Ext.data.Field#name}
742
+ * @return {Boolean}
743
+ */
744
+ isModified : function(fieldName){
745
+ return !!(this.modified && this.modified.hasOwnProperty(fieldName));
746
+ },
747
+
748
+ /**
749
+ * By default returns <tt>false</tt> if any {@link Ext.data.Field field} within the
750
+ * record configured with <tt>{@link Ext.data.Field#allowBlank} = false</tt> returns
751
+ * <tt>true</tt> from an {@link Ext}.{@link Ext#isEmpty isempty} test.
752
+ * @return {Boolean}
753
+ */
754
+ isValid : function() {
755
+ return this.fields.find(function(f) {
756
+ return (f.allowBlank === false && Ext.isEmpty(this.data[f.name])) ? true : false;
757
+ },this) ? false : true;
758
+ },
759
+
760
+ /**
761
+ * <p>Marks this <b>Record</b> as <code>{@link #dirty}</code>. This method
762
+ * is used interally when adding <code>{@link #phantom}</code> records to a
763
+ * {@link Ext.data.Store#writer writer enabled store}.</p>
764
+ * <br><p>Marking a record <code>{@link #dirty}</code> causes the phantom to
765
+ * be returned by {@link Ext.data.Store#getModifiedRecords} where it will
766
+ * have a create action composed for it during {@link Ext.data.Store#save store save}
767
+ * operations.</p>
768
+ */
769
+ markDirty : function(){
770
+ this.dirty = true;
771
+ if(!this.modified){
772
+ this.modified = {};
773
+ }
774
+ this.fields.each(function(f) {
775
+ this.modified[f.name] = this.data[f.name];
776
+ },this);
777
+ }
778
+ };
779
+ /**
780
+ * @class Ext.StoreMgr
781
+ * @extends Ext.util.MixedCollection
782
+ * The default global group of stores.
783
+ * @singleton
784
+ */
785
+ Ext.StoreMgr = Ext.apply(new Ext.util.MixedCollection(), {
786
+ /**
787
+ * @cfg {Object} listeners @hide
788
+ */
789
+
790
+ /**
791
+ * Registers one or more Stores with the StoreMgr. You do not normally need to register stores
792
+ * manually. Any store initialized with a {@link Ext.data.Store#storeId} will be auto-registered.
793
+ * @param {Ext.data.Store} store1 A Store instance
794
+ * @param {Ext.data.Store} store2 (optional)
795
+ * @param {Ext.data.Store} etc... (optional)
796
+ */
797
+ register : function(){
798
+ for(var i = 0, s; (s = arguments[i]); i++){
799
+ this.add(s);
800
+ }
801
+ },
802
+
803
+ /**
804
+ * Unregisters one or more Stores with the StoreMgr
805
+ * @param {String/Object} id1 The id of the Store, or a Store instance
806
+ * @param {String/Object} id2 (optional)
807
+ * @param {String/Object} etc... (optional)
808
+ */
809
+ unregister : function(){
810
+ for(var i = 0, s; (s = arguments[i]); i++){
811
+ this.remove(this.lookup(s));
812
+ }
813
+ },
814
+
815
+ /**
816
+ * Gets a registered Store by id
817
+ * @param {String/Object} id The id of the Store, or a Store instance
818
+ * @return {Ext.data.Store}
819
+ */
820
+ lookup : function(id){
821
+ if(Ext.isArray(id)){
822
+ var fields = ['field1'], expand = !Ext.isArray(id[0]);
823
+ if(!expand){
824
+ for(var i = 2, len = id[0].length; i <= len; ++i){
825
+ fields.push('field' + i);
826
+ }
827
+ }
828
+ return new Ext.data.ArrayStore({
829
+ fields: fields,
830
+ data: id,
831
+ expandData: expand,
832
+ autoDestroy: true,
833
+ autoCreated: true
834
+
835
+ });
836
+ }
837
+ return Ext.isObject(id) ? (id.events ? id : Ext.create(id, 'store')) : this.get(id);
838
+ },
839
+
840
+ // getKey implementation for MixedCollection
841
+ getKey : function(o){
842
+ return o.storeId;
843
+ }
844
+ });/**
845
+ * @class Ext.data.Store
846
+ * @extends Ext.util.Observable
847
+ * <p>The Store class encapsulates a client side cache of {@link Ext.data.Record Record}
848
+ * objects which provide input data for Components such as the {@link Ext.grid.GridPanel GridPanel},
849
+ * the {@link Ext.form.ComboBox ComboBox}, or the {@link Ext.DataView DataView}.</p>
850
+ * <p><u>Retrieving Data</u></p>
851
+ * <p>A Store object may access a data object using:<div class="mdetail-params"><ul>
852
+ * <li>{@link #proxy configured implementation} of {@link Ext.data.DataProxy DataProxy}</li>
853
+ * <li>{@link #data} to automatically pass in data</li>
854
+ * <li>{@link #loadData} to manually pass in data</li>
855
+ * </ul></div></p>
856
+ * <p><u>Reading Data</u></p>
857
+ * <p>A Store object has no inherent knowledge of the format of the data object (it could be
858
+ * an Array, XML, or JSON). A Store object uses an appropriate {@link #reader configured implementation}
859
+ * of a {@link Ext.data.DataReader DataReader} to create {@link Ext.data.Record Record} instances from the data
860
+ * object.</p>
861
+ * <p><u>Store Types</u></p>
862
+ * <p>There are several implementations of Store available which are customized for use with
863
+ * a specific DataReader implementation. Here is an example using an ArrayStore which implicitly
864
+ * creates a reader commensurate to an Array data object.</p>
865
+ * <pre><code>
866
+ var myStore = new Ext.data.ArrayStore({
867
+ fields: ['fullname', 'first'],
868
+ idIndex: 0 // id for each record will be the first element
869
+ });
870
+ * </code></pre>
871
+ * <p>For custom implementations create a basic {@link Ext.data.Store} configured as needed:</p>
872
+ * <pre><code>
873
+ // create a {@link Ext.data.Record Record} constructor:
874
+ var rt = Ext.data.Record.create([
875
+ {name: 'fullname'},
876
+ {name: 'first'}
877
+ ]);
878
+ var myStore = new Ext.data.Store({
879
+ // explicitly create reader
880
+ reader: new Ext.data.ArrayReader(
881
+ {
882
+ idIndex: 0 // id for each record will be the first element
883
+ },
884
+ rt // recordType
885
+ )
886
+ });
887
+ * </code></pre>
888
+ * <p>Load some data into store (note the data object is an array which corresponds to the reader):</p>
889
+ * <pre><code>
890
+ var myData = [
891
+ [1, 'Fred Flintstone', 'Fred'], // note that id for the record is the first element
892
+ [2, 'Barney Rubble', 'Barney']
893
+ ];
894
+ myStore.loadData(myData);
895
+ * </code></pre>
896
+ * <p>Records are cached and made available through accessor functions. An example of adding
897
+ * a record to the store:</p>
898
+ * <pre><code>
899
+ var defaultData = {
900
+ fullname: 'Full Name',
901
+ first: 'First Name'
902
+ };
903
+ var recId = 100; // provide unique id for the record
904
+ var r = new myStore.recordType(defaultData, ++recId); // create new record
905
+ myStore.{@link #insert}(0, r); // insert a new record into the store (also see {@link #add})
906
+ * </code></pre>
907
+ * <p><u>Writing Data</u></p>
908
+ * <p>And <b>new in Ext version 3</b>, use the new {@link Ext.data.DataWriter DataWriter} to create an automated, <a href="http://extjs.com/deploy/dev/examples/writer/writer.html">Writable Store</a>
909
+ * along with <a href="http://extjs.com/deploy/dev/examples/restful/restful.html">RESTful features.</a>
910
+ * @constructor
911
+ * Creates a new Store.
912
+ * @param {Object} config A config object containing the objects needed for the Store to access data,
913
+ * and read the data into Records.
914
+ * @xtype store
915
+ */
916
+ Ext.data.Store = Ext.extend(Ext.util.Observable, {
917
+ /**
918
+ * @cfg {String} storeId If passed, the id to use to register with the <b>{@link Ext.StoreMgr StoreMgr}</b>.
919
+ * <p><b>Note</b>: if a (deprecated) <tt>{@link #id}</tt> is specified it will supersede the <tt>storeId</tt>
920
+ * assignment.</p>
921
+ */
922
+ /**
923
+ * @cfg {String} url If a <tt>{@link #proxy}</tt> is not specified the <tt>url</tt> will be used to
924
+ * implicitly configure a {@link Ext.data.HttpProxy HttpProxy} if an <tt>url</tt> is specified.
925
+ * Typically this option, or the <code>{@link #data}</code> option will be specified.
926
+ */
927
+ /**
928
+ * @cfg {Boolean/Object} autoLoad If <tt>{@link #data}</tt> is not specified, and if <tt>autoLoad</tt>
929
+ * is <tt>true</tt> or an <tt>Object</tt>, this store's {@link #load} method is automatically called
930
+ * after creation. If the value of <tt>autoLoad</tt> is an <tt>Object</tt>, this <tt>Object</tt> will
931
+ * be passed to the store's {@link #load} method.
932
+ */
933
+ /**
934
+ * @cfg {Ext.data.DataProxy} proxy The {@link Ext.data.DataProxy DataProxy} object which provides
935
+ * access to a data object. See <code>{@link #url}</code>.
936
+ */
937
+ /**
938
+ * @cfg {Array} data An inline data object readable by the <code>{@link #reader}</code>.
939
+ * Typically this option, or the <code>{@link #url}</code> option will be specified.
940
+ */
941
+ /**
942
+ * @cfg {Ext.data.DataReader} reader The {@link Ext.data.DataReader Reader} object which processes the
943
+ * data object and returns an Array of {@link Ext.data.Record} objects which are cached keyed by their
944
+ * <b><tt>{@link Ext.data.Record#id id}</tt></b> property.
945
+ */
946
+ /**
947
+ * @cfg {Ext.data.DataWriter} writer
948
+ * <p>The {@link Ext.data.DataWriter Writer} object which processes a record object for being written
949
+ * to the server-side database.</p>
950
+ * <br><p>When a writer is installed into a Store the {@link #add}, {@link #remove}, and {@link #update}
951
+ * events on the store are monitored in order to remotely {@link #createRecords create records},
952
+ * {@link #destroyRecord destroy records}, or {@link #updateRecord update records}.</p>
953
+ * <br><p>The proxy for this store will relay any {@link #writexception} events to this store.</p>
954
+ * <br><p>Sample implementation:
955
+ * <pre><code>
956
+ var writer = new {@link Ext.data.JsonWriter}({
957
+ encode: true,
958
+ writeAllFields: true // write all fields, not just those that changed
959
+ });
960
+
961
+ // Typical Store collecting the Proxy, Reader and Writer together.
962
+ var store = new Ext.data.Store({
963
+ storeId: 'user',
964
+ root: 'records',
965
+ proxy: proxy,
966
+ reader: reader,
967
+ writer: writer, // <-- plug a DataWriter into the store just as you would a Reader
968
+ paramsAsHash: true,
969
+ autoSave: false // <-- false to delay executing create, update, destroy requests
970
+ // until specifically told to do so.
971
+ });
972
+ * </code></pre></p>
973
+ */
974
+ writer : undefined,
975
+ /**
976
+ * @cfg {Object} baseParams
977
+ * <p>An object containing properties which are to be sent as parameters
978
+ * for <i>every</i> HTTP request.</p>
979
+ * <p>Parameters are encoded as standard HTTP parameters using {@link Ext#urlEncode}.</p>
980
+ * <p><b>Note</b>: <code>baseParams</code> may be superseded by any <code>params</code>
981
+ * specified in a <code>{@link #load}</code> request, see <code>{@link #load}</code>
982
+ * for more details.</p>
983
+ * This property may be modified after creation using the <code>{@link #setBaseParam}</code>
984
+ * method.
985
+ * @property
986
+ */
987
+ /**
988
+ * @cfg {Object} sortInfo A config object to specify the sort order in the request of a Store's
989
+ * {@link #load} operation. Note that for local sorting, the <tt>direction</tt> property is
990
+ * case-sensitive. See also {@link #remoteSort} and {@link #paramNames}.
991
+ * For example:<pre><code>
992
+ sortInfo: {
993
+ field: 'fieldName',
994
+ direction: 'ASC' // or 'DESC' (case sensitive for local sorting)
995
+ }
996
+ </code></pre>
997
+ */
998
+ /**
999
+ * @cfg {boolean} remoteSort <tt>true</tt> if sorting is to be handled by requesting the <tt>{@link #proxy Proxy}</tt>
1000
+ * to provide a refreshed version of the data object in sorted order, as opposed to sorting the Record cache
1001
+ * in place (defaults to <tt>false</tt>).
1002
+ * <p>If <tt>remoteSort</tt> is <tt>true</tt>, then clicking on a {@link Ext.grid.Column Grid Column}'s
1003
+ * {@link Ext.grid.Column#header header} causes the current page to be requested from the server appending
1004
+ * the following two parameters to the <b><tt>{@link #load params}</tt></b>:<div class="mdetail-params"><ul>
1005
+ * <li><b><tt>sort</tt></b> : String<p class="sub-desc">The <tt>name</tt> (as specified in the Record's
1006
+ * {@link Ext.data.Field Field definition}) of the field to sort on.</p></li>
1007
+ * <li><b><tt>dir</tt></b> : String<p class="sub-desc">The direction of the sort, 'ASC' or 'DESC' (case-sensitive).</p></li>
1008
+ * </ul></div></p>
1009
+ */
1010
+ remoteSort : false,
1011
+
1012
+ /**
1013
+ * @cfg {Boolean} autoDestroy <tt>true</tt> to destroy the store when the component the store is bound
1014
+ * to is destroyed (defaults to <tt>false</tt>).
1015
+ * <p><b>Note</b>: this should be set to true when using stores that are bound to only 1 component.</p>
1016
+ */
1017
+ autoDestroy : false,
1018
+
1019
+ /**
1020
+ * @cfg {Boolean} pruneModifiedRecords <tt>true</tt> to clear all modified record information each time
1021
+ * the store is loaded or when a record is removed (defaults to <tt>false</tt>). See {@link #getModifiedRecords}
1022
+ * for the accessor method to retrieve the modified records.
1023
+ */
1024
+ pruneModifiedRecords : false,
1025
+
1026
+ /**
1027
+ * Contains the last options object used as the parameter to the {@link #load} method. See {@link #load}
1028
+ * for the details of what this may contain. This may be useful for accessing any params which were used
1029
+ * to load the current Record cache.
1030
+ * @property
1031
+ */
1032
+ lastOptions : null,
1033
+
1034
+ /**
1035
+ * @cfg {Boolean} autoSave
1036
+ * <p>Defaults to <tt>true</tt> causing the store to automatically {@link #save} records to
1037
+ * the server when a record is modified (ie: becomes 'dirty'). Specify <tt>false</tt> to manually call {@link #save}
1038
+ * to send all modifiedRecords to the server.</p>
1039
+ * <br><p><b>Note</b>: each CRUD action will be sent as a separate request.</p>
1040
+ */
1041
+ autoSave : true,
1042
+
1043
+ /**
1044
+ * @cfg {Boolean} batch
1045
+ * <p>Defaults to <tt>true</tt> (unless <code>{@link #restful}:true</code>). Multiple
1046
+ * requests for each CRUD action (CREATE, READ, UPDATE and DESTROY) will be combined
1047
+ * and sent as one transaction. Only applies when <code>{@link #autoSave}</code> is set
1048
+ * to <tt>false</tt>.</p>
1049
+ * <br><p>If Store is RESTful, the DataProxy is also RESTful, and a unique transaction is
1050
+ * generated for each record.</p>
1051
+ */
1052
+ batch : true,
1053
+
1054
+ /**
1055
+ * @cfg {Boolean} restful
1056
+ * Defaults to <tt>false</tt>. Set to <tt>true</tt> to have the Store and the set
1057
+ * Proxy operate in a RESTful manner. The store will automatically generate GET, POST,
1058
+ * PUT and DELETE requests to the server. The HTTP method used for any given CRUD
1059
+ * action is described in {@link Ext.data.Api#restActions}. For additional information
1060
+ * see {@link Ext.data.DataProxy#restful}.
1061
+ * <p><b>Note</b>: if <code>{@link #restful}:true</code> <code>batch</code> will
1062
+ * internally be set to <tt>false</tt>.</p>
1063
+ */
1064
+ restful: false,
1065
+
1066
+ /**
1067
+ * @cfg {Object} paramNames
1068
+ * <p>An object containing properties which specify the names of the paging and
1069
+ * sorting parameters passed to remote servers when loading blocks of data. By default, this
1070
+ * object takes the following form:</p><pre><code>
1071
+ {
1072
+ start : 'start', // The parameter name which specifies the start row
1073
+ limit : 'limit', // The parameter name which specifies number of rows to return
1074
+ sort : 'sort', // The parameter name which specifies the column to sort on
1075
+ dir : 'dir' // The parameter name which specifies the sort direction
1076
+ }
1077
+ </code></pre>
1078
+ * <p>The server must produce the requested data block upon receipt of these parameter names.
1079
+ * If different parameter names are required, this property can be overriden using a configuration
1080
+ * property.</p>
1081
+ * <p>A {@link Ext.PagingToolbar PagingToolbar} bound to this Store uses this property to determine
1082
+ * the parameter names to use in its {@link #load requests}.
1083
+ */
1084
+ paramNames : undefined,
1085
+
1086
+ /**
1087
+ * @cfg {Object} defaultParamNames
1088
+ * Provides the default values for the {@link #paramNames} property. To globally modify the parameters
1089
+ * for all stores, this object should be changed on the store prototype.
1090
+ */
1091
+ defaultParamNames : {
1092
+ start : 'start',
1093
+ limit : 'limit',
1094
+ sort : 'sort',
1095
+ dir : 'dir'
1096
+ },
1097
+
1098
+ isDestroyed: false,
1099
+ hasMultiSort: false,
1100
+
1101
+ // private
1102
+ batchKey : '_ext_batch_',
1103
+
1104
+ constructor : function(config){
1105
+ /**
1106
+ * @property multiSort
1107
+ * @type Boolean
1108
+ * True if this store is currently sorted by more than one field/direction combination.
1109
+ */
1110
+
1111
+ /**
1112
+ * @property isDestroyed
1113
+ * @type Boolean
1114
+ * True if the store has been destroyed already. Read only
1115
+ */
1116
+
1117
+ this.data = new Ext.util.MixedCollection(false);
1118
+ this.data.getKey = function(o){
1119
+ return o.id;
1120
+ };
1121
+
1122
+
1123
+ // temporary removed-records cache
1124
+ this.removed = [];
1125
+
1126
+ if(config && config.data){
1127
+ this.inlineData = config.data;
1128
+ delete config.data;
1129
+ }
1130
+
1131
+ Ext.apply(this, config);
1132
+
1133
+ /**
1134
+ * See the <code>{@link #baseParams corresponding configuration option}</code>
1135
+ * for a description of this property.
1136
+ * To modify this property see <code>{@link #setBaseParam}</code>.
1137
+ * @property
1138
+ */
1139
+ this.baseParams = Ext.isObject(this.baseParams) ? this.baseParams : {};
1140
+
1141
+ this.paramNames = Ext.applyIf(this.paramNames || {}, this.defaultParamNames);
1142
+
1143
+ if((this.url || this.api) && !this.proxy){
1144
+ this.proxy = new Ext.data.HttpProxy({url: this.url, api: this.api});
1145
+ }
1146
+ // If Store is RESTful, so too is the DataProxy
1147
+ if (this.restful === true && this.proxy) {
1148
+ // When operating RESTfully, a unique transaction is generated for each record.
1149
+ // TODO might want to allow implemention of faux REST where batch is possible using RESTful routes only.
1150
+ this.batch = false;
1151
+ Ext.data.Api.restify(this.proxy);
1152
+ }
1153
+
1154
+ if(this.reader){ // reader passed
1155
+ if(!this.recordType){
1156
+ this.recordType = this.reader.recordType;
1157
+ }
1158
+ if(this.reader.onMetaChange){
1159
+ this.reader.onMetaChange = this.reader.onMetaChange.createSequence(this.onMetaChange, this);
1160
+ }
1161
+ if (this.writer) { // writer passed
1162
+ if (this.writer instanceof(Ext.data.DataWriter) === false) { // <-- config-object instead of instance.
1163
+ this.writer = this.buildWriter(this.writer);
1164
+ }
1165
+ this.writer.meta = this.reader.meta;
1166
+ this.pruneModifiedRecords = true;
1167
+ }
1168
+ }
1169
+
1170
+ /**
1171
+ * The {@link Ext.data.Record Record} constructor as supplied to (or created by) the
1172
+ * {@link Ext.data.DataReader Reader}. Read-only.
1173
+ * <p>If the Reader was constructed by passing in an Array of {@link Ext.data.Field} definition objects,
1174
+ * instead of a Record constructor, it will implicitly create a Record constructor from that Array (see
1175
+ * {@link Ext.data.Record}.{@link Ext.data.Record#create create} for additional details).</p>
1176
+ * <p>This property may be used to create new Records of the type held in this Store, for example:</p><pre><code>
1177
+ // create the data store
1178
+ var store = new Ext.data.ArrayStore({
1179
+ autoDestroy: true,
1180
+ fields: [
1181
+ {name: 'company'},
1182
+ {name: 'price', type: 'float'},
1183
+ {name: 'change', type: 'float'},
1184
+ {name: 'pctChange', type: 'float'},
1185
+ {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
1186
+ ]
1187
+ });
1188
+ store.loadData(myData);
1189
+
1190
+ // create the Grid
1191
+ var grid = new Ext.grid.EditorGridPanel({
1192
+ store: store,
1193
+ colModel: new Ext.grid.ColumnModel({
1194
+ columns: [
1195
+ {id:'company', header: 'Company', width: 160, dataIndex: 'company'},
1196
+ {header: 'Price', renderer: 'usMoney', dataIndex: 'price'},
1197
+ {header: 'Change', renderer: change, dataIndex: 'change'},
1198
+ {header: '% Change', renderer: pctChange, dataIndex: 'pctChange'},
1199
+ {header: 'Last Updated', width: 85,
1200
+ renderer: Ext.util.Format.dateRenderer('m/d/Y'),
1201
+ dataIndex: 'lastChange'}
1202
+ ],
1203
+ defaults: {
1204
+ sortable: true,
1205
+ width: 75
1206
+ }
1207
+ }),
1208
+ autoExpandColumn: 'company', // match the id specified in the column model
1209
+ height:350,
1210
+ width:600,
1211
+ title:'Array Grid',
1212
+ tbar: [{
1213
+ text: 'Add Record',
1214
+ handler : function(){
1215
+ var defaultData = {
1216
+ change: 0,
1217
+ company: 'New Company',
1218
+ lastChange: (new Date()).clearTime(),
1219
+ pctChange: 0,
1220
+ price: 10
1221
+ };
1222
+ var recId = 3; // provide unique id
1223
+ var p = new store.recordType(defaultData, recId); // create new record
1224
+ grid.stopEditing();
1225
+ store.{@link #insert}(0, p); // insert a new record into the store (also see {@link #add})
1226
+ grid.startEditing(0, 0);
1227
+ }
1228
+ }]
1229
+ });
1230
+ * </code></pre>
1231
+ * @property recordType
1232
+ * @type Function
1233
+ */
1234
+
1235
+ if(this.recordType){
1236
+ /**
1237
+ * A {@link Ext.util.MixedCollection MixedCollection} containing the defined {@link Ext.data.Field Field}s
1238
+ * for the {@link Ext.data.Record Records} stored in this Store. Read-only.
1239
+ * @property fields
1240
+ * @type Ext.util.MixedCollection
1241
+ */
1242
+ this.fields = this.recordType.prototype.fields;
1243
+ }
1244
+ this.modified = [];
1245
+
1246
+ this.addEvents(
1247
+ /**
1248
+ * @event datachanged
1249
+ * Fires when the data cache has changed in a bulk manner (e.g., it has been sorted, filtered, etc.) and a
1250
+ * widget that is using this Store as a Record cache should refresh its view.
1251
+ * @param {Store} this
1252
+ */
1253
+ 'datachanged',
1254
+ /**
1255
+ * @event metachange
1256
+ * Fires when this store's reader provides new metadata (fields). This is currently only supported for JsonReaders.
1257
+ * @param {Store} this
1258
+ * @param {Object} meta The JSON metadata
1259
+ */
1260
+ 'metachange',
1261
+ /**
1262
+ * @event add
1263
+ * Fires when Records have been {@link #add}ed to the Store
1264
+ * @param {Store} this
1265
+ * @param {Ext.data.Record[]} records The array of Records added
1266
+ * @param {Number} index The index at which the record(s) were added
1267
+ */
1268
+ 'add',
1269
+ /**
1270
+ * @event remove
1271
+ * Fires when a Record has been {@link #remove}d from the Store
1272
+ * @param {Store} this
1273
+ * @param {Ext.data.Record} record The Record that was removed
1274
+ * @param {Number} index The index at which the record was removed
1275
+ */
1276
+ 'remove',
1277
+ /**
1278
+ * @event update
1279
+ * Fires when a Record has been updated
1280
+ * @param {Store} this
1281
+ * @param {Ext.data.Record} record The Record that was updated
1282
+ * @param {String} operation The update operation being performed. Value may be one of:
1283
+ * <pre><code>
1284
+ Ext.data.Record.EDIT
1285
+ Ext.data.Record.REJECT
1286
+ Ext.data.Record.COMMIT
1287
+ * </code></pre>
1288
+ */
1289
+ 'update',
1290
+ /**
1291
+ * @event clear
1292
+ * Fires when the data cache has been cleared.
1293
+ * @param {Store} this
1294
+ * @param {Record[]} records The records that were cleared.
1295
+ */
1296
+ 'clear',
1297
+ /**
1298
+ * @event exception
1299
+ * <p>Fires if an exception occurs in the Proxy during a remote request.
1300
+ * This event is relayed through the corresponding {@link Ext.data.DataProxy}.
1301
+ * See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
1302
+ * for additional details.
1303
+ * @param {misc} misc See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
1304
+ * for description.
1305
+ */
1306
+ 'exception',
1307
+ /**
1308
+ * @event beforeload
1309
+ * Fires before a request is made for a new data object. If the beforeload handler returns
1310
+ * <tt>false</tt> the {@link #load} action will be canceled.
1311
+ * @param {Store} this
1312
+ * @param {Object} options The loading options that were specified (see {@link #load} for details)
1313
+ */
1314
+ 'beforeload',
1315
+ /**
1316
+ * @event load
1317
+ * Fires after a new set of Records has been loaded.
1318
+ * @param {Store} this
1319
+ * @param {Ext.data.Record[]} records The Records that were loaded
1320
+ * @param {Object} options The loading options that were specified (see {@link #load} for details)
1321
+ */
1322
+ 'load',
1323
+ /**
1324
+ * @event loadexception
1325
+ * <p>This event is <b>deprecated</b> in favor of the catch-all <b><code>{@link #exception}</code></b>
1326
+ * event instead.</p>
1327
+ * <p>This event is relayed through the corresponding {@link Ext.data.DataProxy}.
1328
+ * See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#loadexception loadexception}
1329
+ * for additional details.
1330
+ * @param {misc} misc See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#loadexception loadexception}
1331
+ * for description.
1332
+ */
1333
+ 'loadexception',
1334
+ /**
1335
+ * @event beforewrite
1336
+ * @param {Ext.data.Store} store
1337
+ * @param {String} action [Ext.data.Api.actions.create|update|destroy]
1338
+ * @param {Record/Record[]} rs The Record(s) being written.
1339
+ * @param {Object} options The loading options that were specified. Edit <code>options.params</code> to add Http parameters to the request. (see {@link #save} for details)
1340
+ * @param {Object} arg The callback's arg object passed to the {@link #request} function
1341
+ */
1342
+ 'beforewrite',
1343
+ /**
1344
+ * @event write
1345
+ * Fires if the server returns 200 after an Ext.data.Api.actions CRUD action.
1346
+ * Success of the action is determined in the <code>result['successProperty']</code>property (<b>NOTE</b> for RESTful stores,
1347
+ * a simple 20x response is sufficient for the actions "destroy" and "update". The "create" action should should return 200 along with a database pk).
1348
+ * @param {Ext.data.Store} store
1349
+ * @param {String} action [Ext.data.Api.actions.create|update|destroy]
1350
+ * @param {Object} result The 'data' picked-out out of the response for convenience.
1351
+ * @param {Ext.Direct.Transaction} res
1352
+ * @param {Record/Record[]} rs Store's records, the subject(s) of the write-action
1353
+ */
1354
+ 'write',
1355
+ /**
1356
+ * @event beforesave
1357
+ * Fires before a save action is called. A save encompasses destroying records, updating records and creating records.
1358
+ * @param {Ext.data.Store} store
1359
+ * @param {Object} data An object containing the data that is to be saved. The object will contain a key for each appropriate action,
1360
+ * with an array of records for each action.
1361
+ */
1362
+ 'beforesave',
1363
+ /**
1364
+ * @event save
1365
+ * Fires after a save is completed. A save encompasses destroying records, updating records and creating records.
1366
+ * @param {Ext.data.Store} store
1367
+ * @param {Number} batch The identifier for the batch that was saved.
1368
+ * @param {Object} data An object containing the data that is to be saved. The object will contain a key for each appropriate action,
1369
+ * with an array of records for each action.
1370
+ */
1371
+ 'save'
1372
+
1373
+ );
1374
+
1375
+ if(this.proxy){
1376
+ // TODO remove deprecated loadexception with ext-3.0.1
1377
+ this.relayEvents(this.proxy, ['loadexception', 'exception']);
1378
+ }
1379
+ // With a writer set for the Store, we want to listen to add/remove events to remotely create/destroy records.
1380
+ if (this.writer) {
1381
+ this.on({
1382
+ scope: this,
1383
+ add: this.createRecords,
1384
+ remove: this.destroyRecord,
1385
+ update: this.updateRecord,
1386
+ clear: this.onClear
1387
+ });
1388
+ }
1389
+
1390
+ this.sortToggle = {};
1391
+ if(this.sortField){
1392
+ this.setDefaultSort(this.sortField, this.sortDir);
1393
+ }else if(this.sortInfo){
1394
+ this.setDefaultSort(this.sortInfo.field, this.sortInfo.direction);
1395
+ }
1396
+
1397
+ Ext.data.Store.superclass.constructor.call(this);
1398
+
1399
+ if(this.id){
1400
+ this.storeId = this.id;
1401
+ delete this.id;
1402
+ }
1403
+ if(this.storeId){
1404
+ Ext.StoreMgr.register(this);
1405
+ }
1406
+ if(this.inlineData){
1407
+ this.loadData(this.inlineData);
1408
+ delete this.inlineData;
1409
+ }else if(this.autoLoad){
1410
+ this.load.defer(10, this, [
1411
+ typeof this.autoLoad == 'object' ?
1412
+ this.autoLoad : undefined]);
1413
+ }
1414
+ // used internally to uniquely identify a batch
1415
+ this.batchCounter = 0;
1416
+ this.batches = {};
1417
+ },
1418
+
1419
+ /**
1420
+ * builds a DataWriter instance when Store constructor is provided with a writer config-object instead of an instace.
1421
+ * @param {Object} config Writer configuration
1422
+ * @return {Ext.data.DataWriter}
1423
+ * @private
1424
+ */
1425
+ buildWriter : function(config) {
1426
+ var klass = undefined,
1427
+ type = (config.format || 'json').toLowerCase();
1428
+ switch (type) {
1429
+ case 'json':
1430
+ klass = Ext.data.JsonWriter;
1431
+ break;
1432
+ case 'xml':
1433
+ klass = Ext.data.XmlWriter;
1434
+ break;
1435
+ default:
1436
+ klass = Ext.data.JsonWriter;
1437
+ }
1438
+ return new klass(config);
1439
+ },
1440
+
1441
+ /**
1442
+ * Destroys the store.
1443
+ */
1444
+ destroy : function(){
1445
+ if(!this.isDestroyed){
1446
+ if(this.storeId){
1447
+ Ext.StoreMgr.unregister(this);
1448
+ }
1449
+ this.clearData();
1450
+ this.data = null;
1451
+ Ext.destroy(this.proxy);
1452
+ this.reader = this.writer = null;
1453
+ this.purgeListeners();
1454
+ this.isDestroyed = true;
1455
+ }
1456
+ },
1457
+
1458
+ /**
1459
+ * Add Records to the Store and fires the {@link #add} event. To add Records
1460
+ * to the store from a remote source use <code>{@link #load}({add:true})</code>.
1461
+ * See also <code>{@link #recordType}</code> and <code>{@link #insert}</code>.
1462
+ * @param {Ext.data.Record[]} records An Array of Ext.data.Record objects
1463
+ * to add to the cache. See {@link #recordType}.
1464
+ */
1465
+ add : function(records) {
1466
+ var i, len, record, index;
1467
+
1468
+ records = [].concat(records);
1469
+ if (records.length < 1) {
1470
+ return;
1471
+ }
1472
+
1473
+ for (i = 0, len = records.length; i < len; i++) {
1474
+ record = records[i];
1475
+
1476
+ record.join(this);
1477
+
1478
+ if (record.dirty || record.phantom) {
1479
+ this.modified.push(record);
1480
+ }
1481
+ }
1482
+
1483
+ index = this.data.length;
1484
+ this.data.addAll(records);
1485
+
1486
+ if (this.snapshot) {
1487
+ this.snapshot.addAll(records);
1488
+ }
1489
+
1490
+ this.fireEvent('add', this, records, index);
1491
+ },
1492
+
1493
+ /**
1494
+ * (Local sort only) Inserts the passed Record into the Store at the index where it
1495
+ * should go based on the current sort information.
1496
+ * @param {Ext.data.Record} record
1497
+ */
1498
+ addSorted : function(record){
1499
+ var index = this.findInsertIndex(record);
1500
+ this.insert(index, record);
1501
+ },
1502
+
1503
+ /**
1504
+ * @private
1505
+ * Update a record within the store with a new reference
1506
+ */
1507
+ doUpdate : function(rec){
1508
+ this.data.replace(rec.id, rec);
1509
+ if(this.snapshot){
1510
+ this.snapshot.replace(rec.id, rec);
1511
+ }
1512
+ this.fireEvent('update', this, rec, Ext.data.Record.COMMIT);
1513
+ },
1514
+
1515
+ /**
1516
+ * Remove Records from the Store and fires the {@link #remove} event.
1517
+ * @param {Ext.data.Record/Ext.data.Record[]} record The record object or array of records to remove from the cache.
1518
+ */
1519
+ remove : function(record){
1520
+ if(Ext.isArray(record)){
1521
+ Ext.each(record, function(r){
1522
+ this.remove(r);
1523
+ }, this);
1524
+ return;
1525
+ }
1526
+ var index = this.data.indexOf(record);
1527
+ if(index > -1){
1528
+ record.join(null);
1529
+ this.data.removeAt(index);
1530
+ }
1531
+ if(this.pruneModifiedRecords){
1532
+ this.modified.remove(record);
1533
+ }
1534
+ if(this.snapshot){
1535
+ this.snapshot.remove(record);
1536
+ }
1537
+ if(index > -1){
1538
+ this.fireEvent('remove', this, record, index);
1539
+ }
1540
+ },
1541
+
1542
+ /**
1543
+ * Remove a Record from the Store at the specified index. Fires the {@link #remove} event.
1544
+ * @param {Number} index The index of the record to remove.
1545
+ */
1546
+ removeAt : function(index){
1547
+ this.remove(this.getAt(index));
1548
+ },
1549
+
1550
+ /**
1551
+ * Remove all Records from the Store and fires the {@link #clear} event.
1552
+ * @param {Boolean} silent [false] Defaults to <tt>false</tt>. Set <tt>true</tt> to not fire clear event.
1553
+ */
1554
+ removeAll : function(silent){
1555
+ var items = [];
1556
+ this.each(function(rec){
1557
+ items.push(rec);
1558
+ });
1559
+ this.clearData();
1560
+ if(this.snapshot){
1561
+ this.snapshot.clear();
1562
+ }
1563
+ if(this.pruneModifiedRecords){
1564
+ this.modified = [];
1565
+ }
1566
+ if (silent !== true) { // <-- prevents write-actions when we just want to clear a store.
1567
+ this.fireEvent('clear', this, items);
1568
+ }
1569
+ },
1570
+
1571
+ // private
1572
+ onClear: function(store, records){
1573
+ Ext.each(records, function(rec, index){
1574
+ this.destroyRecord(this, rec, index);
1575
+ }, this);
1576
+ },
1577
+
1578
+ /**
1579
+ * Inserts Records into the Store at the given index and fires the {@link #add} event.
1580
+ * See also <code>{@link #add}</code> and <code>{@link #addSorted}</code>.
1581
+ * @param {Number} index The start index at which to insert the passed Records.
1582
+ * @param {Ext.data.Record[]} records An Array of Ext.data.Record objects to add to the cache.
1583
+ */
1584
+ insert : function(index, records) {
1585
+ var i, len, record;
1586
+
1587
+ records = [].concat(records);
1588
+ for (i = 0, len = records.length; i < len; i++) {
1589
+ record = records[i];
1590
+
1591
+ this.data.insert(index + i, record);
1592
+ record.join(this);
1593
+
1594
+ if (record.dirty || record.phantom) {
1595
+ this.modified.push(record);
1596
+ }
1597
+ }
1598
+
1599
+ if (this.snapshot) {
1600
+ this.snapshot.addAll(records);
1601
+ }
1602
+
1603
+ this.fireEvent('add', this, records, index);
1604
+ },
1605
+
1606
+ /**
1607
+ * Get the index within the cache of the passed Record.
1608
+ * @param {Ext.data.Record} record The Ext.data.Record object to find.
1609
+ * @return {Number} The index of the passed Record. Returns -1 if not found.
1610
+ */
1611
+ indexOf : function(record){
1612
+ return this.data.indexOf(record);
1613
+ },
1614
+
1615
+ /**
1616
+ * Get the index within the cache of the Record with the passed id.
1617
+ * @param {String} id The id of the Record to find.
1618
+ * @return {Number} The index of the Record. Returns -1 if not found.
1619
+ */
1620
+ indexOfId : function(id){
1621
+ return this.data.indexOfKey(id);
1622
+ },
1623
+
1624
+ /**
1625
+ * Get the Record with the specified id.
1626
+ * @param {String} id The id of the Record to find.
1627
+ * @return {Ext.data.Record} The Record with the passed id. Returns undefined if not found.
1628
+ */
1629
+ getById : function(id){
1630
+ return (this.snapshot || this.data).key(id);
1631
+ },
1632
+
1633
+ /**
1634
+ * Get the Record at the specified index.
1635
+ * @param {Number} index The index of the Record to find.
1636
+ * @return {Ext.data.Record} The Record at the passed index. Returns undefined if not found.
1637
+ */
1638
+ getAt : function(index){
1639
+ return this.data.itemAt(index);
1640
+ },
1641
+
1642
+ /**
1643
+ * Returns a range of Records between specified indices.
1644
+ * @param {Number} startIndex (optional) The starting index (defaults to 0)
1645
+ * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
1646
+ * @return {Ext.data.Record[]} An array of Records
1647
+ */
1648
+ getRange : function(start, end){
1649
+ return this.data.getRange(start, end);
1650
+ },
1651
+
1652
+ // private
1653
+ storeOptions : function(o){
1654
+ o = Ext.apply({}, o);
1655
+ delete o.callback;
1656
+ delete o.scope;
1657
+ this.lastOptions = o;
1658
+ },
1659
+
1660
+ // private
1661
+ clearData: function(){
1662
+ this.data.each(function(rec) {
1663
+ rec.join(null);
1664
+ });
1665
+ this.data.clear();
1666
+ },
1667
+
1668
+ /**
1669
+ * <p>Loads the Record cache from the configured <tt>{@link #proxy}</tt> using the configured <tt>{@link #reader}</tt>.</p>
1670
+ * <br><p>Notes:</p><div class="mdetail-params"><ul>
1671
+ * <li><b><u>Important</u></b>: loading is asynchronous! This call will return before the new data has been
1672
+ * loaded. To perform any post-processing where information from the load call is required, specify
1673
+ * the <tt>callback</tt> function to be called, or use a {@link Ext.util.Observable#listeners a 'load' event handler}.</li>
1674
+ * <li>If using {@link Ext.PagingToolbar remote paging}, the first load call must specify the <tt>start</tt> and <tt>limit</tt>
1675
+ * properties in the <code>options.params</code> property to establish the initial position within the
1676
+ * dataset, and the number of Records to cache on each read from the Proxy.</li>
1677
+ * <li>If using {@link #remoteSort remote sorting}, the configured <code>{@link #sortInfo}</code>
1678
+ * will be automatically included with the posted parameters according to the specified
1679
+ * <code>{@link #paramNames}</code>.</li>
1680
+ * </ul></div>
1681
+ * @param {Object} options An object containing properties which control loading options:<ul>
1682
+ * <li><b><tt>params</tt></b> :Object<div class="sub-desc"><p>An object containing properties to pass as HTTP
1683
+ * parameters to a remote data source. <b>Note</b>: <code>params</code> will override any
1684
+ * <code>{@link #baseParams}</code> of the same name.</p>
1685
+ * <p>Parameters are encoded as standard HTTP parameters using {@link Ext#urlEncode}.</p></div></li>
1686
+ * <li><b>callback</b> : Function<div class="sub-desc"><p>A function to be called after the Records
1687
+ * have been loaded. The callback is called after the load event is fired, and is passed the following arguments:<ul>
1688
+ * <li>r : Ext.data.Record[] An Array of Records loaded.</li>
1689
+ * <li>options : Options object from the load call.</li>
1690
+ * <li>success : Boolean success indicator.</li></ul></p></div></li>
1691
+ * <li><b>scope</b> : Object<div class="sub-desc"><p>Scope with which to call the callback (defaults
1692
+ * to the Store object)</p></div></li>
1693
+ * <li><b>add</b> : Boolean<div class="sub-desc"><p>Indicator to append loaded records rather than
1694
+ * replace the current cache. <b>Note</b>: see note for <tt>{@link #loadData}</tt></p></div></li>
1695
+ * </ul>
1696
+ * @return {Boolean} If the <i>developer</i> provided <tt>{@link #beforeload}</tt> event handler returns
1697
+ * <tt>false</tt>, the load call will abort and will return <tt>false</tt>; otherwise will return <tt>true</tt>.
1698
+ */
1699
+ load : function(options) {
1700
+ options = Ext.apply({}, options);
1701
+ this.storeOptions(options);
1702
+ if(this.sortInfo && this.remoteSort){
1703
+ var pn = this.paramNames;
1704
+ options.params = Ext.apply({}, options.params);
1705
+ options.params[pn.sort] = this.sortInfo.field;
1706
+ options.params[pn.dir] = this.sortInfo.direction;
1707
+ }
1708
+ try {
1709
+ return this.execute('read', null, options); // <-- null represents rs. No rs for load actions.
1710
+ } catch(e) {
1711
+ this.handleException(e);
1712
+ return false;
1713
+ }
1714
+ },
1715
+
1716
+ /**
1717
+ * updateRecord Should not be used directly. This method will be called automatically if a Writer is set.
1718
+ * Listens to 'update' event.
1719
+ * @param {Object} store
1720
+ * @param {Object} record
1721
+ * @param {Object} action
1722
+ * @private
1723
+ */
1724
+ updateRecord : function(store, record, action) {
1725
+ if (action == Ext.data.Record.EDIT && this.autoSave === true && (!record.phantom || (record.phantom && record.isValid()))) {
1726
+ this.save();
1727
+ }
1728
+ },
1729
+
1730
+ /**
1731
+ * @private
1732
+ * Should not be used directly. Store#add will call this automatically if a Writer is set
1733
+ * @param {Object} store
1734
+ * @param {Object} records
1735
+ * @param {Object} index
1736
+ */
1737
+ createRecords : function(store, records, index) {
1738
+ var modified = this.modified,
1739
+ length = records.length,
1740
+ record, i;
1741
+
1742
+ for (i = 0; i < length; i++) {
1743
+ record = records[i];
1744
+
1745
+ if (record.phantom && record.isValid()) {
1746
+ record.markDirty(); // <-- Mark new records dirty (Ed: why?)
1747
+
1748
+ if (modified.indexOf(record) == -1) {
1749
+ modified.push(record);
1750
+ }
1751
+ }
1752
+ }
1753
+ if (this.autoSave === true) {
1754
+ this.save();
1755
+ }
1756
+ },
1757
+
1758
+ /**
1759
+ * Destroys a Record. Should not be used directly. It's called by Store#remove if a Writer is set.
1760
+ * @param {Store} store this
1761
+ * @param {Ext.data.Record} record
1762
+ * @param {Number} index
1763
+ * @private
1764
+ */
1765
+ destroyRecord : function(store, record, index) {
1766
+ if (this.modified.indexOf(record) != -1) { // <-- handled already if @cfg pruneModifiedRecords == true
1767
+ this.modified.remove(record);
1768
+ }
1769
+ if (!record.phantom) {
1770
+ this.removed.push(record);
1771
+
1772
+ // since the record has already been removed from the store but the server request has not yet been executed,
1773
+ // must keep track of the last known index this record existed. If a server error occurs, the record can be
1774
+ // put back into the store. @see Store#createCallback where the record is returned when response status === false
1775
+ record.lastIndex = index;
1776
+
1777
+ if (this.autoSave === true) {
1778
+ this.save();
1779
+ }
1780
+ }
1781
+ },
1782
+
1783
+ /**
1784
+ * This method should generally not be used directly. This method is called internally
1785
+ * by {@link #load}, or if a Writer is set will be called automatically when {@link #add},
1786
+ * {@link #remove}, or {@link #update} events fire.
1787
+ * @param {String} action Action name ('read', 'create', 'update', or 'destroy')
1788
+ * @param {Record/Record[]} rs
1789
+ * @param {Object} options
1790
+ * @throws Error
1791
+ * @private
1792
+ */
1793
+ execute : function(action, rs, options, /* private */ batch) {
1794
+ // blow up if action not Ext.data.CREATE, READ, UPDATE, DESTROY
1795
+ if (!Ext.data.Api.isAction(action)) {
1796
+ throw new Ext.data.Api.Error('execute', action);
1797
+ }
1798
+ // make sure options has a fresh, new params hash
1799
+ options = Ext.applyIf(options||{}, {
1800
+ params: {}
1801
+ });
1802
+ if(batch !== undefined){
1803
+ this.addToBatch(batch);
1804
+ }
1805
+ // have to separate before-events since load has a different signature than create,destroy and save events since load does not
1806
+ // include the rs (record resultset) parameter. Capture return values from the beforeaction into doRequest flag.
1807
+ var doRequest = true;
1808
+
1809
+ if (action === 'read') {
1810
+ doRequest = this.fireEvent('beforeload', this, options);
1811
+ Ext.applyIf(options.params, this.baseParams);
1812
+ }
1813
+ else {
1814
+ // if Writer is configured as listful, force single-record rs to be [{}] instead of {}
1815
+ // TODO Move listful rendering into DataWriter where the @cfg is defined. Should be easy now.
1816
+ if (this.writer.listful === true && this.restful !== true) {
1817
+ rs = (Ext.isArray(rs)) ? rs : [rs];
1818
+ }
1819
+ // if rs has just a single record, shift it off so that Writer writes data as '{}' rather than '[{}]'
1820
+ else if (Ext.isArray(rs) && rs.length == 1) {
1821
+ rs = rs.shift();
1822
+ }
1823
+ // Write the action to options.params
1824
+ if ((doRequest = this.fireEvent('beforewrite', this, action, rs, options)) !== false) {
1825
+ this.writer.apply(options.params, this.baseParams, action, rs);
1826
+ }
1827
+ }
1828
+ if (doRequest !== false) {
1829
+ // Send request to proxy.
1830
+ if (this.writer && this.proxy.url && !this.proxy.restful && !Ext.data.Api.hasUniqueUrl(this.proxy, action)) {
1831
+ options.params.xaction = action; // <-- really old, probaby unecessary.
1832
+ }
1833
+ // Note: Up until this point we've been dealing with 'action' as a key from Ext.data.Api.actions.
1834
+ // We'll flip it now and send the value into DataProxy#request, since it's the value which maps to
1835
+ // the user's configured DataProxy#api
1836
+ // TODO Refactor all Proxies to accept an instance of Ext.data.Request (not yet defined) instead of this looooooong list
1837
+ // of params. This method is an artifact from Ext2.
1838
+ this.proxy.request(Ext.data.Api.actions[action], rs, options.params, this.reader, this.createCallback(action, rs, batch), this, options);
1839
+ }
1840
+ return doRequest;
1841
+ },
1842
+
1843
+ /**
1844
+ * Saves all pending changes to the store. If the commensurate Ext.data.Api.actions action is not configured, then
1845
+ * the configured <code>{@link #url}</code> will be used.
1846
+ * <pre>
1847
+ * change url
1848
+ * --------------- --------------------
1849
+ * removed records Ext.data.Api.actions.destroy
1850
+ * phantom records Ext.data.Api.actions.create
1851
+ * {@link #getModifiedRecords modified records} Ext.data.Api.actions.update
1852
+ * </pre>
1853
+ * @TODO: Create extensions of Error class and send associated Record with thrown exceptions.
1854
+ * e.g.: Ext.data.DataReader.Error or Ext.data.Error or Ext.data.DataProxy.Error, etc.
1855
+ * @return {Number} batch Returns a number to uniquely identify the "batch" of saves occurring. -1 will be returned
1856
+ * if there are no items to save or the save was cancelled.
1857
+ */
1858
+ save : function() {
1859
+ if (!this.writer) {
1860
+ throw new Ext.data.Store.Error('writer-undefined');
1861
+ }
1862
+
1863
+ var queue = [],
1864
+ len,
1865
+ trans,
1866
+ batch,
1867
+ data = {},
1868
+ i;
1869
+ // DESTROY: First check for removed records. Records in this.removed are guaranteed non-phantoms. @see Store#remove
1870
+ if(this.removed.length){
1871
+ queue.push(['destroy', this.removed]);
1872
+ }
1873
+
1874
+ // Check for modified records. Use a copy so Store#rejectChanges will work if server returns error.
1875
+ var rs = [].concat(this.getModifiedRecords());
1876
+ if(rs.length){
1877
+ // CREATE: Next check for phantoms within rs. splice-off and execute create.
1878
+ var phantoms = [];
1879
+ for(i = rs.length-1; i >= 0; i--){
1880
+ if(rs[i].phantom === true){
1881
+ var rec = rs.splice(i, 1).shift();
1882
+ if(rec.isValid()){
1883
+ phantoms.push(rec);
1884
+ }
1885
+ }else if(!rs[i].isValid()){ // <-- while we're here, splice-off any !isValid real records
1886
+ rs.splice(i,1);
1887
+ }
1888
+ }
1889
+ // If we have valid phantoms, create them...
1890
+ if(phantoms.length){
1891
+ queue.push(['create', phantoms]);
1892
+ }
1893
+
1894
+ // UPDATE: And finally, if we're still here after splicing-off phantoms and !isValid real records, update the rest...
1895
+ if(rs.length){
1896
+ queue.push(['update', rs]);
1897
+ }
1898
+ }
1899
+ len = queue.length;
1900
+ if(len){
1901
+ batch = ++this.batchCounter;
1902
+ for(i = 0; i < len; ++i){
1903
+ trans = queue[i];
1904
+ data[trans[0]] = trans[1];
1905
+ }
1906
+ if(this.fireEvent('beforesave', this, data) !== false){
1907
+ for(i = 0; i < len; ++i){
1908
+ trans = queue[i];
1909
+ this.doTransaction(trans[0], trans[1], batch);
1910
+ }
1911
+ return batch;
1912
+ }
1913
+ }
1914
+ return -1;
1915
+ },
1916
+
1917
+ // private. Simply wraps call to Store#execute in try/catch. Defers to Store#handleException on error. Loops if batch: false
1918
+ doTransaction : function(action, rs, batch) {
1919
+ function transaction(records) {
1920
+ try{
1921
+ this.execute(action, records, undefined, batch);
1922
+ }catch (e){
1923
+ this.handleException(e);
1924
+ }
1925
+ }
1926
+ if(this.batch === false){
1927
+ for(var i = 0, len = rs.length; i < len; i++){
1928
+ transaction.call(this, rs[i]);
1929
+ }
1930
+ }else{
1931
+ transaction.call(this, rs);
1932
+ }
1933
+ },
1934
+
1935
+ // private
1936
+ addToBatch : function(batch){
1937
+ var b = this.batches,
1938
+ key = this.batchKey + batch,
1939
+ o = b[key];
1940
+
1941
+ if(!o){
1942
+ b[key] = o = {
1943
+ id: batch,
1944
+ count: 0,
1945
+ data: {}
1946
+ };
1947
+ }
1948
+ ++o.count;
1949
+ },
1950
+
1951
+ removeFromBatch : function(batch, action, data){
1952
+ var b = this.batches,
1953
+ key = this.batchKey + batch,
1954
+ o = b[key],
1955
+ arr;
1956
+
1957
+
1958
+ if(o){
1959
+ arr = o.data[action] || [];
1960
+ o.data[action] = arr.concat(data);
1961
+ if(o.count === 1){
1962
+ data = o.data;
1963
+ delete b[key];
1964
+ this.fireEvent('save', this, batch, data);
1965
+ }else{
1966
+ --o.count;
1967
+ }
1968
+ }
1969
+ },
1970
+
1971
+ // @private callback-handler for remote CRUD actions
1972
+ // Do not override -- override loadRecords, onCreateRecords, onDestroyRecords and onUpdateRecords instead.
1973
+ createCallback : function(action, rs, batch) {
1974
+ var actions = Ext.data.Api.actions;
1975
+ return (action == 'read') ? this.loadRecords : function(data, response, success) {
1976
+ // calls: onCreateRecords | onUpdateRecords | onDestroyRecords
1977
+ this['on' + Ext.util.Format.capitalize(action) + 'Records'](success, rs, [].concat(data));
1978
+ // If success === false here, exception will have been called in DataProxy
1979
+ if (success === true) {
1980
+ this.fireEvent('write', this, action, data, response, rs);
1981
+ }
1982
+ this.removeFromBatch(batch, action, data);
1983
+ };
1984
+ },
1985
+
1986
+ // Clears records from modified array after an exception event.
1987
+ // NOTE: records are left marked dirty. Do we want to commit them even though they were not updated/realized?
1988
+ // TODO remove this method?
1989
+ clearModified : function(rs) {
1990
+ if (Ext.isArray(rs)) {
1991
+ for (var n=rs.length-1;n>=0;n--) {
1992
+ this.modified.splice(this.modified.indexOf(rs[n]), 1);
1993
+ }
1994
+ } else {
1995
+ this.modified.splice(this.modified.indexOf(rs), 1);
1996
+ }
1997
+ },
1998
+
1999
+ // remap record ids in MixedCollection after records have been realized. @see Store#onCreateRecords, @see DataReader#realize
2000
+ reMap : function(record) {
2001
+ if (Ext.isArray(record)) {
2002
+ for (var i = 0, len = record.length; i < len; i++) {
2003
+ this.reMap(record[i]);
2004
+ }
2005
+ } else {
2006
+ delete this.data.map[record._phid];
2007
+ this.data.map[record.id] = record;
2008
+ var index = this.data.keys.indexOf(record._phid);
2009
+ this.data.keys.splice(index, 1, record.id);
2010
+ delete record._phid;
2011
+ }
2012
+ },
2013
+
2014
+ // @protected onCreateRecord proxy callback for create action
2015
+ onCreateRecords : function(success, rs, data) {
2016
+ if (success === true) {
2017
+ try {
2018
+ this.reader.realize(rs, data);
2019
+ this.reMap(rs);
2020
+ }
2021
+ catch (e) {
2022
+ this.handleException(e);
2023
+ if (Ext.isArray(rs)) {
2024
+ // Recurse to run back into the try {}. DataReader#realize splices-off the rs until empty.
2025
+ this.onCreateRecords(success, rs, data);
2026
+ }
2027
+ }
2028
+ }
2029
+ },
2030
+
2031
+ // @protected, onUpdateRecords proxy callback for update action
2032
+ onUpdateRecords : function(success, rs, data) {
2033
+ if (success === true) {
2034
+ try {
2035
+ this.reader.update(rs, data);
2036
+ } catch (e) {
2037
+ this.handleException(e);
2038
+ if (Ext.isArray(rs)) {
2039
+ // Recurse to run back into the try {}. DataReader#update splices-off the rs until empty.
2040
+ this.onUpdateRecords(success, rs, data);
2041
+ }
2042
+ }
2043
+ }
2044
+ },
2045
+
2046
+ // @protected onDestroyRecords proxy callback for destroy action
2047
+ onDestroyRecords : function(success, rs, data) {
2048
+ // splice each rec out of this.removed
2049
+ rs = (rs instanceof Ext.data.Record) ? [rs] : [].concat(rs);
2050
+ for (var i=0,len=rs.length;i<len;i++) {
2051
+ this.removed.splice(this.removed.indexOf(rs[i]), 1);
2052
+ }
2053
+ if (success === false) {
2054
+ // put records back into store if remote destroy fails.
2055
+ // @TODO: Might want to let developer decide.
2056
+ for (i=rs.length-1;i>=0;i--) {
2057
+ this.insert(rs[i].lastIndex, rs[i]); // <-- lastIndex set in Store#destroyRecord
2058
+ }
2059
+ }
2060
+ },
2061
+
2062
+ // protected handleException. Possibly temporary until Ext framework has an exception-handler.
2063
+ handleException : function(e) {
2064
+ // @see core/Error.js
2065
+ Ext.handleError(e);
2066
+ },
2067
+
2068
+ /**
2069
+ * <p>Reloads the Record cache from the configured Proxy using the configured
2070
+ * {@link Ext.data.Reader Reader} and the options from the last load operation
2071
+ * performed.</p>
2072
+ * <p><b>Note</b>: see the Important note in {@link #load}.</p>
2073
+ * @param {Object} options <p>(optional) An <tt>Object</tt> containing
2074
+ * {@link #load loading options} which may override the {@link #lastOptions options}
2075
+ * used in the last {@link #load} operation. See {@link #load} for details
2076
+ * (defaults to <tt>null</tt>, in which case the {@link #lastOptions} are
2077
+ * used).</p>
2078
+ * <br><p>To add new params to the existing params:</p><pre><code>
2079
+ lastOptions = myStore.lastOptions;
2080
+ Ext.apply(lastOptions.params, {
2081
+ myNewParam: true
2082
+ });
2083
+ myStore.reload(lastOptions);
2084
+ * </code></pre>
2085
+ */
2086
+ reload : function(options){
2087
+ this.load(Ext.applyIf(options||{}, this.lastOptions));
2088
+ },
2089
+
2090
+ // private
2091
+ // Called as a callback by the Reader during a load operation.
2092
+ loadRecords : function(o, options, success){
2093
+ var i, len;
2094
+
2095
+ if (this.isDestroyed === true) {
2096
+ return;
2097
+ }
2098
+ if(!o || success === false){
2099
+ if(success !== false){
2100
+ this.fireEvent('load', this, [], options);
2101
+ }
2102
+ if(options.callback){
2103
+ options.callback.call(options.scope || this, [], options, false, o);
2104
+ }
2105
+ return;
2106
+ }
2107
+ var r = o.records, t = o.totalRecords || r.length;
2108
+ if(!options || options.add !== true){
2109
+ if(this.pruneModifiedRecords){
2110
+ this.modified = [];
2111
+ }
2112
+ for(i = 0, len = r.length; i < len; i++){
2113
+ r[i].join(this);
2114
+ }
2115
+ if(this.snapshot){
2116
+ this.data = this.snapshot;
2117
+ delete this.snapshot;
2118
+ }
2119
+ this.clearData();
2120
+ this.data.addAll(r);
2121
+ this.totalLength = t;
2122
+ this.applySort();
2123
+ this.fireEvent('datachanged', this);
2124
+ }else{
2125
+ var toAdd = [],
2126
+ rec,
2127
+ cnt = 0;
2128
+ for(i = 0, len = r.length; i < len; ++i){
2129
+ rec = r[i];
2130
+ if(this.indexOfId(rec.id) > -1){
2131
+ this.doUpdate(rec);
2132
+ }else{
2133
+ toAdd.push(rec);
2134
+ ++cnt;
2135
+ }
2136
+ }
2137
+ this.totalLength = Math.max(t, this.data.length + cnt);
2138
+ this.add(toAdd);
2139
+ }
2140
+ this.fireEvent('load', this, r, options);
2141
+ if(options.callback){
2142
+ options.callback.call(options.scope || this, r, options, true);
2143
+ }
2144
+ },
2145
+
2146
+ /**
2147
+ * Loads data from a passed data block and fires the {@link #load} event. A {@link Ext.data.Reader Reader}
2148
+ * which understands the format of the data must have been configured in the constructor.
2149
+ * @param {Object} data The data block from which to read the Records. The format of the data expected
2150
+ * is dependent on the type of {@link Ext.data.Reader Reader} that is configured and should correspond to
2151
+ * that {@link Ext.data.Reader Reader}'s <tt>{@link Ext.data.Reader#readRecords}</tt> parameter.
2152
+ * @param {Boolean} append (Optional) <tt>true</tt> to append the new Records rather the default to replace
2153
+ * the existing cache.
2154
+ * <b>Note</b>: that Records in a Store are keyed by their {@link Ext.data.Record#id id}, so added Records
2155
+ * with ids which are already present in the Store will <i>replace</i> existing Records. Only Records with
2156
+ * new, unique ids will be added.
2157
+ */
2158
+ loadData : function(o, append){
2159
+ var r = this.reader.readRecords(o);
2160
+ this.loadRecords(r, {add: append}, true);
2161
+ },
2162
+
2163
+ /**
2164
+ * Gets the number of cached records.
2165
+ * <p>If using paging, this may not be the total size of the dataset. If the data object
2166
+ * used by the Reader contains the dataset size, then the {@link #getTotalCount} function returns
2167
+ * the dataset size. <b>Note</b>: see the Important note in {@link #load}.</p>
2168
+ * @return {Number} The number of Records in the Store's cache.
2169
+ */
2170
+ getCount : function(){
2171
+ return this.data.length || 0;
2172
+ },
2173
+
2174
+ /**
2175
+ * Gets the total number of records in the dataset as returned by the server.
2176
+ * <p>If using paging, for this to be accurate, the data object used by the {@link #reader Reader}
2177
+ * must contain the dataset size. For remote data sources, the value for this property
2178
+ * (<tt>totalProperty</tt> for {@link Ext.data.JsonReader JsonReader},
2179
+ * <tt>totalRecords</tt> for {@link Ext.data.XmlReader XmlReader}) shall be returned by a query on the server.
2180
+ * <b>Note</b>: see the Important note in {@link #load}.</p>
2181
+ * @return {Number} The number of Records as specified in the data object passed to the Reader
2182
+ * by the Proxy.
2183
+ * <p><b>Note</b>: this value is not updated when changing the contents of the Store locally.</p>
2184
+ */
2185
+ getTotalCount : function(){
2186
+ return this.totalLength || 0;
2187
+ },
2188
+
2189
+ /**
2190
+ * Returns an object describing the current sort state of this Store.
2191
+ * @return {Object} The sort state of the Store. An object with two properties:<ul>
2192
+ * <li><b>field : String<p class="sub-desc">The name of the field by which the Records are sorted.</p></li>
2193
+ * <li><b>direction : String<p class="sub-desc">The sort order, 'ASC' or 'DESC' (case-sensitive).</p></li>
2194
+ * </ul>
2195
+ * See <tt>{@link #sortInfo}</tt> for additional details.
2196
+ */
2197
+ getSortState : function(){
2198
+ return this.sortInfo;
2199
+ },
2200
+
2201
+ /**
2202
+ * @private
2203
+ * Invokes sortData if we have sortInfo to sort on and are not sorting remotely
2204
+ */
2205
+ applySort : function(){
2206
+ if ((this.sortInfo || this.multiSortInfo) && !this.remoteSort) {
2207
+ this.sortData();
2208
+ }
2209
+ },
2210
+
2211
+ /**
2212
+ * @private
2213
+ * Performs the actual sorting of data. This checks to see if we currently have a multi sort or not. It applies
2214
+ * each sorter field/direction pair in turn by building an OR'ed master sorting function and running it against
2215
+ * the full dataset
2216
+ */
2217
+ sortData : function() {
2218
+ var sortInfo = this.hasMultiSort ? this.multiSortInfo : this.sortInfo,
2219
+ direction = sortInfo.direction || "ASC",
2220
+ sorters = sortInfo.sorters,
2221
+ sortFns = [];
2222
+
2223
+ //if we just have a single sorter, pretend it's the first in an array
2224
+ if (!this.hasMultiSort) {
2225
+ sorters = [{direction: direction, field: sortInfo.field}];
2226
+ }
2227
+
2228
+ //create a sorter function for each sorter field/direction combo
2229
+ for (var i=0, j = sorters.length; i < j; i++) {
2230
+ sortFns.push(this.createSortFunction(sorters[i].field, sorters[i].direction));
2231
+ }
2232
+
2233
+ if (sortFns.length == 0) {
2234
+ return;
2235
+ }
2236
+
2237
+ //the direction modifier is multiplied with the result of the sorting functions to provide overall sort direction
2238
+ //(as opposed to direction per field)
2239
+ var directionModifier = direction.toUpperCase() == "DESC" ? -1 : 1;
2240
+
2241
+ //create a function which ORs each sorter together to enable multi-sort
2242
+ var fn = function(r1, r2) {
2243
+ var result = sortFns[0].call(this, r1, r2);
2244
+
2245
+ //if we have more than one sorter, OR any additional sorter functions together
2246
+ if (sortFns.length > 1) {
2247
+ for (var i=1, j = sortFns.length; i < j; i++) {
2248
+ result = result || sortFns[i].call(this, r1, r2);
2249
+ }
2250
+ }
2251
+
2252
+ return directionModifier * result;
2253
+ };
2254
+
2255
+ //sort the data
2256
+ this.data.sort(direction, fn);
2257
+ if (this.snapshot && this.snapshot != this.data) {
2258
+ this.snapshot.sort(direction, fn);
2259
+ }
2260
+ },
2261
+
2262
+ /**
2263
+ * @private
2264
+ * Creates and returns a function which sorts an array by the given field and direction
2265
+ * @param {String} field The field to create the sorter for
2266
+ * @param {String} direction The direction to sort by (defaults to "ASC")
2267
+ * @return {Function} A function which sorts by the field/direction combination provided
2268
+ */
2269
+ createSortFunction: function(field, direction) {
2270
+ direction = direction || "ASC";
2271
+ var directionModifier = direction.toUpperCase() == "DESC" ? -1 : 1;
2272
+
2273
+ var sortType = this.fields.get(field).sortType;
2274
+
2275
+ //create a comparison function. Takes 2 records, returns 1 if record 1 is greater,
2276
+ //-1 if record 2 is greater or 0 if they are equal
2277
+ return function(r1, r2) {
2278
+ var v1 = sortType(r1.data[field]),
2279
+ v2 = sortType(r2.data[field]);
2280
+
2281
+ return directionModifier * (v1 > v2 ? 1 : (v1 < v2 ? -1 : 0));
2282
+ };
2283
+ },
2284
+
2285
+ /**
2286
+ * Sets the default sort column and order to be used by the next {@link #load} operation.
2287
+ * @param {String} fieldName The name of the field to sort by.
2288
+ * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
2289
+ */
2290
+ setDefaultSort : function(field, dir) {
2291
+ dir = dir ? dir.toUpperCase() : 'ASC';
2292
+ this.sortInfo = {field: field, direction: dir};
2293
+ this.sortToggle[field] = dir;
2294
+ },
2295
+
2296
+ /**
2297
+ * Sort the Records.
2298
+ * If remote sorting is used, the sort is performed on the server, and the cache is reloaded. If local
2299
+ * sorting is used, the cache is sorted internally. See also {@link #remoteSort} and {@link #paramNames}.
2300
+ * This function accepts two call signatures - pass in a field name as the first argument to sort on a single
2301
+ * field, or pass in an array of sort configuration objects to sort by multiple fields.
2302
+ * Single sort example:
2303
+ * store.sort('name', 'ASC');
2304
+ * Multi sort example:
2305
+ * store.sort([
2306
+ * {
2307
+ * field : 'name',
2308
+ * direction: 'ASC'
2309
+ * },
2310
+ * {
2311
+ * field : 'salary',
2312
+ * direction: 'DESC'
2313
+ * }
2314
+ * ], 'ASC');
2315
+ * In this second form, the sort configs are applied in order, with later sorters sorting within earlier sorters' results.
2316
+ * For example, if two records with the same name are present they will also be sorted by salary if given the sort configs
2317
+ * above. Any number of sort configs can be added.
2318
+ * @param {String/Array} fieldName The name of the field to sort by, or an array of ordered sort configs
2319
+ * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
2320
+ */
2321
+ sort : function(fieldName, dir) {
2322
+ if (Ext.isArray(arguments[0])) {
2323
+ return this.multiSort.call(this, fieldName, dir);
2324
+ } else {
2325
+ return this.singleSort(fieldName, dir);
2326
+ }
2327
+ },
2328
+
2329
+ /**
2330
+ * Sorts the store contents by a single field and direction. This is called internally by {@link sort} and would
2331
+ * not usually be called manually
2332
+ * @param {String} fieldName The name of the field to sort by.
2333
+ * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
2334
+ */
2335
+ singleSort: function(fieldName, dir) {
2336
+ var field = this.fields.get(fieldName);
2337
+ if (!field) {
2338
+ return false;
2339
+ }
2340
+
2341
+ var name = field.name,
2342
+ sortInfo = this.sortInfo || null,
2343
+ sortToggle = this.sortToggle ? this.sortToggle[name] : null;
2344
+
2345
+ if (!dir) {
2346
+ if (sortInfo && sortInfo.field == name) { // toggle sort dir
2347
+ dir = (this.sortToggle[name] || 'ASC').toggle('ASC', 'DESC');
2348
+ } else {
2349
+ dir = field.sortDir;
2350
+ }
2351
+ }
2352
+
2353
+ this.sortToggle[name] = dir;
2354
+ this.sortInfo = {field: name, direction: dir};
2355
+ this.hasMultiSort = false;
2356
+
2357
+ if (this.remoteSort) {
2358
+ if (!this.load(this.lastOptions)) {
2359
+ if (sortToggle) {
2360
+ this.sortToggle[name] = sortToggle;
2361
+ }
2362
+ if (sortInfo) {
2363
+ this.sortInfo = sortInfo;
2364
+ }
2365
+ }
2366
+ } else {
2367
+ this.applySort();
2368
+ this.fireEvent('datachanged', this);
2369
+ }
2370
+ return true;
2371
+ },
2372
+
2373
+ /**
2374
+ * Sorts the contents of this store by multiple field/direction sorters. This is called internally by {@link sort}
2375
+ * and would not usually be called manually.
2376
+ * Multi sorting only currently applies to local datasets - multiple sort data is not currently sent to a proxy
2377
+ * if remoteSort is used.
2378
+ * @param {Array} sorters Array of sorter objects (field and direction)
2379
+ * @param {String} direction Overall direction to sort the ordered results by (defaults to "ASC")
2380
+ */
2381
+ multiSort: function(sorters, direction) {
2382
+ this.hasMultiSort = true;
2383
+ direction = direction || "ASC";
2384
+
2385
+ //toggle sort direction
2386
+ if (this.multiSortInfo && direction == this.multiSortInfo.direction) {
2387
+ direction = direction.toggle("ASC", "DESC");
2388
+ }
2389
+
2390
+ /**
2391
+ * Object containing overall sort direction and an ordered array of sorter configs used when sorting on multiple fields
2392
+ * @property multiSortInfo
2393
+ * @type Object
2394
+ */
2395
+ this.multiSortInfo = {
2396
+ sorters : sorters,
2397
+ direction: direction
2398
+ };
2399
+
2400
+ if (this.remoteSort) {
2401
+ this.singleSort(sorters[0].field, sorters[0].direction);
2402
+
2403
+ } else {
2404
+ this.applySort();
2405
+ this.fireEvent('datachanged', this);
2406
+ }
2407
+ },
2408
+
2409
+ /**
2410
+ * Calls the specified function for each of the {@link Ext.data.Record Records} in the cache.
2411
+ * @param {Function} fn The function to call. The {@link Ext.data.Record Record} is passed as the first parameter.
2412
+ * Returning <tt>false</tt> aborts and exits the iteration.
2413
+ * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed.
2414
+ * Defaults to the current {@link Ext.data.Record Record} in the iteration.
2415
+ */
2416
+ each : function(fn, scope){
2417
+ this.data.each(fn, scope);
2418
+ },
2419
+
2420
+ /**
2421
+ * Gets all {@link Ext.data.Record records} modified since the last commit. Modified records are
2422
+ * persisted across load operations (e.g., during paging). <b>Note</b>: deleted records are not
2423
+ * included. See also <tt>{@link #pruneModifiedRecords}</tt> and
2424
+ * {@link Ext.data.Record}<tt>{@link Ext.data.Record#markDirty markDirty}.</tt>.
2425
+ * @return {Ext.data.Record[]} An array of {@link Ext.data.Record Records} containing outstanding
2426
+ * modifications. To obtain modified fields within a modified record see
2427
+ *{@link Ext.data.Record}<tt>{@link Ext.data.Record#modified modified}.</tt>.
2428
+ */
2429
+ getModifiedRecords : function(){
2430
+ return this.modified;
2431
+ },
2432
+
2433
+ /**
2434
+ * Sums the value of <tt>property</tt> for each {@link Ext.data.Record record} between <tt>start</tt>
2435
+ * and <tt>end</tt> and returns the result.
2436
+ * @param {String} property A field in each record
2437
+ * @param {Number} start (optional) The record index to start at (defaults to <tt>0</tt>)
2438
+ * @param {Number} end (optional) The last record index to include (defaults to length - 1)
2439
+ * @return {Number} The sum
2440
+ */
2441
+ sum : function(property, start, end){
2442
+ var rs = this.data.items, v = 0;
2443
+ start = start || 0;
2444
+ end = (end || end === 0) ? end : rs.length-1;
2445
+
2446
+ for(var i = start; i <= end; i++){
2447
+ v += (rs[i].data[property] || 0);
2448
+ }
2449
+ return v;
2450
+ },
2451
+
2452
+ /**
2453
+ * @private
2454
+ * Returns a filter function used to test a the given property's value. Defers most of the work to
2455
+ * Ext.util.MixedCollection's createValueMatcher function
2456
+ * @param {String} property The property to create the filter function for
2457
+ * @param {String/RegExp} value The string/regex to compare the property value to
2458
+ * @param {Boolean} anyMatch True if we don't care if the filter value is not the full value (defaults to false)
2459
+ * @param {Boolean} caseSensitive True to create a case-sensitive regex (defaults to false)
2460
+ * @param {Boolean} exactMatch True to force exact match (^ and $ characters added to the regex). Defaults to false. Ignored if anyMatch is true.
2461
+ */
2462
+ createFilterFn : function(property, value, anyMatch, caseSensitive, exactMatch){
2463
+ if(Ext.isEmpty(value, false)){
2464
+ return false;
2465
+ }
2466
+ value = this.data.createValueMatcher(value, anyMatch, caseSensitive, exactMatch);
2467
+ return function(r) {
2468
+ return value.test(r.data[property]);
2469
+ };
2470
+ },
2471
+
2472
+ /**
2473
+ * @private
2474
+ * Given an array of filter functions (each with optional scope), constructs and returns a single function that returns
2475
+ * the result of all of the filters ANDed together
2476
+ * @param {Array} filters The array of filter objects (each object should contain an 'fn' and optional scope)
2477
+ * @return {Function} The multiple filter function
2478
+ */
2479
+ createMultipleFilterFn: function(filters) {
2480
+ return function(record) {
2481
+ var isMatch = true;
2482
+
2483
+ for (var i=0, j = filters.length; i < j; i++) {
2484
+ var filter = filters[i],
2485
+ fn = filter.fn,
2486
+ scope = filter.scope;
2487
+
2488
+ isMatch = isMatch && fn.call(scope, record);
2489
+ }
2490
+
2491
+ return isMatch;
2492
+ };
2493
+ },
2494
+
2495
+ /**
2496
+ * Filter the {@link Ext.data.Record records} by a specified property. Alternatively, pass an array of filter
2497
+ * options to filter by more than one property.
2498
+ * Single filter example:
2499
+ * store.filter('name', 'Ed', true, true); //finds all records containing the substring 'Ed'
2500
+ * Multiple filter example:
2501
+ * <pre><code>
2502
+ * store.filter([
2503
+ * {
2504
+ * property : 'name',
2505
+ * value : 'Ed',
2506
+ * anyMatch : true, //optional, defaults to true
2507
+ * caseSensitive: true //optional, defaults to true
2508
+ * },
2509
+ *
2510
+ * //filter functions can also be passed
2511
+ * {
2512
+ * fn : function(record) {
2513
+ * return record.get('age') == 24
2514
+ * },
2515
+ * scope: this
2516
+ * }
2517
+ * ]);
2518
+ * </code></pre>
2519
+ * @param {String|Array} field A field on your records, or an array containing multiple filter options
2520
+ * @param {String/RegExp} value Either a string that the field should begin with, or a RegExp to test
2521
+ * against the field.
2522
+ * @param {Boolean} anyMatch (optional) <tt>true</tt> to match any part not just the beginning
2523
+ * @param {Boolean} caseSensitive (optional) <tt>true</tt> for case sensitive comparison
2524
+ * @param {Boolean} exactMatch True to force exact match (^ and $ characters added to the regex). Defaults to false. Ignored if anyMatch is true.
2525
+ */
2526
+ filter : function(property, value, anyMatch, caseSensitive, exactMatch){
2527
+ var fn;
2528
+ //we can accept an array of filter objects, or a single filter object - normalize them here
2529
+ if (Ext.isObject(property)) {
2530
+ property = [property];
2531
+ }
2532
+
2533
+ if (Ext.isArray(property)) {
2534
+ var filters = [];
2535
+
2536
+ //normalize the filters passed into an array of filter functions
2537
+ for (var i=0, j = property.length; i < j; i++) {
2538
+ var filter = property[i],
2539
+ func = filter.fn,
2540
+ scope = filter.scope || this;
2541
+
2542
+ //if we weren't given a filter function, construct one now
2543
+ if (!Ext.isFunction(func)) {
2544
+ func = this.createFilterFn(filter.property, filter.value, filter.anyMatch, filter.caseSensitive, filter.exactMatch);
2545
+ }
2546
+
2547
+ filters.push({fn: func, scope: scope});
2548
+ }
2549
+
2550
+ fn = this.createMultipleFilterFn(filters);
2551
+ } else {
2552
+ //classic single property filter
2553
+ fn = this.createFilterFn(property, value, anyMatch, caseSensitive, exactMatch);
2554
+ }
2555
+
2556
+ return fn ? this.filterBy(fn) : this.clearFilter();
2557
+ },
2558
+
2559
+ /**
2560
+ * Filter by a function. The specified function will be called for each
2561
+ * Record in this Store. If the function returns <tt>true</tt> the Record is included,
2562
+ * otherwise it is filtered out.
2563
+ * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
2564
+ * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
2565
+ * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
2566
+ * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
2567
+ * </ul>
2568
+ * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
2569
+ */
2570
+ filterBy : function(fn, scope){
2571
+ this.snapshot = this.snapshot || this.data;
2572
+ this.data = this.queryBy(fn, scope || this);
2573
+ this.fireEvent('datachanged', this);
2574
+ },
2575
+
2576
+ /**
2577
+ * Revert to a view of the Record cache with no filtering applied.
2578
+ * @param {Boolean} suppressEvent If <tt>true</tt> the filter is cleared silently without firing the
2579
+ * {@link #datachanged} event.
2580
+ */
2581
+ clearFilter : function(suppressEvent){
2582
+ if(this.isFiltered()){
2583
+ this.data = this.snapshot;
2584
+ delete this.snapshot;
2585
+ if(suppressEvent !== true){
2586
+ this.fireEvent('datachanged', this);
2587
+ }
2588
+ }
2589
+ },
2590
+
2591
+ /**
2592
+ * Returns true if this store is currently filtered
2593
+ * @return {Boolean}
2594
+ */
2595
+ isFiltered : function(){
2596
+ return !!this.snapshot && this.snapshot != this.data;
2597
+ },
2598
+
2599
+ /**
2600
+ * Query the records by a specified property.
2601
+ * @param {String} field A field on your records
2602
+ * @param {String/RegExp} value Either a string that the field
2603
+ * should begin with, or a RegExp to test against the field.
2604
+ * @param {Boolean} anyMatch (optional) True to match any part not just the beginning
2605
+ * @param {Boolean} caseSensitive (optional) True for case sensitive comparison
2606
+ * @return {MixedCollection} Returns an Ext.util.MixedCollection of the matched records
2607
+ */
2608
+ query : function(property, value, anyMatch, caseSensitive){
2609
+ var fn = this.createFilterFn(property, value, anyMatch, caseSensitive);
2610
+ return fn ? this.queryBy(fn) : this.data.clone();
2611
+ },
2612
+
2613
+ /**
2614
+ * Query the cached records in this Store using a filtering function. The specified function
2615
+ * will be called with each record in this Store. If the function returns <tt>true</tt> the record is
2616
+ * included in the results.
2617
+ * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
2618
+ * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
2619
+ * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
2620
+ * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
2621
+ * </ul>
2622
+ * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
2623
+ * @return {MixedCollection} Returns an Ext.util.MixedCollection of the matched records
2624
+ **/
2625
+ queryBy : function(fn, scope){
2626
+ var data = this.snapshot || this.data;
2627
+ return data.filterBy(fn, scope||this);
2628
+ },
2629
+
2630
+ /**
2631
+ * Finds the index of the first matching Record in this store by a specific field value.
2632
+ * @param {String} fieldName The name of the Record field to test.
2633
+ * @param {String/RegExp} value Either a string that the field value
2634
+ * should begin with, or a RegExp to test against the field.
2635
+ * @param {Number} startIndex (optional) The index to start searching at
2636
+ * @param {Boolean} anyMatch (optional) True to match any part of the string, not just the beginning
2637
+ * @param {Boolean} caseSensitive (optional) True for case sensitive comparison
2638
+ * @return {Number} The matched index or -1
2639
+ */
2640
+ find : function(property, value, start, anyMatch, caseSensitive){
2641
+ var fn = this.createFilterFn(property, value, anyMatch, caseSensitive);
2642
+ return fn ? this.data.findIndexBy(fn, null, start) : -1;
2643
+ },
2644
+
2645
+ /**
2646
+ * Finds the index of the first matching Record in this store by a specific field value.
2647
+ * @param {String} fieldName The name of the Record field to test.
2648
+ * @param {Mixed} value The value to match the field against.
2649
+ * @param {Number} startIndex (optional) The index to start searching at
2650
+ * @return {Number} The matched index or -1
2651
+ */
2652
+ findExact: function(property, value, start){
2653
+ return this.data.findIndexBy(function(rec){
2654
+ return rec.get(property) === value;
2655
+ }, this, start);
2656
+ },
2657
+
2658
+ /**
2659
+ * Find the index of the first matching Record in this Store by a function.
2660
+ * If the function returns <tt>true</tt> it is considered a match.
2661
+ * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
2662
+ * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
2663
+ * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
2664
+ * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
2665
+ * </ul>
2666
+ * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
2667
+ * @param {Number} startIndex (optional) The index to start searching at
2668
+ * @return {Number} The matched index or -1
2669
+ */
2670
+ findBy : function(fn, scope, start){
2671
+ return this.data.findIndexBy(fn, scope, start);
2672
+ },
2673
+
2674
+ /**
2675
+ * Collects unique values for a particular dataIndex from this store.
2676
+ * @param {String} dataIndex The property to collect
2677
+ * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
2678
+ * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
2679
+ * @return {Array} An array of the unique values
2680
+ **/
2681
+ collect : function(dataIndex, allowNull, bypassFilter){
2682
+ var d = (bypassFilter === true && this.snapshot) ?
2683
+ this.snapshot.items : this.data.items;
2684
+ var v, sv, r = [], l = {};
2685
+ for(var i = 0, len = d.length; i < len; i++){
2686
+ v = d[i].data[dataIndex];
2687
+ sv = String(v);
2688
+ if((allowNull || !Ext.isEmpty(v)) && !l[sv]){
2689
+ l[sv] = true;
2690
+ r[r.length] = v;
2691
+ }
2692
+ }
2693
+ return r;
2694
+ },
2695
+
2696
+ // private
2697
+ afterEdit : function(record){
2698
+ if(this.modified.indexOf(record) == -1){
2699
+ this.modified.push(record);
2700
+ }
2701
+ this.fireEvent('update', this, record, Ext.data.Record.EDIT);
2702
+ },
2703
+
2704
+ // private
2705
+ afterReject : function(record){
2706
+ this.modified.remove(record);
2707
+ this.fireEvent('update', this, record, Ext.data.Record.REJECT);
2708
+ },
2709
+
2710
+ // private
2711
+ afterCommit : function(record){
2712
+ this.modified.remove(record);
2713
+ this.fireEvent('update', this, record, Ext.data.Record.COMMIT);
2714
+ },
2715
+
2716
+ /**
2717
+ * Commit all Records with {@link #getModifiedRecords outstanding changes}. To handle updates for changes,
2718
+ * subscribe to the Store's {@link #update update event}, and perform updating when the third parameter is
2719
+ * Ext.data.Record.COMMIT.
2720
+ */
2721
+ commitChanges : function(){
2722
+ var modified = this.modified.slice(0),
2723
+ length = modified.length,
2724
+ i;
2725
+
2726
+ for (i = 0; i < length; i++){
2727
+ modified[i].commit();
2728
+ }
2729
+
2730
+ this.modified = [];
2731
+ this.removed = [];
2732
+ },
2733
+
2734
+ /**
2735
+ * {@link Ext.data.Record#reject Reject} outstanding changes on all {@link #getModifiedRecords modified records}.
2736
+ */
2737
+ rejectChanges : function() {
2738
+ var modified = this.modified.slice(0),
2739
+ removed = this.removed.slice(0).reverse(),
2740
+ mLength = modified.length,
2741
+ rLength = removed.length,
2742
+ i;
2743
+
2744
+ for (i = 0; i < mLength; i++) {
2745
+ modified[i].reject();
2746
+ }
2747
+
2748
+ for (i = 0; i < rLength; i++) {
2749
+ this.insert(removed[i].lastIndex || 0, removed[i]);
2750
+ removed[i].reject();
2751
+ }
2752
+
2753
+ this.modified = [];
2754
+ this.removed = [];
2755
+ },
2756
+
2757
+ // private
2758
+ onMetaChange : function(meta){
2759
+ this.recordType = this.reader.recordType;
2760
+ this.fields = this.recordType.prototype.fields;
2761
+ delete this.snapshot;
2762
+ if(this.reader.meta.sortInfo){
2763
+ this.sortInfo = this.reader.meta.sortInfo;
2764
+ }else if(this.sortInfo && !this.fields.get(this.sortInfo.field)){
2765
+ delete this.sortInfo;
2766
+ }
2767
+ if(this.writer){
2768
+ this.writer.meta = this.reader.meta;
2769
+ }
2770
+ this.modified = [];
2771
+ this.fireEvent('metachange', this, this.reader.meta);
2772
+ },
2773
+
2774
+ // private
2775
+ findInsertIndex : function(record){
2776
+ this.suspendEvents();
2777
+ var data = this.data.clone();
2778
+ this.data.add(record);
2779
+ this.applySort();
2780
+ var index = this.data.indexOf(record);
2781
+ this.data = data;
2782
+ this.resumeEvents();
2783
+ return index;
2784
+ },
2785
+
2786
+ /**
2787
+ * Set the value for a property name in this store's {@link #baseParams}. Usage:</p><pre><code>
2788
+ myStore.setBaseParam('foo', {bar:3});
2789
+ </code></pre>
2790
+ * @param {String} name Name of the property to assign
2791
+ * @param {Mixed} value Value to assign the <tt>name</tt>d property
2792
+ **/
2793
+ setBaseParam : function (name, value){
2794
+ this.baseParams = this.baseParams || {};
2795
+ this.baseParams[name] = value;
2796
+ }
2797
+ });
2798
+
2799
+ Ext.reg('store', Ext.data.Store);
2800
+
2801
+ /**
2802
+ * @class Ext.data.Store.Error
2803
+ * @extends Ext.Error
2804
+ * Store Error extension.
2805
+ * @param {String} name
2806
+ */
2807
+ Ext.data.Store.Error = Ext.extend(Ext.Error, {
2808
+ name: 'Ext.data.Store'
2809
+ });
2810
+ Ext.apply(Ext.data.Store.Error.prototype, {
2811
+ lang: {
2812
+ 'writer-undefined' : 'Attempted to execute a write-action without a DataWriter installed.'
2813
+ }
2814
+ });
2815
+ /**
2816
+ * @class Ext.data.Field
2817
+ * <p>This class encapsulates the field definition information specified in the field definition objects
2818
+ * passed to {@link Ext.data.Record#create}.</p>
2819
+ * <p>Developers do not need to instantiate this class. Instances are created by {@link Ext.data.Record.create}
2820
+ * and cached in the {@link Ext.data.Record#fields fields} property of the created Record constructor's <b>prototype.</b></p>
2821
+ */
2822
+ Ext.data.Field = Ext.extend(Object, {
2823
+
2824
+ constructor : function(config){
2825
+ if(Ext.isString(config)){
2826
+ config = {name: config};
2827
+ }
2828
+ Ext.apply(this, config);
2829
+
2830
+ var types = Ext.data.Types,
2831
+ st = this.sortType,
2832
+ t;
2833
+
2834
+ if(this.type){
2835
+ if(Ext.isString(this.type)){
2836
+ this.type = Ext.data.Types[this.type.toUpperCase()] || types.AUTO;
2837
+ }
2838
+ }else{
2839
+ this.type = types.AUTO;
2840
+ }
2841
+
2842
+ // named sortTypes are supported, here we look them up
2843
+ if(Ext.isString(st)){
2844
+ this.sortType = Ext.data.SortTypes[st];
2845
+ }else if(Ext.isEmpty(st)){
2846
+ this.sortType = this.type.sortType;
2847
+ }
2848
+
2849
+ if(!this.convert){
2850
+ this.convert = this.type.convert;
2851
+ }
2852
+ },
2853
+
2854
+ /**
2855
+ * @cfg {String} name
2856
+ * The name by which the field is referenced within the Record. This is referenced by, for example,
2857
+ * the <code>dataIndex</code> property in column definition objects passed to {@link Ext.grid.ColumnModel}.
2858
+ * <p>Note: In the simplest case, if no properties other than <code>name</code> are required, a field
2859
+ * definition may consist of just a String for the field name.</p>
2860
+ */
2861
+ /**
2862
+ * @cfg {Mixed} type
2863
+ * (Optional) The data type for automatic conversion from received data to the <i>stored</i> value if <code>{@link Ext.data.Field#convert convert}</code>
2864
+ * has not been specified. This may be specified as a string value. Possible values are
2865
+ * <div class="mdetail-params"><ul>
2866
+ * <li>auto (Default, implies no conversion)</li>
2867
+ * <li>string</li>
2868
+ * <li>int</li>
2869
+ * <li>float</li>
2870
+ * <li>boolean</li>
2871
+ * <li>date</li></ul></div>
2872
+ * <p>This may also be specified by referencing a member of the {@link Ext.data.Types} class.</p>
2873
+ * <p>Developers may create their own application-specific data types by defining new members of the
2874
+ * {@link Ext.data.Types} class.</p>
2875
+ */
2876
+ /**
2877
+ * @cfg {Function} convert
2878
+ * (Optional) A function which converts the value provided by the Reader into an object that will be stored
2879
+ * in the Record. It is passed the following parameters:<div class="mdetail-params"><ul>
2880
+ * <li><b>v</b> : Mixed<div class="sub-desc">The data value as read by the Reader, if undefined will use
2881
+ * the configured <code>{@link Ext.data.Field#defaultValue defaultValue}</code>.</div></li>
2882
+ * <li><b>rec</b> : Mixed<div class="sub-desc">The data object containing the row as read by the Reader.
2883
+ * Depending on the Reader type, this could be an Array ({@link Ext.data.ArrayReader ArrayReader}), an object
2884
+ * ({@link Ext.data.JsonReader JsonReader}), or an XML element ({@link Ext.data.XMLReader XMLReader}).</div></li>
2885
+ * </ul></div>
2886
+ * <pre><code>
2887
+ // example of convert function
2888
+ function fullName(v, record){
2889
+ return record.name.last + ', ' + record.name.first;
2890
+ }
2891
+
2892
+ function location(v, record){
2893
+ return !record.city ? '' : (record.city + ', ' + record.state);
2894
+ }
2895
+
2896
+ var Dude = Ext.data.Record.create([
2897
+ {name: 'fullname', convert: fullName},
2898
+ {name: 'firstname', mapping: 'name.first'},
2899
+ {name: 'lastname', mapping: 'name.last'},
2900
+ {name: 'city', defaultValue: 'homeless'},
2901
+ 'state',
2902
+ {name: 'location', convert: location}
2903
+ ]);
2904
+
2905
+ // create the data store
2906
+ var store = new Ext.data.Store({
2907
+ reader: new Ext.data.JsonReader(
2908
+ {
2909
+ idProperty: 'key',
2910
+ root: 'daRoot',
2911
+ totalProperty: 'total'
2912
+ },
2913
+ Dude // recordType
2914
+ )
2915
+ });
2916
+
2917
+ var myData = [
2918
+ { key: 1,
2919
+ name: { first: 'Fat', last: 'Albert' }
2920
+ // notice no city, state provided in data object
2921
+ },
2922
+ { key: 2,
2923
+ name: { first: 'Barney', last: 'Rubble' },
2924
+ city: 'Bedrock', state: 'Stoneridge'
2925
+ },
2926
+ { key: 3,
2927
+ name: { first: 'Cliff', last: 'Claven' },
2928
+ city: 'Boston', state: 'MA'
2929
+ }
2930
+ ];
2931
+ * </code></pre>
2932
+ */
2933
+ /**
2934
+ * @cfg {String} dateFormat
2935
+ * <p>(Optional) Used when converting received data into a Date when the {@link #type} is specified as <code>"date"</code>.</p>
2936
+ * <p>A format string for the {@link Date#parseDate Date.parseDate} function, or "timestamp" if the
2937
+ * value provided by the Reader is a UNIX timestamp, or "time" if the value provided by the Reader is a
2938
+ * javascript millisecond timestamp. See {@link Date}</p>
2939
+ */
2940
+ dateFormat: null,
2941
+
2942
+ /**
2943
+ * @cfg {Boolean} useNull
2944
+ * <p>(Optional) Use when converting received data into a Number type (either int or float). If the value cannot be parsed,
2945
+ * null will be used if useNull is true, otherwise the value will be 0. Defaults to <tt>false</tt>
2946
+ */
2947
+ useNull: false,
2948
+
2949
+ /**
2950
+ * @cfg {Mixed} defaultValue
2951
+ * (Optional) The default value used <b>when a Record is being created by a {@link Ext.data.Reader Reader}</b>
2952
+ * when the item referenced by the <code>{@link Ext.data.Field#mapping mapping}</code> does not exist in the data
2953
+ * object (i.e. undefined). (defaults to "")
2954
+ */
2955
+ defaultValue: "",
2956
+ /**
2957
+ * @cfg {String/Number} mapping
2958
+ * <p>(Optional) A path expression for use by the {@link Ext.data.DataReader} implementation
2959
+ * that is creating the {@link Ext.data.Record Record} to extract the Field value from the data object.
2960
+ * If the path expression is the same as the field name, the mapping may be omitted.</p>
2961
+ * <p>The form of the mapping expression depends on the Reader being used.</p>
2962
+ * <div class="mdetail-params"><ul>
2963
+ * <li>{@link Ext.data.JsonReader}<div class="sub-desc">The mapping is a string containing the javascript
2964
+ * expression to reference the data from an element of the data item's {@link Ext.data.JsonReader#root root} Array. Defaults to the field name.</div></li>
2965
+ * <li>{@link Ext.data.XmlReader}<div class="sub-desc">The mapping is an {@link Ext.DomQuery} path to the data
2966
+ * item relative to the DOM element that represents the {@link Ext.data.XmlReader#record record}. Defaults to the field name.</div></li>
2967
+ * <li>{@link Ext.data.ArrayReader}<div class="sub-desc">The mapping is a number indicating the Array index
2968
+ * of the field's value. Defaults to the field specification's Array position.</div></li>
2969
+ * </ul></div>
2970
+ * <p>If a more complex value extraction strategy is required, then configure the Field with a {@link #convert}
2971
+ * function. This is passed the whole row object, and may interrogate it in whatever way is necessary in order to
2972
+ * return the desired data.</p>
2973
+ */
2974
+ mapping: null,
2975
+ /**
2976
+ * @cfg {Function} sortType
2977
+ * (Optional) A function which converts a Field's value to a comparable value in order to ensure
2978
+ * correct sort ordering. Predefined functions are provided in {@link Ext.data.SortTypes}. A custom
2979
+ * sort example:<pre><code>
2980
+ // current sort after sort we want
2981
+ // +-+------+ +-+------+
2982
+ // |1|First | |1|First |
2983
+ // |2|Last | |3|Second|
2984
+ // |3|Second| |2|Last |
2985
+ // +-+------+ +-+------+
2986
+
2987
+ sortType: function(value) {
2988
+ switch (value.toLowerCase()) // native toLowerCase():
2989
+ {
2990
+ case 'first': return 1;
2991
+ case 'second': return 2;
2992
+ default: return 3;
2993
+ }
2994
+ }
2995
+ * </code></pre>
2996
+ */
2997
+ sortType : null,
2998
+ /**
2999
+ * @cfg {String} sortDir
3000
+ * (Optional) Initial direction to sort (<code>"ASC"</code> or <code>"DESC"</code>). Defaults to
3001
+ * <code>"ASC"</code>.
3002
+ */
3003
+ sortDir : "ASC",
3004
+ /**
3005
+ * @cfg {Boolean} allowBlank
3006
+ * (Optional) Used for validating a {@link Ext.data.Record record}, defaults to <code>true</code>.
3007
+ * An empty value here will cause {@link Ext.data.Record}.{@link Ext.data.Record#isValid isValid}
3008
+ * to evaluate to <code>false</code>.
3009
+ */
3010
+ allowBlank : true
3011
+ });
3012
+ /**
3013
+ * @class Ext.data.DataReader
3014
+ * Abstract base class for reading structured data from a data source and converting
3015
+ * it into an object containing {@link Ext.data.Record} objects and metadata for use
3016
+ * by an {@link Ext.data.Store}. This class is intended to be extended and should not
3017
+ * be created directly. For existing implementations, see {@link Ext.data.ArrayReader},
3018
+ * {@link Ext.data.JsonReader} and {@link Ext.data.XmlReader}.
3019
+ * @constructor Create a new DataReader
3020
+ * @param {Object} meta Metadata configuration options (implementation-specific).
3021
+ * @param {Array/Object} recordType
3022
+ * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
3023
+ * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
3024
+ * constructor created using {@link Ext.data.Record#create}.</p>
3025
+ */
3026
+ Ext.data.DataReader = function(meta, recordType){
3027
+ /**
3028
+ * This DataReader's configured metadata as passed to the constructor.
3029
+ * @type Mixed
3030
+ * @property meta
3031
+ */
3032
+ this.meta = meta;
3033
+ /**
3034
+ * @cfg {Array/Object} fields
3035
+ * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
3036
+ * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
3037
+ * constructor created from {@link Ext.data.Record#create}.</p>
3038
+ */
3039
+ this.recordType = Ext.isArray(recordType) ?
3040
+ Ext.data.Record.create(recordType) : recordType;
3041
+
3042
+ // if recordType defined make sure extraction functions are defined
3043
+ if (this.recordType){
3044
+ this.buildExtractors();
3045
+ }
3046
+ };
3047
+
3048
+ Ext.data.DataReader.prototype = {
3049
+ /**
3050
+ * @cfg {String} messageProperty [undefined] Optional name of a property within a server-response that represents a user-feedback message.
3051
+ */
3052
+ /**
3053
+ * Abstract method created in extension's buildExtractors impl.
3054
+ */
3055
+ getTotal: Ext.emptyFn,
3056
+ /**
3057
+ * Abstract method created in extension's buildExtractors impl.
3058
+ */
3059
+ getRoot: Ext.emptyFn,
3060
+ /**
3061
+ * Abstract method created in extension's buildExtractors impl.
3062
+ */
3063
+ getMessage: Ext.emptyFn,
3064
+ /**
3065
+ * Abstract method created in extension's buildExtractors impl.
3066
+ */
3067
+ getSuccess: Ext.emptyFn,
3068
+ /**
3069
+ * Abstract method created in extension's buildExtractors impl.
3070
+ */
3071
+ getId: Ext.emptyFn,
3072
+ /**
3073
+ * Abstract method, overridden in DataReader extensions such as {@link Ext.data.JsonReader} and {@link Ext.data.XmlReader}
3074
+ */
3075
+ buildExtractors : Ext.emptyFn,
3076
+ /**
3077
+ * Abstract method overridden in DataReader extensions such as {@link Ext.data.JsonReader} and {@link Ext.data.XmlReader}
3078
+ */
3079
+ extractValues : Ext.emptyFn,
3080
+
3081
+ /**
3082
+ * Used for un-phantoming a record after a successful database insert. Sets the records pk along with new data from server.
3083
+ * You <b>must</b> return at least the database pk using the idProperty defined in your DataReader configuration. The incoming
3084
+ * data from server will be merged with the data in the local record.
3085
+ * In addition, you <b>must</b> return record-data from the server in the same order received.
3086
+ * Will perform a commit as well, un-marking dirty-fields. Store's "update" event will be suppressed.
3087
+ * @param {Record/Record[]} record The phantom record to be realized.
3088
+ * @param {Object/Object[]} data The new record data to apply. Must include the primary-key from database defined in idProperty field.
3089
+ */
3090
+ realize: function(rs, data){
3091
+ if (Ext.isArray(rs)) {
3092
+ for (var i = rs.length - 1; i >= 0; i--) {
3093
+ // recurse
3094
+ if (Ext.isArray(data)) {
3095
+ this.realize(rs.splice(i,1).shift(), data.splice(i,1).shift());
3096
+ }
3097
+ else {
3098
+ // weird...rs is an array but data isn't?? recurse but just send in the whole invalid data object.
3099
+ // the else clause below will detect !this.isData and throw exception.
3100
+ this.realize(rs.splice(i,1).shift(), data);
3101
+ }
3102
+ }
3103
+ }
3104
+ else {
3105
+ // If rs is NOT an array but data IS, see if data contains just 1 record. If so extract it and carry on.
3106
+ if (Ext.isArray(data) && data.length == 1) {
3107
+ data = data.shift();
3108
+ }
3109
+ if (!this.isData(data)) {
3110
+ // TODO: Let exception-handler choose to commit or not rather than blindly rs.commit() here.
3111
+ //rs.commit();
3112
+ throw new Ext.data.DataReader.Error('realize', rs);
3113
+ }
3114
+ rs.phantom = false; // <-- That's what it's all about
3115
+ rs._phid = rs.id; // <-- copy phantom-id -> _phid, so we can remap in Store#onCreateRecords
3116
+ rs.id = this.getId(data);
3117
+ rs.data = data;
3118
+
3119
+ rs.commit();
3120
+ }
3121
+ },
3122
+
3123
+ /**
3124
+ * Used for updating a non-phantom or "real" record's data with fresh data from server after remote-save.
3125
+ * If returning data from multiple-records after a batch-update, you <b>must</b> return record-data from the server in
3126
+ * the same order received. Will perform a commit as well, un-marking dirty-fields. Store's "update" event will be
3127
+ * suppressed as the record receives fresh new data-hash
3128
+ * @param {Record/Record[]} rs
3129
+ * @param {Object/Object[]} data
3130
+ */
3131
+ update : function(rs, data) {
3132
+ if (Ext.isArray(rs)) {
3133
+ for (var i=rs.length-1; i >= 0; i--) {
3134
+ if (Ext.isArray(data)) {
3135
+ this.update(rs.splice(i,1).shift(), data.splice(i,1).shift());
3136
+ }
3137
+ else {
3138
+ // weird...rs is an array but data isn't?? recurse but just send in the whole data object.
3139
+ // the else clause below will detect !this.isData and throw exception.
3140
+ this.update(rs.splice(i,1).shift(), data);
3141
+ }
3142
+ }
3143
+ }
3144
+ else {
3145
+ // If rs is NOT an array but data IS, see if data contains just 1 record. If so extract it and carry on.
3146
+ if (Ext.isArray(data) && data.length == 1) {
3147
+ data = data.shift();
3148
+ }
3149
+ if (this.isData(data)) {
3150
+ rs.data = Ext.apply(rs.data, data);
3151
+ }
3152
+ rs.commit();
3153
+ }
3154
+ },
3155
+
3156
+ /**
3157
+ * returns extracted, type-cast rows of data. Iterates to call #extractValues for each row
3158
+ * @param {Object[]/Object} data-root from server response
3159
+ * @param {Boolean} returnRecords [false] Set true to return instances of Ext.data.Record
3160
+ * @private
3161
+ */
3162
+ extractData : function(root, returnRecords) {
3163
+ // A bit ugly this, too bad the Record's raw data couldn't be saved in a common property named "raw" or something.
3164
+ var rawName = (this instanceof Ext.data.JsonReader) ? 'json' : 'node';
3165
+
3166
+ var rs = [];
3167
+
3168
+ // Had to add Check for XmlReader, #isData returns true if root is an Xml-object. Want to check in order to re-factor
3169
+ // #extractData into DataReader base, since the implementations are almost identical for JsonReader, XmlReader
3170
+ if (this.isData(root) && !(this instanceof Ext.data.XmlReader)) {
3171
+ root = [root];
3172
+ }
3173
+ var f = this.recordType.prototype.fields,
3174
+ fi = f.items,
3175
+ fl = f.length,
3176
+ rs = [];
3177
+ if (returnRecords === true) {
3178
+ var Record = this.recordType;
3179
+ for (var i = 0; i < root.length; i++) {
3180
+ var n = root[i];
3181
+ var record = new Record(this.extractValues(n, fi, fl), this.getId(n));
3182
+ record[rawName] = n; // <-- There's implementation of ugly bit, setting the raw record-data.
3183
+ rs.push(record);
3184
+ }
3185
+ }
3186
+ else {
3187
+ for (var i = 0; i < root.length; i++) {
3188
+ var data = this.extractValues(root[i], fi, fl);
3189
+ data[this.meta.idProperty] = this.getId(root[i]);
3190
+ rs.push(data);
3191
+ }
3192
+ }
3193
+ return rs;
3194
+ },
3195
+
3196
+ /**
3197
+ * Returns true if the supplied data-hash <b>looks</b> and quacks like data. Checks to see if it has a key
3198
+ * corresponding to idProperty defined in your DataReader config containing non-empty pk.
3199
+ * @param {Object} data
3200
+ * @return {Boolean}
3201
+ */
3202
+ isData : function(data) {
3203
+ return (data && Ext.isObject(data) && !Ext.isEmpty(this.getId(data))) ? true : false;
3204
+ },
3205
+
3206
+ // private function a store will createSequence upon
3207
+ onMetaChange : function(meta){
3208
+ delete this.ef;
3209
+ this.meta = meta;
3210
+ this.recordType = Ext.data.Record.create(meta.fields);
3211
+ this.buildExtractors();
3212
+ }
3213
+ };
3214
+
3215
+ /**
3216
+ * @class Ext.data.DataReader.Error
3217
+ * @extends Ext.Error
3218
+ * General error class for Ext.data.DataReader
3219
+ */
3220
+ Ext.data.DataReader.Error = Ext.extend(Ext.Error, {
3221
+ constructor : function(message, arg) {
3222
+ this.arg = arg;
3223
+ Ext.Error.call(this, message);
3224
+ },
3225
+ name: 'Ext.data.DataReader'
3226
+ });
3227
+ Ext.apply(Ext.data.DataReader.Error.prototype, {
3228
+ lang : {
3229
+ 'update': "#update received invalid data from server. Please see docs for DataReader#update and review your DataReader configuration.",
3230
+ 'realize': "#realize was called with invalid remote-data. Please see the docs for DataReader#realize and review your DataReader configuration.",
3231
+ 'invalid-response': "#readResponse received an invalid response from the server."
3232
+ }
3233
+ });
3234
+ /**
3235
+ * @class Ext.data.DataWriter
3236
+ * <p>Ext.data.DataWriter facilitates create, update, and destroy actions between
3237
+ * an Ext.data.Store and a server-side framework. A Writer enabled Store will
3238
+ * automatically manage the Ajax requests to perform CRUD actions on a Store.</p>
3239
+ * <p>Ext.data.DataWriter is an abstract base class which is intended to be extended
3240
+ * and should not be created directly. For existing implementations, see
3241
+ * {@link Ext.data.JsonWriter}.</p>
3242
+ * <p>Creating a writer is simple:</p>
3243
+ * <pre><code>
3244
+ var writer = new Ext.data.JsonWriter({
3245
+ encode: false // &lt;--- false causes data to be printed to jsonData config-property of Ext.Ajax#reqeust
3246
+ });
3247
+ * </code></pre>
3248
+ * * <p>Same old JsonReader as Ext-2.x:</p>
3249
+ * <pre><code>
3250
+ var reader = new Ext.data.JsonReader({idProperty: 'id'}, [{name: 'first'}, {name: 'last'}, {name: 'email'}]);
3251
+ * </code></pre>
3252
+ *
3253
+ * <p>The proxy for a writer enabled store can be configured with a simple <code>url</code>:</p>
3254
+ * <pre><code>
3255
+ // Create a standard HttpProxy instance.
3256
+ var proxy = new Ext.data.HttpProxy({
3257
+ url: 'app.php/users' // &lt;--- Supports "provides"-type urls, such as '/users.json', '/products.xml' (Hello Rails/Merb)
3258
+ });
3259
+ * </code></pre>
3260
+ * <p>For finer grained control, the proxy may also be configured with an <code>API</code>:</p>
3261
+ * <pre><code>
3262
+ // Maximum flexibility with the API-configuration
3263
+ var proxy = new Ext.data.HttpProxy({
3264
+ api: {
3265
+ read : 'app.php/users/read',
3266
+ create : 'app.php/users/create',
3267
+ update : 'app.php/users/update',
3268
+ destroy : { // &lt;--- Supports object-syntax as well
3269
+ url: 'app.php/users/destroy',
3270
+ method: "DELETE"
3271
+ }
3272
+ }
3273
+ });
3274
+ * </code></pre>
3275
+ * <p>Pulling it all together into a Writer-enabled Store:</p>
3276
+ * <pre><code>
3277
+ var store = new Ext.data.Store({
3278
+ proxy: proxy,
3279
+ reader: reader,
3280
+ writer: writer,
3281
+ autoLoad: true,
3282
+ autoSave: true // -- Cell-level updates.
3283
+ });
3284
+ * </code></pre>
3285
+ * <p>Initiating write-actions <b>automatically</b>, using the existing Ext2.0 Store/Record API:</p>
3286
+ * <pre><code>
3287
+ var rec = store.getAt(0);
3288
+ rec.set('email', 'foo@bar.com'); // &lt;--- Immediately initiates an UPDATE action through configured proxy.
3289
+
3290
+ store.remove(rec); // &lt;---- Immediately initiates a DESTROY action through configured proxy.
3291
+ * </code></pre>
3292
+ * <p>For <b>record/batch</b> updates, use the Store-configuration {@link Ext.data.Store#autoSave autoSave:false}</p>
3293
+ * <pre><code>
3294
+ var store = new Ext.data.Store({
3295
+ proxy: proxy,
3296
+ reader: reader,
3297
+ writer: writer,
3298
+ autoLoad: true,
3299
+ autoSave: false // -- disable cell-updates
3300
+ });
3301
+
3302
+ var urec = store.getAt(0);
3303
+ urec.set('email', 'foo@bar.com');
3304
+
3305
+ var drec = store.getAt(1);
3306
+ store.remove(drec);
3307
+
3308
+ // Push the button!
3309
+ store.save();
3310
+ * </code></pre>
3311
+ * @constructor Create a new DataWriter
3312
+ * @param {Object} meta Metadata configuration options (implementation-specific)
3313
+ * @param {Object} recordType Either an Array of field definition objects as specified
3314
+ * in {@link Ext.data.Record#create}, or an {@link Ext.data.Record} object created
3315
+ * using {@link Ext.data.Record#create}.
3316
+ */
3317
+ Ext.data.DataWriter = function(config){
3318
+ Ext.apply(this, config);
3319
+ };
3320
+ Ext.data.DataWriter.prototype = {
3321
+
3322
+ /**
3323
+ * @cfg {Boolean} writeAllFields
3324
+ * <tt>false</tt> by default. Set <tt>true</tt> to have DataWriter return ALL fields of a modified
3325
+ * record -- not just those that changed.
3326
+ * <tt>false</tt> to have DataWriter only request modified fields from a record.
3327
+ */
3328
+ writeAllFields : false,
3329
+ /**
3330
+ * @cfg {Boolean} listful
3331
+ * <tt>false</tt> by default. Set <tt>true</tt> to have the DataWriter <b>always</b> write HTTP params as a list,
3332
+ * even when acting upon a single record.
3333
+ */
3334
+ listful : false, // <-- listful is actually not used internally here in DataWriter. @see Ext.data.Store#execute.
3335
+
3336
+ /**
3337
+ * Compiles a Store recordset into a data-format defined by an extension such as {@link Ext.data.JsonWriter} or {@link Ext.data.XmlWriter} in preparation for a {@link Ext.data.Api#actions server-write action}. The first two params are similar similar in nature to {@link Ext#apply},
3338
+ * Where the first parameter is the <i>receiver</i> of paramaters and the second, baseParams, <i>the source</i>.
3339
+ * @param {Object} params The request-params receiver.
3340
+ * @param {Object} baseParams as defined by {@link Ext.data.Store#baseParams}. The baseParms must be encoded by the extending class, eg: {@link Ext.data.JsonWriter}, {@link Ext.data.XmlWriter}.
3341
+ * @param {String} action [{@link Ext.data.Api#actions create|update|destroy}]
3342
+ * @param {Record/Record[]} rs The recordset to write, the subject(s) of the write action.
3343
+ */
3344
+ apply : function(params, baseParams, action, rs) {
3345
+ var data = [],
3346
+ renderer = action + 'Record';
3347
+ // TODO implement @cfg listful here
3348
+ if (Ext.isArray(rs)) {
3349
+ Ext.each(rs, function(rec){
3350
+ data.push(this[renderer](rec));
3351
+ }, this);
3352
+ }
3353
+ else if (rs instanceof Ext.data.Record) {
3354
+ data = this[renderer](rs);
3355
+ }
3356
+ this.render(params, baseParams, data);
3357
+ },
3358
+
3359
+ /**
3360
+ * abstract method meant to be overridden by all DataWriter extensions. It's the extension's job to apply the "data" to the "params".
3361
+ * The data-object provided to render is populated with data according to the meta-info defined in the user's DataReader config,
3362
+ * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
3363
+ * @param {Record[]} rs Store recordset
3364
+ * @param {Object} params Http params to be sent to server.
3365
+ * @param {Object} data object populated according to DataReader meta-data.
3366
+ */
3367
+ render : Ext.emptyFn,
3368
+
3369
+ /**
3370
+ * @cfg {Function} updateRecord Abstract method that should be implemented in all subclasses
3371
+ * (e.g.: {@link Ext.data.JsonWriter#updateRecord JsonWriter.updateRecord}
3372
+ */
3373
+ updateRecord : Ext.emptyFn,
3374
+
3375
+ /**
3376
+ * @cfg {Function} createRecord Abstract method that should be implemented in all subclasses
3377
+ * (e.g.: {@link Ext.data.JsonWriter#createRecord JsonWriter.createRecord})
3378
+ */
3379
+ createRecord : Ext.emptyFn,
3380
+
3381
+ /**
3382
+ * @cfg {Function} destroyRecord Abstract method that should be implemented in all subclasses
3383
+ * (e.g.: {@link Ext.data.JsonWriter#destroyRecord JsonWriter.destroyRecord})
3384
+ */
3385
+ destroyRecord : Ext.emptyFn,
3386
+
3387
+ /**
3388
+ * Converts a Record to a hash, taking into account the state of the Ext.data.Record along with configuration properties
3389
+ * related to its rendering, such as {@link #writeAllFields}, {@link Ext.data.Record#phantom phantom}, {@link Ext.data.Record#getChanges getChanges} and
3390
+ * {@link Ext.data.DataReader#idProperty idProperty}
3391
+ * @param {Ext.data.Record} rec The Record from which to create a hash.
3392
+ * @param {Object} config <b>NOT YET IMPLEMENTED</b>. Will implement an exlude/only configuration for fine-control over which fields do/don't get rendered.
3393
+ * @return {Object}
3394
+ * @protected
3395
+ * TODO Implement excludes/only configuration with 2nd param?
3396
+ */
3397
+ toHash : function(rec, config) {
3398
+ var map = rec.fields.map,
3399
+ data = {},
3400
+ raw = (this.writeAllFields === false && rec.phantom === false) ? rec.getChanges() : rec.data,
3401
+ m;
3402
+ Ext.iterate(raw, function(prop, value){
3403
+ if((m = map[prop])){
3404
+ data[m.mapping ? m.mapping : m.name] = value;
3405
+ }
3406
+ });
3407
+ // we don't want to write Ext auto-generated id to hash. Careful not to remove it on Models not having auto-increment pk though.
3408
+ // We can tell its not auto-increment if the user defined a DataReader field for it *and* that field's value is non-empty.
3409
+ // we could also do a RegExp here for the Ext.data.Record AUTO_ID prefix.
3410
+ if (rec.phantom) {
3411
+ if (rec.fields.containsKey(this.meta.idProperty) && Ext.isEmpty(rec.data[this.meta.idProperty])) {
3412
+ delete data[this.meta.idProperty];
3413
+ }
3414
+ } else {
3415
+ data[this.meta.idProperty] = rec.id;
3416
+ }
3417
+ return data;
3418
+ },
3419
+
3420
+ /**
3421
+ * Converts a {@link Ext.data.DataWriter#toHash Hashed} {@link Ext.data.Record} to fields-array array suitable
3422
+ * for encoding to xml via XTemplate, eg:
3423
+ <code><pre>&lt;tpl for=".">&lt;{name}>{value}&lt;/{name}&lt;/tpl></pre></code>
3424
+ * eg, <b>non-phantom</b>:
3425
+ <code><pre>{id: 1, first: 'foo', last: 'bar'} --> [{name: 'id', value: 1}, {name: 'first', value: 'foo'}, {name: 'last', value: 'bar'}]</pre></code>
3426
+ * {@link Ext.data.Record#phantom Phantom} records will have had their idProperty omitted in {@link #toHash} if determined to be auto-generated.
3427
+ * Non AUTOINCREMENT pks should have been protected.
3428
+ * @param {Hash} data Hashed by Ext.data.DataWriter#toHash
3429
+ * @return {[Object]} Array of attribute-objects.
3430
+ * @protected
3431
+ */
3432
+ toArray : function(data) {
3433
+ var fields = [];
3434
+ Ext.iterate(data, function(k, v) {fields.push({name: k, value: v});},this);
3435
+ return fields;
3436
+ }
3437
+ };/**
3438
+ * @class Ext.data.DataProxy
3439
+ * @extends Ext.util.Observable
3440
+ * <p>Abstract base class for implementations which provide retrieval of unformatted data objects.
3441
+ * This class is intended to be extended and should not be created directly. For existing implementations,
3442
+ * see {@link Ext.data.DirectProxy}, {@link Ext.data.HttpProxy}, {@link Ext.data.ScriptTagProxy} and
3443
+ * {@link Ext.data.MemoryProxy}.</p>
3444
+ * <p>DataProxy implementations are usually used in conjunction with an implementation of {@link Ext.data.DataReader}
3445
+ * (of the appropriate type which knows how to parse the data object) to provide a block of
3446
+ * {@link Ext.data.Records} to an {@link Ext.data.Store}.</p>
3447
+ * <p>The parameter to a DataProxy constructor may be an {@link Ext.data.Connection} or can also be the
3448
+ * config object to an {@link Ext.data.Connection}.</p>
3449
+ * <p>Custom implementations must implement either the <code><b>doRequest</b></code> method (preferred) or the
3450
+ * <code>load</code> method (deprecated). See
3451
+ * {@link Ext.data.HttpProxy}.{@link Ext.data.HttpProxy#doRequest doRequest} or
3452
+ * {@link Ext.data.HttpProxy}.{@link Ext.data.HttpProxy#load load} for additional details.</p>
3453
+ * <p><b><u>Example 1</u></b></p>
3454
+ * <pre><code>
3455
+ proxy: new Ext.data.ScriptTagProxy({
3456
+ {@link Ext.data.Connection#url url}: 'http://extjs.com/forum/topics-remote.php'
3457
+ }),
3458
+ * </code></pre>
3459
+ * <p><b><u>Example 2</u></b></p>
3460
+ * <pre><code>
3461
+ proxy : new Ext.data.HttpProxy({
3462
+ {@link Ext.data.Connection#method method}: 'GET',
3463
+ {@link Ext.data.HttpProxy#prettyUrls prettyUrls}: false,
3464
+ {@link Ext.data.Connection#url url}: 'local/default.php', // see options parameter for {@link Ext.Ajax#request}
3465
+ {@link #api}: {
3466
+ // all actions except the following will use above url
3467
+ create : 'local/new.php',
3468
+ update : 'local/update.php'
3469
+ }
3470
+ }),
3471
+ * </code></pre>
3472
+ * <p>And <b>new in Ext version 3</b>, attach centralized event-listeners upon the DataProxy class itself! This is a great place
3473
+ * to implement a <i>messaging system</i> to centralize your application's user-feedback and error-handling.</p>
3474
+ * <pre><code>
3475
+ // Listen to all "beforewrite" event fired by all proxies.
3476
+ Ext.data.DataProxy.on('beforewrite', function(proxy, action) {
3477
+ console.log('beforewrite: ', action);
3478
+ });
3479
+
3480
+ // Listen to "write" event fired by all proxies
3481
+ Ext.data.DataProxy.on('write', function(proxy, action, data, res, rs) {
3482
+ console.info('write: ', action);
3483
+ });
3484
+
3485
+ // Listen to "exception" event fired by all proxies
3486
+ Ext.data.DataProxy.on('exception', function(proxy, type, action, exception) {
3487
+ console.error(type + action + ' exception);
3488
+ });
3489
+ * </code></pre>
3490
+ * <b>Note:</b> These three events are all fired with the signature of the corresponding <i>DataProxy instance</i> event {@link #beforewrite beforewrite}, {@link #write write} and {@link #exception exception}.
3491
+ */
3492
+ Ext.data.DataProxy = function(conn){
3493
+ // make sure we have a config object here to support ux proxies.
3494
+ // All proxies should now send config into superclass constructor.
3495
+ conn = conn || {};
3496
+
3497
+ // This line caused a bug when people use custom Connection object having its own request method.
3498
+ // http://extjs.com/forum/showthread.php?t=67194. Have to set DataProxy config
3499
+ //Ext.applyIf(this, conn);
3500
+
3501
+ this.api = conn.api;
3502
+ this.url = conn.url;
3503
+ this.restful = conn.restful;
3504
+ this.listeners = conn.listeners;
3505
+
3506
+ // deprecated
3507
+ this.prettyUrls = conn.prettyUrls;
3508
+
3509
+ /**
3510
+ * @cfg {Object} api
3511
+ * Specific urls to call on CRUD action methods "read", "create", "update" and "destroy".
3512
+ * Defaults to:<pre><code>
3513
+ api: {
3514
+ read : undefined,
3515
+ create : undefined,
3516
+ update : undefined,
3517
+ destroy : undefined
3518
+ }
3519
+ * </code></pre>
3520
+ * <p>The url is built based upon the action being executed <tt>[load|create|save|destroy]</tt>
3521
+ * using the commensurate <tt>{@link #api}</tt> property, or if undefined default to the
3522
+ * configured {@link Ext.data.Store}.{@link Ext.data.Store#url url}.</p><br>
3523
+ * <p>For example:</p>
3524
+ * <pre><code>
3525
+ api: {
3526
+ load : '/controller/load',
3527
+ create : '/controller/new', // Server MUST return idProperty of new record
3528
+ save : '/controller/update',
3529
+ destroy : '/controller/destroy_action'
3530
+ }
3531
+
3532
+ // Alternatively, one can use the object-form to specify each API-action
3533
+ api: {
3534
+ load: {url: 'read.php', method: 'GET'},
3535
+ create: 'create.php',
3536
+ destroy: 'destroy.php',
3537
+ save: 'update.php'
3538
+ }
3539
+ * </code></pre>
3540
+ * <p>If the specific URL for a given CRUD action is undefined, the CRUD action request
3541
+ * will be directed to the configured <tt>{@link Ext.data.Connection#url url}</tt>.</p>
3542
+ * <br><p><b>Note</b>: To modify the URL for an action dynamically the appropriate API
3543
+ * property should be modified before the action is requested using the corresponding before
3544
+ * action event. For example to modify the URL associated with the load action:
3545
+ * <pre><code>
3546
+ // modify the url for the action
3547
+ myStore.on({
3548
+ beforeload: {
3549
+ fn: function (store, options) {
3550
+ // use <tt>{@link Ext.data.HttpProxy#setUrl setUrl}</tt> to change the URL for *just* this request.
3551
+ store.proxy.setUrl('changed1.php');
3552
+
3553
+ // set optional second parameter to true to make this URL change
3554
+ // permanent, applying this URL for all subsequent requests.
3555
+ store.proxy.setUrl('changed1.php', true);
3556
+
3557
+ // Altering the proxy API should be done using the public
3558
+ // method <tt>{@link Ext.data.DataProxy#setApi setApi}</tt>.
3559
+ store.proxy.setApi('read', 'changed2.php');
3560
+
3561
+ // Or set the entire API with a config-object.
3562
+ // When using the config-object option, you must redefine the <b>entire</b>
3563
+ // API -- not just a specific action of it.
3564
+ store.proxy.setApi({
3565
+ read : 'changed_read.php',
3566
+ create : 'changed_create.php',
3567
+ update : 'changed_update.php',
3568
+ destroy : 'changed_destroy.php'
3569
+ });
3570
+ }
3571
+ }
3572
+ });
3573
+ * </code></pre>
3574
+ * </p>
3575
+ */
3576
+
3577
+ this.addEvents(
3578
+ /**
3579
+ * @event exception
3580
+ * <p>Fires if an exception occurs in the Proxy during a remote request. This event is relayed
3581
+ * through a corresponding {@link Ext.data.Store}.{@link Ext.data.Store#exception exception},
3582
+ * so any Store instance may observe this event.</p>
3583
+ * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
3584
+ * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of exception events from <b>all</b>
3585
+ * DataProxies by attaching a listener to the Ext.data.DataProxy class itself.</p>
3586
+ * <p>This event can be fired for one of two reasons:</p>
3587
+ * <div class="mdetail-params"><ul>
3588
+ * <li>remote-request <b>failed</b> : <div class="sub-desc">
3589
+ * The server did not return status === 200.
3590
+ * </div></li>
3591
+ * <li>remote-request <b>succeeded</b> : <div class="sub-desc">
3592
+ * The remote-request succeeded but the reader could not read the response.
3593
+ * This means the server returned data, but the configured Reader threw an
3594
+ * error while reading the response. In this case, this event will be
3595
+ * raised and the caught error will be passed along into this event.
3596
+ * </div></li>
3597
+ * </ul></div>
3598
+ * <br><p>This event fires with two different contexts based upon the 2nd
3599
+ * parameter <tt>type [remote|response]</tt>. The first four parameters
3600
+ * are identical between the two contexts -- only the final two parameters
3601
+ * differ.</p>
3602
+ * @param {DataProxy} this The proxy that sent the request
3603
+ * @param {String} type
3604
+ * <p>The value of this parameter will be either <tt>'response'</tt> or <tt>'remote'</tt>.</p>
3605
+ * <div class="mdetail-params"><ul>
3606
+ * <li><b><tt>'response'</tt></b> : <div class="sub-desc">
3607
+ * <p>An <b>invalid</b> response from the server was returned: either 404,
3608
+ * 500 or the response meta-data does not match that defined in the DataReader
3609
+ * (e.g.: root, idProperty, successProperty).</p>
3610
+ * </div></li>
3611
+ * <li><b><tt>'remote'</tt></b> : <div class="sub-desc">
3612
+ * <p>A <b>valid</b> response was returned from the server having
3613
+ * successProperty === false. This response might contain an error-message
3614
+ * sent from the server. For example, the user may have failed
3615
+ * authentication/authorization or a database validation error occurred.</p>
3616
+ * </div></li>
3617
+ * </ul></div>
3618
+ * @param {String} action Name of the action (see {@link Ext.data.Api#actions}.
3619
+ * @param {Object} options The options for the action that were specified in the {@link #request}.
3620
+ * @param {Object} response
3621
+ * <p>The value of this parameter depends on the value of the <code>type</code> parameter:</p>
3622
+ * <div class="mdetail-params"><ul>
3623
+ * <li><b><tt>'response'</tt></b> : <div class="sub-desc">
3624
+ * <p>The raw browser response object (e.g.: XMLHttpRequest)</p>
3625
+ * </div></li>
3626
+ * <li><b><tt>'remote'</tt></b> : <div class="sub-desc">
3627
+ * <p>The decoded response object sent from the server.</p>
3628
+ * </div></li>
3629
+ * </ul></div>
3630
+ * @param {Mixed} arg
3631
+ * <p>The type and value of this parameter depends on the value of the <code>type</code> parameter:</p>
3632
+ * <div class="mdetail-params"><ul>
3633
+ * <li><b><tt>'response'</tt></b> : Error<div class="sub-desc">
3634
+ * <p>The JavaScript Error object caught if the configured Reader could not read the data.
3635
+ * If the remote request returns success===false, this parameter will be null.</p>
3636
+ * </div></li>
3637
+ * <li><b><tt>'remote'</tt></b> : Record/Record[]<div class="sub-desc">
3638
+ * <p>This parameter will only exist if the <tt>action</tt> was a <b>write</b> action
3639
+ * (Ext.data.Api.actions.create|update|destroy).</p>
3640
+ * </div></li>
3641
+ * </ul></div>
3642
+ */
3643
+ 'exception',
3644
+ /**
3645
+ * @event beforeload
3646
+ * Fires before a request to retrieve a data object.
3647
+ * @param {DataProxy} this The proxy for the request
3648
+ * @param {Object} params The params object passed to the {@link #request} function
3649
+ */
3650
+ 'beforeload',
3651
+ /**
3652
+ * @event load
3653
+ * Fires before the load method's callback is called.
3654
+ * @param {DataProxy} this The proxy for the request
3655
+ * @param {Object} o The request transaction object
3656
+ * @param {Object} options The callback's <tt>options</tt> property as passed to the {@link #request} function
3657
+ */
3658
+ 'load',
3659
+ /**
3660
+ * @event loadexception
3661
+ * <p>This event is <b>deprecated</b>. The signature of the loadexception event
3662
+ * varies depending on the proxy, use the catch-all {@link #exception} event instead.
3663
+ * This event will fire in addition to the {@link #exception} event.</p>
3664
+ * @param {misc} misc See {@link #exception}.
3665
+ * @deprecated
3666
+ */
3667
+ 'loadexception',
3668
+ /**
3669
+ * @event beforewrite
3670
+ * <p>Fires before a request is generated for one of the actions Ext.data.Api.actions.create|update|destroy</p>
3671
+ * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
3672
+ * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of beforewrite events from <b>all</b>
3673
+ * DataProxies by attaching a listener to the Ext.data.DataProxy class itself.</p>
3674
+ * @param {DataProxy} this The proxy for the request
3675
+ * @param {String} action [Ext.data.Api.actions.create|update|destroy]
3676
+ * @param {Record/Record[]} rs The Record(s) to create|update|destroy.
3677
+ * @param {Object} params The request <code>params</code> object. Edit <code>params</code> to add parameters to the request.
3678
+ */
3679
+ 'beforewrite',
3680
+ /**
3681
+ * @event write
3682
+ * <p>Fires before the request-callback is called</p>
3683
+ * <p>In addition to being fired through the DataProxy instance that raised the event, this event is also fired
3684
+ * through the Ext.data.DataProxy <i>class</i> to allow for centralized processing of write events from <b>all</b>
3685
+ * DataProxies by attaching a listener to the Ext.data.DataProxy class itself.</p>
3686
+ * @param {DataProxy} this The proxy that sent the request
3687
+ * @param {String} action [Ext.data.Api.actions.create|upate|destroy]
3688
+ * @param {Object} data The data object extracted from the server-response
3689
+ * @param {Object} response The decoded response from server
3690
+ * @param {Record/Record[]} rs The Record(s) from Store
3691
+ * @param {Object} options The callback's <tt>options</tt> property as passed to the {@link #request} function
3692
+ */
3693
+ 'write'
3694
+ );
3695
+ Ext.data.DataProxy.superclass.constructor.call(this);
3696
+
3697
+ // Prepare the proxy api. Ensures all API-actions are defined with the Object-form.
3698
+ try {
3699
+ Ext.data.Api.prepare(this);
3700
+ } catch (e) {
3701
+ if (e instanceof Ext.data.Api.Error) {
3702
+ e.toConsole();
3703
+ }
3704
+ }
3705
+ // relay each proxy's events onto Ext.data.DataProxy class for centralized Proxy-listening
3706
+ Ext.data.DataProxy.relayEvents(this, ['beforewrite', 'write', 'exception']);
3707
+ };
3708
+
3709
+ Ext.extend(Ext.data.DataProxy, Ext.util.Observable, {
3710
+ /**
3711
+ * @cfg {Boolean} restful
3712
+ * <p>Defaults to <tt>false</tt>. Set to <tt>true</tt> to operate in a RESTful manner.</p>
3713
+ * <br><p> Note: this parameter will automatically be set to <tt>true</tt> if the
3714
+ * {@link Ext.data.Store} it is plugged into is set to <code>restful: true</code>. If the
3715
+ * Store is RESTful, there is no need to set this option on the proxy.</p>
3716
+ * <br><p>RESTful implementations enable the serverside framework to automatically route
3717
+ * actions sent to one url based upon the HTTP method, for example:
3718
+ * <pre><code>
3719
+ store: new Ext.data.Store({
3720
+ restful: true,
3721
+ proxy: new Ext.data.HttpProxy({url:'/users'}); // all requests sent to /users
3722
+ ...
3723
+ )}
3724
+ * </code></pre>
3725
+ * If there is no <code>{@link #api}</code> specified in the configuration of the proxy,
3726
+ * all requests will be marshalled to a single RESTful url (/users) so the serverside
3727
+ * framework can inspect the HTTP Method and act accordingly:
3728
+ * <pre>
3729
+ <u>Method</u> <u>url</u> <u>action</u>
3730
+ POST /users create
3731
+ GET /users read
3732
+ PUT /users/23 update
3733
+ DESTROY /users/23 delete
3734
+ * </pre></p>
3735
+ * <p>If set to <tt>true</tt>, a {@link Ext.data.Record#phantom non-phantom} record's
3736
+ * {@link Ext.data.Record#id id} will be appended to the url. Some MVC (e.g., Ruby on Rails,
3737
+ * Merb and Django) support segment based urls where the segments in the URL follow the
3738
+ * Model-View-Controller approach:<pre><code>
3739
+ * someSite.com/controller/action/id
3740
+ * </code></pre>
3741
+ * Where the segments in the url are typically:<div class="mdetail-params"><ul>
3742
+ * <li>The first segment : represents the controller class that should be invoked.</li>
3743
+ * <li>The second segment : represents the class function, or method, that should be called.</li>
3744
+ * <li>The third segment : represents the ID (a variable typically passed to the method).</li>
3745
+ * </ul></div></p>
3746
+ * <br><p>Refer to <code>{@link Ext.data.DataProxy#api}</code> for additional information.</p>
3747
+ */
3748
+ restful: false,
3749
+
3750
+ /**
3751
+ * <p>Redefines the Proxy's API or a single action of an API. Can be called with two method signatures.</p>
3752
+ * <p>If called with an object as the only parameter, the object should redefine the <b>entire</b> API, e.g.:</p><pre><code>
3753
+ proxy.setApi({
3754
+ read : '/users/read',
3755
+ create : '/users/create',
3756
+ update : '/users/update',
3757
+ destroy : '/users/destroy'
3758
+ });
3759
+ </code></pre>
3760
+ * <p>If called with two parameters, the first parameter should be a string specifying the API action to
3761
+ * redefine and the second parameter should be the URL (or function if using DirectProxy) to call for that action, e.g.:</p><pre><code>
3762
+ proxy.setApi(Ext.data.Api.actions.read, '/users/new_load_url');
3763
+ </code></pre>
3764
+ * @param {String/Object} api An API specification object, or the name of an action.
3765
+ * @param {String/Function} url The URL (or function if using DirectProxy) to call for the action.
3766
+ */
3767
+ setApi : function() {
3768
+ if (arguments.length == 1) {
3769
+ var valid = Ext.data.Api.isValid(arguments[0]);
3770
+ if (valid === true) {
3771
+ this.api = arguments[0];
3772
+ }
3773
+ else {
3774
+ throw new Ext.data.Api.Error('invalid', valid);
3775
+ }
3776
+ }
3777
+ else if (arguments.length == 2) {
3778
+ if (!Ext.data.Api.isAction(arguments[0])) {
3779
+ throw new Ext.data.Api.Error('invalid', arguments[0]);
3780
+ }
3781
+ this.api[arguments[0]] = arguments[1];
3782
+ }
3783
+ Ext.data.Api.prepare(this);
3784
+ },
3785
+
3786
+ /**
3787
+ * Returns true if the specified action is defined as a unique action in the api-config.
3788
+ * request. If all API-actions are routed to unique urls, the xaction parameter is unecessary. However, if no api is defined
3789
+ * and all Proxy actions are routed to DataProxy#url, the server-side will require the xaction parameter to perform a switch to
3790
+ * the corresponding code for CRUD action.
3791
+ * @param {String [Ext.data.Api.CREATE|READ|UPDATE|DESTROY]} action
3792
+ * @return {Boolean}
3793
+ */
3794
+ isApiAction : function(action) {
3795
+ return (this.api[action]) ? true : false;
3796
+ },
3797
+
3798
+ /**
3799
+ * All proxy actions are executed through this method. Automatically fires the "before" + action event
3800
+ * @param {String} action Name of the action
3801
+ * @param {Ext.data.Record/Ext.data.Record[]/null} rs Will be null when action is 'load'
3802
+ * @param {Object} params
3803
+ * @param {Ext.data.DataReader} reader
3804
+ * @param {Function} callback
3805
+ * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the Proxy object.
3806
+ * @param {Object} options Any options specified for the action (e.g. see {@link Ext.data.Store#load}.
3807
+ */
3808
+ request : function(action, rs, params, reader, callback, scope, options) {
3809
+ if (!this.api[action] && !this.load) {
3810
+ throw new Ext.data.DataProxy.Error('action-undefined', action);
3811
+ }
3812
+ params = params || {};
3813
+ if ((action === Ext.data.Api.actions.read) ? this.fireEvent("beforeload", this, params) : this.fireEvent("beforewrite", this, action, rs, params) !== false) {
3814
+ this.doRequest.apply(this, arguments);
3815
+ }
3816
+ else {
3817
+ callback.call(scope || this, null, options, false);
3818
+ }
3819
+ },
3820
+
3821
+
3822
+ /**
3823
+ * <b>Deprecated</b> load method using old method signature. See {@doRequest} for preferred method.
3824
+ * @deprecated
3825
+ * @param {Object} params
3826
+ * @param {Object} reader
3827
+ * @param {Object} callback
3828
+ * @param {Object} scope
3829
+ * @param {Object} arg
3830
+ */
3831
+ load : null,
3832
+
3833
+ /**
3834
+ * @cfg {Function} doRequest Abstract method that should be implemented in all subclasses. <b>Note:</b> Should only be used by custom-proxy developers.
3835
+ * (e.g.: {@link Ext.data.HttpProxy#doRequest HttpProxy.doRequest},
3836
+ * {@link Ext.data.DirectProxy#doRequest DirectProxy.doRequest}).
3837
+ */
3838
+ doRequest : function(action, rs, params, reader, callback, scope, options) {
3839
+ // default implementation of doRequest for backwards compatibility with 2.0 proxies.
3840
+ // If we're executing here, the action is probably "load".
3841
+ // Call with the pre-3.0 method signature.
3842
+ this.load(params, reader, callback, scope, options);
3843
+ },
3844
+
3845
+ /**
3846
+ * @cfg {Function} onRead Abstract method that should be implemented in all subclasses. <b>Note:</b> Should only be used by custom-proxy developers. Callback for read {@link Ext.data.Api#actions action}.
3847
+ * @param {String} action Action name as per {@link Ext.data.Api.actions#read}.
3848
+ * @param {Object} o The request transaction object
3849
+ * @param {Object} res The server response
3850
+ * @fires loadexception (deprecated)
3851
+ * @fires exception
3852
+ * @fires load
3853
+ * @protected
3854
+ */
3855
+ onRead : Ext.emptyFn,
3856
+ /**
3857
+ * @cfg {Function} onWrite Abstract method that should be implemented in all subclasses. <b>Note:</b> Should only be used by custom-proxy developers. Callback for <i>create, update and destroy</i> {@link Ext.data.Api#actions actions}.
3858
+ * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
3859
+ * @param {Object} trans The request transaction object
3860
+ * @param {Object} res The server response
3861
+ * @fires exception
3862
+ * @fires write
3863
+ * @protected
3864
+ */
3865
+ onWrite : Ext.emptyFn,
3866
+ /**
3867
+ * buildUrl
3868
+ * Sets the appropriate url based upon the action being executed. If restful is true, and only a single record is being acted upon,
3869
+ * url will be built Rails-style, as in "/controller/action/32". restful will aply iff the supplied record is an
3870
+ * instance of Ext.data.Record rather than an Array of them.
3871
+ * @param {String} action The api action being executed [read|create|update|destroy]
3872
+ * @param {Ext.data.Record/Ext.data.Record[]} record The record or Array of Records being acted upon.
3873
+ * @return {String} url
3874
+ * @private
3875
+ */
3876
+ buildUrl : function(action, record) {
3877
+ record = record || null;
3878
+
3879
+ // conn.url gets nullified after each request. If it's NOT null here, that means the user must have intervened with a call
3880
+ // to DataProxy#setUrl or DataProxy#setApi and changed it before the request was executed. If that's the case, use conn.url,
3881
+ // otherwise, build the url from the api or this.url.
3882
+ var url = (this.conn && this.conn.url) ? this.conn.url : (this.api[action]) ? this.api[action].url : this.url;
3883
+ if (!url) {
3884
+ throw new Ext.data.Api.Error('invalid-url', action);
3885
+ }
3886
+
3887
+ // look for urls having "provides" suffix used in some MVC frameworks like Rails/Merb and others. The provides suffice informs
3888
+ // the server what data-format the client is dealing with and returns data in the same format (eg: application/json, application/xml, etc)
3889
+ // e.g.: /users.json, /users.xml, etc.
3890
+ // with restful routes, we need urls like:
3891
+ // PUT /users/1.json
3892
+ // DELETE /users/1.json
3893
+ var provides = null;
3894
+ var m = url.match(/(.*)(\.json|\.xml|\.html)$/);
3895
+ if (m) {
3896
+ provides = m[2]; // eg ".json"
3897
+ url = m[1]; // eg: "/users"
3898
+ }
3899
+ // prettyUrls is deprectated in favor of restful-config
3900
+ if ((this.restful === true || this.prettyUrls === true) && record instanceof Ext.data.Record && !record.phantom) {
3901
+ url += '/' + record.id;
3902
+ }
3903
+ return (provides === null) ? url : url + provides;
3904
+ },
3905
+
3906
+ /**
3907
+ * Destroys the proxy by purging any event listeners and cancelling any active requests.
3908
+ */
3909
+ destroy: function(){
3910
+ this.purgeListeners();
3911
+ }
3912
+ });
3913
+
3914
+ // Apply the Observable prototype to the DataProxy class so that proxy instances can relay their
3915
+ // events to the class. Allows for centralized listening of all proxy instances upon the DataProxy class.
3916
+ Ext.apply(Ext.data.DataProxy, Ext.util.Observable.prototype);
3917
+ Ext.util.Observable.call(Ext.data.DataProxy);
3918
+
3919
+ /**
3920
+ * @class Ext.data.DataProxy.Error
3921
+ * @extends Ext.Error
3922
+ * DataProxy Error extension.
3923
+ * constructor
3924
+ * @param {String} message Message describing the error.
3925
+ * @param {Record/Record[]} arg
3926
+ */
3927
+ Ext.data.DataProxy.Error = Ext.extend(Ext.Error, {
3928
+ constructor : function(message, arg) {
3929
+ this.arg = arg;
3930
+ Ext.Error.call(this, message);
3931
+ },
3932
+ name: 'Ext.data.DataProxy'
3933
+ });
3934
+ Ext.apply(Ext.data.DataProxy.Error.prototype, {
3935
+ lang: {
3936
+ 'action-undefined': "DataProxy attempted to execute an API-action but found an undefined url / function. Please review your Proxy url/api-configuration.",
3937
+ 'api-invalid': 'Recieved an invalid API-configuration. Please ensure your proxy API-configuration contains only the actions from Ext.data.Api.actions.'
3938
+ }
3939
+ });
3940
+
3941
+
3942
+ /**
3943
+ * @class Ext.data.Request
3944
+ * A simple Request class used internally to the data package to provide more generalized remote-requests
3945
+ * to a DataProxy.
3946
+ * TODO Not yet implemented. Implement in Ext.data.Store#execute
3947
+ */
3948
+ Ext.data.Request = function(params) {
3949
+ Ext.apply(this, params);
3950
+ };
3951
+ Ext.data.Request.prototype = {
3952
+ /**
3953
+ * @cfg {String} action
3954
+ */
3955
+ action : undefined,
3956
+ /**
3957
+ * @cfg {Ext.data.Record[]/Ext.data.Record} rs The Store recordset associated with the request.
3958
+ */
3959
+ rs : undefined,
3960
+ /**
3961
+ * @cfg {Object} params HTTP request params
3962
+ */
3963
+ params: undefined,
3964
+ /**
3965
+ * @cfg {Function} callback The function to call when request is complete
3966
+ */
3967
+ callback : Ext.emptyFn,
3968
+ /**
3969
+ * @cfg {Object} scope The scope of the callback funtion
3970
+ */
3971
+ scope : undefined,
3972
+ /**
3973
+ * @cfg {Ext.data.DataReader} reader The DataReader instance which will parse the received response
3974
+ */
3975
+ reader : undefined
3976
+ };
3977
+ /**
3978
+ * @class Ext.data.Response
3979
+ * A generic response class to normalize response-handling internally to the framework.
3980
+ */
3981
+ Ext.data.Response = function(params) {
3982
+ Ext.apply(this, params);
3983
+ };
3984
+ Ext.data.Response.prototype = {
3985
+ /**
3986
+ * @cfg {String} action {@link Ext.data.Api#actions}
3987
+ */
3988
+ action: undefined,
3989
+ /**
3990
+ * @cfg {Boolean} success
3991
+ */
3992
+ success : undefined,
3993
+ /**
3994
+ * @cfg {String} message
3995
+ */
3996
+ message : undefined,
3997
+ /**
3998
+ * @cfg {Array/Object} data
3999
+ */
4000
+ data: undefined,
4001
+ /**
4002
+ * @cfg {Object} raw The raw response returned from server-code
4003
+ */
4004
+ raw: undefined,
4005
+ /**
4006
+ * @cfg {Ext.data.Record/Ext.data.Record[]} records related to the Request action
4007
+ */
4008
+ records: undefined
4009
+ };
4010
+ /**
4011
+ * @class Ext.data.ScriptTagProxy
4012
+ * @extends Ext.data.DataProxy
4013
+ * An implementation of Ext.data.DataProxy that reads a data object from a URL which may be in a domain
4014
+ * other than the originating domain of the running page.<br>
4015
+ * <p>
4016
+ * <b>Note that if you are retrieving data from a page that is in a domain that is NOT the same as the originating domain
4017
+ * of the running page, you must use this class, rather than HttpProxy.</b><br>
4018
+ * <p>
4019
+ * The content passed back from a server resource requested by a ScriptTagProxy <b>must</b> be executable JavaScript
4020
+ * source code because it is used as the source inside a &lt;script> tag.<br>
4021
+ * <p>
4022
+ * In order for the browser to process the returned data, the server must wrap the data object
4023
+ * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
4024
+ * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
4025
+ * depending on whether the callback name was passed:
4026
+ * <p>
4027
+ * <pre><code>
4028
+ boolean scriptTag = false;
4029
+ String cb = request.getParameter("callback");
4030
+ if (cb != null) {
4031
+ scriptTag = true;
4032
+ response.setContentType("text/javascript");
4033
+ } else {
4034
+ response.setContentType("application/x-json");
4035
+ }
4036
+ Writer out = response.getWriter();
4037
+ if (scriptTag) {
4038
+ out.write(cb + "(");
4039
+ }
4040
+ out.print(dataBlock.toJsonString());
4041
+ if (scriptTag) {
4042
+ out.write(");");
4043
+ }
4044
+ </code></pre>
4045
+ * <p>Below is a PHP example to do the same thing:</p><pre><code>
4046
+ $callback = $_REQUEST['callback'];
4047
+
4048
+ // Create the output object.
4049
+ $output = array('a' => 'Apple', 'b' => 'Banana');
4050
+
4051
+ //start output
4052
+ if ($callback) {
4053
+ header('Content-Type: text/javascript');
4054
+ echo $callback . '(' . json_encode($output) . ');';
4055
+ } else {
4056
+ header('Content-Type: application/x-json');
4057
+ echo json_encode($output);
4058
+ }
4059
+ </code></pre>
4060
+ * <p>Below is the ASP.Net code to do the same thing:</p><pre><code>
4061
+ String jsonString = "{success: true}";
4062
+ String cb = Request.Params.Get("callback");
4063
+ String responseString = "";
4064
+ if (!String.IsNullOrEmpty(cb)) {
4065
+ responseString = cb + "(" + jsonString + ")";
4066
+ } else {
4067
+ responseString = jsonString;
4068
+ }
4069
+ Response.Write(responseString);
4070
+ </code></pre>
4071
+ *
4072
+ * @constructor
4073
+ * @param {Object} config A configuration object.
4074
+ */
4075
+ Ext.data.ScriptTagProxy = function(config){
4076
+ Ext.apply(this, config);
4077
+
4078
+ Ext.data.ScriptTagProxy.superclass.constructor.call(this, config);
4079
+
4080
+ this.head = document.getElementsByTagName("head")[0];
4081
+
4082
+ /**
4083
+ * @event loadexception
4084
+ * <b>Deprecated</b> in favor of 'exception' event.
4085
+ * Fires if an exception occurs in the Proxy during data loading. This event can be fired for one of two reasons:
4086
+ * <ul><li><b>The load call timed out.</b> This means the load callback did not execute within the time limit
4087
+ * specified by {@link #timeout}. In this case, this event will be raised and the
4088
+ * fourth parameter (read error) will be null.</li>
4089
+ * <li><b>The load succeeded but the reader could not read the response.</b> This means the server returned
4090
+ * data, but the configured Reader threw an error while reading the data. In this case, this event will be
4091
+ * raised and the caught error will be passed along as the fourth parameter of this event.</li></ul>
4092
+ * Note that this event is also relayed through {@link Ext.data.Store}, so you can listen for it directly
4093
+ * on any Store instance.
4094
+ * @param {Object} this
4095
+ * @param {Object} options The loading options that were specified (see {@link #load} for details). If the load
4096
+ * call timed out, this parameter will be null.
4097
+ * @param {Object} arg The callback's arg object passed to the {@link #load} function
4098
+ * @param {Error} e The JavaScript Error object caught if the configured Reader could not read the data.
4099
+ * If the remote request returns success: false, this parameter will be null.
4100
+ */
4101
+ };
4102
+
4103
+ Ext.data.ScriptTagProxy.TRANS_ID = 1000;
4104
+
4105
+ Ext.extend(Ext.data.ScriptTagProxy, Ext.data.DataProxy, {
4106
+ /**
4107
+ * @cfg {String} url The URL from which to request the data object.
4108
+ */
4109
+ /**
4110
+ * @cfg {Number} timeout (optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
4111
+ */
4112
+ timeout : 30000,
4113
+ /**
4114
+ * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
4115
+ * the server the name of the callback function set up by the load call to process the returned data object.
4116
+ * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
4117
+ * javascript output which calls this named function passing the data object as its only parameter.
4118
+ */
4119
+ callbackParam : "callback",
4120
+ /**
4121
+ * @cfg {Boolean} nocache (optional) Defaults to true. Disable caching by adding a unique parameter
4122
+ * name to the request.
4123
+ */
4124
+ nocache : true,
4125
+
4126
+ /**
4127
+ * HttpProxy implementation of DataProxy#doRequest
4128
+ * @param {String} action
4129
+ * @param {Ext.data.Record/Ext.data.Record[]} rs If action is <tt>read</tt>, rs will be null
4130
+ * @param {Object} params An object containing properties which are to be used as HTTP parameters
4131
+ * for the request to the remote server.
4132
+ * @param {Ext.data.DataReader} reader The Reader object which converts the data
4133
+ * object into a block of Ext.data.Records.
4134
+ * @param {Function} callback The function into which to pass the block of Ext.data.Records.
4135
+ * The function must be passed <ul>
4136
+ * <li>The Record block object</li>
4137
+ * <li>The "arg" argument from the load function</li>
4138
+ * <li>A boolean success indicator</li>
4139
+ * </ul>
4140
+ * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the browser window.
4141
+ * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
4142
+ */
4143
+ doRequest : function(action, rs, params, reader, callback, scope, arg) {
4144
+ var p = Ext.urlEncode(Ext.apply(params, this.extraParams));
4145
+
4146
+ var url = this.buildUrl(action, rs);
4147
+ if (!url) {
4148
+ throw new Ext.data.Api.Error('invalid-url', url);
4149
+ }
4150
+ url = Ext.urlAppend(url, p);
4151
+
4152
+ if(this.nocache){
4153
+ url = Ext.urlAppend(url, '_dc=' + (new Date().getTime()));
4154
+ }
4155
+ var transId = ++Ext.data.ScriptTagProxy.TRANS_ID;
4156
+ var trans = {
4157
+ id : transId,
4158
+ action: action,
4159
+ cb : "stcCallback"+transId,
4160
+ scriptId : "stcScript"+transId,
4161
+ params : params,
4162
+ arg : arg,
4163
+ url : url,
4164
+ callback : callback,
4165
+ scope : scope,
4166
+ reader : reader
4167
+ };
4168
+ window[trans.cb] = this.createCallback(action, rs, trans);
4169
+ url += String.format("&{0}={1}", this.callbackParam, trans.cb);
4170
+ if(this.autoAbort !== false){
4171
+ this.abort();
4172
+ }
4173
+
4174
+ trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
4175
+
4176
+ var script = document.createElement("script");
4177
+ script.setAttribute("src", url);
4178
+ script.setAttribute("type", "text/javascript");
4179
+ script.setAttribute("id", trans.scriptId);
4180
+ this.head.appendChild(script);
4181
+
4182
+ this.trans = trans;
4183
+ },
4184
+
4185
+ // @private createCallback
4186
+ createCallback : function(action, rs, trans) {
4187
+ var self = this;
4188
+ return function(res) {
4189
+ self.trans = false;
4190
+ self.destroyTrans(trans, true);
4191
+ if (action === Ext.data.Api.actions.read) {
4192
+ self.onRead.call(self, action, trans, res);
4193
+ } else {
4194
+ self.onWrite.call(self, action, trans, res, rs);
4195
+ }
4196
+ };
4197
+ },
4198
+ /**
4199
+ * Callback for read actions
4200
+ * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
4201
+ * @param {Object} trans The request transaction object
4202
+ * @param {Object} res The server response
4203
+ * @protected
4204
+ */
4205
+ onRead : function(action, trans, res) {
4206
+ var result;
4207
+ try {
4208
+ result = trans.reader.readRecords(res);
4209
+ }catch(e){
4210
+ // @deprecated: fire loadexception
4211
+ this.fireEvent("loadexception", this, trans, res, e);
4212
+
4213
+ this.fireEvent('exception', this, 'response', action, trans, res, e);
4214
+ trans.callback.call(trans.scope||window, null, trans.arg, false);
4215
+ return;
4216
+ }
4217
+ if (result.success === false) {
4218
+ // @deprecated: fire old loadexception for backwards-compat.
4219
+ this.fireEvent('loadexception', this, trans, res);
4220
+
4221
+ this.fireEvent('exception', this, 'remote', action, trans, res, null);
4222
+ } else {
4223
+ this.fireEvent("load", this, res, trans.arg);
4224
+ }
4225
+ trans.callback.call(trans.scope||window, result, trans.arg, result.success);
4226
+ },
4227
+ /**
4228
+ * Callback for write actions
4229
+ * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
4230
+ * @param {Object} trans The request transaction object
4231
+ * @param {Object} res The server response
4232
+ * @protected
4233
+ */
4234
+ onWrite : function(action, trans, response, rs) {
4235
+ var reader = trans.reader;
4236
+ try {
4237
+ // though we already have a response object here in STP, run through readResponse to catch any meta-data exceptions.
4238
+ var res = reader.readResponse(action, response);
4239
+ } catch (e) {
4240
+ this.fireEvent('exception', this, 'response', action, trans, res, e);
4241
+ trans.callback.call(trans.scope||window, null, res, false);
4242
+ return;
4243
+ }
4244
+ if(!res.success === true){
4245
+ this.fireEvent('exception', this, 'remote', action, trans, res, rs);
4246
+ trans.callback.call(trans.scope||window, null, res, false);
4247
+ return;
4248
+ }
4249
+ this.fireEvent("write", this, action, res.data, res, rs, trans.arg );
4250
+ trans.callback.call(trans.scope||window, res.data, res, true);
4251
+ },
4252
+
4253
+ // private
4254
+ isLoading : function(){
4255
+ return this.trans ? true : false;
4256
+ },
4257
+
4258
+ /**
4259
+ * Abort the current server request.
4260
+ */
4261
+ abort : function(){
4262
+ if(this.isLoading()){
4263
+ this.destroyTrans(this.trans);
4264
+ }
4265
+ },
4266
+
4267
+ // private
4268
+ destroyTrans : function(trans, isLoaded){
4269
+ this.head.removeChild(document.getElementById(trans.scriptId));
4270
+ clearTimeout(trans.timeoutId);
4271
+ if(isLoaded){
4272
+ window[trans.cb] = undefined;
4273
+ try{
4274
+ delete window[trans.cb];
4275
+ }catch(e){}
4276
+ }else{
4277
+ // if hasn't been loaded, wait for load to remove it to prevent script error
4278
+ window[trans.cb] = function(){
4279
+ window[trans.cb] = undefined;
4280
+ try{
4281
+ delete window[trans.cb];
4282
+ }catch(e){}
4283
+ };
4284
+ }
4285
+ },
4286
+
4287
+ // private
4288
+ handleFailure : function(trans){
4289
+ this.trans = false;
4290
+ this.destroyTrans(trans, false);
4291
+ if (trans.action === Ext.data.Api.actions.read) {
4292
+ // @deprecated firing loadexception
4293
+ this.fireEvent("loadexception", this, null, trans.arg);
4294
+ }
4295
+
4296
+ this.fireEvent('exception', this, 'response', trans.action, {
4297
+ response: null,
4298
+ options: trans.arg
4299
+ });
4300
+ trans.callback.call(trans.scope||window, null, trans.arg, false);
4301
+ },
4302
+
4303
+ // inherit docs
4304
+ destroy: function(){
4305
+ this.abort();
4306
+ Ext.data.ScriptTagProxy.superclass.destroy.call(this);
4307
+ }
4308
+ });/**
4309
+ * @class Ext.data.HttpProxy
4310
+ * @extends Ext.data.DataProxy
4311
+ * <p>An implementation of {@link Ext.data.DataProxy} that processes data requests within the same
4312
+ * domain of the originating page.</p>
4313
+ * <p><b>Note</b>: this class cannot be used to retrieve data from a domain other
4314
+ * than the domain from which the running page was served. For cross-domain requests, use a
4315
+ * {@link Ext.data.ScriptTagProxy ScriptTagProxy}.</p>
4316
+ * <p>Be aware that to enable the browser to parse an XML document, the server must set
4317
+ * the Content-Type header in the HTTP response to "<tt>text/xml</tt>".</p>
4318
+ * @constructor
4319
+ * @param {Object} conn
4320
+ * An {@link Ext.data.Connection} object, or options parameter to {@link Ext.Ajax#request}.
4321
+ * <p>Note that if this HttpProxy is being used by a {@link Ext.data.Store Store}, then the
4322
+ * Store's call to {@link #load} will override any specified <tt>callback</tt> and <tt>params</tt>
4323
+ * options. In this case, use the Store's {@link Ext.data.Store#events events} to modify parameters,
4324
+ * or react to loading events. The Store's {@link Ext.data.Store#baseParams baseParams} may also be
4325
+ * used to pass parameters known at instantiation time.</p>
4326
+ * <p>If an options parameter is passed, the singleton {@link Ext.Ajax} object will be used to make
4327
+ * the request.</p>
4328
+ */
4329
+ Ext.data.HttpProxy = function(conn){
4330
+ Ext.data.HttpProxy.superclass.constructor.call(this, conn);
4331
+
4332
+ /**
4333
+ * The Connection object (Or options parameter to {@link Ext.Ajax#request}) which this HttpProxy
4334
+ * uses to make requests to the server. Properties of this object may be changed dynamically to
4335
+ * change the way data is requested.
4336
+ * @property
4337
+ */
4338
+ this.conn = conn;
4339
+
4340
+ // nullify the connection url. The url param has been copied to 'this' above. The connection
4341
+ // url will be set during each execution of doRequest when buildUrl is called. This makes it easier for users to override the
4342
+ // connection url during beforeaction events (ie: beforeload, beforewrite, etc).
4343
+ // Url is always re-defined during doRequest.
4344
+ this.conn.url = null;
4345
+
4346
+ this.useAjax = !conn || !conn.events;
4347
+
4348
+ // A hash containing active requests, keyed on action [Ext.data.Api.actions.create|read|update|destroy]
4349
+ var actions = Ext.data.Api.actions;
4350
+ this.activeRequest = {};
4351
+ for (var verb in actions) {
4352
+ this.activeRequest[actions[verb]] = undefined;
4353
+ }
4354
+ };
4355
+
4356
+ Ext.extend(Ext.data.HttpProxy, Ext.data.DataProxy, {
4357
+ /**
4358
+ * Return the {@link Ext.data.Connection} object being used by this Proxy.
4359
+ * @return {Connection} The Connection object. This object may be used to subscribe to events on
4360
+ * a finer-grained basis than the DataProxy events.
4361
+ */
4362
+ getConnection : function() {
4363
+ return this.useAjax ? Ext.Ajax : this.conn;
4364
+ },
4365
+
4366
+ /**
4367
+ * Used for overriding the url used for a single request. Designed to be called during a beforeaction event. Calling setUrl
4368
+ * will override any urls set via the api configuration parameter. Set the optional parameter makePermanent to set the url for
4369
+ * all subsequent requests. If not set to makePermanent, the next request will use the same url or api configuration defined
4370
+ * in the initial proxy configuration.
4371
+ * @param {String} url
4372
+ * @param {Boolean} makePermanent (Optional) [false]
4373
+ *
4374
+ * (e.g.: beforeload, beforesave, etc).
4375
+ */
4376
+ setUrl : function(url, makePermanent) {
4377
+ this.conn.url = url;
4378
+ if (makePermanent === true) {
4379
+ this.url = url;
4380
+ this.api = null;
4381
+ Ext.data.Api.prepare(this);
4382
+ }
4383
+ },
4384
+
4385
+ /**
4386
+ * HttpProxy implementation of DataProxy#doRequest
4387
+ * @param {String} action The crud action type (create, read, update, destroy)
4388
+ * @param {Ext.data.Record/Ext.data.Record[]} rs If action is load, rs will be null
4389
+ * @param {Object} params An object containing properties which are to be used as HTTP parameters
4390
+ * for the request to the remote server.
4391
+ * @param {Ext.data.DataReader} reader The Reader object which converts the data
4392
+ * object into a block of Ext.data.Records.
4393
+ * @param {Function} callback
4394
+ * <div class="sub-desc"><p>A function to be called after the request.
4395
+ * The <tt>callback</tt> is passed the following arguments:<ul>
4396
+ * <li><tt>r</tt> : Ext.data.Record[] The block of Ext.data.Records.</li>
4397
+ * <li><tt>options</tt>: Options object from the action request</li>
4398
+ * <li><tt>success</tt>: Boolean success indicator</li></ul></p></div>
4399
+ * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the browser window.
4400
+ * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
4401
+ * @protected
4402
+ */
4403
+ doRequest : function(action, rs, params, reader, cb, scope, arg) {
4404
+ var o = {
4405
+ method: (this.api[action]) ? this.api[action]['method'] : undefined,
4406
+ request: {
4407
+ callback : cb,
4408
+ scope : scope,
4409
+ arg : arg
4410
+ },
4411
+ reader: reader,
4412
+ callback : this.createCallback(action, rs),
4413
+ scope: this
4414
+ };
4415
+
4416
+ // If possible, transmit data using jsonData || xmlData on Ext.Ajax.request (An installed DataWriter would have written it there.).
4417
+ // Use std HTTP params otherwise.
4418
+ if (params.jsonData) {
4419
+ o.jsonData = params.jsonData;
4420
+ } else if (params.xmlData) {
4421
+ o.xmlData = params.xmlData;
4422
+ } else {
4423
+ o.params = params || {};
4424
+ }
4425
+ // Set the connection url. If this.conn.url is not null here,
4426
+ // the user must have overridden the url during a beforewrite/beforeload event-handler.
4427
+ // this.conn.url is nullified after each request.
4428
+ this.conn.url = this.buildUrl(action, rs);
4429
+
4430
+ if(this.useAjax){
4431
+
4432
+ Ext.applyIf(o, this.conn);
4433
+
4434
+ // If a currently running request is found for this action, abort it.
4435
+ if (this.activeRequest[action]) {
4436
+ ////
4437
+ // Disabled aborting activeRequest while implementing REST. activeRequest[action] will have to become an array
4438
+ // TODO ideas anyone?
4439
+ //
4440
+ //Ext.Ajax.abort(this.activeRequest[action]);
4441
+ }
4442
+ this.activeRequest[action] = Ext.Ajax.request(o);
4443
+ }else{
4444
+ this.conn.request(o);
4445
+ }
4446
+ // request is sent, nullify the connection url in preparation for the next request
4447
+ this.conn.url = null;
4448
+ },
4449
+
4450
+ /**
4451
+ * Returns a callback function for a request. Note a special case is made for the
4452
+ * read action vs all the others.
4453
+ * @param {String} action [create|update|delete|load]
4454
+ * @param {Ext.data.Record[]} rs The Store-recordset being acted upon
4455
+ * @private
4456
+ */
4457
+ createCallback : function(action, rs) {
4458
+ return function(o, success, response) {
4459
+ this.activeRequest[action] = undefined;
4460
+ if (!success) {
4461
+ if (action === Ext.data.Api.actions.read) {
4462
+ // @deprecated: fire loadexception for backwards compat.
4463
+ // TODO remove
4464
+ this.fireEvent('loadexception', this, o, response);
4465
+ }
4466
+ this.fireEvent('exception', this, 'response', action, o, response);
4467
+ o.request.callback.call(o.request.scope, null, o.request.arg, false);
4468
+ return;
4469
+ }
4470
+ if (action === Ext.data.Api.actions.read) {
4471
+ this.onRead(action, o, response);
4472
+ } else {
4473
+ this.onWrite(action, o, response, rs);
4474
+ }
4475
+ };
4476
+ },
4477
+
4478
+ /**
4479
+ * Callback for read action
4480
+ * @param {String} action Action name as per {@link Ext.data.Api.actions#read}.
4481
+ * @param {Object} o The request transaction object
4482
+ * @param {Object} res The server response
4483
+ * @fires loadexception (deprecated)
4484
+ * @fires exception
4485
+ * @fires load
4486
+ * @protected
4487
+ */
4488
+ onRead : function(action, o, response) {
4489
+ var result;
4490
+ try {
4491
+ result = o.reader.read(response);
4492
+ }catch(e){
4493
+ // @deprecated: fire old loadexception for backwards-compat.
4494
+ // TODO remove
4495
+ this.fireEvent('loadexception', this, o, response, e);
4496
+
4497
+ this.fireEvent('exception', this, 'response', action, o, response, e);
4498
+ o.request.callback.call(o.request.scope, null, o.request.arg, false);
4499
+ return;
4500
+ }
4501
+ if (result.success === false) {
4502
+ // @deprecated: fire old loadexception for backwards-compat.
4503
+ // TODO remove
4504
+ this.fireEvent('loadexception', this, o, response);
4505
+
4506
+ // Get DataReader read-back a response-object to pass along to exception event
4507
+ var res = o.reader.readResponse(action, response);
4508
+ this.fireEvent('exception', this, 'remote', action, o, res, null);
4509
+ }
4510
+ else {
4511
+ this.fireEvent('load', this, o, o.request.arg);
4512
+ }
4513
+ // TODO refactor onRead, onWrite to be more generalized now that we're dealing with Ext.data.Response instance
4514
+ // the calls to request.callback(...) in each will have to be made identical.
4515
+ // NOTE reader.readResponse does not currently return Ext.data.Response
4516
+ o.request.callback.call(o.request.scope, result, o.request.arg, result.success);
4517
+ },
4518
+ /**
4519
+ * Callback for write actions
4520
+ * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
4521
+ * @param {Object} trans The request transaction object
4522
+ * @param {Object} res The server response
4523
+ * @fires exception
4524
+ * @fires write
4525
+ * @protected
4526
+ */
4527
+ onWrite : function(action, o, response, rs) {
4528
+ var reader = o.reader;
4529
+ var res;
4530
+ try {
4531
+ res = reader.readResponse(action, response);
4532
+ } catch (e) {
4533
+ this.fireEvent('exception', this, 'response', action, o, response, e);
4534
+ o.request.callback.call(o.request.scope, null, o.request.arg, false);
4535
+ return;
4536
+ }
4537
+ if (res.success === true) {
4538
+ this.fireEvent('write', this, action, res.data, res, rs, o.request.arg);
4539
+ } else {
4540
+ this.fireEvent('exception', this, 'remote', action, o, res, rs);
4541
+ }
4542
+ // TODO refactor onRead, onWrite to be more generalized now that we're dealing with Ext.data.Response instance
4543
+ // the calls to request.callback(...) in each will have to be made similar.
4544
+ // NOTE reader.readResponse does not currently return Ext.data.Response
4545
+ o.request.callback.call(o.request.scope, res.data, res, res.success);
4546
+ },
4547
+
4548
+ // inherit docs
4549
+ destroy: function(){
4550
+ if(!this.useAjax){
4551
+ this.conn.abort();
4552
+ }else if(this.activeRequest){
4553
+ var actions = Ext.data.Api.actions;
4554
+ for (var verb in actions) {
4555
+ if(this.activeRequest[actions[verb]]){
4556
+ Ext.Ajax.abort(this.activeRequest[actions[verb]]);
4557
+ }
4558
+ }
4559
+ }
4560
+ Ext.data.HttpProxy.superclass.destroy.call(this);
4561
+ }
4562
+ });/**
4563
+ * @class Ext.data.MemoryProxy
4564
+ * @extends Ext.data.DataProxy
4565
+ * An implementation of Ext.data.DataProxy that simply passes the data specified in its constructor
4566
+ * to the Reader when its load method is called.
4567
+ * @constructor
4568
+ * @param {Object} data The data object which the Reader uses to construct a block of Ext.data.Records.
4569
+ */
4570
+ Ext.data.MemoryProxy = function(data){
4571
+ // Must define a dummy api with "read" action to satisfy DataProxy#doRequest and Ext.data.Api#prepare *before* calling super
4572
+ var api = {};
4573
+ api[Ext.data.Api.actions.read] = true;
4574
+ Ext.data.MemoryProxy.superclass.constructor.call(this, {
4575
+ api: api
4576
+ });
4577
+ this.data = data;
4578
+ };
4579
+
4580
+ Ext.extend(Ext.data.MemoryProxy, Ext.data.DataProxy, {
4581
+ /**
4582
+ * @event loadexception
4583
+ * Fires if an exception occurs in the Proxy during data loading. Note that this event is also relayed
4584
+ * through {@link Ext.data.Store}, so you can listen for it directly on any Store instance.
4585
+ * @param {Object} this
4586
+ * @param {Object} arg The callback's arg object passed to the {@link #load} function
4587
+ * @param {Object} null This parameter does not apply and will always be null for MemoryProxy
4588
+ * @param {Error} e The JavaScript Error object caught if the configured Reader could not read the data
4589
+ */
4590
+
4591
+ /**
4592
+ * MemoryProxy implementation of DataProxy#doRequest
4593
+ * @param {String} action
4594
+ * @param {Ext.data.Record/Ext.data.Record[]} rs If action is load, rs will be null
4595
+ * @param {Object} params An object containing properties which are to be used as HTTP parameters
4596
+ * for the request to the remote server.
4597
+ * @param {Ext.data.DataReader} reader The Reader object which converts the data
4598
+ * object into a block of Ext.data.Records.
4599
+ * @param {Function} callback The function into which to pass the block of Ext.data.Records.
4600
+ * The function must be passed <ul>
4601
+ * <li>The Record block object</li>
4602
+ * <li>The "arg" argument from the load function</li>
4603
+ * <li>A boolean success indicator</li>
4604
+ * </ul>
4605
+ * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the browser window.
4606
+ * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
4607
+ */
4608
+ doRequest : function(action, rs, params, reader, callback, scope, arg) {
4609
+ // No implementation for CRUD in MemoryProxy. Assumes all actions are 'load'
4610
+ params = params || {};
4611
+ var result;
4612
+ try {
4613
+ result = reader.readRecords(this.data);
4614
+ }catch(e){
4615
+ // @deprecated loadexception
4616
+ this.fireEvent("loadexception", this, null, arg, e);
4617
+
4618
+ this.fireEvent('exception', this, 'response', action, arg, null, e);
4619
+ callback.call(scope, null, arg, false);
4620
+ return;
4621
+ }
4622
+ callback.call(scope, result, arg, true);
4623
+ }
4624
+ });/**
4625
+ * @class Ext.data.Types
4626
+ * <p>This is s static class containing the system-supplied data types which may be given to a {@link Ext.data.Field Field}.<p/>
4627
+ * <p>The properties in this class are used as type indicators in the {@link Ext.data.Field Field} class, so to
4628
+ * test whether a Field is of a certain type, compare the {@link Ext.data.Field#type type} property against properties
4629
+ * of this class.</p>
4630
+ * <p>Developers may add their own application-specific data types to this class. Definition names must be UPPERCASE.
4631
+ * each type definition must contain three properties:</p>
4632
+ * <div class="mdetail-params"><ul>
4633
+ * <li><code>convert</code> : <i>Function</i><div class="sub-desc">A function to convert raw data values from a data block into the data
4634
+ * to be stored in the Field. The function is passed the collowing parameters:
4635
+ * <div class="mdetail-params"><ul>
4636
+ * <li><b>v</b> : Mixed<div class="sub-desc">The data value as read by the Reader, if undefined will use
4637
+ * the configured <tt>{@link Ext.data.Field#defaultValue defaultValue}</tt>.</div></li>
4638
+ * <li><b>rec</b> : Mixed<div class="sub-desc">The data object containing the row as read by the Reader.
4639
+ * Depending on the Reader type, this could be an Array ({@link Ext.data.ArrayReader ArrayReader}), an object
4640
+ * ({@link Ext.data.JsonReader JsonReader}), or an XML element ({@link Ext.data.XMLReader XMLReader}).</div></li>
4641
+ * </ul></div></div></li>
4642
+ * <li><code>sortType</code> : <i>Function</i> <div class="sub-desc">A function to convert the stored data into comparable form, as defined by {@link Ext.data.SortTypes}.</div></li>
4643
+ * <li><code>type</code> : <i>String</i> <div class="sub-desc">A textual data type name.</div></li>
4644
+ * </ul></div>
4645
+ * <p>For example, to create a VELatLong field (See the Microsoft Bing Mapping API) containing the latitude/longitude value of a datapoint on a map from a JsonReader data block
4646
+ * which contained the properties <code>lat</code> and <code>long</code>, you would define a new data type like this:</p>
4647
+ *<pre><code>
4648
+ // Add a new Field data type which stores a VELatLong object in the Record.
4649
+ Ext.data.Types.VELATLONG = {
4650
+ convert: function(v, data) {
4651
+ return new VELatLong(data.lat, data.long);
4652
+ },
4653
+ sortType: function(v) {
4654
+ return v.Latitude; // When sorting, order by latitude
4655
+ },
4656
+ type: 'VELatLong'
4657
+ };
4658
+ </code></pre>
4659
+ * <p>Then, when declaring a Record, use <pre><code>
4660
+ var types = Ext.data.Types; // allow shorthand type access
4661
+ UnitRecord = Ext.data.Record.create([
4662
+ { name: 'unitName', mapping: 'UnitName' },
4663
+ { name: 'curSpeed', mapping: 'CurSpeed', type: types.INT },
4664
+ { name: 'latitude', mapping: 'lat', type: types.FLOAT },
4665
+ { name: 'latitude', mapping: 'lat', type: types.FLOAT },
4666
+ { name: 'position', type: types.VELATLONG }
4667
+ ]);
4668
+ </code></pre>
4669
+ * @singleton
4670
+ */
4671
+ Ext.data.Types = new function(){
4672
+ var st = Ext.data.SortTypes;
4673
+ Ext.apply(this, {
4674
+ /**
4675
+ * @type Regexp
4676
+ * @property stripRe
4677
+ * A regular expression for stripping non-numeric characters from a numeric value. Defaults to <tt>/[\$,%]/g</tt>.
4678
+ * This should be overridden for localization.
4679
+ */
4680
+ stripRe: /[\$,%]/g,
4681
+
4682
+ /**
4683
+ * @type Object.
4684
+ * @property AUTO
4685
+ * This data type means that no conversion is applied to the raw data before it is placed into a Record.
4686
+ */
4687
+ AUTO: {
4688
+ convert: function(v){ return v; },
4689
+ sortType: st.none,
4690
+ type: 'auto'
4691
+ },
4692
+
4693
+ /**
4694
+ * @type Object.
4695
+ * @property STRING
4696
+ * This data type means that the raw data is converted into a String before it is placed into a Record.
4697
+ */
4698
+ STRING: {
4699
+ convert: function(v){ return (v === undefined || v === null) ? '' : String(v); },
4700
+ sortType: st.asUCString,
4701
+ type: 'string'
4702
+ },
4703
+
4704
+ /**
4705
+ * @type Object.
4706
+ * @property INT
4707
+ * This data type means that the raw data is converted into an integer before it is placed into a Record.
4708
+ * <p>The synonym <code>INTEGER</code> is equivalent.</p>
4709
+ */
4710
+ INT: {
4711
+ convert: function(v){
4712
+ return v !== undefined && v !== null && v !== '' ?
4713
+ parseInt(String(v).replace(Ext.data.Types.stripRe, ''), 10) : (this.useNull ? null : 0);
4714
+ },
4715
+ sortType: st.none,
4716
+ type: 'int'
4717
+ },
4718
+
4719
+ /**
4720
+ * @type Object.
4721
+ * @property FLOAT
4722
+ * This data type means that the raw data is converted into a number before it is placed into a Record.
4723
+ * <p>The synonym <code>NUMBER</code> is equivalent.</p>
4724
+ */
4725
+ FLOAT: {
4726
+ convert: function(v){
4727
+ return v !== undefined && v !== null && v !== '' ?
4728
+ parseFloat(String(v).replace(Ext.data.Types.stripRe, ''), 10) : (this.useNull ? null : 0);
4729
+ },
4730
+ sortType: st.none,
4731
+ type: 'float'
4732
+ },
4733
+
4734
+ /**
4735
+ * @type Object.
4736
+ * @property BOOL
4737
+ * <p>This data type means that the raw data is converted into a boolean before it is placed into
4738
+ * a Record. The string "true" and the number 1 are converted to boolean <code>true</code>.</p>
4739
+ * <p>The synonym <code>BOOLEAN</code> is equivalent.</p>
4740
+ */
4741
+ BOOL: {
4742
+ convert: function(v){ return v === true || v === 'true' || v == 1; },
4743
+ sortType: st.none,
4744
+ type: 'bool'
4745
+ },
4746
+
4747
+ /**
4748
+ * @type Object.
4749
+ * @property DATE
4750
+ * This data type means that the raw data is converted into a Date before it is placed into a Record.
4751
+ * The date format is specified in the constructor of the {@link Ext.data.Field} to which this type is
4752
+ * being applied.
4753
+ */
4754
+ DATE: {
4755
+ convert: function(v){
4756
+ var df = this.dateFormat;
4757
+ if(!v){
4758
+ return null;
4759
+ }
4760
+ if(Ext.isDate(v)){
4761
+ return v;
4762
+ }
4763
+ if(df){
4764
+ if(df == 'timestamp'){
4765
+ return new Date(v*1000);
4766
+ }
4767
+ if(df == 'time'){
4768
+ return new Date(parseInt(v, 10));
4769
+ }
4770
+ return Date.parseDate(v, df);
4771
+ }
4772
+ var parsed = Date.parse(v);
4773
+ return parsed ? new Date(parsed) : null;
4774
+ },
4775
+ sortType: st.asDate,
4776
+ type: 'date'
4777
+ }
4778
+ });
4779
+
4780
+ Ext.apply(this, {
4781
+ /**
4782
+ * @type Object.
4783
+ * @property BOOLEAN
4784
+ * <p>This data type means that the raw data is converted into a boolean before it is placed into
4785
+ * a Record. The string "true" and the number 1 are converted to boolean <code>true</code>.</p>
4786
+ * <p>The synonym <code>BOOL</code> is equivalent.</p>
4787
+ */
4788
+ BOOLEAN: this.BOOL,
4789
+ /**
4790
+ * @type Object.
4791
+ * @property INTEGER
4792
+ * This data type means that the raw data is converted into an integer before it is placed into a Record.
4793
+ * <p>The synonym <code>INT</code> is equivalent.</p>
4794
+ */
4795
+ INTEGER: this.INT,
4796
+ /**
4797
+ * @type Object.
4798
+ * @property NUMBER
4799
+ * This data type means that the raw data is converted into a number before it is placed into a Record.
4800
+ * <p>The synonym <code>FLOAT</code> is equivalent.</p>
4801
+ */
4802
+ NUMBER: this.FLOAT
4803
+ });
4804
+ };