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,4802 @@
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
+ * These classes are derivatives of the similarly named classes in the YUI Library.
9
+ * The original license:
10
+ * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
11
+ * Code licensed under the BSD License:
12
+ * http://developer.yahoo.net/yui/license.txt
13
+ */
14
+
15
+ (function() {
16
+
17
+ var Event=Ext.EventManager;
18
+ var Dom=Ext.lib.Dom;
19
+
20
+ /**
21
+ * @class Ext.dd.DragDrop
22
+ * Defines the interface and base operation of items that that can be
23
+ * dragged or can be drop targets. It was designed to be extended, overriding
24
+ * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
25
+ * Up to three html elements can be associated with a DragDrop instance:
26
+ * <ul>
27
+ * <li>linked element: the element that is passed into the constructor.
28
+ * This is the element which defines the boundaries for interaction with
29
+ * other DragDrop objects.</li>
30
+ * <li>handle element(s): The drag operation only occurs if the element that
31
+ * was clicked matches a handle element. By default this is the linked
32
+ * element, but there are times that you will want only a portion of the
33
+ * linked element to initiate the drag operation, and the setHandleElId()
34
+ * method provides a way to define this.</li>
35
+ * <li>drag element: this represents the element that would be moved along
36
+ * with the cursor during a drag operation. By default, this is the linked
37
+ * element itself as in {@link Ext.dd.DD}. setDragElId() lets you define
38
+ * a separate element that would be moved, as in {@link Ext.dd.DDProxy}.
39
+ * </li>
40
+ * </ul>
41
+ * This class should not be instantiated until the onload event to ensure that
42
+ * the associated elements are available.
43
+ * The following would define a DragDrop obj that would interact with any
44
+ * other DragDrop obj in the "group1" group:
45
+ * <pre>
46
+ * dd = new Ext.dd.DragDrop("div1", "group1");
47
+ * </pre>
48
+ * Since none of the event handlers have been implemented, nothing would
49
+ * actually happen if you were to run the code above. Normally you would
50
+ * override this class or one of the default implementations, but you can
51
+ * also override the methods you want on an instance of the class...
52
+ * <pre>
53
+ * dd.onDragDrop = function(e, id) {
54
+ * &nbsp;&nbsp;alert("dd was dropped on " + id);
55
+ * }
56
+ * </pre>
57
+ * @constructor
58
+ * @param {String} id of the element that is linked to this instance
59
+ * @param {String} sGroup the group of related DragDrop objects
60
+ * @param {object} config an object containing configurable attributes
61
+ * Valid properties for DragDrop:
62
+ * padding, isTarget, maintainOffset, primaryButtonOnly
63
+ */
64
+ Ext.dd.DragDrop = function(id, sGroup, config) {
65
+ if(id) {
66
+ this.init(id, sGroup, config);
67
+ }
68
+ };
69
+
70
+ Ext.dd.DragDrop.prototype = {
71
+
72
+ /**
73
+ * Set to false to enable a DragDrop object to fire drag events while dragging
74
+ * over its own Element. Defaults to true - DragDrop objects do not by default
75
+ * fire drag events to themselves.
76
+ * @property ignoreSelf
77
+ * @type Boolean
78
+ */
79
+
80
+ /**
81
+ * The id of the element associated with this object. This is what we
82
+ * refer to as the "linked element" because the size and position of
83
+ * this element is used to determine when the drag and drop objects have
84
+ * interacted.
85
+ * @property id
86
+ * @type String
87
+ */
88
+ id: null,
89
+
90
+ /**
91
+ * Configuration attributes passed into the constructor
92
+ * @property config
93
+ * @type object
94
+ */
95
+ config: null,
96
+
97
+ /**
98
+ * The id of the element that will be dragged. By default this is same
99
+ * as the linked element, but could be changed to another element. Ex:
100
+ * Ext.dd.DDProxy
101
+ * @property dragElId
102
+ * @type String
103
+ * @private
104
+ */
105
+ dragElId: null,
106
+
107
+ /**
108
+ * The ID of the element that initiates the drag operation. By default
109
+ * this is the linked element, but could be changed to be a child of this
110
+ * element. This lets us do things like only starting the drag when the
111
+ * header element within the linked html element is clicked.
112
+ * @property handleElId
113
+ * @type String
114
+ * @private
115
+ */
116
+ handleElId: null,
117
+
118
+ /**
119
+ * An object who's property names identify HTML tags to be considered invalid as drag handles.
120
+ * A non-null property value identifies the tag as invalid. Defaults to the
121
+ * following value which prevents drag operations from being initiated by &lt;a> elements:<pre><code>
122
+ {
123
+ A: "A"
124
+ }</code></pre>
125
+ * @property invalidHandleTypes
126
+ * @type Object
127
+ */
128
+ invalidHandleTypes: null,
129
+
130
+ /**
131
+ * An object who's property names identify the IDs of elements to be considered invalid as drag handles.
132
+ * A non-null property value identifies the ID as invalid. For example, to prevent
133
+ * dragging from being initiated on element ID "foo", use:<pre><code>
134
+ {
135
+ foo: true
136
+ }</code></pre>
137
+ * @property invalidHandleIds
138
+ * @type Object
139
+ */
140
+ invalidHandleIds: null,
141
+
142
+ /**
143
+ * An Array of CSS class names for elements to be considered in valid as drag handles.
144
+ * @property invalidHandleClasses
145
+ * @type Array
146
+ */
147
+ invalidHandleClasses: null,
148
+
149
+ /**
150
+ * The linked element's absolute X position at the time the drag was
151
+ * started
152
+ * @property startPageX
153
+ * @type int
154
+ * @private
155
+ */
156
+ startPageX: 0,
157
+
158
+ /**
159
+ * The linked element's absolute X position at the time the drag was
160
+ * started
161
+ * @property startPageY
162
+ * @type int
163
+ * @private
164
+ */
165
+ startPageY: 0,
166
+
167
+ /**
168
+ * The group defines a logical collection of DragDrop objects that are
169
+ * related. Instances only get events when interacting with other
170
+ * DragDrop object in the same group. This lets us define multiple
171
+ * groups using a single DragDrop subclass if we want.
172
+ * @property groups
173
+ * @type object An object in the format {'group1':true, 'group2':true}
174
+ */
175
+ groups: null,
176
+
177
+ /**
178
+ * Individual drag/drop instances can be locked. This will prevent
179
+ * onmousedown start drag.
180
+ * @property locked
181
+ * @type boolean
182
+ * @private
183
+ */
184
+ locked: false,
185
+
186
+ /**
187
+ * Lock this instance
188
+ * @method lock
189
+ */
190
+ lock: function() {
191
+ this.locked = true;
192
+ },
193
+
194
+ /**
195
+ * When set to true, other DD objects in cooperating DDGroups do not receive
196
+ * notification events when this DD object is dragged over them. Defaults to false.
197
+ * @property moveOnly
198
+ * @type boolean
199
+ */
200
+ moveOnly: false,
201
+
202
+ /**
203
+ * Unlock this instace
204
+ * @method unlock
205
+ */
206
+ unlock: function() {
207
+ this.locked = false;
208
+ },
209
+
210
+ /**
211
+ * By default, all instances can be a drop target. This can be disabled by
212
+ * setting isTarget to false.
213
+ * @property isTarget
214
+ * @type boolean
215
+ */
216
+ isTarget: true,
217
+
218
+ /**
219
+ * The padding configured for this drag and drop object for calculating
220
+ * the drop zone intersection with this object.
221
+ * @property padding
222
+ * @type int[] An array containing the 4 padding values: [top, right, bottom, left]
223
+ */
224
+ padding: null,
225
+
226
+ /**
227
+ * Cached reference to the linked element
228
+ * @property _domRef
229
+ * @private
230
+ */
231
+ _domRef: null,
232
+
233
+ /**
234
+ * Internal typeof flag
235
+ * @property __ygDragDrop
236
+ * @private
237
+ */
238
+ __ygDragDrop: true,
239
+
240
+ /**
241
+ * Set to true when horizontal contraints are applied
242
+ * @property constrainX
243
+ * @type boolean
244
+ * @private
245
+ */
246
+ constrainX: false,
247
+
248
+ /**
249
+ * Set to true when vertical contraints are applied
250
+ * @property constrainY
251
+ * @type boolean
252
+ * @private
253
+ */
254
+ constrainY: false,
255
+
256
+ /**
257
+ * The left constraint
258
+ * @property minX
259
+ * @type int
260
+ * @private
261
+ */
262
+ minX: 0,
263
+
264
+ /**
265
+ * The right constraint
266
+ * @property maxX
267
+ * @type int
268
+ * @private
269
+ */
270
+ maxX: 0,
271
+
272
+ /**
273
+ * The up constraint
274
+ * @property minY
275
+ * @type int
276
+ * @private
277
+ */
278
+ minY: 0,
279
+
280
+ /**
281
+ * The down constraint
282
+ * @property maxY
283
+ * @type int
284
+ * @private
285
+ */
286
+ maxY: 0,
287
+
288
+ /**
289
+ * Maintain offsets when we resetconstraints. Set to true when you want
290
+ * the position of the element relative to its parent to stay the same
291
+ * when the page changes
292
+ *
293
+ * @property maintainOffset
294
+ * @type boolean
295
+ */
296
+ maintainOffset: false,
297
+
298
+ /**
299
+ * Array of pixel locations the element will snap to if we specified a
300
+ * horizontal graduation/interval. This array is generated automatically
301
+ * when you define a tick interval.
302
+ * @property xTicks
303
+ * @type int[]
304
+ */
305
+ xTicks: null,
306
+
307
+ /**
308
+ * Array of pixel locations the element will snap to if we specified a
309
+ * vertical graduation/interval. This array is generated automatically
310
+ * when you define a tick interval.
311
+ * @property yTicks
312
+ * @type int[]
313
+ */
314
+ yTicks: null,
315
+
316
+ /**
317
+ * By default the drag and drop instance will only respond to the primary
318
+ * button click (left button for a right-handed mouse). Set to true to
319
+ * allow drag and drop to start with any mouse click that is propogated
320
+ * by the browser
321
+ * @property primaryButtonOnly
322
+ * @type boolean
323
+ */
324
+ primaryButtonOnly: true,
325
+
326
+ /**
327
+ * The available property is false until the linked dom element is accessible.
328
+ * @property available
329
+ * @type boolean
330
+ */
331
+ available: false,
332
+
333
+ /**
334
+ * By default, drags can only be initiated if the mousedown occurs in the
335
+ * region the linked element is. This is done in part to work around a
336
+ * bug in some browsers that mis-report the mousedown if the previous
337
+ * mouseup happened outside of the window. This property is set to true
338
+ * if outer handles are defined.
339
+ *
340
+ * @property hasOuterHandles
341
+ * @type boolean
342
+ * @default false
343
+ */
344
+ hasOuterHandles: false,
345
+
346
+ /**
347
+ * Code that executes immediately before the startDrag event
348
+ * @method b4StartDrag
349
+ * @private
350
+ */
351
+ b4StartDrag: function(x, y) { },
352
+
353
+ /**
354
+ * Abstract method called after a drag/drop object is clicked
355
+ * and the drag or mousedown time thresholds have beeen met.
356
+ * @method startDrag
357
+ * @param {int} X click location
358
+ * @param {int} Y click location
359
+ */
360
+ startDrag: function(x, y) { /* override this */ },
361
+
362
+ /**
363
+ * Code that executes immediately before the onDrag event
364
+ * @method b4Drag
365
+ * @private
366
+ */
367
+ b4Drag: function(e) { },
368
+
369
+ /**
370
+ * Abstract method called during the onMouseMove event while dragging an
371
+ * object.
372
+ * @method onDrag
373
+ * @param {Event} e the mousemove event
374
+ */
375
+ onDrag: function(e) { /* override this */ },
376
+
377
+ /**
378
+ * Abstract method called when this element fist begins hovering over
379
+ * another DragDrop obj
380
+ * @method onDragEnter
381
+ * @param {Event} e the mousemove event
382
+ * @param {String|DragDrop[]} id In POINT mode, the element
383
+ * id this is hovering over. In INTERSECT mode, an array of one or more
384
+ * dragdrop items being hovered over.
385
+ */
386
+ onDragEnter: function(e, id) { /* override this */ },
387
+
388
+ /**
389
+ * Code that executes immediately before the onDragOver event
390
+ * @method b4DragOver
391
+ * @private
392
+ */
393
+ b4DragOver: function(e) { },
394
+
395
+ /**
396
+ * Abstract method called when this element is hovering over another
397
+ * DragDrop obj
398
+ * @method onDragOver
399
+ * @param {Event} e the mousemove event
400
+ * @param {String|DragDrop[]} id In POINT mode, the element
401
+ * id this is hovering over. In INTERSECT mode, an array of dd items
402
+ * being hovered over.
403
+ */
404
+ onDragOver: function(e, id) { /* override this */ },
405
+
406
+ /**
407
+ * Code that executes immediately before the onDragOut event
408
+ * @method b4DragOut
409
+ * @private
410
+ */
411
+ b4DragOut: function(e) { },
412
+
413
+ /**
414
+ * Abstract method called when we are no longer hovering over an element
415
+ * @method onDragOut
416
+ * @param {Event} e the mousemove event
417
+ * @param {String|DragDrop[]} id In POINT mode, the element
418
+ * id this was hovering over. In INTERSECT mode, an array of dd items
419
+ * that the mouse is no longer over.
420
+ */
421
+ onDragOut: function(e, id) { /* override this */ },
422
+
423
+ /**
424
+ * Code that executes immediately before the onDragDrop event
425
+ * @method b4DragDrop
426
+ * @private
427
+ */
428
+ b4DragDrop: function(e) { },
429
+
430
+ /**
431
+ * Abstract method called when this item is dropped on another DragDrop
432
+ * obj
433
+ * @method onDragDrop
434
+ * @param {Event} e the mouseup event
435
+ * @param {String|DragDrop[]} id In POINT mode, the element
436
+ * id this was dropped on. In INTERSECT mode, an array of dd items this
437
+ * was dropped on.
438
+ */
439
+ onDragDrop: function(e, id) { /* override this */ },
440
+
441
+ /**
442
+ * Abstract method called when this item is dropped on an area with no
443
+ * drop target
444
+ * @method onInvalidDrop
445
+ * @param {Event} e the mouseup event
446
+ */
447
+ onInvalidDrop: function(e) { /* override this */ },
448
+
449
+ /**
450
+ * Code that executes immediately before the endDrag event
451
+ * @method b4EndDrag
452
+ * @private
453
+ */
454
+ b4EndDrag: function(e) { },
455
+
456
+ /**
457
+ * Fired when we are done dragging the object
458
+ * @method endDrag
459
+ * @param {Event} e the mouseup event
460
+ */
461
+ endDrag: function(e) { /* override this */ },
462
+
463
+ /**
464
+ * Code executed immediately before the onMouseDown event
465
+ * @method b4MouseDown
466
+ * @param {Event} e the mousedown event
467
+ * @private
468
+ */
469
+ b4MouseDown: function(e) { },
470
+
471
+ /**
472
+ * Event handler that fires when a drag/drop obj gets a mousedown
473
+ * @method onMouseDown
474
+ * @param {Event} e the mousedown event
475
+ */
476
+ onMouseDown: function(e) { /* override this */ },
477
+
478
+ /**
479
+ * Event handler that fires when a drag/drop obj gets a mouseup
480
+ * @method onMouseUp
481
+ * @param {Event} e the mouseup event
482
+ */
483
+ onMouseUp: function(e) { /* override this */ },
484
+
485
+ /**
486
+ * Override the onAvailable method to do what is needed after the initial
487
+ * position was determined.
488
+ * @method onAvailable
489
+ */
490
+ onAvailable: function () {
491
+ },
492
+
493
+ /**
494
+ * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
495
+ * @type Object
496
+ */
497
+ defaultPadding : {left:0, right:0, top:0, bottom:0},
498
+
499
+ /**
500
+ * Initializes the drag drop object's constraints to restrict movement to a certain element.
501
+ *
502
+ * Usage:
503
+ <pre><code>
504
+ var dd = new Ext.dd.DDProxy("dragDiv1", "proxytest",
505
+ { dragElId: "existingProxyDiv" });
506
+ dd.startDrag = function(){
507
+ this.constrainTo("parent-id");
508
+ };
509
+ </code></pre>
510
+ * Or you can initalize it using the {@link Ext.Element} object:
511
+ <pre><code>
512
+ Ext.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
513
+ startDrag : function(){
514
+ this.constrainTo("parent-id");
515
+ }
516
+ });
517
+ </code></pre>
518
+ * @param {Mixed} constrainTo The element to constrain to.
519
+ * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
520
+ * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
521
+ * an object containing the sides to pad. For example: {right:10, bottom:10}
522
+ * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
523
+ */
524
+ constrainTo : function(constrainTo, pad, inContent){
525
+ if(Ext.isNumber(pad)){
526
+ pad = {left: pad, right:pad, top:pad, bottom:pad};
527
+ }
528
+ pad = pad || this.defaultPadding;
529
+ var b = Ext.get(this.getEl()).getBox(),
530
+ ce = Ext.get(constrainTo),
531
+ s = ce.getScroll(),
532
+ c,
533
+ cd = ce.dom;
534
+ if(cd == document.body){
535
+ c = { x: s.left, y: s.top, width: Ext.lib.Dom.getViewWidth(), height: Ext.lib.Dom.getViewHeight()};
536
+ }else{
537
+ var xy = ce.getXY();
538
+ c = {x : xy[0], y: xy[1], width: cd.clientWidth, height: cd.clientHeight};
539
+ }
540
+
541
+
542
+ var topSpace = b.y - c.y,
543
+ leftSpace = b.x - c.x;
544
+
545
+ this.resetConstraints();
546
+ this.setXConstraint(leftSpace - (pad.left||0), // left
547
+ c.width - leftSpace - b.width - (pad.right||0), //right
548
+ this.xTickSize
549
+ );
550
+ this.setYConstraint(topSpace - (pad.top||0), //top
551
+ c.height - topSpace - b.height - (pad.bottom||0), //bottom
552
+ this.yTickSize
553
+ );
554
+ },
555
+
556
+ /**
557
+ * Returns a reference to the linked element
558
+ * @method getEl
559
+ * @return {HTMLElement} the html element
560
+ */
561
+ getEl: function() {
562
+ if (!this._domRef) {
563
+ this._domRef = Ext.getDom(this.id);
564
+ }
565
+
566
+ return this._domRef;
567
+ },
568
+
569
+ /**
570
+ * Returns a reference to the actual element to drag. By default this is
571
+ * the same as the html element, but it can be assigned to another
572
+ * element. An example of this can be found in Ext.dd.DDProxy
573
+ * @method getDragEl
574
+ * @return {HTMLElement} the html element
575
+ */
576
+ getDragEl: function() {
577
+ return Ext.getDom(this.dragElId);
578
+ },
579
+
580
+ /**
581
+ * Sets up the DragDrop object. Must be called in the constructor of any
582
+ * Ext.dd.DragDrop subclass
583
+ * @method init
584
+ * @param id the id of the linked element
585
+ * @param {String} sGroup the group of related items
586
+ * @param {object} config configuration attributes
587
+ */
588
+ init: function(id, sGroup, config) {
589
+ this.initTarget(id, sGroup, config);
590
+ Event.on(this.id, "mousedown", this.handleMouseDown, this);
591
+ // Event.on(this.id, "selectstart", Event.preventDefault);
592
+ },
593
+
594
+ /**
595
+ * Initializes Targeting functionality only... the object does not
596
+ * get a mousedown handler.
597
+ * @method initTarget
598
+ * @param id the id of the linked element
599
+ * @param {String} sGroup the group of related items
600
+ * @param {object} config configuration attributes
601
+ */
602
+ initTarget: function(id, sGroup, config) {
603
+
604
+ // configuration attributes
605
+ this.config = config || {};
606
+
607
+ // create a local reference to the drag and drop manager
608
+ this.DDM = Ext.dd.DDM;
609
+ // initialize the groups array
610
+ this.groups = {};
611
+
612
+ // assume that we have an element reference instead of an id if the
613
+ // parameter is not a string
614
+ if (typeof id !== "string") {
615
+ id = Ext.id(id);
616
+ }
617
+
618
+ // set the id
619
+ this.id = id;
620
+
621
+ // add to an interaction group
622
+ this.addToGroup((sGroup) ? sGroup : "default");
623
+
624
+ // We don't want to register this as the handle with the manager
625
+ // so we just set the id rather than calling the setter.
626
+ this.handleElId = id;
627
+
628
+ // the linked element is the element that gets dragged by default
629
+ this.setDragElId(id);
630
+
631
+ // by default, clicked anchors will not start drag operations.
632
+ this.invalidHandleTypes = { A: "A" };
633
+ this.invalidHandleIds = {};
634
+ this.invalidHandleClasses = [];
635
+
636
+ this.applyConfig();
637
+
638
+ this.handleOnAvailable();
639
+ },
640
+
641
+ /**
642
+ * Applies the configuration parameters that were passed into the constructor.
643
+ * This is supposed to happen at each level through the inheritance chain. So
644
+ * a DDProxy implentation will execute apply config on DDProxy, DD, and
645
+ * DragDrop in order to get all of the parameters that are available in
646
+ * each object.
647
+ * @method applyConfig
648
+ */
649
+ applyConfig: function() {
650
+
651
+ // configurable properties:
652
+ // padding, isTarget, maintainOffset, primaryButtonOnly
653
+ this.padding = this.config.padding || [0, 0, 0, 0];
654
+ this.isTarget = (this.config.isTarget !== false);
655
+ this.maintainOffset = (this.config.maintainOffset);
656
+ this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
657
+
658
+ },
659
+
660
+ /**
661
+ * Executed when the linked element is available
662
+ * @method handleOnAvailable
663
+ * @private
664
+ */
665
+ handleOnAvailable: function() {
666
+ this.available = true;
667
+ this.resetConstraints();
668
+ this.onAvailable();
669
+ },
670
+
671
+ /**
672
+ * Configures the padding for the target zone in px. Effectively expands
673
+ * (or reduces) the virtual object size for targeting calculations.
674
+ * Supports css-style shorthand; if only one parameter is passed, all sides
675
+ * will have that padding, and if only two are passed, the top and bottom
676
+ * will have the first param, the left and right the second.
677
+ * @method setPadding
678
+ * @param {int} iTop Top pad
679
+ * @param {int} iRight Right pad
680
+ * @param {int} iBot Bot pad
681
+ * @param {int} iLeft Left pad
682
+ */
683
+ setPadding: function(iTop, iRight, iBot, iLeft) {
684
+ // this.padding = [iLeft, iRight, iTop, iBot];
685
+ if (!iRight && 0 !== iRight) {
686
+ this.padding = [iTop, iTop, iTop, iTop];
687
+ } else if (!iBot && 0 !== iBot) {
688
+ this.padding = [iTop, iRight, iTop, iRight];
689
+ } else {
690
+ this.padding = [iTop, iRight, iBot, iLeft];
691
+ }
692
+ },
693
+
694
+ /**
695
+ * Stores the initial placement of the linked element.
696
+ * @method setInitPosition
697
+ * @param {int} diffX the X offset, default 0
698
+ * @param {int} diffY the Y offset, default 0
699
+ */
700
+ setInitPosition: function(diffX, diffY) {
701
+ var el = this.getEl();
702
+
703
+ if (!this.DDM.verifyEl(el)) {
704
+ return;
705
+ }
706
+
707
+ var dx = diffX || 0;
708
+ var dy = diffY || 0;
709
+
710
+ var p = Dom.getXY( el );
711
+
712
+ this.initPageX = p[0] - dx;
713
+ this.initPageY = p[1] - dy;
714
+
715
+ this.lastPageX = p[0];
716
+ this.lastPageY = p[1];
717
+
718
+ this.setStartPosition(p);
719
+ },
720
+
721
+ /**
722
+ * Sets the start position of the element. This is set when the obj
723
+ * is initialized, the reset when a drag is started.
724
+ * @method setStartPosition
725
+ * @param pos current position (from previous lookup)
726
+ * @private
727
+ */
728
+ setStartPosition: function(pos) {
729
+ var p = pos || Dom.getXY( this.getEl() );
730
+ this.deltaSetXY = null;
731
+
732
+ this.startPageX = p[0];
733
+ this.startPageY = p[1];
734
+ },
735
+
736
+ /**
737
+ * Add this instance to a group of related drag/drop objects. All
738
+ * instances belong to at least one group, and can belong to as many
739
+ * groups as needed.
740
+ * @method addToGroup
741
+ * @param sGroup {string} the name of the group
742
+ */
743
+ addToGroup: function(sGroup) {
744
+ this.groups[sGroup] = true;
745
+ this.DDM.regDragDrop(this, sGroup);
746
+ },
747
+
748
+ /**
749
+ * Remove's this instance from the supplied interaction group
750
+ * @method removeFromGroup
751
+ * @param {string} sGroup The group to drop
752
+ */
753
+ removeFromGroup: function(sGroup) {
754
+ if (this.groups[sGroup]) {
755
+ delete this.groups[sGroup];
756
+ }
757
+
758
+ this.DDM.removeDDFromGroup(this, sGroup);
759
+ },
760
+
761
+ /**
762
+ * Allows you to specify that an element other than the linked element
763
+ * will be moved with the cursor during a drag
764
+ * @method setDragElId
765
+ * @param id {string} the id of the element that will be used to initiate the drag
766
+ */
767
+ setDragElId: function(id) {
768
+ this.dragElId = id;
769
+ },
770
+
771
+ /**
772
+ * Allows you to specify a child of the linked element that should be
773
+ * used to initiate the drag operation. An example of this would be if
774
+ * you have a content div with text and links. Clicking anywhere in the
775
+ * content area would normally start the drag operation. Use this method
776
+ * to specify that an element inside of the content div is the element
777
+ * that starts the drag operation.
778
+ * @method setHandleElId
779
+ * @param id {string} the id of the element that will be used to
780
+ * initiate the drag.
781
+ */
782
+ setHandleElId: function(id) {
783
+ if (typeof id !== "string") {
784
+ id = Ext.id(id);
785
+ }
786
+ this.handleElId = id;
787
+ this.DDM.regHandle(this.id, id);
788
+ },
789
+
790
+ /**
791
+ * Allows you to set an element outside of the linked element as a drag
792
+ * handle
793
+ * @method setOuterHandleElId
794
+ * @param id the id of the element that will be used to initiate the drag
795
+ */
796
+ setOuterHandleElId: function(id) {
797
+ if (typeof id !== "string") {
798
+ id = Ext.id(id);
799
+ }
800
+ Event.on(id, "mousedown",
801
+ this.handleMouseDown, this);
802
+ this.setHandleElId(id);
803
+
804
+ this.hasOuterHandles = true;
805
+ },
806
+
807
+ /**
808
+ * Remove all drag and drop hooks for this element
809
+ * @method unreg
810
+ */
811
+ unreg: function() {
812
+ Event.un(this.id, "mousedown",
813
+ this.handleMouseDown);
814
+ this._domRef = null;
815
+ this.DDM._remove(this);
816
+ },
817
+
818
+ destroy : function(){
819
+ this.unreg();
820
+ },
821
+
822
+ /**
823
+ * Returns true if this instance is locked, or the drag drop mgr is locked
824
+ * (meaning that all drag/drop is disabled on the page.)
825
+ * @method isLocked
826
+ * @return {boolean} true if this obj or all drag/drop is locked, else
827
+ * false
828
+ */
829
+ isLocked: function() {
830
+ return (this.DDM.isLocked() || this.locked);
831
+ },
832
+
833
+ /**
834
+ * Fired when this object is clicked
835
+ * @method handleMouseDown
836
+ * @param {Event} e
837
+ * @param {Ext.dd.DragDrop} oDD the clicked dd object (this dd obj)
838
+ * @private
839
+ */
840
+ handleMouseDown: function(e, oDD){
841
+ if (this.primaryButtonOnly && e.button != 0) {
842
+ return;
843
+ }
844
+
845
+ if (this.isLocked()) {
846
+ return;
847
+ }
848
+
849
+ this.DDM.refreshCache(this.groups);
850
+
851
+ var pt = new Ext.lib.Point(Ext.lib.Event.getPageX(e), Ext.lib.Event.getPageY(e));
852
+ if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) ) {
853
+ } else {
854
+ if (this.clickValidator(e)) {
855
+
856
+ // set the initial element position
857
+ this.setStartPosition();
858
+
859
+ this.b4MouseDown(e);
860
+ this.onMouseDown(e);
861
+
862
+ this.DDM.handleMouseDown(e, this);
863
+
864
+ this.DDM.stopEvent(e);
865
+ } else {
866
+
867
+
868
+ }
869
+ }
870
+ },
871
+
872
+ clickValidator: function(e) {
873
+ var target = e.getTarget();
874
+ return ( this.isValidHandleChild(target) &&
875
+ (this.id == this.handleElId ||
876
+ this.DDM.handleWasClicked(target, this.id)) );
877
+ },
878
+
879
+ /**
880
+ * Allows you to specify a tag name that should not start a drag operation
881
+ * when clicked. This is designed to facilitate embedding links within a
882
+ * drag handle that do something other than start the drag.
883
+ * @method addInvalidHandleType
884
+ * @param {string} tagName the type of element to exclude
885
+ */
886
+ addInvalidHandleType: function(tagName) {
887
+ var type = tagName.toUpperCase();
888
+ this.invalidHandleTypes[type] = type;
889
+ },
890
+
891
+ /**
892
+ * Lets you to specify an element id for a child of a drag handle
893
+ * that should not initiate a drag
894
+ * @method addInvalidHandleId
895
+ * @param {string} id the element id of the element you wish to ignore
896
+ */
897
+ addInvalidHandleId: function(id) {
898
+ if (typeof id !== "string") {
899
+ id = Ext.id(id);
900
+ }
901
+ this.invalidHandleIds[id] = id;
902
+ },
903
+
904
+ /**
905
+ * Lets you specify a css class of elements that will not initiate a drag
906
+ * @method addInvalidHandleClass
907
+ * @param {string} cssClass the class of the elements you wish to ignore
908
+ */
909
+ addInvalidHandleClass: function(cssClass) {
910
+ this.invalidHandleClasses.push(cssClass);
911
+ },
912
+
913
+ /**
914
+ * Unsets an excluded tag name set by addInvalidHandleType
915
+ * @method removeInvalidHandleType
916
+ * @param {string} tagName the type of element to unexclude
917
+ */
918
+ removeInvalidHandleType: function(tagName) {
919
+ var type = tagName.toUpperCase();
920
+ // this.invalidHandleTypes[type] = null;
921
+ delete this.invalidHandleTypes[type];
922
+ },
923
+
924
+ /**
925
+ * Unsets an invalid handle id
926
+ * @method removeInvalidHandleId
927
+ * @param {string} id the id of the element to re-enable
928
+ */
929
+ removeInvalidHandleId: function(id) {
930
+ if (typeof id !== "string") {
931
+ id = Ext.id(id);
932
+ }
933
+ delete this.invalidHandleIds[id];
934
+ },
935
+
936
+ /**
937
+ * Unsets an invalid css class
938
+ * @method removeInvalidHandleClass
939
+ * @param {string} cssClass the class of the element(s) you wish to
940
+ * re-enable
941
+ */
942
+ removeInvalidHandleClass: function(cssClass) {
943
+ for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
944
+ if (this.invalidHandleClasses[i] == cssClass) {
945
+ delete this.invalidHandleClasses[i];
946
+ }
947
+ }
948
+ },
949
+
950
+ /**
951
+ * Checks the tag exclusion list to see if this click should be ignored
952
+ * @method isValidHandleChild
953
+ * @param {HTMLElement} node the HTMLElement to evaluate
954
+ * @return {boolean} true if this is a valid tag type, false if not
955
+ */
956
+ isValidHandleChild: function(node) {
957
+
958
+ var valid = true;
959
+ // var n = (node.nodeName == "#text") ? node.parentNode : node;
960
+ var nodeName;
961
+ try {
962
+ nodeName = node.nodeName.toUpperCase();
963
+ } catch(e) {
964
+ nodeName = node.nodeName;
965
+ }
966
+ valid = valid && !this.invalidHandleTypes[nodeName];
967
+ valid = valid && !this.invalidHandleIds[node.id];
968
+
969
+ for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
970
+ valid = !Ext.fly(node).hasClass(this.invalidHandleClasses[i]);
971
+ }
972
+
973
+
974
+ return valid;
975
+
976
+ },
977
+
978
+ /**
979
+ * Create the array of horizontal tick marks if an interval was specified
980
+ * in setXConstraint().
981
+ * @method setXTicks
982
+ * @private
983
+ */
984
+ setXTicks: function(iStartX, iTickSize) {
985
+ this.xTicks = [];
986
+ this.xTickSize = iTickSize;
987
+
988
+ var tickMap = {};
989
+
990
+ for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
991
+ if (!tickMap[i]) {
992
+ this.xTicks[this.xTicks.length] = i;
993
+ tickMap[i] = true;
994
+ }
995
+ }
996
+
997
+ for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
998
+ if (!tickMap[i]) {
999
+ this.xTicks[this.xTicks.length] = i;
1000
+ tickMap[i] = true;
1001
+ }
1002
+ }
1003
+
1004
+ this.xTicks.sort(this.DDM.numericSort) ;
1005
+ },
1006
+
1007
+ /**
1008
+ * Create the array of vertical tick marks if an interval was specified in
1009
+ * setYConstraint().
1010
+ * @method setYTicks
1011
+ * @private
1012
+ */
1013
+ setYTicks: function(iStartY, iTickSize) {
1014
+ this.yTicks = [];
1015
+ this.yTickSize = iTickSize;
1016
+
1017
+ var tickMap = {};
1018
+
1019
+ for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
1020
+ if (!tickMap[i]) {
1021
+ this.yTicks[this.yTicks.length] = i;
1022
+ tickMap[i] = true;
1023
+ }
1024
+ }
1025
+
1026
+ for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
1027
+ if (!tickMap[i]) {
1028
+ this.yTicks[this.yTicks.length] = i;
1029
+ tickMap[i] = true;
1030
+ }
1031
+ }
1032
+
1033
+ this.yTicks.sort(this.DDM.numericSort) ;
1034
+ },
1035
+
1036
+ /**
1037
+ * By default, the element can be dragged any place on the screen. Use
1038
+ * this method to limit the horizontal travel of the element. Pass in
1039
+ * 0,0 for the parameters if you want to lock the drag to the y axis.
1040
+ * @method setXConstraint
1041
+ * @param {int} iLeft the number of pixels the element can move to the left
1042
+ * @param {int} iRight the number of pixels the element can move to the
1043
+ * right
1044
+ * @param {int} iTickSize optional parameter for specifying that the
1045
+ * element
1046
+ * should move iTickSize pixels at a time.
1047
+ */
1048
+ setXConstraint: function(iLeft, iRight, iTickSize) {
1049
+ this.leftConstraint = iLeft;
1050
+ this.rightConstraint = iRight;
1051
+
1052
+ this.minX = this.initPageX - iLeft;
1053
+ this.maxX = this.initPageX + iRight;
1054
+ if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
1055
+
1056
+ this.constrainX = true;
1057
+ },
1058
+
1059
+ /**
1060
+ * Clears any constraints applied to this instance. Also clears ticks
1061
+ * since they can't exist independent of a constraint at this time.
1062
+ * @method clearConstraints
1063
+ */
1064
+ clearConstraints: function() {
1065
+ this.constrainX = false;
1066
+ this.constrainY = false;
1067
+ this.clearTicks();
1068
+ },
1069
+
1070
+ /**
1071
+ * Clears any tick interval defined for this instance
1072
+ * @method clearTicks
1073
+ */
1074
+ clearTicks: function() {
1075
+ this.xTicks = null;
1076
+ this.yTicks = null;
1077
+ this.xTickSize = 0;
1078
+ this.yTickSize = 0;
1079
+ },
1080
+
1081
+ /**
1082
+ * By default, the element can be dragged any place on the screen. Set
1083
+ * this to limit the vertical travel of the element. Pass in 0,0 for the
1084
+ * parameters if you want to lock the drag to the x axis.
1085
+ * @method setYConstraint
1086
+ * @param {int} iUp the number of pixels the element can move up
1087
+ * @param {int} iDown the number of pixels the element can move down
1088
+ * @param {int} iTickSize optional parameter for specifying that the
1089
+ * element should move iTickSize pixels at a time.
1090
+ */
1091
+ setYConstraint: function(iUp, iDown, iTickSize) {
1092
+ this.topConstraint = iUp;
1093
+ this.bottomConstraint = iDown;
1094
+
1095
+ this.minY = this.initPageY - iUp;
1096
+ this.maxY = this.initPageY + iDown;
1097
+ if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
1098
+
1099
+ this.constrainY = true;
1100
+
1101
+ },
1102
+
1103
+ /**
1104
+ * resetConstraints must be called if you manually reposition a dd element.
1105
+ * @method resetConstraints
1106
+ * @param {boolean} maintainOffset
1107
+ */
1108
+ resetConstraints: function() {
1109
+ // Maintain offsets if necessary
1110
+ if (this.initPageX || this.initPageX === 0) {
1111
+ // figure out how much this thing has moved
1112
+ var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
1113
+ var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
1114
+
1115
+ this.setInitPosition(dx, dy);
1116
+
1117
+ // This is the first time we have detected the element's position
1118
+ } else {
1119
+ this.setInitPosition();
1120
+ }
1121
+
1122
+ if (this.constrainX) {
1123
+ this.setXConstraint( this.leftConstraint,
1124
+ this.rightConstraint,
1125
+ this.xTickSize );
1126
+ }
1127
+
1128
+ if (this.constrainY) {
1129
+ this.setYConstraint( this.topConstraint,
1130
+ this.bottomConstraint,
1131
+ this.yTickSize );
1132
+ }
1133
+ },
1134
+
1135
+ /**
1136
+ * Normally the drag element is moved pixel by pixel, but we can specify
1137
+ * that it move a number of pixels at a time. This method resolves the
1138
+ * location when we have it set up like this.
1139
+ * @method getTick
1140
+ * @param {int} val where we want to place the object
1141
+ * @param {int[]} tickArray sorted array of valid points
1142
+ * @return {int} the closest tick
1143
+ * @private
1144
+ */
1145
+ getTick: function(val, tickArray) {
1146
+ if (!tickArray) {
1147
+ // If tick interval is not defined, it is effectively 1 pixel,
1148
+ // so we return the value passed to us.
1149
+ return val;
1150
+ } else if (tickArray[0] >= val) {
1151
+ // The value is lower than the first tick, so we return the first
1152
+ // tick.
1153
+ return tickArray[0];
1154
+ } else {
1155
+ for (var i=0, len=tickArray.length; i<len; ++i) {
1156
+ var next = i + 1;
1157
+ if (tickArray[next] && tickArray[next] >= val) {
1158
+ var diff1 = val - tickArray[i];
1159
+ var diff2 = tickArray[next] - val;
1160
+ return (diff2 > diff1) ? tickArray[i] : tickArray[next];
1161
+ }
1162
+ }
1163
+
1164
+ // The value is larger than the last tick, so we return the last
1165
+ // tick.
1166
+ return tickArray[tickArray.length - 1];
1167
+ }
1168
+ },
1169
+
1170
+ /**
1171
+ * toString method
1172
+ * @method toString
1173
+ * @return {string} string representation of the dd obj
1174
+ */
1175
+ toString: function() {
1176
+ return ("DragDrop " + this.id);
1177
+ }
1178
+
1179
+ };
1180
+
1181
+ })();
1182
+ /*
1183
+ * The drag and drop utility provides a framework for building drag and drop
1184
+ * applications. In addition to enabling drag and drop for specific elements,
1185
+ * the drag and drop elements are tracked by the manager class, and the
1186
+ * interactions between the various elements are tracked during the drag and
1187
+ * the implementing code is notified about these important moments.
1188
+ */
1189
+
1190
+ // Only load the library once. Rewriting the manager class would orphan
1191
+ // existing drag and drop instances.
1192
+ if (!Ext.dd.DragDropMgr) {
1193
+
1194
+ /**
1195
+ * @class Ext.dd.DragDropMgr
1196
+ * DragDropMgr is a singleton that tracks the element interaction for
1197
+ * all DragDrop items in the window. Generally, you will not call
1198
+ * this class directly, but it does have helper methods that could
1199
+ * be useful in your DragDrop implementations.
1200
+ * @singleton
1201
+ */
1202
+ Ext.dd.DragDropMgr = function() {
1203
+
1204
+ var Event = Ext.EventManager;
1205
+
1206
+ return {
1207
+
1208
+ /**
1209
+ * Two dimensional Array of registered DragDrop objects. The first
1210
+ * dimension is the DragDrop item group, the second the DragDrop
1211
+ * object.
1212
+ * @property ids
1213
+ * @type String[]
1214
+ * @private
1215
+ * @static
1216
+ */
1217
+ ids: {},
1218
+
1219
+ /**
1220
+ * Array of element ids defined as drag handles. Used to determine
1221
+ * if the element that generated the mousedown event is actually the
1222
+ * handle and not the html element itself.
1223
+ * @property handleIds
1224
+ * @type String[]
1225
+ * @private
1226
+ * @static
1227
+ */
1228
+ handleIds: {},
1229
+
1230
+ /**
1231
+ * the DragDrop object that is currently being dragged
1232
+ * @property dragCurrent
1233
+ * @type DragDrop
1234
+ * @private
1235
+ * @static
1236
+ **/
1237
+ dragCurrent: null,
1238
+
1239
+ /**
1240
+ * the DragDrop object(s) that are being hovered over
1241
+ * @property dragOvers
1242
+ * @type Array
1243
+ * @private
1244
+ * @static
1245
+ */
1246
+ dragOvers: {},
1247
+
1248
+ /**
1249
+ * the X distance between the cursor and the object being dragged
1250
+ * @property deltaX
1251
+ * @type int
1252
+ * @private
1253
+ * @static
1254
+ */
1255
+ deltaX: 0,
1256
+
1257
+ /**
1258
+ * the Y distance between the cursor and the object being dragged
1259
+ * @property deltaY
1260
+ * @type int
1261
+ * @private
1262
+ * @static
1263
+ */
1264
+ deltaY: 0,
1265
+
1266
+ /**
1267
+ * Flag to determine if we should prevent the default behavior of the
1268
+ * events we define. By default this is true, but this can be set to
1269
+ * false if you need the default behavior (not recommended)
1270
+ * @property preventDefault
1271
+ * @type boolean
1272
+ * @static
1273
+ */
1274
+ preventDefault: true,
1275
+
1276
+ /**
1277
+ * Flag to determine if we should stop the propagation of the events
1278
+ * we generate. This is true by default but you may want to set it to
1279
+ * false if the html element contains other features that require the
1280
+ * mouse click.
1281
+ * @property stopPropagation
1282
+ * @type boolean
1283
+ * @static
1284
+ */
1285
+ stopPropagation: true,
1286
+
1287
+ /**
1288
+ * Internal flag that is set to true when drag and drop has been
1289
+ * intialized
1290
+ * @property initialized
1291
+ * @private
1292
+ * @static
1293
+ */
1294
+ initialized: false,
1295
+
1296
+ /**
1297
+ * All drag and drop can be disabled.
1298
+ * @property locked
1299
+ * @private
1300
+ * @static
1301
+ */
1302
+ locked: false,
1303
+
1304
+ /**
1305
+ * Called the first time an element is registered.
1306
+ * @method init
1307
+ * @private
1308
+ * @static
1309
+ */
1310
+ init: function() {
1311
+ this.initialized = true;
1312
+ },
1313
+
1314
+ /**
1315
+ * In point mode, drag and drop interaction is defined by the
1316
+ * location of the cursor during the drag/drop
1317
+ * @property POINT
1318
+ * @type int
1319
+ * @static
1320
+ */
1321
+ POINT: 0,
1322
+
1323
+ /**
1324
+ * In intersect mode, drag and drop interaction is defined by the
1325
+ * overlap of two or more drag and drop objects.
1326
+ * @property INTERSECT
1327
+ * @type int
1328
+ * @static
1329
+ */
1330
+ INTERSECT: 1,
1331
+
1332
+ /**
1333
+ * The current drag and drop mode. Default: POINT
1334
+ * @property mode
1335
+ * @type int
1336
+ * @static
1337
+ */
1338
+ mode: 0,
1339
+
1340
+ /**
1341
+ * Runs method on all drag and drop objects
1342
+ * @method _execOnAll
1343
+ * @private
1344
+ * @static
1345
+ */
1346
+ _execOnAll: function(sMethod, args) {
1347
+ for (var i in this.ids) {
1348
+ for (var j in this.ids[i]) {
1349
+ var oDD = this.ids[i][j];
1350
+ if (! this.isTypeOfDD(oDD)) {
1351
+ continue;
1352
+ }
1353
+ oDD[sMethod].apply(oDD, args);
1354
+ }
1355
+ }
1356
+ },
1357
+
1358
+ /**
1359
+ * Drag and drop initialization. Sets up the global event handlers
1360
+ * @method _onLoad
1361
+ * @private
1362
+ * @static
1363
+ */
1364
+ _onLoad: function() {
1365
+
1366
+ this.init();
1367
+
1368
+
1369
+ Event.on(document, "mouseup", this.handleMouseUp, this, true);
1370
+ Event.on(document, "mousemove", this.handleMouseMove, this, true);
1371
+ Event.on(window, "unload", this._onUnload, this, true);
1372
+ Event.on(window, "resize", this._onResize, this, true);
1373
+ // Event.on(window, "mouseout", this._test);
1374
+
1375
+ },
1376
+
1377
+ /**
1378
+ * Reset constraints on all drag and drop objs
1379
+ * @method _onResize
1380
+ * @private
1381
+ * @static
1382
+ */
1383
+ _onResize: function(e) {
1384
+ this._execOnAll("resetConstraints", []);
1385
+ },
1386
+
1387
+ /**
1388
+ * Lock all drag and drop functionality
1389
+ * @method lock
1390
+ * @static
1391
+ */
1392
+ lock: function() { this.locked = true; },
1393
+
1394
+ /**
1395
+ * Unlock all drag and drop functionality
1396
+ * @method unlock
1397
+ * @static
1398
+ */
1399
+ unlock: function() { this.locked = false; },
1400
+
1401
+ /**
1402
+ * Is drag and drop locked?
1403
+ * @method isLocked
1404
+ * @return {boolean} True if drag and drop is locked, false otherwise.
1405
+ * @static
1406
+ */
1407
+ isLocked: function() { return this.locked; },
1408
+
1409
+ /**
1410
+ * Location cache that is set for all drag drop objects when a drag is
1411
+ * initiated, cleared when the drag is finished.
1412
+ * @property locationCache
1413
+ * @private
1414
+ * @static
1415
+ */
1416
+ locationCache: {},
1417
+
1418
+ /**
1419
+ * Set useCache to false if you want to force object the lookup of each
1420
+ * drag and drop linked element constantly during a drag.
1421
+ * @property useCache
1422
+ * @type boolean
1423
+ * @static
1424
+ */
1425
+ useCache: true,
1426
+
1427
+ /**
1428
+ * The number of pixels that the mouse needs to move after the
1429
+ * mousedown before the drag is initiated. Default=3;
1430
+ * @property clickPixelThresh
1431
+ * @type int
1432
+ * @static
1433
+ */
1434
+ clickPixelThresh: 3,
1435
+
1436
+ /**
1437
+ * The number of milliseconds after the mousedown event to initiate the
1438
+ * drag if we don't get a mouseup event. Default=350
1439
+ * @property clickTimeThresh
1440
+ * @type int
1441
+ * @static
1442
+ */
1443
+ clickTimeThresh: 350,
1444
+
1445
+ /**
1446
+ * Flag that indicates that either the drag pixel threshold or the
1447
+ * mousdown time threshold has been met
1448
+ * @property dragThreshMet
1449
+ * @type boolean
1450
+ * @private
1451
+ * @static
1452
+ */
1453
+ dragThreshMet: false,
1454
+
1455
+ /**
1456
+ * Timeout used for the click time threshold
1457
+ * @property clickTimeout
1458
+ * @type Object
1459
+ * @private
1460
+ * @static
1461
+ */
1462
+ clickTimeout: null,
1463
+
1464
+ /**
1465
+ * The X position of the mousedown event stored for later use when a
1466
+ * drag threshold is met.
1467
+ * @property startX
1468
+ * @type int
1469
+ * @private
1470
+ * @static
1471
+ */
1472
+ startX: 0,
1473
+
1474
+ /**
1475
+ * The Y position of the mousedown event stored for later use when a
1476
+ * drag threshold is met.
1477
+ * @property startY
1478
+ * @type int
1479
+ * @private
1480
+ * @static
1481
+ */
1482
+ startY: 0,
1483
+
1484
+ /**
1485
+ * Each DragDrop instance must be registered with the DragDropMgr.
1486
+ * This is executed in DragDrop.init()
1487
+ * @method regDragDrop
1488
+ * @param {DragDrop} oDD the DragDrop object to register
1489
+ * @param {String} sGroup the name of the group this element belongs to
1490
+ * @static
1491
+ */
1492
+ regDragDrop: function(oDD, sGroup) {
1493
+ if (!this.initialized) { this.init(); }
1494
+
1495
+ if (!this.ids[sGroup]) {
1496
+ this.ids[sGroup] = {};
1497
+ }
1498
+ this.ids[sGroup][oDD.id] = oDD;
1499
+ },
1500
+
1501
+ /**
1502
+ * Removes the supplied dd instance from the supplied group. Executed
1503
+ * by DragDrop.removeFromGroup, so don't call this function directly.
1504
+ * @method removeDDFromGroup
1505
+ * @private
1506
+ * @static
1507
+ */
1508
+ removeDDFromGroup: function(oDD, sGroup) {
1509
+ if (!this.ids[sGroup]) {
1510
+ this.ids[sGroup] = {};
1511
+ }
1512
+
1513
+ var obj = this.ids[sGroup];
1514
+ if (obj && obj[oDD.id]) {
1515
+ delete obj[oDD.id];
1516
+ }
1517
+ },
1518
+
1519
+ /**
1520
+ * Unregisters a drag and drop item. This is executed in
1521
+ * DragDrop.unreg, use that method instead of calling this directly.
1522
+ * @method _remove
1523
+ * @private
1524
+ * @static
1525
+ */
1526
+ _remove: function(oDD) {
1527
+ for (var g in oDD.groups) {
1528
+ if (g && this.ids[g] && this.ids[g][oDD.id]) {
1529
+ delete this.ids[g][oDD.id];
1530
+ }
1531
+ }
1532
+ delete this.handleIds[oDD.id];
1533
+ },
1534
+
1535
+ /**
1536
+ * Each DragDrop handle element must be registered. This is done
1537
+ * automatically when executing DragDrop.setHandleElId()
1538
+ * @method regHandle
1539
+ * @param {String} sDDId the DragDrop id this element is a handle for
1540
+ * @param {String} sHandleId the id of the element that is the drag
1541
+ * handle
1542
+ * @static
1543
+ */
1544
+ regHandle: function(sDDId, sHandleId) {
1545
+ if (!this.handleIds[sDDId]) {
1546
+ this.handleIds[sDDId] = {};
1547
+ }
1548
+ this.handleIds[sDDId][sHandleId] = sHandleId;
1549
+ },
1550
+
1551
+ /**
1552
+ * Utility function to determine if a given element has been
1553
+ * registered as a drag drop item.
1554
+ * @method isDragDrop
1555
+ * @param {String} id the element id to check
1556
+ * @return {boolean} true if this element is a DragDrop item,
1557
+ * false otherwise
1558
+ * @static
1559
+ */
1560
+ isDragDrop: function(id) {
1561
+ return ( this.getDDById(id) ) ? true : false;
1562
+ },
1563
+
1564
+ /**
1565
+ * Returns the drag and drop instances that are in all groups the
1566
+ * passed in instance belongs to.
1567
+ * @method getRelated
1568
+ * @param {DragDrop} p_oDD the obj to get related data for
1569
+ * @param {boolean} bTargetsOnly if true, only return targetable objs
1570
+ * @return {DragDrop[]} the related instances
1571
+ * @static
1572
+ */
1573
+ getRelated: function(p_oDD, bTargetsOnly) {
1574
+ var oDDs = [];
1575
+ for (var i in p_oDD.groups) {
1576
+ for (var j in this.ids[i]) {
1577
+ var dd = this.ids[i][j];
1578
+ if (! this.isTypeOfDD(dd)) {
1579
+ continue;
1580
+ }
1581
+ if (!bTargetsOnly || dd.isTarget) {
1582
+ oDDs[oDDs.length] = dd;
1583
+ }
1584
+ }
1585
+ }
1586
+
1587
+ return oDDs;
1588
+ },
1589
+
1590
+ /**
1591
+ * Returns true if the specified dd target is a legal target for
1592
+ * the specifice drag obj
1593
+ * @method isLegalTarget
1594
+ * @param {DragDrop} oDD the drag obj
1595
+ * @param {DragDrop} oTargetDD the target
1596
+ * @return {boolean} true if the target is a legal target for the
1597
+ * dd obj
1598
+ * @static
1599
+ */
1600
+ isLegalTarget: function (oDD, oTargetDD) {
1601
+ var targets = this.getRelated(oDD, true);
1602
+ for (var i=0, len=targets.length;i<len;++i) {
1603
+ if (targets[i].id == oTargetDD.id) {
1604
+ return true;
1605
+ }
1606
+ }
1607
+
1608
+ return false;
1609
+ },
1610
+
1611
+ /**
1612
+ * My goal is to be able to transparently determine if an object is
1613
+ * typeof DragDrop, and the exact subclass of DragDrop. typeof
1614
+ * returns "object", oDD.constructor.toString() always returns
1615
+ * "DragDrop" and not the name of the subclass. So for now it just
1616
+ * evaluates a well-known variable in DragDrop.
1617
+ * @method isTypeOfDD
1618
+ * @param {Object} the object to evaluate
1619
+ * @return {boolean} true if typeof oDD = DragDrop
1620
+ * @static
1621
+ */
1622
+ isTypeOfDD: function (oDD) {
1623
+ return (oDD && oDD.__ygDragDrop);
1624
+ },
1625
+
1626
+ /**
1627
+ * Utility function to determine if a given element has been
1628
+ * registered as a drag drop handle for the given Drag Drop object.
1629
+ * @method isHandle
1630
+ * @param {String} id the element id to check
1631
+ * @return {boolean} true if this element is a DragDrop handle, false
1632
+ * otherwise
1633
+ * @static
1634
+ */
1635
+ isHandle: function(sDDId, sHandleId) {
1636
+ return ( this.handleIds[sDDId] &&
1637
+ this.handleIds[sDDId][sHandleId] );
1638
+ },
1639
+
1640
+ /**
1641
+ * Returns the DragDrop instance for a given id
1642
+ * @method getDDById
1643
+ * @param {String} id the id of the DragDrop object
1644
+ * @return {DragDrop} the drag drop object, null if it is not found
1645
+ * @static
1646
+ */
1647
+ getDDById: function(id) {
1648
+ for (var i in this.ids) {
1649
+ if (this.ids[i][id]) {
1650
+ return this.ids[i][id];
1651
+ }
1652
+ }
1653
+ return null;
1654
+ },
1655
+
1656
+ /**
1657
+ * Fired after a registered DragDrop object gets the mousedown event.
1658
+ * Sets up the events required to track the object being dragged
1659
+ * @method handleMouseDown
1660
+ * @param {Event} e the event
1661
+ * @param oDD the DragDrop object being dragged
1662
+ * @private
1663
+ * @static
1664
+ */
1665
+ handleMouseDown: function(e, oDD) {
1666
+ if(Ext.QuickTips){
1667
+ Ext.QuickTips.ddDisable();
1668
+ }
1669
+ if(this.dragCurrent){
1670
+ // the original browser mouseup wasn't handled (e.g. outside FF browser window)
1671
+ // so clean up first to avoid breaking the next drag
1672
+ this.handleMouseUp(e);
1673
+ }
1674
+
1675
+ this.currentTarget = e.getTarget();
1676
+ this.dragCurrent = oDD;
1677
+
1678
+ var el = oDD.getEl();
1679
+
1680
+ // track start position
1681
+ this.startX = e.getPageX();
1682
+ this.startY = e.getPageY();
1683
+
1684
+ this.deltaX = this.startX - el.offsetLeft;
1685
+ this.deltaY = this.startY - el.offsetTop;
1686
+
1687
+ this.dragThreshMet = false;
1688
+
1689
+ this.clickTimeout = setTimeout(
1690
+ function() {
1691
+ var DDM = Ext.dd.DDM;
1692
+ DDM.startDrag(DDM.startX, DDM.startY);
1693
+ },
1694
+ this.clickTimeThresh );
1695
+ },
1696
+
1697
+ /**
1698
+ * Fired when either the drag pixel threshol or the mousedown hold
1699
+ * time threshold has been met.
1700
+ * @method startDrag
1701
+ * @param x {int} the X position of the original mousedown
1702
+ * @param y {int} the Y position of the original mousedown
1703
+ * @static
1704
+ */
1705
+ startDrag: function(x, y) {
1706
+ clearTimeout(this.clickTimeout);
1707
+ if (this.dragCurrent) {
1708
+ this.dragCurrent.b4StartDrag(x, y);
1709
+ this.dragCurrent.startDrag(x, y);
1710
+ }
1711
+ this.dragThreshMet = true;
1712
+ },
1713
+
1714
+ /**
1715
+ * Internal function to handle the mouseup event. Will be invoked
1716
+ * from the context of the document.
1717
+ * @method handleMouseUp
1718
+ * @param {Event} e the event
1719
+ * @private
1720
+ * @static
1721
+ */
1722
+ handleMouseUp: function(e) {
1723
+
1724
+ if(Ext.QuickTips){
1725
+ Ext.QuickTips.ddEnable();
1726
+ }
1727
+ if (! this.dragCurrent) {
1728
+ return;
1729
+ }
1730
+
1731
+ clearTimeout(this.clickTimeout);
1732
+
1733
+ if (this.dragThreshMet) {
1734
+ this.fireEvents(e, true);
1735
+ } else {
1736
+ }
1737
+
1738
+ this.stopDrag(e);
1739
+
1740
+ this.stopEvent(e);
1741
+ },
1742
+
1743
+ /**
1744
+ * Utility to stop event propagation and event default, if these
1745
+ * features are turned on.
1746
+ * @method stopEvent
1747
+ * @param {Event} e the event as returned by this.getEvent()
1748
+ * @static
1749
+ */
1750
+ stopEvent: function(e){
1751
+ if(this.stopPropagation) {
1752
+ e.stopPropagation();
1753
+ }
1754
+
1755
+ if (this.preventDefault) {
1756
+ e.preventDefault();
1757
+ }
1758
+ },
1759
+
1760
+ /**
1761
+ * Internal function to clean up event handlers after the drag
1762
+ * operation is complete
1763
+ * @method stopDrag
1764
+ * @param {Event} e the event
1765
+ * @private
1766
+ * @static
1767
+ */
1768
+ stopDrag: function(e) {
1769
+ // Fire the drag end event for the item that was dragged
1770
+ if (this.dragCurrent) {
1771
+ if (this.dragThreshMet) {
1772
+ this.dragCurrent.b4EndDrag(e);
1773
+ this.dragCurrent.endDrag(e);
1774
+ }
1775
+
1776
+ this.dragCurrent.onMouseUp(e);
1777
+ }
1778
+
1779
+ this.dragCurrent = null;
1780
+ this.dragOvers = {};
1781
+ },
1782
+
1783
+ /**
1784
+ * Internal function to handle the mousemove event. Will be invoked
1785
+ * from the context of the html element.
1786
+ *
1787
+ * @TODO figure out what we can do about mouse events lost when the
1788
+ * user drags objects beyond the window boundary. Currently we can
1789
+ * detect this in internet explorer by verifying that the mouse is
1790
+ * down during the mousemove event. Firefox doesn't give us the
1791
+ * button state on the mousemove event.
1792
+ * @method handleMouseMove
1793
+ * @param {Event} e the event
1794
+ * @private
1795
+ * @static
1796
+ */
1797
+ handleMouseMove: function(e) {
1798
+ if (! this.dragCurrent) {
1799
+ return true;
1800
+ }
1801
+ // var button = e.which || e.button;
1802
+
1803
+ // check for IE mouseup outside of page boundary
1804
+ if (Ext.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
1805
+ this.stopEvent(e);
1806
+ return this.handleMouseUp(e);
1807
+ }
1808
+
1809
+ if (!this.dragThreshMet) {
1810
+ var diffX = Math.abs(this.startX - e.getPageX());
1811
+ var diffY = Math.abs(this.startY - e.getPageY());
1812
+ if (diffX > this.clickPixelThresh ||
1813
+ diffY > this.clickPixelThresh) {
1814
+ this.startDrag(this.startX, this.startY);
1815
+ }
1816
+ }
1817
+
1818
+ if (this.dragThreshMet) {
1819
+ this.dragCurrent.b4Drag(e);
1820
+ this.dragCurrent.onDrag(e);
1821
+ if(!this.dragCurrent.moveOnly){
1822
+ this.fireEvents(e, false);
1823
+ }
1824
+ }
1825
+
1826
+ this.stopEvent(e);
1827
+
1828
+ return true;
1829
+ },
1830
+
1831
+ /**
1832
+ * Iterates over all of the DragDrop elements to find ones we are
1833
+ * hovering over or dropping on
1834
+ * @method fireEvents
1835
+ * @param {Event} e the event
1836
+ * @param {boolean} isDrop is this a drop op or a mouseover op?
1837
+ * @private
1838
+ * @static
1839
+ */
1840
+ fireEvents: function(e, isDrop) {
1841
+ var dc = this.dragCurrent;
1842
+
1843
+ // If the user did the mouse up outside of the window, we could
1844
+ // get here even though we have ended the drag.
1845
+ if (!dc || dc.isLocked()) {
1846
+ return;
1847
+ }
1848
+
1849
+ var pt = e.getPoint();
1850
+
1851
+ // cache the previous dragOver array
1852
+ var oldOvers = [];
1853
+
1854
+ var outEvts = [];
1855
+ var overEvts = [];
1856
+ var dropEvts = [];
1857
+ var enterEvts = [];
1858
+
1859
+ // Check to see if the object(s) we were hovering over is no longer
1860
+ // being hovered over so we can fire the onDragOut event
1861
+ for (var i in this.dragOvers) {
1862
+
1863
+ var ddo = this.dragOvers[i];
1864
+
1865
+ if (! this.isTypeOfDD(ddo)) {
1866
+ continue;
1867
+ }
1868
+
1869
+ if (! this.isOverTarget(pt, ddo, this.mode)) {
1870
+ outEvts.push( ddo );
1871
+ }
1872
+
1873
+ oldOvers[i] = true;
1874
+ delete this.dragOvers[i];
1875
+ }
1876
+
1877
+ for (var sGroup in dc.groups) {
1878
+
1879
+ if ("string" != typeof sGroup) {
1880
+ continue;
1881
+ }
1882
+
1883
+ for (i in this.ids[sGroup]) {
1884
+ var oDD = this.ids[sGroup][i];
1885
+ if (! this.isTypeOfDD(oDD)) {
1886
+ continue;
1887
+ }
1888
+
1889
+ if (oDD.isTarget && !oDD.isLocked() && ((oDD != dc) || (dc.ignoreSelf === false))) {
1890
+ if (this.isOverTarget(pt, oDD, this.mode)) {
1891
+ // look for drop interactions
1892
+ if (isDrop) {
1893
+ dropEvts.push( oDD );
1894
+ // look for drag enter and drag over interactions
1895
+ } else {
1896
+
1897
+ // initial drag over: dragEnter fires
1898
+ if (!oldOvers[oDD.id]) {
1899
+ enterEvts.push( oDD );
1900
+ // subsequent drag overs: dragOver fires
1901
+ } else {
1902
+ overEvts.push( oDD );
1903
+ }
1904
+
1905
+ this.dragOvers[oDD.id] = oDD;
1906
+ }
1907
+ }
1908
+ }
1909
+ }
1910
+ }
1911
+
1912
+ if (this.mode) {
1913
+ if (outEvts.length) {
1914
+ dc.b4DragOut(e, outEvts);
1915
+ dc.onDragOut(e, outEvts);
1916
+ }
1917
+
1918
+ if (enterEvts.length) {
1919
+ dc.onDragEnter(e, enterEvts);
1920
+ }
1921
+
1922
+ if (overEvts.length) {
1923
+ dc.b4DragOver(e, overEvts);
1924
+ dc.onDragOver(e, overEvts);
1925
+ }
1926
+
1927
+ if (dropEvts.length) {
1928
+ dc.b4DragDrop(e, dropEvts);
1929
+ dc.onDragDrop(e, dropEvts);
1930
+ }
1931
+
1932
+ } else {
1933
+ // fire dragout events
1934
+ var len = 0;
1935
+ for (i=0, len=outEvts.length; i<len; ++i) {
1936
+ dc.b4DragOut(e, outEvts[i].id);
1937
+ dc.onDragOut(e, outEvts[i].id);
1938
+ }
1939
+
1940
+ // fire enter events
1941
+ for (i=0,len=enterEvts.length; i<len; ++i) {
1942
+ // dc.b4DragEnter(e, oDD.id);
1943
+ dc.onDragEnter(e, enterEvts[i].id);
1944
+ }
1945
+
1946
+ // fire over events
1947
+ for (i=0,len=overEvts.length; i<len; ++i) {
1948
+ dc.b4DragOver(e, overEvts[i].id);
1949
+ dc.onDragOver(e, overEvts[i].id);
1950
+ }
1951
+
1952
+ // fire drop events
1953
+ for (i=0, len=dropEvts.length; i<len; ++i) {
1954
+ dc.b4DragDrop(e, dropEvts[i].id);
1955
+ dc.onDragDrop(e, dropEvts[i].id);
1956
+ }
1957
+
1958
+ }
1959
+
1960
+ // notify about a drop that did not find a target
1961
+ if (isDrop && !dropEvts.length) {
1962
+ dc.onInvalidDrop(e);
1963
+ }
1964
+
1965
+ },
1966
+
1967
+ /**
1968
+ * Helper function for getting the best match from the list of drag
1969
+ * and drop objects returned by the drag and drop events when we are
1970
+ * in INTERSECT mode. It returns either the first object that the
1971
+ * cursor is over, or the object that has the greatest overlap with
1972
+ * the dragged element.
1973
+ * @method getBestMatch
1974
+ * @param {DragDrop[]} dds The array of drag and drop objects
1975
+ * targeted
1976
+ * @return {DragDrop} The best single match
1977
+ * @static
1978
+ */
1979
+ getBestMatch: function(dds) {
1980
+ var winner = null;
1981
+ // Return null if the input is not what we expect
1982
+ //if (!dds || !dds.length || dds.length == 0) {
1983
+ // winner = null;
1984
+ // If there is only one item, it wins
1985
+ //} else if (dds.length == 1) {
1986
+
1987
+ var len = dds.length;
1988
+
1989
+ if (len == 1) {
1990
+ winner = dds[0];
1991
+ } else {
1992
+ // Loop through the targeted items
1993
+ for (var i=0; i<len; ++i) {
1994
+ var dd = dds[i];
1995
+ // If the cursor is over the object, it wins. If the
1996
+ // cursor is over multiple matches, the first one we come
1997
+ // to wins.
1998
+ if (dd.cursorIsOver) {
1999
+ winner = dd;
2000
+ break;
2001
+ // Otherwise the object with the most overlap wins
2002
+ } else {
2003
+ if (!winner ||
2004
+ winner.overlap.getArea() < dd.overlap.getArea()) {
2005
+ winner = dd;
2006
+ }
2007
+ }
2008
+ }
2009
+ }
2010
+
2011
+ return winner;
2012
+ },
2013
+
2014
+ /**
2015
+ * Refreshes the cache of the top-left and bottom-right points of the
2016
+ * drag and drop objects in the specified group(s). This is in the
2017
+ * format that is stored in the drag and drop instance, so typical
2018
+ * usage is:
2019
+ * <code>
2020
+ * Ext.dd.DragDropMgr.refreshCache(ddinstance.groups);
2021
+ * </code>
2022
+ * Alternatively:
2023
+ * <code>
2024
+ * Ext.dd.DragDropMgr.refreshCache({group1:true, group2:true});
2025
+ * </code>
2026
+ * @TODO this really should be an indexed array. Alternatively this
2027
+ * method could accept both.
2028
+ * @method refreshCache
2029
+ * @param {Object} groups an associative array of groups to refresh
2030
+ * @static
2031
+ */
2032
+ refreshCache: function(groups) {
2033
+ for (var sGroup in groups) {
2034
+ if ("string" != typeof sGroup) {
2035
+ continue;
2036
+ }
2037
+ for (var i in this.ids[sGroup]) {
2038
+ var oDD = this.ids[sGroup][i];
2039
+
2040
+ if (this.isTypeOfDD(oDD)) {
2041
+ // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
2042
+ var loc = this.getLocation(oDD);
2043
+ if (loc) {
2044
+ this.locationCache[oDD.id] = loc;
2045
+ } else {
2046
+ delete this.locationCache[oDD.id];
2047
+ // this will unregister the drag and drop object if
2048
+ // the element is not in a usable state
2049
+ // oDD.unreg();
2050
+ }
2051
+ }
2052
+ }
2053
+ }
2054
+ },
2055
+
2056
+ /**
2057
+ * This checks to make sure an element exists and is in the DOM. The
2058
+ * main purpose is to handle cases where innerHTML is used to remove
2059
+ * drag and drop objects from the DOM. IE provides an 'unspecified
2060
+ * error' when trying to access the offsetParent of such an element
2061
+ * @method verifyEl
2062
+ * @param {HTMLElement} el the element to check
2063
+ * @return {boolean} true if the element looks usable
2064
+ * @static
2065
+ */
2066
+ verifyEl: function(el) {
2067
+ if (el) {
2068
+ var parent;
2069
+ if(Ext.isIE){
2070
+ try{
2071
+ parent = el.offsetParent;
2072
+ }catch(e){}
2073
+ }else{
2074
+ parent = el.offsetParent;
2075
+ }
2076
+ if (parent) {
2077
+ return true;
2078
+ }
2079
+ }
2080
+
2081
+ return false;
2082
+ },
2083
+
2084
+ /**
2085
+ * Returns a Region object containing the drag and drop element's position
2086
+ * and size, including the padding configured for it
2087
+ * @method getLocation
2088
+ * @param {DragDrop} oDD the drag and drop object to get the
2089
+ * location for
2090
+ * @return {Ext.lib.Region} a Region object representing the total area
2091
+ * the element occupies, including any padding
2092
+ * the instance is configured for.
2093
+ * @static
2094
+ */
2095
+ getLocation: function(oDD) {
2096
+ if (! this.isTypeOfDD(oDD)) {
2097
+ return null;
2098
+ }
2099
+
2100
+ var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
2101
+
2102
+ try {
2103
+ pos= Ext.lib.Dom.getXY(el);
2104
+ } catch (e) { }
2105
+
2106
+ if (!pos) {
2107
+ return null;
2108
+ }
2109
+
2110
+ x1 = pos[0];
2111
+ x2 = x1 + el.offsetWidth;
2112
+ y1 = pos[1];
2113
+ y2 = y1 + el.offsetHeight;
2114
+
2115
+ t = y1 - oDD.padding[0];
2116
+ r = x2 + oDD.padding[1];
2117
+ b = y2 + oDD.padding[2];
2118
+ l = x1 - oDD.padding[3];
2119
+
2120
+ return new Ext.lib.Region( t, r, b, l );
2121
+ },
2122
+
2123
+ /**
2124
+ * Checks the cursor location to see if it over the target
2125
+ * @method isOverTarget
2126
+ * @param {Ext.lib.Point} pt The point to evaluate
2127
+ * @param {DragDrop} oTarget the DragDrop object we are inspecting
2128
+ * @return {boolean} true if the mouse is over the target
2129
+ * @private
2130
+ * @static
2131
+ */
2132
+ isOverTarget: function(pt, oTarget, intersect) {
2133
+ // use cache if available
2134
+ var loc = this.locationCache[oTarget.id];
2135
+ if (!loc || !this.useCache) {
2136
+ loc = this.getLocation(oTarget);
2137
+ this.locationCache[oTarget.id] = loc;
2138
+
2139
+ }
2140
+
2141
+ if (!loc) {
2142
+ return false;
2143
+ }
2144
+
2145
+ oTarget.cursorIsOver = loc.contains( pt );
2146
+
2147
+ // DragDrop is using this as a sanity check for the initial mousedown
2148
+ // in this case we are done. In POINT mode, if the drag obj has no
2149
+ // contraints, we are also done. Otherwise we need to evaluate the
2150
+ // location of the target as related to the actual location of the
2151
+ // dragged element.
2152
+ var dc = this.dragCurrent;
2153
+ if (!dc || !dc.getTargetCoord ||
2154
+ (!intersect && !dc.constrainX && !dc.constrainY)) {
2155
+ return oTarget.cursorIsOver;
2156
+ }
2157
+
2158
+ oTarget.overlap = null;
2159
+
2160
+ // Get the current location of the drag element, this is the
2161
+ // location of the mouse event less the delta that represents
2162
+ // where the original mousedown happened on the element. We
2163
+ // need to consider constraints and ticks as well.
2164
+ var pos = dc.getTargetCoord(pt.x, pt.y);
2165
+
2166
+ var el = dc.getDragEl();
2167
+ var curRegion = new Ext.lib.Region( pos.y,
2168
+ pos.x + el.offsetWidth,
2169
+ pos.y + el.offsetHeight,
2170
+ pos.x );
2171
+
2172
+ var overlap = curRegion.intersect(loc);
2173
+
2174
+ if (overlap) {
2175
+ oTarget.overlap = overlap;
2176
+ return (intersect) ? true : oTarget.cursorIsOver;
2177
+ } else {
2178
+ return false;
2179
+ }
2180
+ },
2181
+
2182
+ /**
2183
+ * unload event handler
2184
+ * @method _onUnload
2185
+ * @private
2186
+ * @static
2187
+ */
2188
+ _onUnload: function(e, me) {
2189
+ Ext.dd.DragDropMgr.unregAll();
2190
+ },
2191
+
2192
+ /**
2193
+ * Cleans up the drag and drop events and objects.
2194
+ * @method unregAll
2195
+ * @private
2196
+ * @static
2197
+ */
2198
+ unregAll: function() {
2199
+
2200
+ if (this.dragCurrent) {
2201
+ this.stopDrag();
2202
+ this.dragCurrent = null;
2203
+ }
2204
+
2205
+ this._execOnAll("unreg", []);
2206
+
2207
+ for (var i in this.elementCache) {
2208
+ delete this.elementCache[i];
2209
+ }
2210
+
2211
+ this.elementCache = {};
2212
+ this.ids = {};
2213
+ },
2214
+
2215
+ /**
2216
+ * A cache of DOM elements
2217
+ * @property elementCache
2218
+ * @private
2219
+ * @static
2220
+ */
2221
+ elementCache: {},
2222
+
2223
+ /**
2224
+ * Get the wrapper for the DOM element specified
2225
+ * @method getElWrapper
2226
+ * @param {String} id the id of the element to get
2227
+ * @return {Ext.dd.DDM.ElementWrapper} the wrapped element
2228
+ * @private
2229
+ * @deprecated This wrapper isn't that useful
2230
+ * @static
2231
+ */
2232
+ getElWrapper: function(id) {
2233
+ var oWrapper = this.elementCache[id];
2234
+ if (!oWrapper || !oWrapper.el) {
2235
+ oWrapper = this.elementCache[id] =
2236
+ new this.ElementWrapper(Ext.getDom(id));
2237
+ }
2238
+ return oWrapper;
2239
+ },
2240
+
2241
+ /**
2242
+ * Returns the actual DOM element
2243
+ * @method getElement
2244
+ * @param {String} id the id of the elment to get
2245
+ * @return {Object} The element
2246
+ * @deprecated use Ext.lib.Ext.getDom instead
2247
+ * @static
2248
+ */
2249
+ getElement: function(id) {
2250
+ return Ext.getDom(id);
2251
+ },
2252
+
2253
+ /**
2254
+ * Returns the style property for the DOM element (i.e.,
2255
+ * document.getElById(id).style)
2256
+ * @method getCss
2257
+ * @param {String} id the id of the elment to get
2258
+ * @return {Object} The style property of the element
2259
+ * @deprecated use Ext.lib.Dom instead
2260
+ * @static
2261
+ */
2262
+ getCss: function(id) {
2263
+ var el = Ext.getDom(id);
2264
+ return (el) ? el.style : null;
2265
+ },
2266
+
2267
+ /**
2268
+ * Inner class for cached elements
2269
+ * @class Ext.dd.DragDropMgr.ElementWrapper
2270
+ * @for DragDropMgr
2271
+ * @private
2272
+ * @deprecated
2273
+ */
2274
+ ElementWrapper: function(el) {
2275
+ /**
2276
+ * The element
2277
+ * @property el
2278
+ */
2279
+ this.el = el || null;
2280
+ /**
2281
+ * The element id
2282
+ * @property id
2283
+ */
2284
+ this.id = this.el && el.id;
2285
+ /**
2286
+ * A reference to the style property
2287
+ * @property css
2288
+ */
2289
+ this.css = this.el && el.style;
2290
+ },
2291
+
2292
+ /**
2293
+ * Returns the X position of an html element
2294
+ * @method getPosX
2295
+ * @param el the element for which to get the position
2296
+ * @return {int} the X coordinate
2297
+ * @for DragDropMgr
2298
+ * @deprecated use Ext.lib.Dom.getX instead
2299
+ * @static
2300
+ */
2301
+ getPosX: function(el) {
2302
+ return Ext.lib.Dom.getX(el);
2303
+ },
2304
+
2305
+ /**
2306
+ * Returns the Y position of an html element
2307
+ * @method getPosY
2308
+ * @param el the element for which to get the position
2309
+ * @return {int} the Y coordinate
2310
+ * @deprecated use Ext.lib.Dom.getY instead
2311
+ * @static
2312
+ */
2313
+ getPosY: function(el) {
2314
+ return Ext.lib.Dom.getY(el);
2315
+ },
2316
+
2317
+ /**
2318
+ * Swap two nodes. In IE, we use the native method, for others we
2319
+ * emulate the IE behavior
2320
+ * @method swapNode
2321
+ * @param n1 the first node to swap
2322
+ * @param n2 the other node to swap
2323
+ * @static
2324
+ */
2325
+ swapNode: function(n1, n2) {
2326
+ if (n1.swapNode) {
2327
+ n1.swapNode(n2);
2328
+ } else {
2329
+ var p = n2.parentNode;
2330
+ var s = n2.nextSibling;
2331
+
2332
+ if (s == n1) {
2333
+ p.insertBefore(n1, n2);
2334
+ } else if (n2 == n1.nextSibling) {
2335
+ p.insertBefore(n2, n1);
2336
+ } else {
2337
+ n1.parentNode.replaceChild(n2, n1);
2338
+ p.insertBefore(n1, s);
2339
+ }
2340
+ }
2341
+ },
2342
+
2343
+ /**
2344
+ * Returns the current scroll position
2345
+ * @method getScroll
2346
+ * @private
2347
+ * @static
2348
+ */
2349
+ getScroll: function () {
2350
+ var t, l, dde=document.documentElement, db=document.body;
2351
+ if (dde && (dde.scrollTop || dde.scrollLeft)) {
2352
+ t = dde.scrollTop;
2353
+ l = dde.scrollLeft;
2354
+ } else if (db) {
2355
+ t = db.scrollTop;
2356
+ l = db.scrollLeft;
2357
+ } else {
2358
+
2359
+ }
2360
+ return { top: t, left: l };
2361
+ },
2362
+
2363
+ /**
2364
+ * Returns the specified element style property
2365
+ * @method getStyle
2366
+ * @param {HTMLElement} el the element
2367
+ * @param {string} styleProp the style property
2368
+ * @return {string} The value of the style property
2369
+ * @deprecated use Ext.lib.Dom.getStyle
2370
+ * @static
2371
+ */
2372
+ getStyle: function(el, styleProp) {
2373
+ return Ext.fly(el).getStyle(styleProp);
2374
+ },
2375
+
2376
+ /**
2377
+ * Gets the scrollTop
2378
+ * @method getScrollTop
2379
+ * @return {int} the document's scrollTop
2380
+ * @static
2381
+ */
2382
+ getScrollTop: function () {
2383
+ return this.getScroll().top;
2384
+ },
2385
+
2386
+ /**
2387
+ * Gets the scrollLeft
2388
+ * @method getScrollLeft
2389
+ * @return {int} the document's scrollTop
2390
+ * @static
2391
+ */
2392
+ getScrollLeft: function () {
2393
+ return this.getScroll().left;
2394
+ },
2395
+
2396
+ /**
2397
+ * Sets the x/y position of an element to the location of the
2398
+ * target element.
2399
+ * @method moveToEl
2400
+ * @param {HTMLElement} moveEl The element to move
2401
+ * @param {HTMLElement} targetEl The position reference element
2402
+ * @static
2403
+ */
2404
+ moveToEl: function (moveEl, targetEl) {
2405
+ var aCoord = Ext.lib.Dom.getXY(targetEl);
2406
+ Ext.lib.Dom.setXY(moveEl, aCoord);
2407
+ },
2408
+
2409
+ /**
2410
+ * Numeric array sort function
2411
+ * @method numericSort
2412
+ * @static
2413
+ */
2414
+ numericSort: function(a, b) {
2415
+ return (a - b);
2416
+ },
2417
+
2418
+ /**
2419
+ * Internal counter
2420
+ * @property _timeoutCount
2421
+ * @private
2422
+ * @static
2423
+ */
2424
+ _timeoutCount: 0,
2425
+
2426
+ /**
2427
+ * Trying to make the load order less important. Without this we get
2428
+ * an error if this file is loaded before the Event Utility.
2429
+ * @method _addListeners
2430
+ * @private
2431
+ * @static
2432
+ */
2433
+ _addListeners: function() {
2434
+ var DDM = Ext.dd.DDM;
2435
+ if ( Ext.lib.Event && document ) {
2436
+ DDM._onLoad();
2437
+ } else {
2438
+ if (DDM._timeoutCount > 2000) {
2439
+ } else {
2440
+ setTimeout(DDM._addListeners, 10);
2441
+ if (document && document.body) {
2442
+ DDM._timeoutCount += 1;
2443
+ }
2444
+ }
2445
+ }
2446
+ },
2447
+
2448
+ /**
2449
+ * Recursively searches the immediate parent and all child nodes for
2450
+ * the handle element in order to determine wheter or not it was
2451
+ * clicked.
2452
+ * @method handleWasClicked
2453
+ * @param node the html element to inspect
2454
+ * @static
2455
+ */
2456
+ handleWasClicked: function(node, id) {
2457
+ if (this.isHandle(id, node.id)) {
2458
+ return true;
2459
+ } else {
2460
+ // check to see if this is a text node child of the one we want
2461
+ var p = node.parentNode;
2462
+
2463
+ while (p) {
2464
+ if (this.isHandle(id, p.id)) {
2465
+ return true;
2466
+ } else {
2467
+ p = p.parentNode;
2468
+ }
2469
+ }
2470
+ }
2471
+
2472
+ return false;
2473
+ }
2474
+
2475
+ };
2476
+
2477
+ }();
2478
+
2479
+ // shorter alias, save a few bytes
2480
+ Ext.dd.DDM = Ext.dd.DragDropMgr;
2481
+ Ext.dd.DDM._addListeners();
2482
+
2483
+ }
2484
+
2485
+ /**
2486
+ * @class Ext.dd.DD
2487
+ * A DragDrop implementation where the linked element follows the
2488
+ * mouse cursor during a drag.
2489
+ * @extends Ext.dd.DragDrop
2490
+ * @constructor
2491
+ * @param {String} id the id of the linked element
2492
+ * @param {String} sGroup the group of related DragDrop items
2493
+ * @param {object} config an object containing configurable attributes
2494
+ * Valid properties for DD:
2495
+ * scroll
2496
+ */
2497
+ Ext.dd.DD = function(id, sGroup, config) {
2498
+ if (id) {
2499
+ this.init(id, sGroup, config);
2500
+ }
2501
+ };
2502
+
2503
+ Ext.extend(Ext.dd.DD, Ext.dd.DragDrop, {
2504
+
2505
+ /**
2506
+ * When set to true, the utility automatically tries to scroll the browser
2507
+ * window when a drag and drop element is dragged near the viewport boundary.
2508
+ * Defaults to true.
2509
+ * @property scroll
2510
+ * @type boolean
2511
+ */
2512
+ scroll: true,
2513
+
2514
+ /**
2515
+ * Sets the pointer offset to the distance between the linked element's top
2516
+ * left corner and the location the element was clicked
2517
+ * @method autoOffset
2518
+ * @param {int} iPageX the X coordinate of the click
2519
+ * @param {int} iPageY the Y coordinate of the click
2520
+ */
2521
+ autoOffset: function(iPageX, iPageY) {
2522
+ var x = iPageX - this.startPageX;
2523
+ var y = iPageY - this.startPageY;
2524
+ this.setDelta(x, y);
2525
+ },
2526
+
2527
+ /**
2528
+ * Sets the pointer offset. You can call this directly to force the
2529
+ * offset to be in a particular location (e.g., pass in 0,0 to set it
2530
+ * to the center of the object)
2531
+ * @method setDelta
2532
+ * @param {int} iDeltaX the distance from the left
2533
+ * @param {int} iDeltaY the distance from the top
2534
+ */
2535
+ setDelta: function(iDeltaX, iDeltaY) {
2536
+ this.deltaX = iDeltaX;
2537
+ this.deltaY = iDeltaY;
2538
+ },
2539
+
2540
+ /**
2541
+ * Sets the drag element to the location of the mousedown or click event,
2542
+ * maintaining the cursor location relative to the location on the element
2543
+ * that was clicked. Override this if you want to place the element in a
2544
+ * location other than where the cursor is.
2545
+ * @method setDragElPos
2546
+ * @param {int} iPageX the X coordinate of the mousedown or drag event
2547
+ * @param {int} iPageY the Y coordinate of the mousedown or drag event
2548
+ */
2549
+ setDragElPos: function(iPageX, iPageY) {
2550
+ // the first time we do this, we are going to check to make sure
2551
+ // the element has css positioning
2552
+
2553
+ var el = this.getDragEl();
2554
+ this.alignElWithMouse(el, iPageX, iPageY);
2555
+ },
2556
+
2557
+ /**
2558
+ * Sets the element to the location of the mousedown or click event,
2559
+ * maintaining the cursor location relative to the location on the element
2560
+ * that was clicked. Override this if you want to place the element in a
2561
+ * location other than where the cursor is.
2562
+ * @method alignElWithMouse
2563
+ * @param {HTMLElement} el the element to move
2564
+ * @param {int} iPageX the X coordinate of the mousedown or drag event
2565
+ * @param {int} iPageY the Y coordinate of the mousedown or drag event
2566
+ */
2567
+ alignElWithMouse: function(el, iPageX, iPageY) {
2568
+ var oCoord = this.getTargetCoord(iPageX, iPageY);
2569
+ var fly = el.dom ? el : Ext.fly(el, '_dd');
2570
+ if (!this.deltaSetXY) {
2571
+ var aCoord = [oCoord.x, oCoord.y];
2572
+ fly.setXY(aCoord);
2573
+ var newLeft = fly.getLeft(true);
2574
+ var newTop = fly.getTop(true);
2575
+ this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
2576
+ } else {
2577
+ fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
2578
+ }
2579
+
2580
+ this.cachePosition(oCoord.x, oCoord.y);
2581
+ this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
2582
+ return oCoord;
2583
+ },
2584
+
2585
+ /**
2586
+ * Saves the most recent position so that we can reset the constraints and
2587
+ * tick marks on-demand. We need to know this so that we can calculate the
2588
+ * number of pixels the element is offset from its original position.
2589
+ * @method cachePosition
2590
+ * @param iPageX the current x position (optional, this just makes it so we
2591
+ * don't have to look it up again)
2592
+ * @param iPageY the current y position (optional, this just makes it so we
2593
+ * don't have to look it up again)
2594
+ */
2595
+ cachePosition: function(iPageX, iPageY) {
2596
+ if (iPageX) {
2597
+ this.lastPageX = iPageX;
2598
+ this.lastPageY = iPageY;
2599
+ } else {
2600
+ var aCoord = Ext.lib.Dom.getXY(this.getEl());
2601
+ this.lastPageX = aCoord[0];
2602
+ this.lastPageY = aCoord[1];
2603
+ }
2604
+ },
2605
+
2606
+ /**
2607
+ * Auto-scroll the window if the dragged object has been moved beyond the
2608
+ * visible window boundary.
2609
+ * @method autoScroll
2610
+ * @param {int} x the drag element's x position
2611
+ * @param {int} y the drag element's y position
2612
+ * @param {int} h the height of the drag element
2613
+ * @param {int} w the width of the drag element
2614
+ * @private
2615
+ */
2616
+ autoScroll: function(x, y, h, w) {
2617
+
2618
+ if (this.scroll) {
2619
+ // The client height
2620
+ var clientH = Ext.lib.Dom.getViewHeight();
2621
+
2622
+ // The client width
2623
+ var clientW = Ext.lib.Dom.getViewWidth();
2624
+
2625
+ // The amt scrolled down
2626
+ var st = this.DDM.getScrollTop();
2627
+
2628
+ // The amt scrolled right
2629
+ var sl = this.DDM.getScrollLeft();
2630
+
2631
+ // Location of the bottom of the element
2632
+ var bot = h + y;
2633
+
2634
+ // Location of the right of the element
2635
+ var right = w + x;
2636
+
2637
+ // The distance from the cursor to the bottom of the visible area,
2638
+ // adjusted so that we don't scroll if the cursor is beyond the
2639
+ // element drag constraints
2640
+ var toBot = (clientH + st - y - this.deltaY);
2641
+
2642
+ // The distance from the cursor to the right of the visible area
2643
+ var toRight = (clientW + sl - x - this.deltaX);
2644
+
2645
+
2646
+ // How close to the edge the cursor must be before we scroll
2647
+ // var thresh = (document.all) ? 100 : 40;
2648
+ var thresh = 40;
2649
+
2650
+ // How many pixels to scroll per autoscroll op. This helps to reduce
2651
+ // clunky scrolling. IE is more sensitive about this ... it needs this
2652
+ // value to be higher.
2653
+ var scrAmt = (document.all) ? 80 : 30;
2654
+
2655
+ // Scroll down if we are near the bottom of the visible page and the
2656
+ // obj extends below the crease
2657
+ if ( bot > clientH && toBot < thresh ) {
2658
+ window.scrollTo(sl, st + scrAmt);
2659
+ }
2660
+
2661
+ // Scroll up if the window is scrolled down and the top of the object
2662
+ // goes above the top border
2663
+ if ( y < st && st > 0 && y - st < thresh ) {
2664
+ window.scrollTo(sl, st - scrAmt);
2665
+ }
2666
+
2667
+ // Scroll right if the obj is beyond the right border and the cursor is
2668
+ // near the border.
2669
+ if ( right > clientW && toRight < thresh ) {
2670
+ window.scrollTo(sl + scrAmt, st);
2671
+ }
2672
+
2673
+ // Scroll left if the window has been scrolled to the right and the obj
2674
+ // extends past the left border
2675
+ if ( x < sl && sl > 0 && x - sl < thresh ) {
2676
+ window.scrollTo(sl - scrAmt, st);
2677
+ }
2678
+ }
2679
+ },
2680
+
2681
+ /**
2682
+ * Finds the location the element should be placed if we want to move
2683
+ * it to where the mouse location less the click offset would place us.
2684
+ * @method getTargetCoord
2685
+ * @param {int} iPageX the X coordinate of the click
2686
+ * @param {int} iPageY the Y coordinate of the click
2687
+ * @return an object that contains the coordinates (Object.x and Object.y)
2688
+ * @private
2689
+ */
2690
+ getTargetCoord: function(iPageX, iPageY) {
2691
+ var x = iPageX - this.deltaX;
2692
+ var y = iPageY - this.deltaY;
2693
+
2694
+ if (this.constrainX) {
2695
+ if (x < this.minX) { x = this.minX; }
2696
+ if (x > this.maxX) { x = this.maxX; }
2697
+ }
2698
+
2699
+ if (this.constrainY) {
2700
+ if (y < this.minY) { y = this.minY; }
2701
+ if (y > this.maxY) { y = this.maxY; }
2702
+ }
2703
+
2704
+ x = this.getTick(x, this.xTicks);
2705
+ y = this.getTick(y, this.yTicks);
2706
+
2707
+
2708
+ return {x:x, y:y};
2709
+ },
2710
+
2711
+ /**
2712
+ * Sets up config options specific to this class. Overrides
2713
+ * Ext.dd.DragDrop, but all versions of this method through the
2714
+ * inheritance chain are called
2715
+ */
2716
+ applyConfig: function() {
2717
+ Ext.dd.DD.superclass.applyConfig.call(this);
2718
+ this.scroll = (this.config.scroll !== false);
2719
+ },
2720
+
2721
+ /**
2722
+ * Event that fires prior to the onMouseDown event. Overrides
2723
+ * Ext.dd.DragDrop.
2724
+ */
2725
+ b4MouseDown: function(e) {
2726
+ // this.resetConstraints();
2727
+ this.autoOffset(e.getPageX(),
2728
+ e.getPageY());
2729
+ },
2730
+
2731
+ /**
2732
+ * Event that fires prior to the onDrag event. Overrides
2733
+ * Ext.dd.DragDrop.
2734
+ */
2735
+ b4Drag: function(e) {
2736
+ this.setDragElPos(e.getPageX(),
2737
+ e.getPageY());
2738
+ },
2739
+
2740
+ toString: function() {
2741
+ return ("DD " + this.id);
2742
+ }
2743
+
2744
+ //////////////////////////////////////////////////////////////////////////
2745
+ // Debugging ygDragDrop events that can be overridden
2746
+ //////////////////////////////////////////////////////////////////////////
2747
+ /*
2748
+ startDrag: function(x, y) {
2749
+ },
2750
+
2751
+ onDrag: function(e) {
2752
+ },
2753
+
2754
+ onDragEnter: function(e, id) {
2755
+ },
2756
+
2757
+ onDragOver: function(e, id) {
2758
+ },
2759
+
2760
+ onDragOut: function(e, id) {
2761
+ },
2762
+
2763
+ onDragDrop: function(e, id) {
2764
+ },
2765
+
2766
+ endDrag: function(e) {
2767
+ }
2768
+
2769
+ */
2770
+
2771
+ });
2772
+ /**
2773
+ * @class Ext.dd.DDProxy
2774
+ * A DragDrop implementation that inserts an empty, bordered div into
2775
+ * the document that follows the cursor during drag operations. At the time of
2776
+ * the click, the frame div is resized to the dimensions of the linked html
2777
+ * element, and moved to the exact location of the linked element.
2778
+ *
2779
+ * References to the "frame" element refer to the single proxy element that
2780
+ * was created to be dragged in place of all DDProxy elements on the
2781
+ * page.
2782
+ *
2783
+ * @extends Ext.dd.DD
2784
+ * @constructor
2785
+ * @param {String} id the id of the linked html element
2786
+ * @param {String} sGroup the group of related DragDrop objects
2787
+ * @param {object} config an object containing configurable attributes
2788
+ * Valid properties for DDProxy in addition to those in DragDrop:
2789
+ * resizeFrame, centerFrame, dragElId
2790
+ */
2791
+ Ext.dd.DDProxy = function(id, sGroup, config) {
2792
+ if (id) {
2793
+ this.init(id, sGroup, config);
2794
+ this.initFrame();
2795
+ }
2796
+ };
2797
+
2798
+ /**
2799
+ * The default drag frame div id
2800
+ * @property Ext.dd.DDProxy.dragElId
2801
+ * @type String
2802
+ * @static
2803
+ */
2804
+ Ext.dd.DDProxy.dragElId = "ygddfdiv";
2805
+
2806
+ Ext.extend(Ext.dd.DDProxy, Ext.dd.DD, {
2807
+
2808
+ /**
2809
+ * By default we resize the drag frame to be the same size as the element
2810
+ * we want to drag (this is to get the frame effect). We can turn it off
2811
+ * if we want a different behavior.
2812
+ * @property resizeFrame
2813
+ * @type boolean
2814
+ */
2815
+ resizeFrame: true,
2816
+
2817
+ /**
2818
+ * By default the frame is positioned exactly where the drag element is, so
2819
+ * we use the cursor offset provided by Ext.dd.DD. Another option that works only if
2820
+ * you do not have constraints on the obj is to have the drag frame centered
2821
+ * around the cursor. Set centerFrame to true for this effect.
2822
+ * @property centerFrame
2823
+ * @type boolean
2824
+ */
2825
+ centerFrame: false,
2826
+
2827
+ /**
2828
+ * Creates the proxy element if it does not yet exist
2829
+ * @method createFrame
2830
+ */
2831
+ createFrame: function() {
2832
+ var self = this;
2833
+ var body = document.body;
2834
+
2835
+ if (!body || !body.firstChild) {
2836
+ setTimeout( function() { self.createFrame(); }, 50 );
2837
+ return;
2838
+ }
2839
+
2840
+ var div = this.getDragEl();
2841
+
2842
+ if (!div) {
2843
+ div = document.createElement("div");
2844
+ div.id = this.dragElId;
2845
+ var s = div.style;
2846
+
2847
+ s.position = "absolute";
2848
+ s.visibility = "hidden";
2849
+ s.cursor = "move";
2850
+ s.border = "2px solid #aaa";
2851
+ s.zIndex = 999;
2852
+
2853
+ // appendChild can blow up IE if invoked prior to the window load event
2854
+ // while rendering a table. It is possible there are other scenarios
2855
+ // that would cause this to happen as well.
2856
+ body.insertBefore(div, body.firstChild);
2857
+ }
2858
+ },
2859
+
2860
+ /**
2861
+ * Initialization for the drag frame element. Must be called in the
2862
+ * constructor of all subclasses
2863
+ * @method initFrame
2864
+ */
2865
+ initFrame: function() {
2866
+ this.createFrame();
2867
+ },
2868
+
2869
+ applyConfig: function() {
2870
+ Ext.dd.DDProxy.superclass.applyConfig.call(this);
2871
+
2872
+ this.resizeFrame = (this.config.resizeFrame !== false);
2873
+ this.centerFrame = (this.config.centerFrame);
2874
+ this.setDragElId(this.config.dragElId || Ext.dd.DDProxy.dragElId);
2875
+ },
2876
+
2877
+ /**
2878
+ * Resizes the drag frame to the dimensions of the clicked object, positions
2879
+ * it over the object, and finally displays it
2880
+ * @method showFrame
2881
+ * @param {int} iPageX X click position
2882
+ * @param {int} iPageY Y click position
2883
+ * @private
2884
+ */
2885
+ showFrame: function(iPageX, iPageY) {
2886
+ var el = this.getEl();
2887
+ var dragEl = this.getDragEl();
2888
+ var s = dragEl.style;
2889
+
2890
+ this._resizeProxy();
2891
+
2892
+ if (this.centerFrame) {
2893
+ this.setDelta( Math.round(parseInt(s.width, 10)/2),
2894
+ Math.round(parseInt(s.height, 10)/2) );
2895
+ }
2896
+
2897
+ this.setDragElPos(iPageX, iPageY);
2898
+
2899
+ Ext.fly(dragEl).show();
2900
+ },
2901
+
2902
+ /**
2903
+ * The proxy is automatically resized to the dimensions of the linked
2904
+ * element when a drag is initiated, unless resizeFrame is set to false
2905
+ * @method _resizeProxy
2906
+ * @private
2907
+ */
2908
+ _resizeProxy: function() {
2909
+ if (this.resizeFrame) {
2910
+ var el = this.getEl();
2911
+ Ext.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
2912
+ }
2913
+ },
2914
+
2915
+ // overrides Ext.dd.DragDrop
2916
+ b4MouseDown: function(e) {
2917
+ var x = e.getPageX();
2918
+ var y = e.getPageY();
2919
+ this.autoOffset(x, y);
2920
+ this.setDragElPos(x, y);
2921
+ },
2922
+
2923
+ // overrides Ext.dd.DragDrop
2924
+ b4StartDrag: function(x, y) {
2925
+ // show the drag frame
2926
+ this.showFrame(x, y);
2927
+ },
2928
+
2929
+ // overrides Ext.dd.DragDrop
2930
+ b4EndDrag: function(e) {
2931
+ Ext.fly(this.getDragEl()).hide();
2932
+ },
2933
+
2934
+ // overrides Ext.dd.DragDrop
2935
+ // By default we try to move the element to the last location of the frame.
2936
+ // This is so that the default behavior mirrors that of Ext.dd.DD.
2937
+ endDrag: function(e) {
2938
+
2939
+ var lel = this.getEl();
2940
+ var del = this.getDragEl();
2941
+
2942
+ // Show the drag frame briefly so we can get its position
2943
+ del.style.visibility = "";
2944
+
2945
+ this.beforeMove();
2946
+ // Hide the linked element before the move to get around a Safari
2947
+ // rendering bug.
2948
+ lel.style.visibility = "hidden";
2949
+ Ext.dd.DDM.moveToEl(lel, del);
2950
+ del.style.visibility = "hidden";
2951
+ lel.style.visibility = "";
2952
+
2953
+ this.afterDrag();
2954
+ },
2955
+
2956
+ beforeMove : function(){
2957
+
2958
+ },
2959
+
2960
+ afterDrag : function(){
2961
+
2962
+ },
2963
+
2964
+ toString: function() {
2965
+ return ("DDProxy " + this.id);
2966
+ }
2967
+
2968
+ });
2969
+ /**
2970
+ * @class Ext.dd.DDTarget
2971
+ * A DragDrop implementation that does not move, but can be a drop
2972
+ * target. You would get the same result by simply omitting implementation
2973
+ * for the event callbacks, but this way we reduce the processing cost of the
2974
+ * event listener and the callbacks.
2975
+ * @extends Ext.dd.DragDrop
2976
+ * @constructor
2977
+ * @param {String} id the id of the element that is a drop target
2978
+ * @param {String} sGroup the group of related DragDrop objects
2979
+ * @param {object} config an object containing configurable attributes
2980
+ * Valid properties for DDTarget in addition to those in
2981
+ * DragDrop:
2982
+ * none
2983
+ */
2984
+ Ext.dd.DDTarget = function(id, sGroup, config) {
2985
+ if (id) {
2986
+ this.initTarget(id, sGroup, config);
2987
+ }
2988
+ };
2989
+
2990
+ // Ext.dd.DDTarget.prototype = new Ext.dd.DragDrop();
2991
+ Ext.extend(Ext.dd.DDTarget, Ext.dd.DragDrop, {
2992
+ /**
2993
+ * @hide
2994
+ * Overridden and disabled. A DDTarget does not support being dragged.
2995
+ * @method
2996
+ */
2997
+ getDragEl: Ext.emptyFn,
2998
+ /**
2999
+ * @hide
3000
+ * Overridden and disabled. A DDTarget does not support being dragged.
3001
+ * @method
3002
+ */
3003
+ isValidHandleChild: Ext.emptyFn,
3004
+ /**
3005
+ * @hide
3006
+ * Overridden and disabled. A DDTarget does not support being dragged.
3007
+ * @method
3008
+ */
3009
+ startDrag: Ext.emptyFn,
3010
+ /**
3011
+ * @hide
3012
+ * Overridden and disabled. A DDTarget does not support being dragged.
3013
+ * @method
3014
+ */
3015
+ endDrag: Ext.emptyFn,
3016
+ /**
3017
+ * @hide
3018
+ * Overridden and disabled. A DDTarget does not support being dragged.
3019
+ * @method
3020
+ */
3021
+ onDrag: Ext.emptyFn,
3022
+ /**
3023
+ * @hide
3024
+ * Overridden and disabled. A DDTarget does not support being dragged.
3025
+ * @method
3026
+ */
3027
+ onDragDrop: Ext.emptyFn,
3028
+ /**
3029
+ * @hide
3030
+ * Overridden and disabled. A DDTarget does not support being dragged.
3031
+ * @method
3032
+ */
3033
+ onDragEnter: Ext.emptyFn,
3034
+ /**
3035
+ * @hide
3036
+ * Overridden and disabled. A DDTarget does not support being dragged.
3037
+ * @method
3038
+ */
3039
+ onDragOut: Ext.emptyFn,
3040
+ /**
3041
+ * @hide
3042
+ * Overridden and disabled. A DDTarget does not support being dragged.
3043
+ * @method
3044
+ */
3045
+ onDragOver: Ext.emptyFn,
3046
+ /**
3047
+ * @hide
3048
+ * Overridden and disabled. A DDTarget does not support being dragged.
3049
+ * @method
3050
+ */
3051
+ onInvalidDrop: Ext.emptyFn,
3052
+ /**
3053
+ * @hide
3054
+ * Overridden and disabled. A DDTarget does not support being dragged.
3055
+ * @method
3056
+ */
3057
+ onMouseDown: Ext.emptyFn,
3058
+ /**
3059
+ * @hide
3060
+ * Overridden and disabled. A DDTarget does not support being dragged.
3061
+ * @method
3062
+ */
3063
+ onMouseUp: Ext.emptyFn,
3064
+ /**
3065
+ * @hide
3066
+ * Overridden and disabled. A DDTarget does not support being dragged.
3067
+ * @method
3068
+ */
3069
+ setXConstraint: Ext.emptyFn,
3070
+ /**
3071
+ * @hide
3072
+ * Overridden and disabled. A DDTarget does not support being dragged.
3073
+ * @method
3074
+ */
3075
+ setYConstraint: Ext.emptyFn,
3076
+ /**
3077
+ * @hide
3078
+ * Overridden and disabled. A DDTarget does not support being dragged.
3079
+ * @method
3080
+ */
3081
+ resetConstraints: Ext.emptyFn,
3082
+ /**
3083
+ * @hide
3084
+ * Overridden and disabled. A DDTarget does not support being dragged.
3085
+ * @method
3086
+ */
3087
+ clearConstraints: Ext.emptyFn,
3088
+ /**
3089
+ * @hide
3090
+ * Overridden and disabled. A DDTarget does not support being dragged.
3091
+ * @method
3092
+ */
3093
+ clearTicks: Ext.emptyFn,
3094
+ /**
3095
+ * @hide
3096
+ * Overridden and disabled. A DDTarget does not support being dragged.
3097
+ * @method
3098
+ */
3099
+ setInitPosition: Ext.emptyFn,
3100
+ /**
3101
+ * @hide
3102
+ * Overridden and disabled. A DDTarget does not support being dragged.
3103
+ * @method
3104
+ */
3105
+ setDragElId: Ext.emptyFn,
3106
+ /**
3107
+ * @hide
3108
+ * Overridden and disabled. A DDTarget does not support being dragged.
3109
+ * @method
3110
+ */
3111
+ setHandleElId: Ext.emptyFn,
3112
+ /**
3113
+ * @hide
3114
+ * Overridden and disabled. A DDTarget does not support being dragged.
3115
+ * @method
3116
+ */
3117
+ setOuterHandleElId: Ext.emptyFn,
3118
+ /**
3119
+ * @hide
3120
+ * Overridden and disabled. A DDTarget does not support being dragged.
3121
+ * @method
3122
+ */
3123
+ addInvalidHandleClass: Ext.emptyFn,
3124
+ /**
3125
+ * @hide
3126
+ * Overridden and disabled. A DDTarget does not support being dragged.
3127
+ * @method
3128
+ */
3129
+ addInvalidHandleId: Ext.emptyFn,
3130
+ /**
3131
+ * @hide
3132
+ * Overridden and disabled. A DDTarget does not support being dragged.
3133
+ * @method
3134
+ */
3135
+ addInvalidHandleType: Ext.emptyFn,
3136
+ /**
3137
+ * @hide
3138
+ * Overridden and disabled. A DDTarget does not support being dragged.
3139
+ * @method
3140
+ */
3141
+ removeInvalidHandleClass: Ext.emptyFn,
3142
+ /**
3143
+ * @hide
3144
+ * Overridden and disabled. A DDTarget does not support being dragged.
3145
+ * @method
3146
+ */
3147
+ removeInvalidHandleId: Ext.emptyFn,
3148
+ /**
3149
+ * @hide
3150
+ * Overridden and disabled. A DDTarget does not support being dragged.
3151
+ * @method
3152
+ */
3153
+ removeInvalidHandleType: Ext.emptyFn,
3154
+
3155
+ toString: function() {
3156
+ return ("DDTarget " + this.id);
3157
+ }
3158
+ });/**
3159
+ * @class Ext.dd.DragTracker
3160
+ * @extends Ext.util.Observable
3161
+ * A DragTracker listens for drag events on an Element and fires events at the start and end of the drag,
3162
+ * as well as during the drag. This is useful for components such as {@link Ext.slider.MultiSlider}, where there is
3163
+ * an element that can be dragged around to change the Slider's value.
3164
+ * DragTracker provides a series of template methods that should be overridden to provide functionality
3165
+ * in response to detected drag operations. These are onBeforeStart, onStart, onDrag and onEnd.
3166
+ * See {@link Ext.slider.MultiSlider}'s initEvents function for an example implementation.
3167
+ */
3168
+ Ext.dd.DragTracker = Ext.extend(Ext.util.Observable, {
3169
+ /**
3170
+ * @cfg {Boolean} active
3171
+ * Defaults to <tt>false</tt>.
3172
+ */
3173
+ active: false,
3174
+ /**
3175
+ * @cfg {Number} tolerance
3176
+ * Number of pixels the drag target must be moved before dragging is considered to have started. Defaults to <tt>5</tt>.
3177
+ */
3178
+ tolerance: 5,
3179
+ /**
3180
+ * @cfg {Boolean/Number} autoStart
3181
+ * Defaults to <tt>false</tt>. Specify <tt>true</tt> to defer trigger start by 1000 ms.
3182
+ * Specify a Number for the number of milliseconds to defer trigger start.
3183
+ */
3184
+ autoStart: false,
3185
+
3186
+ constructor : function(config){
3187
+ Ext.apply(this, config);
3188
+ this.addEvents(
3189
+ /**
3190
+ * @event mousedown
3191
+ * @param {Object} this
3192
+ * @param {Object} e event object
3193
+ */
3194
+ 'mousedown',
3195
+ /**
3196
+ * @event mouseup
3197
+ * @param {Object} this
3198
+ * @param {Object} e event object
3199
+ */
3200
+ 'mouseup',
3201
+ /**
3202
+ * @event mousemove
3203
+ * @param {Object} this
3204
+ * @param {Object} e event object
3205
+ */
3206
+ 'mousemove',
3207
+ /**
3208
+ * @event dragstart
3209
+ * @param {Object} this
3210
+ * @param {Object} e event object
3211
+ */
3212
+ 'dragstart',
3213
+ /**
3214
+ * @event dragend
3215
+ * @param {Object} this
3216
+ * @param {Object} e event object
3217
+ */
3218
+ 'dragend',
3219
+ /**
3220
+ * @event drag
3221
+ * @param {Object} this
3222
+ * @param {Object} e event object
3223
+ */
3224
+ 'drag'
3225
+ );
3226
+
3227
+ this.dragRegion = new Ext.lib.Region(0,0,0,0);
3228
+
3229
+ if(this.el){
3230
+ this.initEl(this.el);
3231
+ }
3232
+ Ext.dd.DragTracker.superclass.constructor.call(this, config);
3233
+ },
3234
+
3235
+ initEl: function(el){
3236
+ this.el = Ext.get(el);
3237
+ el.on('mousedown', this.onMouseDown, this,
3238
+ this.delegate ? {delegate: this.delegate} : undefined);
3239
+ },
3240
+
3241
+ destroy : function(){
3242
+ this.el.un('mousedown', this.onMouseDown, this);
3243
+ delete this.el;
3244
+ },
3245
+
3246
+ onMouseDown: function(e, target){
3247
+ if(this.fireEvent('mousedown', this, e) !== false && this.onBeforeStart(e) !== false){
3248
+ this.startXY = this.lastXY = e.getXY();
3249
+ this.dragTarget = this.delegate ? target : this.el.dom;
3250
+ if(this.preventDefault !== false){
3251
+ e.preventDefault();
3252
+ }
3253
+ Ext.getDoc().on({
3254
+ scope: this,
3255
+ mouseup: this.onMouseUp,
3256
+ mousemove: this.onMouseMove,
3257
+ selectstart: this.stopSelect
3258
+ });
3259
+ if(this.autoStart){
3260
+ this.timer = this.triggerStart.defer(this.autoStart === true ? 1000 : this.autoStart, this, [e]);
3261
+ }
3262
+ }
3263
+ },
3264
+
3265
+ onMouseMove: function(e, target){
3266
+ // HACK: IE hack to see if button was released outside of window. */
3267
+ if(this.active && Ext.isIE && !e.browserEvent.button){
3268
+ e.preventDefault();
3269
+ this.onMouseUp(e);
3270
+ return;
3271
+ }
3272
+
3273
+ e.preventDefault();
3274
+ var xy = e.getXY(), s = this.startXY;
3275
+ this.lastXY = xy;
3276
+ if(!this.active){
3277
+ if(Math.abs(s[0]-xy[0]) > this.tolerance || Math.abs(s[1]-xy[1]) > this.tolerance){
3278
+ this.triggerStart(e);
3279
+ }else{
3280
+ return;
3281
+ }
3282
+ }
3283
+ this.fireEvent('mousemove', this, e);
3284
+ this.onDrag(e);
3285
+ this.fireEvent('drag', this, e);
3286
+ },
3287
+
3288
+ onMouseUp: function(e) {
3289
+ var doc = Ext.getDoc(),
3290
+ wasActive = this.active;
3291
+
3292
+ doc.un('mousemove', this.onMouseMove, this);
3293
+ doc.un('mouseup', this.onMouseUp, this);
3294
+ doc.un('selectstart', this.stopSelect, this);
3295
+ e.preventDefault();
3296
+ this.clearStart();
3297
+ this.active = false;
3298
+ delete this.elRegion;
3299
+ this.fireEvent('mouseup', this, e);
3300
+ if(wasActive){
3301
+ this.onEnd(e);
3302
+ this.fireEvent('dragend', this, e);
3303
+ }
3304
+ },
3305
+
3306
+ triggerStart: function(e) {
3307
+ this.clearStart();
3308
+ this.active = true;
3309
+ this.onStart(e);
3310
+ this.fireEvent('dragstart', this, e);
3311
+ },
3312
+
3313
+ clearStart : function() {
3314
+ if(this.timer){
3315
+ clearTimeout(this.timer);
3316
+ delete this.timer;
3317
+ }
3318
+ },
3319
+
3320
+ stopSelect : function(e) {
3321
+ e.stopEvent();
3322
+ return false;
3323
+ },
3324
+
3325
+ /**
3326
+ * Template method which should be overridden by each DragTracker instance. Called when the user first clicks and
3327
+ * holds the mouse button down. Return false to disallow the drag
3328
+ * @param {Ext.EventObject} e The event object
3329
+ */
3330
+ onBeforeStart : function(e) {
3331
+
3332
+ },
3333
+
3334
+ /**
3335
+ * Template method which should be overridden by each DragTracker instance. Called when a drag operation starts
3336
+ * (e.g. the user has moved the tracked element beyond the specified tolerance)
3337
+ * @param {Ext.EventObject} e The event object
3338
+ */
3339
+ onStart : function(xy) {
3340
+
3341
+ },
3342
+
3343
+ /**
3344
+ * Template method which should be overridden by each DragTracker instance. Called whenever a drag has been detected.
3345
+ * @param {Ext.EventObject} e The event object
3346
+ */
3347
+ onDrag : function(e) {
3348
+
3349
+ },
3350
+
3351
+ /**
3352
+ * Template method which should be overridden by each DragTracker instance. Called when a drag operation has been completed
3353
+ * (e.g. the user clicked and held the mouse down, dragged the element and then released the mouse button)
3354
+ * @param {Ext.EventObject} e The event object
3355
+ */
3356
+ onEnd : function(e) {
3357
+
3358
+ },
3359
+
3360
+ /**
3361
+ * Returns the drag target
3362
+ * @return {Ext.Element} The element currently being tracked
3363
+ */
3364
+ getDragTarget : function(){
3365
+ return this.dragTarget;
3366
+ },
3367
+
3368
+ getDragCt : function(){
3369
+ return this.el;
3370
+ },
3371
+
3372
+ getXY : function(constrain){
3373
+ return constrain ?
3374
+ this.constrainModes[constrain].call(this, this.lastXY) : this.lastXY;
3375
+ },
3376
+
3377
+ getOffset : function(constrain){
3378
+ var xy = this.getXY(constrain),
3379
+ s = this.startXY;
3380
+ return [s[0]-xy[0], s[1]-xy[1]];
3381
+ },
3382
+
3383
+ constrainModes: {
3384
+ 'point' : function(xy){
3385
+
3386
+ if(!this.elRegion){
3387
+ this.elRegion = this.getDragCt().getRegion();
3388
+ }
3389
+
3390
+ var dr = this.dragRegion;
3391
+
3392
+ dr.left = xy[0];
3393
+ dr.top = xy[1];
3394
+ dr.right = xy[0];
3395
+ dr.bottom = xy[1];
3396
+
3397
+ dr.constrainTo(this.elRegion);
3398
+
3399
+ return [dr.left, dr.top];
3400
+ }
3401
+ }
3402
+ });/**
3403
+ * @class Ext.dd.ScrollManager
3404
+ * <p>Provides automatic scrolling of overflow regions in the page during drag operations.</p>
3405
+ * <p>The ScrollManager configs will be used as the defaults for any scroll container registered with it,
3406
+ * but you can also override most of the configs per scroll container by adding a
3407
+ * <tt>ddScrollConfig</tt> object to the target element that contains these properties: {@link #hthresh},
3408
+ * {@link #vthresh}, {@link #increment} and {@link #frequency}. Example usage:
3409
+ * <pre><code>
3410
+ var el = Ext.get('scroll-ct');
3411
+ el.ddScrollConfig = {
3412
+ vthresh: 50,
3413
+ hthresh: -1,
3414
+ frequency: 100,
3415
+ increment: 200
3416
+ };
3417
+ Ext.dd.ScrollManager.register(el);
3418
+ </code></pre>
3419
+ * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
3420
+ * @singleton
3421
+ */
3422
+ Ext.dd.ScrollManager = function(){
3423
+ var ddm = Ext.dd.DragDropMgr;
3424
+ var els = {};
3425
+ var dragEl = null;
3426
+ var proc = {};
3427
+
3428
+ var onStop = function(e){
3429
+ dragEl = null;
3430
+ clearProc();
3431
+ };
3432
+
3433
+ var triggerRefresh = function(){
3434
+ if(ddm.dragCurrent){
3435
+ ddm.refreshCache(ddm.dragCurrent.groups);
3436
+ }
3437
+ };
3438
+
3439
+ var doScroll = function(){
3440
+ if(ddm.dragCurrent){
3441
+ var dds = Ext.dd.ScrollManager;
3442
+ var inc = proc.el.ddScrollConfig ?
3443
+ proc.el.ddScrollConfig.increment : dds.increment;
3444
+ if(!dds.animate){
3445
+ if(proc.el.scroll(proc.dir, inc)){
3446
+ triggerRefresh();
3447
+ }
3448
+ }else{
3449
+ proc.el.scroll(proc.dir, inc, true, dds.animDuration, triggerRefresh);
3450
+ }
3451
+ }
3452
+ };
3453
+
3454
+ var clearProc = function(){
3455
+ if(proc.id){
3456
+ clearInterval(proc.id);
3457
+ }
3458
+ proc.id = 0;
3459
+ proc.el = null;
3460
+ proc.dir = "";
3461
+ };
3462
+
3463
+ var startProc = function(el, dir){
3464
+ clearProc();
3465
+ proc.el = el;
3466
+ proc.dir = dir;
3467
+ var group = el.ddScrollConfig ? el.ddScrollConfig.ddGroup : undefined,
3468
+ freq = (el.ddScrollConfig && el.ddScrollConfig.frequency)
3469
+ ? el.ddScrollConfig.frequency
3470
+ : Ext.dd.ScrollManager.frequency;
3471
+
3472
+ if (group === undefined || ddm.dragCurrent.ddGroup == group) {
3473
+ proc.id = setInterval(doScroll, freq);
3474
+ }
3475
+ };
3476
+
3477
+ var onFire = function(e, isDrop){
3478
+ if(isDrop || !ddm.dragCurrent){ return; }
3479
+ var dds = Ext.dd.ScrollManager;
3480
+ if(!dragEl || dragEl != ddm.dragCurrent){
3481
+ dragEl = ddm.dragCurrent;
3482
+ // refresh regions on drag start
3483
+ dds.refreshCache();
3484
+ }
3485
+
3486
+ var xy = Ext.lib.Event.getXY(e);
3487
+ var pt = new Ext.lib.Point(xy[0], xy[1]);
3488
+ for(var id in els){
3489
+ var el = els[id], r = el._region;
3490
+ var c = el.ddScrollConfig ? el.ddScrollConfig : dds;
3491
+ if(r && r.contains(pt) && el.isScrollable()){
3492
+ if(r.bottom - pt.y <= c.vthresh){
3493
+ if(proc.el != el){
3494
+ startProc(el, "down");
3495
+ }
3496
+ return;
3497
+ }else if(r.right - pt.x <= c.hthresh){
3498
+ if(proc.el != el){
3499
+ startProc(el, "left");
3500
+ }
3501
+ return;
3502
+ }else if(pt.y - r.top <= c.vthresh){
3503
+ if(proc.el != el){
3504
+ startProc(el, "up");
3505
+ }
3506
+ return;
3507
+ }else if(pt.x - r.left <= c.hthresh){
3508
+ if(proc.el != el){
3509
+ startProc(el, "right");
3510
+ }
3511
+ return;
3512
+ }
3513
+ }
3514
+ }
3515
+ clearProc();
3516
+ };
3517
+
3518
+ ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
3519
+ ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
3520
+
3521
+ return {
3522
+ /**
3523
+ * Registers new overflow element(s) to auto scroll
3524
+ * @param {Mixed/Array} el The id of or the element to be scrolled or an array of either
3525
+ */
3526
+ register : function(el){
3527
+ if(Ext.isArray(el)){
3528
+ for(var i = 0, len = el.length; i < len; i++) {
3529
+ this.register(el[i]);
3530
+ }
3531
+ }else{
3532
+ el = Ext.get(el);
3533
+ els[el.id] = el;
3534
+ }
3535
+ },
3536
+
3537
+ /**
3538
+ * Unregisters overflow element(s) so they are no longer scrolled
3539
+ * @param {Mixed/Array} el The id of or the element to be removed or an array of either
3540
+ */
3541
+ unregister : function(el){
3542
+ if(Ext.isArray(el)){
3543
+ for(var i = 0, len = el.length; i < len; i++) {
3544
+ this.unregister(el[i]);
3545
+ }
3546
+ }else{
3547
+ el = Ext.get(el);
3548
+ delete els[el.id];
3549
+ }
3550
+ },
3551
+
3552
+ /**
3553
+ * The number of pixels from the top or bottom edge of a container the pointer needs to be to
3554
+ * trigger scrolling (defaults to 25)
3555
+ * @type Number
3556
+ */
3557
+ vthresh : 25,
3558
+ /**
3559
+ * The number of pixels from the right or left edge of a container the pointer needs to be to
3560
+ * trigger scrolling (defaults to 25)
3561
+ * @type Number
3562
+ */
3563
+ hthresh : 25,
3564
+
3565
+ /**
3566
+ * The number of pixels to scroll in each scroll increment (defaults to 100)
3567
+ * @type Number
3568
+ */
3569
+ increment : 100,
3570
+
3571
+ /**
3572
+ * The frequency of scrolls in milliseconds (defaults to 500)
3573
+ * @type Number
3574
+ */
3575
+ frequency : 500,
3576
+
3577
+ /**
3578
+ * True to animate the scroll (defaults to true)
3579
+ * @type Boolean
3580
+ */
3581
+ animate: true,
3582
+
3583
+ /**
3584
+ * The animation duration in seconds -
3585
+ * MUST BE less than Ext.dd.ScrollManager.frequency! (defaults to .4)
3586
+ * @type Number
3587
+ */
3588
+ animDuration: .4,
3589
+
3590
+ /**
3591
+ * The named drag drop {@link Ext.dd.DragSource#ddGroup group} to which this container belongs (defaults to undefined).
3592
+ * If a ddGroup is specified, then container scrolling will only occur when a dragged object is in the same ddGroup.
3593
+ * @type String
3594
+ */
3595
+ ddGroup: undefined,
3596
+
3597
+ /**
3598
+ * Manually trigger a cache refresh.
3599
+ */
3600
+ refreshCache : function(){
3601
+ for(var id in els){
3602
+ if(typeof els[id] == 'object'){ // for people extending the object prototype
3603
+ els[id]._region = els[id].getRegion();
3604
+ }
3605
+ }
3606
+ }
3607
+ };
3608
+ }();/**
3609
+ * @class Ext.dd.Registry
3610
+ * Provides easy access to all drag drop components that are registered on a page. Items can be retrieved either
3611
+ * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
3612
+ * @singleton
3613
+ */
3614
+ Ext.dd.Registry = function(){
3615
+ var elements = {};
3616
+ var handles = {};
3617
+ var autoIdSeed = 0;
3618
+
3619
+ var getId = function(el, autogen){
3620
+ if(typeof el == "string"){
3621
+ return el;
3622
+ }
3623
+ var id = el.id;
3624
+ if(!id && autogen !== false){
3625
+ id = "extdd-" + (++autoIdSeed);
3626
+ el.id = id;
3627
+ }
3628
+ return id;
3629
+ };
3630
+
3631
+ return {
3632
+ /**
3633
+ * Resgister a drag drop element
3634
+ * @param {String/HTMLElement} element The id or DOM node to register
3635
+ * @param {Object} data (optional) An custom data object that will be passed between the elements that are involved
3636
+ * in drag drop operations. You can populate this object with any arbitrary properties that your own code
3637
+ * knows how to interpret, plus there are some specific properties known to the Registry that should be
3638
+ * populated in the data object (if applicable):
3639
+ * <pre>
3640
+ Value Description<br />
3641
+ --------- ------------------------------------------<br />
3642
+ handles Array of DOM nodes that trigger dragging<br />
3643
+ for the element being registered<br />
3644
+ isHandle True if the element passed in triggers<br />
3645
+ dragging itself, else false
3646
+ </pre>
3647
+ */
3648
+ register : function(el, data){
3649
+ data = data || {};
3650
+ if(typeof el == "string"){
3651
+ el = document.getElementById(el);
3652
+ }
3653
+ data.ddel = el;
3654
+ elements[getId(el)] = data;
3655
+ if(data.isHandle !== false){
3656
+ handles[data.ddel.id] = data;
3657
+ }
3658
+ if(data.handles){
3659
+ var hs = data.handles;
3660
+ for(var i = 0, len = hs.length; i < len; i++){
3661
+ handles[getId(hs[i])] = data;
3662
+ }
3663
+ }
3664
+ },
3665
+
3666
+ /**
3667
+ * Unregister a drag drop element
3668
+ * @param {String/HTMLElement} element The id or DOM node to unregister
3669
+ */
3670
+ unregister : function(el){
3671
+ var id = getId(el, false);
3672
+ var data = elements[id];
3673
+ if(data){
3674
+ delete elements[id];
3675
+ if(data.handles){
3676
+ var hs = data.handles;
3677
+ for(var i = 0, len = hs.length; i < len; i++){
3678
+ delete handles[getId(hs[i], false)];
3679
+ }
3680
+ }
3681
+ }
3682
+ },
3683
+
3684
+ /**
3685
+ * Returns the handle registered for a DOM Node by id
3686
+ * @param {String/HTMLElement} id The DOM node or id to look up
3687
+ * @return {Object} handle The custom handle data
3688
+ */
3689
+ getHandle : function(id){
3690
+ if(typeof id != "string"){ // must be element?
3691
+ id = id.id;
3692
+ }
3693
+ return handles[id];
3694
+ },
3695
+
3696
+ /**
3697
+ * Returns the handle that is registered for the DOM node that is the target of the event
3698
+ * @param {Event} e The event
3699
+ * @return {Object} handle The custom handle data
3700
+ */
3701
+ getHandleFromEvent : function(e){
3702
+ var t = Ext.lib.Event.getTarget(e);
3703
+ return t ? handles[t.id] : null;
3704
+ },
3705
+
3706
+ /**
3707
+ * Returns a custom data object that is registered for a DOM node by id
3708
+ * @param {String/HTMLElement} id The DOM node or id to look up
3709
+ * @return {Object} data The custom data
3710
+ */
3711
+ getTarget : function(id){
3712
+ if(typeof id != "string"){ // must be element?
3713
+ id = id.id;
3714
+ }
3715
+ return elements[id];
3716
+ },
3717
+
3718
+ /**
3719
+ * Returns a custom data object that is registered for the DOM node that is the target of the event
3720
+ * @param {Event} e The event
3721
+ * @return {Object} data The custom data
3722
+ */
3723
+ getTargetFromEvent : function(e){
3724
+ var t = Ext.lib.Event.getTarget(e);
3725
+ return t ? elements[t.id] || handles[t.id] : null;
3726
+ }
3727
+ };
3728
+ }();/**
3729
+ * @class Ext.dd.StatusProxy
3730
+ * A specialized drag proxy that supports a drop status icon, {@link Ext.Layer} styles and auto-repair. This is the
3731
+ * default drag proxy used by all Ext.dd components.
3732
+ * @constructor
3733
+ * @param {Object} config
3734
+ */
3735
+ Ext.dd.StatusProxy = function(config){
3736
+ Ext.apply(this, config);
3737
+ this.id = this.id || Ext.id();
3738
+ this.el = new Ext.Layer({
3739
+ dh: {
3740
+ id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
3741
+ {tag: "div", cls: "x-dd-drop-icon"},
3742
+ {tag: "div", cls: "x-dd-drag-ghost"}
3743
+ ]
3744
+ },
3745
+ shadow: !config || config.shadow !== false
3746
+ });
3747
+ this.ghost = Ext.get(this.el.dom.childNodes[1]);
3748
+ this.dropStatus = this.dropNotAllowed;
3749
+ };
3750
+
3751
+ Ext.dd.StatusProxy.prototype = {
3752
+ /**
3753
+ * @cfg {String} dropAllowed
3754
+ * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
3755
+ */
3756
+ dropAllowed : "x-dd-drop-ok",
3757
+ /**
3758
+ * @cfg {String} dropNotAllowed
3759
+ * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
3760
+ */
3761
+ dropNotAllowed : "x-dd-drop-nodrop",
3762
+
3763
+ /**
3764
+ * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
3765
+ * over the current target element.
3766
+ * @param {String} cssClass The css class for the new drop status indicator image
3767
+ */
3768
+ setStatus : function(cssClass){
3769
+ cssClass = cssClass || this.dropNotAllowed;
3770
+ if(this.dropStatus != cssClass){
3771
+ this.el.replaceClass(this.dropStatus, cssClass);
3772
+ this.dropStatus = cssClass;
3773
+ }
3774
+ },
3775
+
3776
+ /**
3777
+ * Resets the status indicator to the default dropNotAllowed value
3778
+ * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
3779
+ */
3780
+ reset : function(clearGhost){
3781
+ this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
3782
+ this.dropStatus = this.dropNotAllowed;
3783
+ if(clearGhost){
3784
+ this.ghost.update("");
3785
+ }
3786
+ },
3787
+
3788
+ /**
3789
+ * Updates the contents of the ghost element
3790
+ * @param {String/HTMLElement} html The html that will replace the current innerHTML of the ghost element, or a
3791
+ * DOM node to append as the child of the ghost element (in which case the innerHTML will be cleared first).
3792
+ */
3793
+ update : function(html){
3794
+ if(typeof html == "string"){
3795
+ this.ghost.update(html);
3796
+ }else{
3797
+ this.ghost.update("");
3798
+ html.style.margin = "0";
3799
+ this.ghost.dom.appendChild(html);
3800
+ }
3801
+ var el = this.ghost.dom.firstChild;
3802
+ if(el){
3803
+ Ext.fly(el).setStyle('float', 'none');
3804
+ }
3805
+ },
3806
+
3807
+ /**
3808
+ * Returns the underlying proxy {@link Ext.Layer}
3809
+ * @return {Ext.Layer} el
3810
+ */
3811
+ getEl : function(){
3812
+ return this.el;
3813
+ },
3814
+
3815
+ /**
3816
+ * Returns the ghost element
3817
+ * @return {Ext.Element} el
3818
+ */
3819
+ getGhost : function(){
3820
+ return this.ghost;
3821
+ },
3822
+
3823
+ /**
3824
+ * Hides the proxy
3825
+ * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
3826
+ */
3827
+ hide : function(clear){
3828
+ this.el.hide();
3829
+ if(clear){
3830
+ this.reset(true);
3831
+ }
3832
+ },
3833
+
3834
+ /**
3835
+ * Stops the repair animation if it's currently running
3836
+ */
3837
+ stop : function(){
3838
+ if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
3839
+ this.anim.stop();
3840
+ }
3841
+ },
3842
+
3843
+ /**
3844
+ * Displays this proxy
3845
+ */
3846
+ show : function(){
3847
+ this.el.show();
3848
+ },
3849
+
3850
+ /**
3851
+ * Force the Layer to sync its shadow and shim positions to the element
3852
+ */
3853
+ sync : function(){
3854
+ this.el.sync();
3855
+ },
3856
+
3857
+ /**
3858
+ * Causes the proxy to return to its position of origin via an animation. Should be called after an
3859
+ * invalid drop operation by the item being dragged.
3860
+ * @param {Array} xy The XY position of the element ([x, y])
3861
+ * @param {Function} callback The function to call after the repair is complete.
3862
+ * @param {Object} scope The scope (<code>this</code> reference) in which the callback function is executed. Defaults to the browser window.
3863
+ */
3864
+ repair : function(xy, callback, scope){
3865
+ this.callback = callback;
3866
+ this.scope = scope;
3867
+ if(xy && this.animRepair !== false){
3868
+ this.el.addClass("x-dd-drag-repair");
3869
+ this.el.hideUnders(true);
3870
+ this.anim = this.el.shift({
3871
+ duration: this.repairDuration || .5,
3872
+ easing: 'easeOut',
3873
+ xy: xy,
3874
+ stopFx: true,
3875
+ callback: this.afterRepair,
3876
+ scope: this
3877
+ });
3878
+ }else{
3879
+ this.afterRepair();
3880
+ }
3881
+ },
3882
+
3883
+ // private
3884
+ afterRepair : function(){
3885
+ this.hide(true);
3886
+ if(typeof this.callback == "function"){
3887
+ this.callback.call(this.scope || this);
3888
+ }
3889
+ this.callback = null;
3890
+ this.scope = null;
3891
+ },
3892
+
3893
+ destroy: function(){
3894
+ Ext.destroy(this.ghost, this.el);
3895
+ }
3896
+ };/**
3897
+ * @class Ext.dd.DragSource
3898
+ * @extends Ext.dd.DDProxy
3899
+ * A simple class that provides the basic implementation needed to make any element draggable.
3900
+ * @constructor
3901
+ * @param {Mixed} el The container element
3902
+ * @param {Object} config
3903
+ */
3904
+ Ext.dd.DragSource = function(el, config){
3905
+ this.el = Ext.get(el);
3906
+ if(!this.dragData){
3907
+ this.dragData = {};
3908
+ }
3909
+
3910
+ Ext.apply(this, config);
3911
+
3912
+ if(!this.proxy){
3913
+ this.proxy = new Ext.dd.StatusProxy();
3914
+ }
3915
+ Ext.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
3916
+ {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
3917
+
3918
+ this.dragging = false;
3919
+ };
3920
+
3921
+ Ext.extend(Ext.dd.DragSource, Ext.dd.DDProxy, {
3922
+ /**
3923
+ * @cfg {String} ddGroup
3924
+ * A named drag drop group to which this object belongs. If a group is specified, then this object will only
3925
+ * interact with other drag drop objects in the same group (defaults to undefined).
3926
+ */
3927
+ /**
3928
+ * @cfg {String} dropAllowed
3929
+ * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
3930
+ */
3931
+ dropAllowed : "x-dd-drop-ok",
3932
+ /**
3933
+ * @cfg {String} dropNotAllowed
3934
+ * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
3935
+ */
3936
+ dropNotAllowed : "x-dd-drop-nodrop",
3937
+
3938
+ /**
3939
+ * Returns the data object associated with this drag source
3940
+ * @return {Object} data An object containing arbitrary data
3941
+ */
3942
+ getDragData : function(e){
3943
+ return this.dragData;
3944
+ },
3945
+
3946
+ // private
3947
+ onDragEnter : function(e, id){
3948
+ var target = Ext.dd.DragDropMgr.getDDById(id);
3949
+ this.cachedTarget = target;
3950
+ if(this.beforeDragEnter(target, e, id) !== false){
3951
+ if(target.isNotifyTarget){
3952
+ var status = target.notifyEnter(this, e, this.dragData);
3953
+ this.proxy.setStatus(status);
3954
+ }else{
3955
+ this.proxy.setStatus(this.dropAllowed);
3956
+ }
3957
+
3958
+ if(this.afterDragEnter){
3959
+ /**
3960
+ * An empty function by default, but provided so that you can perform a custom action
3961
+ * when the dragged item enters the drop target by providing an implementation.
3962
+ * @param {Ext.dd.DragDrop} target The drop target
3963
+ * @param {Event} e The event object
3964
+ * @param {String} id The id of the dragged element
3965
+ * @method afterDragEnter
3966
+ */
3967
+ this.afterDragEnter(target, e, id);
3968
+ }
3969
+ }
3970
+ },
3971
+
3972
+ /**
3973
+ * An empty function by default, but provided so that you can perform a custom action
3974
+ * before the dragged item enters the drop target and optionally cancel the onDragEnter.
3975
+ * @param {Ext.dd.DragDrop} target The drop target
3976
+ * @param {Event} e The event object
3977
+ * @param {String} id The id of the dragged element
3978
+ * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3979
+ */
3980
+ beforeDragEnter : function(target, e, id){
3981
+ return true;
3982
+ },
3983
+
3984
+ // private
3985
+ alignElWithMouse: function() {
3986
+ Ext.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
3987
+ this.proxy.sync();
3988
+ },
3989
+
3990
+ // private
3991
+ onDragOver : function(e, id){
3992
+ var target = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(id);
3993
+ if(this.beforeDragOver(target, e, id) !== false){
3994
+ if(target.isNotifyTarget){
3995
+ var status = target.notifyOver(this, e, this.dragData);
3996
+ this.proxy.setStatus(status);
3997
+ }
3998
+
3999
+ if(this.afterDragOver){
4000
+ /**
4001
+ * An empty function by default, but provided so that you can perform a custom action
4002
+ * while the dragged item is over the drop target by providing an implementation.
4003
+ * @param {Ext.dd.DragDrop} target The drop target
4004
+ * @param {Event} e The event object
4005
+ * @param {String} id The id of the dragged element
4006
+ * @method afterDragOver
4007
+ */
4008
+ this.afterDragOver(target, e, id);
4009
+ }
4010
+ }
4011
+ },
4012
+
4013
+ /**
4014
+ * An empty function by default, but provided so that you can perform a custom action
4015
+ * while the dragged item is over the drop target and optionally cancel the onDragOver.
4016
+ * @param {Ext.dd.DragDrop} target The drop target
4017
+ * @param {Event} e The event object
4018
+ * @param {String} id The id of the dragged element
4019
+ * @return {Boolean} isValid True if the drag event is valid, else false to cancel
4020
+ */
4021
+ beforeDragOver : function(target, e, id){
4022
+ return true;
4023
+ },
4024
+
4025
+ // private
4026
+ onDragOut : function(e, id){
4027
+ var target = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(id);
4028
+ if(this.beforeDragOut(target, e, id) !== false){
4029
+ if(target.isNotifyTarget){
4030
+ target.notifyOut(this, e, this.dragData);
4031
+ }
4032
+ this.proxy.reset();
4033
+ if(this.afterDragOut){
4034
+ /**
4035
+ * An empty function by default, but provided so that you can perform a custom action
4036
+ * after the dragged item is dragged out of the target without dropping.
4037
+ * @param {Ext.dd.DragDrop} target The drop target
4038
+ * @param {Event} e The event object
4039
+ * @param {String} id The id of the dragged element
4040
+ * @method afterDragOut
4041
+ */
4042
+ this.afterDragOut(target, e, id);
4043
+ }
4044
+ }
4045
+ this.cachedTarget = null;
4046
+ },
4047
+
4048
+ /**
4049
+ * An empty function by default, but provided so that you can perform a custom action before the dragged
4050
+ * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
4051
+ * @param {Ext.dd.DragDrop} target The drop target
4052
+ * @param {Event} e The event object
4053
+ * @param {String} id The id of the dragged element
4054
+ * @return {Boolean} isValid True if the drag event is valid, else false to cancel
4055
+ */
4056
+ beforeDragOut : function(target, e, id){
4057
+ return true;
4058
+ },
4059
+
4060
+ // private
4061
+ onDragDrop : function(e, id){
4062
+ var target = this.cachedTarget || Ext.dd.DragDropMgr.getDDById(id);
4063
+ if(this.beforeDragDrop(target, e, id) !== false){
4064
+ if(target.isNotifyTarget){
4065
+ if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
4066
+ this.onValidDrop(target, e, id);
4067
+ }else{
4068
+ this.onInvalidDrop(target, e, id);
4069
+ }
4070
+ }else{
4071
+ this.onValidDrop(target, e, id);
4072
+ }
4073
+
4074
+ if(this.afterDragDrop){
4075
+ /**
4076
+ * An empty function by default, but provided so that you can perform a custom action
4077
+ * after a valid drag drop has occurred by providing an implementation.
4078
+ * @param {Ext.dd.DragDrop} target The drop target
4079
+ * @param {Event} e The event object
4080
+ * @param {String} id The id of the dropped element
4081
+ * @method afterDragDrop
4082
+ */
4083
+ this.afterDragDrop(target, e, id);
4084
+ }
4085
+ }
4086
+ delete this.cachedTarget;
4087
+ },
4088
+
4089
+ /**
4090
+ * An empty function by default, but provided so that you can perform a custom action before the dragged
4091
+ * item is dropped onto the target and optionally cancel the onDragDrop.
4092
+ * @param {Ext.dd.DragDrop} target The drop target
4093
+ * @param {Event} e The event object
4094
+ * @param {String} id The id of the dragged element
4095
+ * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
4096
+ */
4097
+ beforeDragDrop : function(target, e, id){
4098
+ return true;
4099
+ },
4100
+
4101
+ // private
4102
+ onValidDrop : function(target, e, id){
4103
+ this.hideProxy();
4104
+ if(this.afterValidDrop){
4105
+ /**
4106
+ * An empty function by default, but provided so that you can perform a custom action
4107
+ * after a valid drop has occurred by providing an implementation.
4108
+ * @param {Object} target The target DD
4109
+ * @param {Event} e The event object
4110
+ * @param {String} id The id of the dropped element
4111
+ * @method afterInvalidDrop
4112
+ */
4113
+ this.afterValidDrop(target, e, id);
4114
+ }
4115
+ },
4116
+
4117
+ // private
4118
+ getRepairXY : function(e, data){
4119
+ return this.el.getXY();
4120
+ },
4121
+
4122
+ // private
4123
+ onInvalidDrop : function(target, e, id){
4124
+ this.beforeInvalidDrop(target, e, id);
4125
+ if(this.cachedTarget){
4126
+ if(this.cachedTarget.isNotifyTarget){
4127
+ this.cachedTarget.notifyOut(this, e, this.dragData);
4128
+ }
4129
+ this.cacheTarget = null;
4130
+ }
4131
+ this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
4132
+
4133
+ if(this.afterInvalidDrop){
4134
+ /**
4135
+ * An empty function by default, but provided so that you can perform a custom action
4136
+ * after an invalid drop has occurred by providing an implementation.
4137
+ * @param {Event} e The event object
4138
+ * @param {String} id The id of the dropped element
4139
+ * @method afterInvalidDrop
4140
+ */
4141
+ this.afterInvalidDrop(e, id);
4142
+ }
4143
+ },
4144
+
4145
+ // private
4146
+ afterRepair : function(){
4147
+ if(Ext.enableFx){
4148
+ this.el.highlight(this.hlColor || "c3daf9");
4149
+ }
4150
+ this.dragging = false;
4151
+ },
4152
+
4153
+ /**
4154
+ * An empty function by default, but provided so that you can perform a custom action after an invalid
4155
+ * drop has occurred.
4156
+ * @param {Ext.dd.DragDrop} target The drop target
4157
+ * @param {Event} e The event object
4158
+ * @param {String} id The id of the dragged element
4159
+ * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
4160
+ */
4161
+ beforeInvalidDrop : function(target, e, id){
4162
+ return true;
4163
+ },
4164
+
4165
+ // private
4166
+ handleMouseDown : function(e){
4167
+ if(this.dragging) {
4168
+ return;
4169
+ }
4170
+ var data = this.getDragData(e);
4171
+ if(data && this.onBeforeDrag(data, e) !== false){
4172
+ this.dragData = data;
4173
+ this.proxy.stop();
4174
+ Ext.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
4175
+ }
4176
+ },
4177
+
4178
+ /**
4179
+ * An empty function by default, but provided so that you can perform a custom action before the initial
4180
+ * drag event begins and optionally cancel it.
4181
+ * @param {Object} data An object containing arbitrary data to be shared with drop targets
4182
+ * @param {Event} e The event object
4183
+ * @return {Boolean} isValid True if the drag event is valid, else false to cancel
4184
+ */
4185
+ onBeforeDrag : function(data, e){
4186
+ return true;
4187
+ },
4188
+
4189
+ /**
4190
+ * An empty function by default, but provided so that you can perform a custom action once the initial
4191
+ * drag event has begun. The drag cannot be canceled from this function.
4192
+ * @param {Number} x The x position of the click on the dragged object
4193
+ * @param {Number} y The y position of the click on the dragged object
4194
+ */
4195
+ onStartDrag : Ext.emptyFn,
4196
+
4197
+ // private override
4198
+ startDrag : function(x, y){
4199
+ this.proxy.reset();
4200
+ this.dragging = true;
4201
+ this.proxy.update("");
4202
+ this.onInitDrag(x, y);
4203
+ this.proxy.show();
4204
+ },
4205
+
4206
+ // private
4207
+ onInitDrag : function(x, y){
4208
+ var clone = this.el.dom.cloneNode(true);
4209
+ clone.id = Ext.id(); // prevent duplicate ids
4210
+ this.proxy.update(clone);
4211
+ this.onStartDrag(x, y);
4212
+ return true;
4213
+ },
4214
+
4215
+ /**
4216
+ * Returns the drag source's underlying {@link Ext.dd.StatusProxy}
4217
+ * @return {Ext.dd.StatusProxy} proxy The StatusProxy
4218
+ */
4219
+ getProxy : function(){
4220
+ return this.proxy;
4221
+ },
4222
+
4223
+ /**
4224
+ * Hides the drag source's {@link Ext.dd.StatusProxy}
4225
+ */
4226
+ hideProxy : function(){
4227
+ this.proxy.hide();
4228
+ this.proxy.reset(true);
4229
+ this.dragging = false;
4230
+ },
4231
+
4232
+ // private
4233
+ triggerCacheRefresh : function(){
4234
+ Ext.dd.DDM.refreshCache(this.groups);
4235
+ },
4236
+
4237
+ // private - override to prevent hiding
4238
+ b4EndDrag: function(e) {
4239
+ },
4240
+
4241
+ // private - override to prevent moving
4242
+ endDrag : function(e){
4243
+ this.onEndDrag(this.dragData, e);
4244
+ },
4245
+
4246
+ // private
4247
+ onEndDrag : function(data, e){
4248
+ },
4249
+
4250
+ // private - pin to cursor
4251
+ autoOffset : function(x, y) {
4252
+ this.setDelta(-12, -20);
4253
+ },
4254
+
4255
+ destroy: function(){
4256
+ Ext.dd.DragSource.superclass.destroy.call(this);
4257
+ Ext.destroy(this.proxy);
4258
+ }
4259
+ });/**
4260
+ * @class Ext.dd.DropTarget
4261
+ * @extends Ext.dd.DDTarget
4262
+ * A simple class that provides the basic implementation needed to make any element a drop target that can have
4263
+ * draggable items dropped onto it. The drop has no effect until an implementation of notifyDrop is provided.
4264
+ * @constructor
4265
+ * @param {Mixed} el The container element
4266
+ * @param {Object} config
4267
+ */
4268
+ Ext.dd.DropTarget = Ext.extend(Ext.dd.DDTarget, {
4269
+
4270
+ constructor : function(el, config){
4271
+ this.el = Ext.get(el);
4272
+
4273
+ Ext.apply(this, config);
4274
+
4275
+ if(this.containerScroll){
4276
+ Ext.dd.ScrollManager.register(this.el);
4277
+ }
4278
+
4279
+ Ext.dd.DropTarget.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
4280
+ {isTarget: true});
4281
+ },
4282
+
4283
+ /**
4284
+ * @cfg {String} ddGroup
4285
+ * A named drag drop group to which this object belongs. If a group is specified, then this object will only
4286
+ * interact with other drag drop objects in the same group (defaults to undefined).
4287
+ */
4288
+ /**
4289
+ * @cfg {String} overClass
4290
+ * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
4291
+ */
4292
+ /**
4293
+ * @cfg {String} dropAllowed
4294
+ * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
4295
+ */
4296
+ dropAllowed : "x-dd-drop-ok",
4297
+ /**
4298
+ * @cfg {String} dropNotAllowed
4299
+ * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
4300
+ */
4301
+ dropNotAllowed : "x-dd-drop-nodrop",
4302
+
4303
+ // private
4304
+ isTarget : true,
4305
+
4306
+ // private
4307
+ isNotifyTarget : true,
4308
+
4309
+ /**
4310
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source is now over the
4311
+ * target. This default implementation adds the CSS class specified by overClass (if any) to the drop element
4312
+ * and returns the dropAllowed config value. This method should be overridden if drop validation is required.
4313
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
4314
+ * @param {Event} e The event
4315
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4316
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4317
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4318
+ */
4319
+ notifyEnter : function(dd, e, data){
4320
+ if(this.overClass){
4321
+ this.el.addClass(this.overClass);
4322
+ }
4323
+ return this.dropAllowed;
4324
+ },
4325
+
4326
+ /**
4327
+ * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the target.
4328
+ * This method will be called on every mouse movement while the drag source is over the drop target.
4329
+ * This default implementation simply returns the dropAllowed config value.
4330
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
4331
+ * @param {Event} e The event
4332
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4333
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4334
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4335
+ */
4336
+ notifyOver : function(dd, e, data){
4337
+ return this.dropAllowed;
4338
+ },
4339
+
4340
+ /**
4341
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the source has been dragged
4342
+ * out of the target without dropping. This default implementation simply removes the CSS class specified by
4343
+ * overClass (if any) from the drop element.
4344
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
4345
+ * @param {Event} e The event
4346
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4347
+ */
4348
+ notifyOut : function(dd, e, data){
4349
+ if(this.overClass){
4350
+ this.el.removeClass(this.overClass);
4351
+ }
4352
+ },
4353
+
4354
+ /**
4355
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop target that the dragged item has
4356
+ * been dropped on it. This method has no default implementation and returns false, so you must provide an
4357
+ * implementation that does something to process the drop event and returns true so that the drag source's
4358
+ * repair action does not run.
4359
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
4360
+ * @param {Event} e The event
4361
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4362
+ * @return {Boolean} True if the drop was valid, else false
4363
+ */
4364
+ notifyDrop : function(dd, e, data){
4365
+ return false;
4366
+ },
4367
+
4368
+ destroy : function(){
4369
+ Ext.dd.DropTarget.superclass.destroy.call(this);
4370
+ if(this.containerScroll){
4371
+ Ext.dd.ScrollManager.unregister(this.el);
4372
+ }
4373
+ }
4374
+ });/**
4375
+ * @class Ext.dd.DragZone
4376
+ * @extends Ext.dd.DragSource
4377
+ * <p>This class provides a container DD instance that allows dragging of multiple child source nodes.</p>
4378
+ * <p>This class does not move the drag target nodes, but a proxy element which may contain
4379
+ * any DOM structure you wish. The DOM element to show in the proxy is provided by either a
4380
+ * provided implementation of {@link #getDragData}, or by registered draggables registered with {@link Ext.dd.Registry}</p>
4381
+ * <p>If you wish to provide draggability for an arbitrary number of DOM nodes, each of which represent some
4382
+ * application object (For example nodes in a {@link Ext.DataView DataView}) then use of this class
4383
+ * is the most efficient way to "activate" those nodes.</p>
4384
+ * <p>By default, this class requires that draggable child nodes are registered with {@link Ext.dd.Registry}.
4385
+ * However a simpler way to allow a DragZone to manage any number of draggable elements is to configure
4386
+ * the DragZone with an implementation of the {@link #getDragData} method which interrogates the passed
4387
+ * mouse event to see if it has taken place within an element, or class of elements. This is easily done
4388
+ * by using the event's {@link Ext.EventObject#getTarget getTarget} method to identify a node based on a
4389
+ * {@link Ext.DomQuery} selector. For example, to make the nodes of a DataView draggable, use the following
4390
+ * technique. Knowledge of the use of the DataView is required:</p><pre><code>
4391
+ myDataView.on('render', function(v) {
4392
+ myDataView.dragZone = new Ext.dd.DragZone(v.getEl(), {
4393
+
4394
+ // On receipt of a mousedown event, see if it is within a DataView node.
4395
+ // Return a drag data object if so.
4396
+ getDragData: function(e) {
4397
+
4398
+ // Use the DataView's own itemSelector (a mandatory property) to
4399
+ // test if the mousedown is within one of the DataView's nodes.
4400
+ var sourceEl = e.getTarget(v.itemSelector, 10);
4401
+
4402
+ // If the mousedown is within a DataView node, clone the node to produce
4403
+ // a ddel element for use by the drag proxy. Also add application data
4404
+ // to the returned data object.
4405
+ if (sourceEl) {
4406
+ d = sourceEl.cloneNode(true);
4407
+ d.id = Ext.id();
4408
+ return {
4409
+ ddel: d,
4410
+ sourceEl: sourceEl,
4411
+ repairXY: Ext.fly(sourceEl).getXY(),
4412
+ sourceStore: v.store,
4413
+ draggedRecord: v.{@link Ext.DataView#getRecord getRecord}(sourceEl)
4414
+ }
4415
+ }
4416
+ },
4417
+
4418
+ // Provide coordinates for the proxy to slide back to on failed drag.
4419
+ // This is the original XY coordinates of the draggable element captured
4420
+ // in the getDragData method.
4421
+ getRepairXY: function() {
4422
+ return this.dragData.repairXY;
4423
+ }
4424
+ });
4425
+ });</code></pre>
4426
+ * See the {@link Ext.dd.DropZone DropZone} documentation for details about building a DropZone which
4427
+ * cooperates with this DragZone.
4428
+ * @constructor
4429
+ * @param {Mixed} el The container element
4430
+ * @param {Object} config
4431
+ */
4432
+ Ext.dd.DragZone = Ext.extend(Ext.dd.DragSource, {
4433
+
4434
+ constructor : function(el, config){
4435
+ Ext.dd.DragZone.superclass.constructor.call(this, el, config);
4436
+ if(this.containerScroll){
4437
+ Ext.dd.ScrollManager.register(this.el);
4438
+ }
4439
+ },
4440
+
4441
+ /**
4442
+ * This property contains the data representing the dragged object. This data is set up by the implementation
4443
+ * of the {@link #getDragData} method. It must contain a <tt>ddel</tt> property, but can contain
4444
+ * any other data according to the application's needs.
4445
+ * @type Object
4446
+ * @property dragData
4447
+ */
4448
+ /**
4449
+ * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
4450
+ * for auto scrolling during drag operations.
4451
+ */
4452
+ /**
4453
+ * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
4454
+ * method after a failed drop (defaults to "c3daf9" - light blue)
4455
+ */
4456
+
4457
+ /**
4458
+ * Called when a mousedown occurs in this container. Looks in {@link Ext.dd.Registry}
4459
+ * for a valid target to drag based on the mouse down. Override this method
4460
+ * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
4461
+ * object has a "ddel" attribute (with an HTML Element) for other functions to work.
4462
+ * @param {EventObject} e The mouse down event
4463
+ * @return {Object} The dragData
4464
+ */
4465
+ getDragData : function(e){
4466
+ return Ext.dd.Registry.getHandleFromEvent(e);
4467
+ },
4468
+
4469
+ /**
4470
+ * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
4471
+ * this.dragData.ddel
4472
+ * @param {Number} x The x position of the click on the dragged object
4473
+ * @param {Number} y The y position of the click on the dragged object
4474
+ * @return {Boolean} true to continue the drag, false to cancel
4475
+ */
4476
+ onInitDrag : function(x, y){
4477
+ this.proxy.update(this.dragData.ddel.cloneNode(true));
4478
+ this.onStartDrag(x, y);
4479
+ return true;
4480
+ },
4481
+
4482
+ /**
4483
+ * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel
4484
+ */
4485
+ afterRepair : function(){
4486
+ if(Ext.enableFx){
4487
+ Ext.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
4488
+ }
4489
+ this.dragging = false;
4490
+ },
4491
+
4492
+ /**
4493
+ * Called before a repair of an invalid drop to get the XY to animate to. By default returns
4494
+ * the XY of this.dragData.ddel
4495
+ * @param {EventObject} e The mouse up event
4496
+ * @return {Array} The xy location (e.g. [100, 200])
4497
+ */
4498
+ getRepairXY : function(e){
4499
+ return Ext.Element.fly(this.dragData.ddel).getXY();
4500
+ },
4501
+
4502
+ destroy : function(){
4503
+ Ext.dd.DragZone.superclass.destroy.call(this);
4504
+ if(this.containerScroll){
4505
+ Ext.dd.ScrollManager.unregister(this.el);
4506
+ }
4507
+ }
4508
+ });/**
4509
+ * @class Ext.dd.DropZone
4510
+ * @extends Ext.dd.DropTarget
4511
+ * <p>This class provides a container DD instance that allows dropping on multiple child target nodes.</p>
4512
+ * <p>By default, this class requires that child nodes accepting drop are registered with {@link Ext.dd.Registry}.
4513
+ * However a simpler way to allow a DropZone to manage any number of target elements is to configure the
4514
+ * DropZone with an implementation of {@link #getTargetFromEvent} which interrogates the passed
4515
+ * mouse event to see if it has taken place within an element, or class of elements. This is easily done
4516
+ * by using the event's {@link Ext.EventObject#getTarget getTarget} method to identify a node based on a
4517
+ * {@link Ext.DomQuery} selector.</p>
4518
+ * <p>Once the DropZone has detected through calling getTargetFromEvent, that the mouse is over
4519
+ * a drop target, that target is passed as the first parameter to {@link #onNodeEnter}, {@link #onNodeOver},
4520
+ * {@link #onNodeOut}, {@link #onNodeDrop}. You may configure the instance of DropZone with implementations
4521
+ * of these methods to provide application-specific behaviour for these events to update both
4522
+ * application state, and UI state.</p>
4523
+ * <p>For example to make a GridPanel a cooperating target with the example illustrated in
4524
+ * {@link Ext.dd.DragZone DragZone}, the following technique might be used:</p><pre><code>
4525
+ myGridPanel.on('render', function() {
4526
+ myGridPanel.dropZone = new Ext.dd.DropZone(myGridPanel.getView().scroller, {
4527
+
4528
+ // If the mouse is over a grid row, return that node. This is
4529
+ // provided as the "target" parameter in all "onNodeXXXX" node event handling functions
4530
+ getTargetFromEvent: function(e) {
4531
+ return e.getTarget(myGridPanel.getView().rowSelector);
4532
+ },
4533
+
4534
+ // On entry into a target node, highlight that node.
4535
+ onNodeEnter : function(target, dd, e, data){
4536
+ Ext.fly(target).addClass('my-row-highlight-class');
4537
+ },
4538
+
4539
+ // On exit from a target node, unhighlight that node.
4540
+ onNodeOut : function(target, dd, e, data){
4541
+ Ext.fly(target).removeClass('my-row-highlight-class');
4542
+ },
4543
+
4544
+ // While over a target node, return the default drop allowed class which
4545
+ // places a "tick" icon into the drag proxy.
4546
+ onNodeOver : function(target, dd, e, data){
4547
+ return Ext.dd.DropZone.prototype.dropAllowed;
4548
+ },
4549
+
4550
+ // On node drop we can interrogate the target to find the underlying
4551
+ // application object that is the real target of the dragged data.
4552
+ // In this case, it is a Record in the GridPanel's Store.
4553
+ // We can use the data set up by the DragZone's getDragData method to read
4554
+ // any data we decided to attach in the DragZone's getDragData method.
4555
+ onNodeDrop : function(target, dd, e, data){
4556
+ var rowIndex = myGridPanel.getView().findRowIndex(target);
4557
+ var r = myGridPanel.getStore().getAt(rowIndex);
4558
+ Ext.Msg.alert('Drop gesture', 'Dropped Record id ' + data.draggedRecord.id +
4559
+ ' on Record id ' + r.id);
4560
+ return true;
4561
+ }
4562
+ });
4563
+ }
4564
+ </code></pre>
4565
+ * See the {@link Ext.dd.DragZone DragZone} documentation for details about building a DragZone which
4566
+ * cooperates with this DropZone.
4567
+ * @constructor
4568
+ * @param {Mixed} el The container element
4569
+ * @param {Object} config
4570
+ */
4571
+ Ext.dd.DropZone = function(el, config){
4572
+ Ext.dd.DropZone.superclass.constructor.call(this, el, config);
4573
+ };
4574
+
4575
+ Ext.extend(Ext.dd.DropZone, Ext.dd.DropTarget, {
4576
+ /**
4577
+ * Returns a custom data object associated with the DOM node that is the target of the event. By default
4578
+ * this looks up the event target in the {@link Ext.dd.Registry}, although you can override this method to
4579
+ * provide your own custom lookup.
4580
+ * @param {Event} e The event
4581
+ * @return {Object} data The custom data
4582
+ */
4583
+ getTargetFromEvent : function(e){
4584
+ return Ext.dd.Registry.getTargetFromEvent(e);
4585
+ },
4586
+
4587
+ /**
4588
+ * Called when the DropZone determines that a {@link Ext.dd.DragSource} has entered a drop node
4589
+ * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
4590
+ * This method has no default implementation and should be overridden to provide
4591
+ * node-specific processing if necessary.
4592
+ * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4593
+ * {@link #getTargetFromEvent} for this node)
4594
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4595
+ * @param {Event} e The event
4596
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4597
+ */
4598
+ onNodeEnter : function(n, dd, e, data){
4599
+
4600
+ },
4601
+
4602
+ /**
4603
+ * Called while the DropZone determines that a {@link Ext.dd.DragSource} is over a drop node
4604
+ * that has either been registered or detected by a configured implementation of {@link #getTargetFromEvent}.
4605
+ * The default implementation returns this.dropNotAllowed, so it should be
4606
+ * overridden to provide the proper feedback.
4607
+ * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4608
+ * {@link #getTargetFromEvent} for this node)
4609
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4610
+ * @param {Event} e The event
4611
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4612
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4613
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4614
+ */
4615
+ onNodeOver : function(n, dd, e, data){
4616
+ return this.dropAllowed;
4617
+ },
4618
+
4619
+ /**
4620
+ * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dragged out of
4621
+ * the drop node without dropping. This method has no default implementation and should be overridden to provide
4622
+ * node-specific processing if necessary.
4623
+ * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4624
+ * {@link #getTargetFromEvent} for this node)
4625
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4626
+ * @param {Event} e The event
4627
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4628
+ */
4629
+ onNodeOut : function(n, dd, e, data){
4630
+
4631
+ },
4632
+
4633
+ /**
4634
+ * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped onto
4635
+ * the drop node. The default implementation returns false, so it should be overridden to provide the
4636
+ * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
4637
+ * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4638
+ * {@link #getTargetFromEvent} for this node)
4639
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4640
+ * @param {Event} e The event
4641
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4642
+ * @return {Boolean} True if the drop was valid, else false
4643
+ */
4644
+ onNodeDrop : function(n, dd, e, data){
4645
+ return false;
4646
+ },
4647
+
4648
+ /**
4649
+ * Called while the DropZone determines that a {@link Ext.dd.DragSource} is being dragged over it,
4650
+ * but not over any of its registered drop nodes. The default implementation returns this.dropNotAllowed, so
4651
+ * it should be overridden to provide the proper feedback if necessary.
4652
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4653
+ * @param {Event} e The event
4654
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4655
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4656
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4657
+ */
4658
+ onContainerOver : function(dd, e, data){
4659
+ return this.dropNotAllowed;
4660
+ },
4661
+
4662
+ /**
4663
+ * Called when the DropZone determines that a {@link Ext.dd.DragSource} has been dropped on it,
4664
+ * but not on any of its registered drop nodes. The default implementation returns false, so it should be
4665
+ * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
4666
+ * be able to accept drops. It should return true when valid so that the drag source's repair action does not run.
4667
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4668
+ * @param {Event} e The event
4669
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4670
+ * @return {Boolean} True if the drop was valid, else false
4671
+ */
4672
+ onContainerDrop : function(dd, e, data){
4673
+ return false;
4674
+ },
4675
+
4676
+ /**
4677
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source is now over
4678
+ * the zone. The default implementation returns this.dropNotAllowed and expects that only registered drop
4679
+ * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
4680
+ * you should override this method and provide a custom implementation.
4681
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4682
+ * @param {Event} e The event
4683
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4684
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4685
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4686
+ */
4687
+ notifyEnter : function(dd, e, data){
4688
+ return this.dropNotAllowed;
4689
+ },
4690
+
4691
+ /**
4692
+ * The function a {@link Ext.dd.DragSource} calls continuously while it is being dragged over the drop zone.
4693
+ * This method will be called on every mouse movement while the drag source is over the drop zone.
4694
+ * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
4695
+ * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
4696
+ * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
4697
+ * registered node, it will call {@link #onContainerOver}.
4698
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4699
+ * @param {Event} e The event
4700
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4701
+ * @return {String} status The CSS class that communicates the drop status back to the source so that the
4702
+ * underlying {@link Ext.dd.StatusProxy} can be updated
4703
+ */
4704
+ notifyOver : function(dd, e, data){
4705
+ var n = this.getTargetFromEvent(e);
4706
+ if(!n){ // not over valid drop target
4707
+ if(this.lastOverNode){
4708
+ this.onNodeOut(this.lastOverNode, dd, e, data);
4709
+ this.lastOverNode = null;
4710
+ }
4711
+ return this.onContainerOver(dd, e, data);
4712
+ }
4713
+ if(this.lastOverNode != n){
4714
+ if(this.lastOverNode){
4715
+ this.onNodeOut(this.lastOverNode, dd, e, data);
4716
+ }
4717
+ this.onNodeEnter(n, dd, e, data);
4718
+ this.lastOverNode = n;
4719
+ }
4720
+ return this.onNodeOver(n, dd, e, data);
4721
+ },
4722
+
4723
+ /**
4724
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the source has been dragged
4725
+ * out of the zone without dropping. If the drag source is currently over a registered node, the notification
4726
+ * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
4727
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop target
4728
+ * @param {Event} e The event
4729
+ * @param {Object} data An object containing arbitrary data supplied by the drag zone
4730
+ */
4731
+ notifyOut : function(dd, e, data){
4732
+ if(this.lastOverNode){
4733
+ this.onNodeOut(this.lastOverNode, dd, e, data);
4734
+ this.lastOverNode = null;
4735
+ }
4736
+ },
4737
+
4738
+ /**
4739
+ * The function a {@link Ext.dd.DragSource} calls once to notify this drop zone that the dragged item has
4740
+ * been dropped on it. The drag zone will look up the target node based on the event passed in, and if there
4741
+ * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
4742
+ * otherwise it will call {@link #onContainerDrop}.
4743
+ * @param {Ext.dd.DragSource} source The drag source that was dragged over this drop zone
4744
+ * @param {Event} e The event
4745
+ * @param {Object} data An object containing arbitrary data supplied by the drag source
4746
+ * @return {Boolean} True if the drop was valid, else false
4747
+ */
4748
+ notifyDrop : function(dd, e, data){
4749
+ if(this.lastOverNode){
4750
+ this.onNodeOut(this.lastOverNode, dd, e, data);
4751
+ this.lastOverNode = null;
4752
+ }
4753
+ var n = this.getTargetFromEvent(e);
4754
+ return n ?
4755
+ this.onNodeDrop(n, dd, e, data) :
4756
+ this.onContainerDrop(dd, e, data);
4757
+ },
4758
+
4759
+ // private
4760
+ triggerCacheRefresh : function(){
4761
+ Ext.dd.DDM.refreshCache(this.groups);
4762
+ }
4763
+ });/**
4764
+ * @class Ext.Element
4765
+ */
4766
+ Ext.Element.addMethods({
4767
+ /**
4768
+ * Initializes a {@link Ext.dd.DD} drag drop object for this element.
4769
+ * @param {String} group The group the DD object is member of
4770
+ * @param {Object} config The DD config object
4771
+ * @param {Object} overrides An object containing methods to override/implement on the DD object
4772
+ * @return {Ext.dd.DD} The DD object
4773
+ */
4774
+ initDD : function(group, config, overrides){
4775
+ var dd = new Ext.dd.DD(Ext.id(this.dom), group, config);
4776
+ return Ext.apply(dd, overrides);
4777
+ },
4778
+
4779
+ /**
4780
+ * Initializes a {@link Ext.dd.DDProxy} object for this element.
4781
+ * @param {String} group The group the DDProxy object is member of
4782
+ * @param {Object} config The DDProxy config object
4783
+ * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
4784
+ * @return {Ext.dd.DDProxy} The DDProxy object
4785
+ */
4786
+ initDDProxy : function(group, config, overrides){
4787
+ var dd = new Ext.dd.DDProxy(Ext.id(this.dom), group, config);
4788
+ return Ext.apply(dd, overrides);
4789
+ },
4790
+
4791
+ /**
4792
+ * Initializes a {@link Ext.dd.DDTarget} object for this element.
4793
+ * @param {String} group The group the DDTarget object is member of
4794
+ * @param {Object} config The DDTarget config object
4795
+ * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
4796
+ * @return {Ext.dd.DDTarget} The DDTarget object
4797
+ */
4798
+ initDDTarget : function(group, config, overrides){
4799
+ var dd = new Ext.dd.DDTarget(Ext.id(this.dom), group, config);
4800
+ return Ext.apply(dd, overrides);
4801
+ }
4802
+ });