bloggit 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History +4 -0
- data/Manifest +422 -0
- data/Rakefile +64 -0
- data/ReadMe +69 -0
- data/Todo +26 -0
- data/bin/bloggit +5 -0
- data/docs/index.html +57 -0
- data/docs/specifications.html +100 -0
- data/docs/src/_layout.rhtml +53 -0
- data/docs/src/index.markdown +5 -0
- data/docs/src/specifications.markdown +48 -0
- data/lib/bloggit.rb +28 -0
- data/lib/bloggit/boilerplate/Rakefile +2 -0
- data/lib/bloggit/boilerplate/pages/about.page +5 -0
- data/lib/bloggit/boilerplate/plugins/haloscan/init.rb +5 -0
- data/lib/bloggit/boilerplate/settings.yml +28 -0
- data/lib/bloggit/boilerplate/themes/default/styles/main.css +145 -0
- data/lib/bloggit/boilerplate/themes/default/templates/archive.rhtml +20 -0
- data/lib/bloggit/boilerplate/themes/default/templates/home.rhtml +6 -0
- data/lib/bloggit/boilerplate/themes/default/templates/layouts/main.rhtml +15 -0
- data/lib/bloggit/boilerplate/themes/default/templates/layouts/two-columns.rhtml +21 -0
- data/lib/bloggit/boilerplate/themes/default/templates/page.rhtml +8 -0
- data/lib/bloggit/boilerplate/themes/default/templates/post.rhtml +3 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/blog_entry.rhtml +16 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/navigation.rhtml +12 -0
- data/lib/bloggit/boilerplate/themes/default/templates/snippets/tag_list.rhtml +9 -0
- data/lib/bloggit/boilerplate/themes/default/templates/tag_archive.rhtml +38 -0
- data/lib/bloggit/checksum.rb +39 -0
- data/lib/bloggit/client/index.html +2 -0
- data/lib/bloggit/client/scripts/adapter/jquery/ext-jquery-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/jquery/jquery-plugins.js +965 -0
- data/lib/bloggit/client/scripts/adapter/jquery/jquery.js +2201 -0
- data/lib/bloggit/client/scripts/adapter/prototype/effects.js +1098 -0
- data/lib/bloggit/client/scripts/adapter/prototype/ext-prototype-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/prototype/prototype.js +2523 -0
- data/lib/bloggit/client/scripts/adapter/prototype/scriptaculous.js +59 -0
- data/lib/bloggit/client/scripts/adapter/yui/ext-yui-adapter.js +12 -0
- data/lib/bloggit/client/scripts/adapter/yui/yui-utilities.js +18 -0
- data/lib/bloggit/client/scripts/app.js +121 -0
- data/lib/bloggit/client/scripts/ext-all.js +256 -0
- data/lib/bloggit/client/scripts/resources/css/README.txt +3 -0
- data/lib/bloggit/client/scripts/resources/css/basic-dialog.css +286 -0
- data/lib/bloggit/client/scripts/resources/css/box.css +111 -0
- data/lib/bloggit/client/scripts/resources/css/button.css +148 -0
- data/lib/bloggit/client/scripts/resources/css/combo.css +46 -0
- data/lib/bloggit/client/scripts/resources/css/core.css +290 -0
- data/lib/bloggit/client/scripts/resources/css/date-picker.css +155 -0
- data/lib/bloggit/client/scripts/resources/css/dd.css +61 -0
- data/lib/bloggit/client/scripts/resources/css/debug.css +55 -0
- data/lib/bloggit/client/scripts/resources/css/ext-all.css +3167 -0
- data/lib/bloggit/client/scripts/resources/css/form.css +359 -0
- data/lib/bloggit/client/scripts/resources/css/grid.css +295 -0
- data/lib/bloggit/client/scripts/resources/css/layout.css +252 -0
- data/lib/bloggit/client/scripts/resources/css/menu.css +116 -0
- data/lib/bloggit/client/scripts/resources/css/panel.css +258 -0
- data/lib/bloggit/client/scripts/resources/css/qtips.css +119 -0
- data/lib/bloggit/client/scripts/resources/css/reset-min.css +9 -0
- data/lib/bloggit/client/scripts/resources/css/resizable.css +143 -0
- data/lib/bloggit/client/scripts/resources/css/tabs.css +134 -0
- data/lib/bloggit/client/scripts/resources/css/toolbar.css +160 -0
- data/lib/bloggit/client/scripts/resources/css/tree.css +179 -0
- data/lib/bloggit/client/scripts/resources/css/window.css +155 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-aero.css +581 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-gray.css +438 -0
- data/lib/bloggit/client/scripts/resources/css/ytheme-vista.css +511 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-center.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-left.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-right.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/basic-dialog/w-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-blue-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/pspbrwse.jbf +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort-col-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort_asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/grid/sort_desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-btm-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/toolbar/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/aero/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-arrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress2.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/corners-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/corners.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/l-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/l.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/r-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/r.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/tb-blue.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/box/tb.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-add.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/dd/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/date-trigger.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/error-tip-corners.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/exclamation.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/text-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/form/trigger.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/Thumbs.db +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/arrow-left-white.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/arrow-right-white.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/col-move-bottom.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/col-move-top.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/dirty.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/done.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/footer-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hd-pop.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/invalid_line.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/mso-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/nowait.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-first-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-first.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-last-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-last.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-next-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-next.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-prev-disabled.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/page-prev.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/pick-button.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/refresh.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/sort_asc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/sort_desc.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/grid/wait.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/stuck.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/group-checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/menu-parent.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/menu.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/menu/unchecked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow-c.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow-lr.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shadow.png +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/calendar.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/left-btn.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/right-btn.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/shared/warning.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/square.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow-light.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/btn-over-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/tb-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-add.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-between.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-no.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-over.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-under.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/drop-yes.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-end.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-line.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus-nl.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/elbow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/folder-open.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/folder.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/leaf.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/loading.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/default/tree/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/dlg-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/grid/grid-hrow.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/group-checked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/menu-parent.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/menu.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/menu/unchecked.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/gray/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-center.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-left.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-right.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/dlg-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/hd-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/basic-dialog/w-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/grid/grid-split.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/grid/grid-vista-hd.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/gradient-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/ns-collapse.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/ns-expand.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-light-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/stick.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/tab-close-on.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/layout/tab-close.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/qtip/bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/qtip/tip-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/s.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle-dark.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-left-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-right-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/tabs/tab-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/toolbar/gray-bg.gif +0 -0
- data/lib/bloggit/client/scripts/resources/images/vista/toolbar/tb-btn-sprite.gif +0 -0
- data/lib/bloggit/client/scripts/resources/license.txt +25 -0
- data/lib/bloggit/client/scripts/resources/raw-images/shadow.psd +0 -0
- data/lib/bloggit/client/scripts/resources/resources.jsb +522 -0
- data/lib/bloggit/client/templates/json.rhtml +5 -0
- data/lib/bloggit/client/templates/main.rhtml +109 -0
- data/lib/bloggit/commandline.rb +52 -0
- data/lib/bloggit/commands/page_cmd.rb +17 -0
- data/lib/bloggit/commands/plugin_cmd.rb +89 -0
- data/lib/bloggit/commands/post_cmd.rb +17 -0
- data/lib/bloggit/commands/site_cmd.rb +82 -0
- data/lib/bloggit/commands/theme_cmd.rb +16 -0
- data/lib/bloggit/etc/hash.rb +24 -0
- data/lib/bloggit/etc/string.rb +5 -0
- data/lib/bloggit/generator.rb +331 -0
- data/lib/bloggit/hooks.rb +21 -0
- data/lib/bloggit/media.rb +40 -0
- data/lib/bloggit/page.rb +98 -0
- data/lib/bloggit/plugin.rb +52 -0
- data/lib/bloggit/post.rb +169 -0
- data/lib/bloggit/publisher.rb +115 -0
- data/lib/bloggit/server.rb +102 -0
- data/lib/bloggit/site.rb +183 -0
- data/lib/bloggit/tag.rb +61 -0
- data/lib/bloggit/tasks/client.rb +9 -0
- data/lib/bloggit/tasks/publishing.rb +36 -0
- data/lib/bloggit/tasks/scm.rb +78 -0
- data/lib/bloggit/tasks/specs.rb +128 -0
- data/lib/bloggit/template.rb +334 -0
- data/lib/bloggit/text_formatter.rb +50 -0
- data/lib/util/fixed_hoe.rb +553 -0
- data/test/fixtures/test.blog/Rakefile +7 -0
- data/test/fixtures/test.blog/pages/about.page +7 -0
- data/test/fixtures/test.blog/pages/coming-soon.page +3 -0
- data/test/fixtures/test.blog/pages/todo.page +23 -0
- data/test/fixtures/test.blog/plugins/example/init.rb +69 -0
- data/test/fixtures/test.blog/plugins/haloscan/init.rb +25 -0
- data/test/fixtures/test.blog/plugins/js_search/init.rb +51 -0
- data/test/fixtures/test.blog/plugins/rdoc_formatter/init.rb +14 -0
- data/test/fixtures/test.blog/posts/2004.03.07_to-boldly-go.post +11 -0
- data/test/fixtures/test.blog/posts/2007.03.25_sure-whatever.post +10 -0
- data/test/fixtures/test.blog/posts/2007.03.27_rdoc-anyone.post +13 -0
- data/test/fixtures/test.blog/posts/2010.12.07_35-already.post +5 -0
- data/test/fixtures/test.blog/settings.yml +34 -0
- data/test/fixtures/test.blog/themes/default/styles/main.css +145 -0
- data/test/fixtures/test.blog/themes/default/templates/archive.rhtml +22 -0
- data/test/fixtures/test.blog/themes/default/templates/home.rhtml +9 -0
- data/test/fixtures/test.blog/themes/default/templates/layouts/main.rhtml +17 -0
- data/test/fixtures/test.blog/themes/default/templates/layouts/two-columns.rhtml +21 -0
- data/test/fixtures/test.blog/themes/default/templates/page.rhtml +8 -0
- data/test/fixtures/test.blog/themes/default/templates/post.rhtml +15 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/blog_entry.rhtml +10 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/navigation.rhtml +12 -0
- data/test/fixtures/test.blog/themes/default/templates/snippets/tag_list.rhtml +9 -0
- data/test/fixtures/test.blog/themes/default/templates/tag_archive.rhtml +41 -0
- data/test/helpers.rb +25 -0
- data/test/unit/bloggit_test.rb +9 -0
- data/test/unit/page_test.rb +28 -0
- data/test/unit/post_test.rb +36 -0
- data/test/unit/site_test.rb +27 -0
- data/test/unit/template_test.rb +21 -0
- data/test/unit/text_formatter_test.rb +43 -0
- metadata +520 -0
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Ext JS Library 1.0.1
|
|
3
|
+
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
4
|
+
* licensing@extjs.com
|
|
5
|
+
*
|
|
6
|
+
* http://www.extjs.com/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* all fields */
|
|
10
|
+
.x-form-field{
|
|
11
|
+
margin: 0 0 0 0;
|
|
12
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/* ---- text fields ---- */
|
|
16
|
+
.x-form-text, textarea.x-form-field{
|
|
17
|
+
padding: 1px 3px;
|
|
18
|
+
background:#fff url(../images/default/form/text-bg.gif) repeat-x 0 0;
|
|
19
|
+
border: 1px solid #B5B8C8;
|
|
20
|
+
}
|
|
21
|
+
.x-form-text {
|
|
22
|
+
height:22px;
|
|
23
|
+
line-height:18px;
|
|
24
|
+
vertical-align:middle;
|
|
25
|
+
}
|
|
26
|
+
.ext-ie .x-form-text {
|
|
27
|
+
margin-top:-1px; /* ie bogus margin bug */
|
|
28
|
+
margin-bottom:-1px;
|
|
29
|
+
height:22px; /* ie quirks */
|
|
30
|
+
line-height:18px;
|
|
31
|
+
}
|
|
32
|
+
.ext-strict .x-form-text {
|
|
33
|
+
height:18px;
|
|
34
|
+
}
|
|
35
|
+
.ext-safari .x-form-text {
|
|
36
|
+
height:20px; /* safari always same size */
|
|
37
|
+
}
|
|
38
|
+
.ext-gecko .x-form-text {
|
|
39
|
+
padding-top:2px; /* FF won't center the text vertically */
|
|
40
|
+
padding-bottom:0;
|
|
41
|
+
}
|
|
42
|
+
/* select boxes */
|
|
43
|
+
|
|
44
|
+
.x-form-select-one {
|
|
45
|
+
height:20px;
|
|
46
|
+
line-height:18px;
|
|
47
|
+
vertical-align:middle;
|
|
48
|
+
background-color:#fff; /* opera */
|
|
49
|
+
border: 1px solid #B5B8C8;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* multi select boxes */
|
|
53
|
+
|
|
54
|
+
/* --- TODO --- */
|
|
55
|
+
|
|
56
|
+
/* checkboxes */
|
|
57
|
+
|
|
58
|
+
/* --- TODO --- */
|
|
59
|
+
|
|
60
|
+
/* radios */
|
|
61
|
+
|
|
62
|
+
/* --- TODO --- */
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
/* wrapped fields and triggers */
|
|
66
|
+
|
|
67
|
+
.x-form-field-wrap {
|
|
68
|
+
position:relative;
|
|
69
|
+
zoom:1;
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.x-editor .x-form-check-wrap {
|
|
74
|
+
background:#fff;
|
|
75
|
+
}
|
|
76
|
+
.x-form-field-wrap .x-form-trigger{
|
|
77
|
+
width:17px;
|
|
78
|
+
height:21px;
|
|
79
|
+
border:0;
|
|
80
|
+
background:transparent url(../images/default/form/trigger.gif) no-repeat 0 0;
|
|
81
|
+
cursor:pointer;
|
|
82
|
+
border-bottom: 1px solid #B5B8C8;
|
|
83
|
+
position:absolute;
|
|
84
|
+
top:0;
|
|
85
|
+
}
|
|
86
|
+
.ext-safari .x-form-field-wrap .x-form-trigger{
|
|
87
|
+
height:19px; /* safari doesn't allow height adjustments to the fields, so adjust trigger */
|
|
88
|
+
}
|
|
89
|
+
.x-form-field-wrap .x-form-trigger-over{
|
|
90
|
+
background-position:-17px 0;
|
|
91
|
+
}
|
|
92
|
+
.x-form-field-wrap .x-form-trigger-click{
|
|
93
|
+
background-position:-34px 0;
|
|
94
|
+
}
|
|
95
|
+
.x-item-disabled .x-form-trigger-over{
|
|
96
|
+
background-position:0 0 !important;
|
|
97
|
+
}
|
|
98
|
+
.x-item-disabled .x-form-trigger-click{
|
|
99
|
+
background-position:0 0 !important;
|
|
100
|
+
}
|
|
101
|
+
.x-form-field-wrap .x-form-date-trigger{
|
|
102
|
+
background:transparent url(../images/default/form/date-trigger.gif) no-repeat 0 0;
|
|
103
|
+
cursor:pointer;
|
|
104
|
+
}
|
|
105
|
+
.ext-safari .x-form-field-wrap .x-form-date-trigger{
|
|
106
|
+
right:0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* field focus style */
|
|
110
|
+
.x-form-focus{
|
|
111
|
+
border: 1px solid #7eadd9;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* invalid fields */
|
|
115
|
+
.x-form-invalid, textarea.x-form-invalid{
|
|
116
|
+
background:#fff url(../images/default/grid/invalid_line.gif) repeat-x bottom;
|
|
117
|
+
border: 1px solid #dd7870;
|
|
118
|
+
}
|
|
119
|
+
.ext-safari .x-form-invalid{
|
|
120
|
+
background-color:#ffeeee;
|
|
121
|
+
border: 1px solid #ff7870;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/* editors */
|
|
125
|
+
|
|
126
|
+
.x-editor {
|
|
127
|
+
visibility:hidden;
|
|
128
|
+
padding:0;
|
|
129
|
+
margin:0;
|
|
130
|
+
}
|
|
131
|
+
.x-form-check-wrap {
|
|
132
|
+
line-height:18px;
|
|
133
|
+
}
|
|
134
|
+
.ext-ie .x-form-check-wrap input {
|
|
135
|
+
width:15px;
|
|
136
|
+
height:15px;
|
|
137
|
+
}
|
|
138
|
+
.x-editor .x-form-check-wrap {
|
|
139
|
+
padding:3px;
|
|
140
|
+
}
|
|
141
|
+
.x-editor .x-form-checkbox {
|
|
142
|
+
height:13px;
|
|
143
|
+
border: 0 none;
|
|
144
|
+
}
|
|
145
|
+
/* If you override the default field font above, you would need to change this font as well */
|
|
146
|
+
.x-form-grow-sizer {
|
|
147
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
148
|
+
left: -10000px;
|
|
149
|
+
padding: 8px 3px;
|
|
150
|
+
position: absolute;
|
|
151
|
+
visibility:hidden;
|
|
152
|
+
top: -10000px;
|
|
153
|
+
white-space: pre-wrap;
|
|
154
|
+
white-space: -moz-pre-wrap;
|
|
155
|
+
white-space: -pre-wrap;
|
|
156
|
+
white-space: -o-pre-wrap;
|
|
157
|
+
word-wrap: break-word;
|
|
158
|
+
zoom:1;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/* This CSS is not final and is subject to change - jvs 03/07/07 */
|
|
162
|
+
|
|
163
|
+
.x-form-item {
|
|
164
|
+
font:normal 12px tahoma, arial, helvetica, sans-serif;
|
|
165
|
+
display:block;
|
|
166
|
+
margin-bottom:4px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.x-form-item label {
|
|
170
|
+
display:block;
|
|
171
|
+
float:left;
|
|
172
|
+
width:100px;
|
|
173
|
+
padding:3px;
|
|
174
|
+
padding-left:0;
|
|
175
|
+
clear:left;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.x-form-element {
|
|
179
|
+
padding-left:105px;
|
|
180
|
+
position:relative;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.x-form-invalid-msg {
|
|
184
|
+
color:#ee0000;
|
|
185
|
+
padding:2px;
|
|
186
|
+
padding-left:18px;
|
|
187
|
+
font:normal 11px tahoma, arial, helvetica, sans-serif;
|
|
188
|
+
background: transparent url(../images/default/shared/warning.gif) no-repeat 0 2px;
|
|
189
|
+
line-height:16px;
|
|
190
|
+
width:200px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.x-form-label-right label {
|
|
194
|
+
text-align:right;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.x-form-label-top .x-form-item label {
|
|
198
|
+
width:auto;
|
|
199
|
+
float:none;
|
|
200
|
+
clear:none;
|
|
201
|
+
display:inline;
|
|
202
|
+
margin-bottom:4px;
|
|
203
|
+
}
|
|
204
|
+
.x-form-label-top .x-form-element {
|
|
205
|
+
padding-left:0;
|
|
206
|
+
padding-top:4px;
|
|
207
|
+
}
|
|
208
|
+
.x-form-label-top .x-form-item {
|
|
209
|
+
padding-bottom:4px;
|
|
210
|
+
}
|
|
211
|
+
.x-form fieldset {
|
|
212
|
+
border:1px solid #B5B8C8;
|
|
213
|
+
padding:10px 10px 5px 10px;
|
|
214
|
+
margin-bottom:10px;
|
|
215
|
+
}
|
|
216
|
+
.x-form fieldset legend {
|
|
217
|
+
font:bold 11px tahoma, arial, helvetica, sans-serif;
|
|
218
|
+
color:#15428b;
|
|
219
|
+
}
|
|
220
|
+
.ext-ie .x-form fieldset legend {
|
|
221
|
+
margin-bottom:10px;
|
|
222
|
+
}
|
|
223
|
+
.ext-ie .x-form fieldset {
|
|
224
|
+
padding-top: 0;
|
|
225
|
+
}
|
|
226
|
+
.x-form-empty-field {
|
|
227
|
+
color:gray;
|
|
228
|
+
}
|
|
229
|
+
/* Editor small font for grid, toolbar and tree */
|
|
230
|
+
.x-small-editor .x-form-field {
|
|
231
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
232
|
+
}
|
|
233
|
+
.x-small-editor .x-form-text {
|
|
234
|
+
height:20px;
|
|
235
|
+
line-height:16px;
|
|
236
|
+
vertical-align:middle;
|
|
237
|
+
}
|
|
238
|
+
.ext-ie .x-small-editor .x-form-text {
|
|
239
|
+
margin-top:-1px !important; /* ie bogus margin bug */
|
|
240
|
+
margin-bottom:-1px !important;
|
|
241
|
+
height:20px !important; /* ie quirks */
|
|
242
|
+
line-height:16px !important;
|
|
243
|
+
}
|
|
244
|
+
.ext-strict .x-small-editor .x-form-text {
|
|
245
|
+
height:16px !important;
|
|
246
|
+
}
|
|
247
|
+
.ext-safari .x-small-editor .x-form-field {
|
|
248
|
+
/* safari text field will not size so needs bigger font */
|
|
249
|
+
font:normal 12px arial, tahoma, helvetica, sans-serif;
|
|
250
|
+
}
|
|
251
|
+
.ext-ie .x-small-editor .x-form-text {
|
|
252
|
+
height:20px;
|
|
253
|
+
line-height:16px;
|
|
254
|
+
}
|
|
255
|
+
.ext-border-box .x-small-editor .x-form-text {
|
|
256
|
+
height:20px;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.x-small-editor .x-form-select-one {
|
|
260
|
+
height:20px;
|
|
261
|
+
line-height:16px;
|
|
262
|
+
vertical-align:middle;
|
|
263
|
+
}
|
|
264
|
+
.x-small-editor .x-form-num-field {
|
|
265
|
+
text-align:right;
|
|
266
|
+
}
|
|
267
|
+
.x-small-editor .x-form-field-wrap .x-form-trigger{
|
|
268
|
+
height:19px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
.x-form-clear {
|
|
273
|
+
clear:both;
|
|
274
|
+
height:0;
|
|
275
|
+
overflow:hidden;
|
|
276
|
+
line-height:0;
|
|
277
|
+
font-size:0;
|
|
278
|
+
}
|
|
279
|
+
.x-form-clear-left {
|
|
280
|
+
clear:left;
|
|
281
|
+
height:0;
|
|
282
|
+
overflow:hidden;
|
|
283
|
+
line-height:0;
|
|
284
|
+
font-size:0;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.x-form-cb-label {
|
|
288
|
+
width:'auto' !important;
|
|
289
|
+
float:none !important;
|
|
290
|
+
clear:none !important;
|
|
291
|
+
display:inline !important;
|
|
292
|
+
margin-left:4px;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.x-form-column {
|
|
296
|
+
float:left;
|
|
297
|
+
padding:0;
|
|
298
|
+
margin:0;
|
|
299
|
+
width:48%;
|
|
300
|
+
overflow:hidden;
|
|
301
|
+
zoom:1;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/* buttons */
|
|
305
|
+
.x-form .x-form-btns-ct .x-btn{
|
|
306
|
+
float:right;
|
|
307
|
+
clear:none;
|
|
308
|
+
}
|
|
309
|
+
.x-form .x-form-btns-ct .x-form-btns td {
|
|
310
|
+
border:0;
|
|
311
|
+
padding:0;
|
|
312
|
+
}
|
|
313
|
+
.x-form .x-form-btns-ct .x-form-btns-right table{
|
|
314
|
+
float:right;
|
|
315
|
+
clear:none;
|
|
316
|
+
}
|
|
317
|
+
.x-form .x-form-btns-ct .x-form-btns-left table{
|
|
318
|
+
float:left;
|
|
319
|
+
clear:none;
|
|
320
|
+
}
|
|
321
|
+
.x-form .x-form-btns-ct .x-form-btns-center{
|
|
322
|
+
text-align:center; /*ie*/
|
|
323
|
+
}
|
|
324
|
+
.x-form .x-form-btns-ct .x-form-btns-center table{
|
|
325
|
+
margin:0 auto; /*everyone else*/
|
|
326
|
+
}
|
|
327
|
+
.x-form .x-form-btns-ct table td.x-form-btn-td{
|
|
328
|
+
padding:3px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-left{
|
|
332
|
+
background-position:0 -147px;
|
|
333
|
+
}
|
|
334
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-right{
|
|
335
|
+
background-position:0 -168px;
|
|
336
|
+
}
|
|
337
|
+
.x-form .x-form-btns-ct .x-btn-focus .x-btn-center{
|
|
338
|
+
background-position:0 -189px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-center{
|
|
342
|
+
background-position:0 -126px;
|
|
343
|
+
}
|
|
344
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-right{
|
|
345
|
+
background-position:0 -84px;
|
|
346
|
+
}
|
|
347
|
+
.x-form .x-form-btns-ct .x-btn-click .x-btn-left{
|
|
348
|
+
background-position:0 -63px;
|
|
349
|
+
}
|
|
350
|
+
.x-form-invalid-icon {
|
|
351
|
+
width:16px;
|
|
352
|
+
height:18px;
|
|
353
|
+
visibility:hidden;
|
|
354
|
+
position:absolute;
|
|
355
|
+
left:0;
|
|
356
|
+
top:0;
|
|
357
|
+
display:block;
|
|
358
|
+
background:transparent url(../images/default/form/exclamation.gif) no-repeat 0 2px;
|
|
359
|
+
}
|
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Ext JS Library 1.0.1
|
|
3
|
+
* Copyright(c) 2006-2007, Ext JS, LLC.
|
|
4
|
+
* licensing@extjs.com
|
|
5
|
+
*
|
|
6
|
+
* http://www.extjs.com/license
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/* Grid2 styles */
|
|
10
|
+
.x-grid {
|
|
11
|
+
position:relative;
|
|
12
|
+
overflow:hidden;
|
|
13
|
+
background-color:#fff;
|
|
14
|
+
}
|
|
15
|
+
.x-grid-scroller {
|
|
16
|
+
overflow:auto;
|
|
17
|
+
}
|
|
18
|
+
.x-grid-viewport, .x-grid-locked{
|
|
19
|
+
position:absolute;
|
|
20
|
+
left:0; top: 0;
|
|
21
|
+
z-index:2;
|
|
22
|
+
overflow:hidden;
|
|
23
|
+
visibility:hidden;
|
|
24
|
+
}
|
|
25
|
+
.x-grid-cell-inner, .x-grid-hd-inner{
|
|
26
|
+
overflow:hidden;
|
|
27
|
+
-o-text-overflow: ellipsis;
|
|
28
|
+
text-overflow: ellipsis;
|
|
29
|
+
}
|
|
30
|
+
.x-grid-hd-row td, .x-grid-row td{
|
|
31
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
32
|
+
line-height:13px;
|
|
33
|
+
white-space: nowrap;
|
|
34
|
+
vertical-align: top;
|
|
35
|
+
-moz-outline: none;
|
|
36
|
+
-moz-user-focus: normal;
|
|
37
|
+
}
|
|
38
|
+
.x-grid-hd-row td {
|
|
39
|
+
line-height:14px;
|
|
40
|
+
}
|
|
41
|
+
.x-grid-col {
|
|
42
|
+
border-right: 1px solid #ebebeb;
|
|
43
|
+
border-bottom: 1px solid #ebebeb;
|
|
44
|
+
}
|
|
45
|
+
/* Locked styles */
|
|
46
|
+
|
|
47
|
+
.x-grid-locked .x-grid-body td {
|
|
48
|
+
background-color: #FBFDFF;
|
|
49
|
+
border-right: 1px solid #deecfd;
|
|
50
|
+
border-bottom: 1px solid #deecfd !important;
|
|
51
|
+
}
|
|
52
|
+
.x-grid-locked .x-grid-body td .x-grid-cell-inner {
|
|
53
|
+
border-top:0 none;
|
|
54
|
+
}
|
|
55
|
+
.x-grid-locked .x-grid-row-alt td{
|
|
56
|
+
background-color: #F5FAFE;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.x-grid-locked .x-grid-header table{
|
|
60
|
+
border-right:1px solid transparent;
|
|
61
|
+
}
|
|
62
|
+
.x-grid-locked .x-grid-body table{
|
|
63
|
+
border-right:1px solid #c3daf9;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.x-grid-locked .x-grid-body td .x-grid-cell-inner {
|
|
67
|
+
|
|
68
|
+
}
|
|
69
|
+
.x-grid-row {
|
|
70
|
+
cursor: default;
|
|
71
|
+
}
|
|
72
|
+
.x-grid-row-alt{
|
|
73
|
+
background-color:#f1f1f1;
|
|
74
|
+
}
|
|
75
|
+
.x-grid-row-over td{
|
|
76
|
+
background-color:#d9e8fb;
|
|
77
|
+
}
|
|
78
|
+
.x-grid-resize-proxy {
|
|
79
|
+
width:3px;
|
|
80
|
+
background-color:#cccccc;
|
|
81
|
+
cursor: e-resize;
|
|
82
|
+
cursor: col-resize;
|
|
83
|
+
position:absolute;
|
|
84
|
+
top:0;
|
|
85
|
+
height:100px;
|
|
86
|
+
overflow:hidden;
|
|
87
|
+
visibility:hidden;
|
|
88
|
+
border:0 none;
|
|
89
|
+
z-index:7;
|
|
90
|
+
}
|
|
91
|
+
.x-grid-focus {
|
|
92
|
+
position:absolute;
|
|
93
|
+
top:0;
|
|
94
|
+
-moz-outline:0 none;
|
|
95
|
+
outline:0 none;
|
|
96
|
+
-moz-user-select: normal;
|
|
97
|
+
-khtml-user-select: normal;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* header styles */
|
|
101
|
+
.x-grid-header{
|
|
102
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x;
|
|
103
|
+
overflow:hidden;
|
|
104
|
+
position:relative;
|
|
105
|
+
cursor:default;
|
|
106
|
+
width:100%;
|
|
107
|
+
}
|
|
108
|
+
.x-grid-hd-row{
|
|
109
|
+
height:22px;
|
|
110
|
+
}
|
|
111
|
+
.x-grid-hd {
|
|
112
|
+
padding-right:1px;
|
|
113
|
+
}
|
|
114
|
+
.x-grid-hd-over .x-grid-hd-inner {
|
|
115
|
+
border-bottom: 1px solid #c3daf9;
|
|
116
|
+
}
|
|
117
|
+
.x-grid-hd-over .x-grid-hd-text {
|
|
118
|
+
background: #fafafa url(../images/default/grid/grid-hrow.gif) repeat-x 0 1px;
|
|
119
|
+
padding-bottom:1px;
|
|
120
|
+
border-bottom: 1px solid #b3cae9;
|
|
121
|
+
}
|
|
122
|
+
.x-grid-sort-icon{
|
|
123
|
+
background-repeat: no-repeat;
|
|
124
|
+
display: none;
|
|
125
|
+
height: 4px;
|
|
126
|
+
width: 13px;
|
|
127
|
+
margin-left:3px;
|
|
128
|
+
vertical-align: middle;
|
|
129
|
+
}
|
|
130
|
+
.x-grid-header .sort-asc .x-grid-sort-icon {
|
|
131
|
+
background-image: url(../images/default/grid/sort_asc.gif);
|
|
132
|
+
display: inline;
|
|
133
|
+
}
|
|
134
|
+
.x-grid-header .sort-desc .x-grid-sort-icon {
|
|
135
|
+
background-image: url(../images/default/grid/sort_desc.gif);
|
|
136
|
+
display: inline;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
/* Body Styles */
|
|
140
|
+
.x-grid-body {
|
|
141
|
+
overflow:hidden;
|
|
142
|
+
position:relative;
|
|
143
|
+
width:100%;
|
|
144
|
+
zoom:1;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.x-grid-cell-text,.x-grid-hd-text {
|
|
148
|
+
display: block;
|
|
149
|
+
padding: 3px 5px 3px 5px;
|
|
150
|
+
-moz-user-select: none;
|
|
151
|
+
-khtml-user-select: none;
|
|
152
|
+
color:black;
|
|
153
|
+
}
|
|
154
|
+
.x-grid-hd-text {
|
|
155
|
+
padding-top:4px;
|
|
156
|
+
}
|
|
157
|
+
.x-grid-split {
|
|
158
|
+
background-image: url(../images/default/grid/grid-split.gif);
|
|
159
|
+
background-position: center;
|
|
160
|
+
background-repeat: no-repeat;
|
|
161
|
+
cursor: e-resize;
|
|
162
|
+
cursor: col-resize;
|
|
163
|
+
display: block;
|
|
164
|
+
font-size: 1px;
|
|
165
|
+
height: 16px;
|
|
166
|
+
overflow: hidden;
|
|
167
|
+
position: absolute;
|
|
168
|
+
top: 2px;
|
|
169
|
+
width: 6px;
|
|
170
|
+
z-index: 3;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.x-grid-hd-text {
|
|
174
|
+
color:#15428b;
|
|
175
|
+
}
|
|
176
|
+
/* Column Reorder DD */
|
|
177
|
+
.x-dd-drag-proxy .x-grid-hd-inner{
|
|
178
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x;
|
|
179
|
+
height:22px;
|
|
180
|
+
width:120px;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.col-move-top, .col-move-bottom{
|
|
184
|
+
width:9px;
|
|
185
|
+
height:9px;
|
|
186
|
+
position:absolute;
|
|
187
|
+
top:0;
|
|
188
|
+
line-height:1px;
|
|
189
|
+
font-size:1px;
|
|
190
|
+
overflow:hidden;
|
|
191
|
+
visibility:hidden;
|
|
192
|
+
z-index:20000;
|
|
193
|
+
}
|
|
194
|
+
.col-move-top{
|
|
195
|
+
background:transparent url(../images/default/grid/col-move-top.gif) no-repeat left top;
|
|
196
|
+
}
|
|
197
|
+
.col-move-bottom{
|
|
198
|
+
background:transparent url(../images/default/grid/col-move-bottom.gif) no-repeat left top;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* Selection Styles */
|
|
202
|
+
.x-grid-row-selected td, .x-grid-locked .x-grid-row-selected td{
|
|
203
|
+
background-color: #316ac5 !important;
|
|
204
|
+
color: white;
|
|
205
|
+
}
|
|
206
|
+
.x-grid-row-selected span, .x-grid-row-selected b, .x-grid-row-selected div, .x-grid-row-selected strong, .x-grid-row-selected i{
|
|
207
|
+
color: white !important;
|
|
208
|
+
}
|
|
209
|
+
.x-grid-row-selected .x-grid-cell-text{
|
|
210
|
+
color: white;
|
|
211
|
+
}
|
|
212
|
+
.x-grid-cell-selected{
|
|
213
|
+
background-color: #316ac5 !important;
|
|
214
|
+
color: white;
|
|
215
|
+
}
|
|
216
|
+
.x-grid-cell-selected span{
|
|
217
|
+
color: white !important;
|
|
218
|
+
}
|
|
219
|
+
.x-grid-cell-selected .x-grid-cell-text{
|
|
220
|
+
color: white;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.x-grid-locked td.x-grid-row-marker, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker{
|
|
224
|
+
background: #ebeadb url(../images/default/grid/grid-hrow.gif) repeat-x 0 bottom !important;
|
|
225
|
+
vertical-align:middle !important;
|
|
226
|
+
color:black;
|
|
227
|
+
padding:0;
|
|
228
|
+
border-top:1px solid white;
|
|
229
|
+
border-bottom:none !important;
|
|
230
|
+
border-right:1px solid #6fa0df !important;
|
|
231
|
+
text-align:center;
|
|
232
|
+
}
|
|
233
|
+
.x-grid-locked td.x-grid-row-marker div, .x-grid-locked .x-grid-row-selected td.x-grid-row-marker div{
|
|
234
|
+
padding:0 4px;
|
|
235
|
+
color:#15428b !important;
|
|
236
|
+
text-align:center;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* dirty cells */
|
|
240
|
+
.x-grid-dirty-cell {
|
|
241
|
+
background: transparent url(../images/default/grid/dirty.gif) no-repeat 0 0;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/* Grid Toolbars */
|
|
245
|
+
.x-grid-topbar, .x-grid-bottombar{
|
|
246
|
+
font:normal 11px arial, tahoma, helvetica, sans-serif;
|
|
247
|
+
overflow:hidden;
|
|
248
|
+
display:none;
|
|
249
|
+
zoom:1;
|
|
250
|
+
position:relative;
|
|
251
|
+
}
|
|
252
|
+
.x-grid-topbar .x-toolbar{
|
|
253
|
+
border-right:0 none;
|
|
254
|
+
}
|
|
255
|
+
.x-grid-bottombar .x-toolbar{
|
|
256
|
+
border-right:0 none;
|
|
257
|
+
border-bottom:0 none;
|
|
258
|
+
border-top:1px solid #a9bfd3;
|
|
259
|
+
}
|
|
260
|
+
/* Props Grid Styles */
|
|
261
|
+
.x-props-grid .x-grid-cell-selected .x-grid-cell-text{
|
|
262
|
+
background-color: #316ac5 !important;
|
|
263
|
+
}
|
|
264
|
+
.x-props-grid .x-grid-col-value .x-grid-cell-text{
|
|
265
|
+
background-color: white;
|
|
266
|
+
}
|
|
267
|
+
.x-props-grid .x-grid-col-name{
|
|
268
|
+
background-color: #c3daf9;
|
|
269
|
+
}
|
|
270
|
+
.x-props-grid .x-grid-col-name .x-grid-cell-text{
|
|
271
|
+
background-color: white;
|
|
272
|
+
margin-left:10px;
|
|
273
|
+
}
|
|
274
|
+
.x-props-grid .x-grid-split-value {
|
|
275
|
+
visibility:hidden;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/* header menu */
|
|
279
|
+
.xg-hmenu-sort-asc .x-menu-item-icon{
|
|
280
|
+
background-image: url(../images/default/grid/hmenu-asc.gif);
|
|
281
|
+
}
|
|
282
|
+
.xg-hmenu-sort-desc .x-menu-item-icon{
|
|
283
|
+
background-image: url(../images/default/grid/hmenu-desc.gif);
|
|
284
|
+
}
|
|
285
|
+
.xg-hmenu-lock .x-menu-item-icon{
|
|
286
|
+
background-image: url(../images/default/grid/hmenu-lock.gif);
|
|
287
|
+
}
|
|
288
|
+
.xg-hmenu-unlock .x-menu-item-icon{
|
|
289
|
+
background-image: url(../images/default/grid/hmenu-unlock.gif);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/* dd */
|
|
293
|
+
.x-dd-drag-ghost .x-grid-dd-wrap {
|
|
294
|
+
padding:1px 3px 3px 1px;
|
|
295
|
+
}
|