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,17 @@
|
|
|
1
|
+
--- |
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
4
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
5
|
+
<head>
|
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
|
7
|
+
<title><%= site.title %></title>
|
|
8
|
+
<meta name="Generator" content="Bloggit"/>
|
|
9
|
+
<link rel="StyleSheet" type="text/css" href="<%= url_for :style=>'main' %>"/>
|
|
10
|
+
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="<%= url_for :from_root=>site.settings.syndication.filename %>" />
|
|
11
|
+
<%= haloscan :script %>
|
|
12
|
+
<%= render :content_for=>:head %>
|
|
13
|
+
</head>
|
|
14
|
+
<body>
|
|
15
|
+
<%= content_for_layout %>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
layout: main
|
|
2
|
+
--- |
|
|
3
|
+
|
|
4
|
+
<div class="header">
|
|
5
|
+
<h1><%= link_to_home site.title %></h1>
|
|
6
|
+
<h2><%= site.subtitle %></h2>
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<div class="page">
|
|
10
|
+
<div class="sidebar">
|
|
11
|
+
<%= render :snippet=>'navigation' %>
|
|
12
|
+
<%= render :content_for=>:sidebar %>
|
|
13
|
+
<%= render :snippet=>'tag_list', :tags=>site.tags %>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="content">
|
|
16
|
+
<%= content_for_layout %>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="footer">
|
|
19
|
+
© <%= site.author %>. All rights reserved.
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
layout: two-columns
|
|
2
|
+
--- |
|
|
3
|
+
<%= render :snippet=>'blog_entry', :post=>post, :from=>:post %>
|
|
4
|
+
|
|
5
|
+
<div class="post-pager">
|
|
6
|
+
<% if post.has_next? %>
|
|
7
|
+
<%= link_to "« #{post.next.title}", :post=>post.next %>
|
|
8
|
+
::
|
|
9
|
+
<% end %>
|
|
10
|
+
<%= link_to_home 'Main' %>
|
|
11
|
+
<% if post.has_previous? %>
|
|
12
|
+
::
|
|
13
|
+
<%= link_to "#{post.previous.title} »", :post=>post.previous %>
|
|
14
|
+
<% end %>
|
|
15
|
+
</div>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
--- |
|
|
2
|
+
<div class="entry">
|
|
3
|
+
<h3><%= (from != :post) ? link_to(post.title, :post=>post) : post.title %></h3>
|
|
4
|
+
<div class="meta">
|
|
5
|
+
Posted <%= post.publish_date %>, tagged: <%= tag_links(post).join(', ') %>. <%= haloscan :comments, post.slug %>
|
|
6
|
+
</div>
|
|
7
|
+
<div class="body">
|
|
8
|
+
<%= render :content=>post %>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
layout: two-columns
|
|
2
|
+
--- |
|
|
3
|
+
<div class="entry">
|
|
4
|
+
<% if mode == :all_tags %>
|
|
5
|
+
|
|
6
|
+
<div class="body">
|
|
7
|
+
<h3>All Tags</h3>
|
|
8
|
+
<ul>
|
|
9
|
+
<% tags.each do |tag| %>
|
|
10
|
+
<li><%= link_to tag.name, :tag=>tag %>, <%= tag.posts.length %> posts, <%= tag.pages.length %> pages.</li>
|
|
11
|
+
<% end %>
|
|
12
|
+
</ul>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
<% else %>
|
|
16
|
+
|
|
17
|
+
<% if tag.has_posts? %>
|
|
18
|
+
<h3>Posts tagged "<%= tag.name %>"</h3>
|
|
19
|
+
<div class="body">
|
|
20
|
+
|
|
21
|
+
<ul>
|
|
22
|
+
<% tag.posts.each do |post| %>
|
|
23
|
+
<li><b><%= link_to post.title, :post=>post %></b> on <%= post.publish_date.to_s %></li>
|
|
24
|
+
<% end %>
|
|
25
|
+
</ul>
|
|
26
|
+
</div>
|
|
27
|
+
<% end %>
|
|
28
|
+
<% if tag.has_pages? %>
|
|
29
|
+
|
|
30
|
+
<h3>Pages tagged with "<%= tag.name %>"</h3>
|
|
31
|
+
<div class="body">
|
|
32
|
+
<ul>
|
|
33
|
+
<% tag.pages.each do |page| %>
|
|
34
|
+
<li><b><%= link_to page.title, :page=>page %></b></li>
|
|
35
|
+
<% end %>
|
|
36
|
+
</ul>
|
|
37
|
+
</div>
|
|
38
|
+
<% end %>
|
|
39
|
+
|
|
40
|
+
<% end %>
|
|
41
|
+
</div>
|
data/test/helpers.rb
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require 'test/unit'
|
|
2
|
+
|
|
3
|
+
class Test::Unit::TestCase
|
|
4
|
+
|
|
5
|
+
def assert_difference(object, method = nil, difference = 1)
|
|
6
|
+
initial_value = object.send(method)
|
|
7
|
+
yield
|
|
8
|
+
assert_equal initial_value + difference, object.send(method), "#{object}##{method}"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def assert_no_difference(object, method, &block)
|
|
12
|
+
assert_difference object, method, 0, &block
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
class << self
|
|
16
|
+
def should(behave,&block)
|
|
17
|
+
method_name = "test_should_#{behave.gsub(' ', '_')}"
|
|
18
|
+
if block
|
|
19
|
+
define_method method_name, &block
|
|
20
|
+
else
|
|
21
|
+
puts ">>> Untested: #{name.sub(/Test$/,'')} should #{behave}"
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../helpers'
|
|
2
|
+
require 'bloggit'
|
|
3
|
+
|
|
4
|
+
class PageTest < Test::Unit::TestCase
|
|
5
|
+
|
|
6
|
+
should "raise an error if trying to load a `Page` from a non-existant file" do
|
|
7
|
+
assert_raise(RuntimeError) { Bloggit::Page.from_file 'crapfile.page' }
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
should "parse `Page` from file" do
|
|
11
|
+
assert_nothing_raised(RuntimeError) do
|
|
12
|
+
page = Bloggit::Page.from_file File.join(File.dirname(__FILE__), '../fixtures/test.blog/pages/about.page')
|
|
13
|
+
assert_not_nil page
|
|
14
|
+
assert_equal 'about', page.slug
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
should "parse status and slug" do
|
|
19
|
+
assert_nothing_raised(RuntimeError) do
|
|
20
|
+
page = Bloggit::Page.from_file File.join(File.dirname(__FILE__), '../fixtures/test.blog/pages/about.page')
|
|
21
|
+
assert_not_nil page
|
|
22
|
+
assert_equal 'About', page.title
|
|
23
|
+
assert_equal 'about', page.slug
|
|
24
|
+
assert_equal 'publish', page.status
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
end
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../helpers'
|
|
2
|
+
require 'bloggit'
|
|
3
|
+
|
|
4
|
+
class PostTest < Test::Unit::TestCase
|
|
5
|
+
|
|
6
|
+
should "raise an error if trying to load a `Post` from a non-existant file" do
|
|
7
|
+
assert_raise(RuntimeError) { Bloggit::Post.from_file 'crapfile.post' }
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
should "parse `Post` from file" do
|
|
11
|
+
assert_nothing_raised(RuntimeError) do
|
|
12
|
+
post = Bloggit::Post.from_file File.join(File.dirname(__FILE__), '../fixtures/test.blog/posts/2004.03.07_to-boldly-go.post')
|
|
13
|
+
assert_not_nil post
|
|
14
|
+
assert_equal 'to-boldly-go', post.slug
|
|
15
|
+
assert_equal 2004, post.post_year
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
should "parse publish date and slug" do
|
|
20
|
+
assert_nothing_raised(RuntimeError) do
|
|
21
|
+
|
|
22
|
+
post = Bloggit::Post.from_file File.join(File.dirname(__FILE__), '../fixtures/test.blog/posts/2004.03.07_to-boldly-go.post')
|
|
23
|
+
assert_not_nil post
|
|
24
|
+
assert_equal 'to-boldly-go', post.slug
|
|
25
|
+
assert_equal 2004, post.post_year
|
|
26
|
+
assert_equal Date, post.publish_date.class
|
|
27
|
+
|
|
28
|
+
post = Bloggit::Post.from_file File.join(File.dirname(__FILE__), '../fixtures/test.blog/posts/2007.03.25_sure-whatever.post')
|
|
29
|
+
assert_not_nil post
|
|
30
|
+
assert_equal 'sure-whatever', post.slug
|
|
31
|
+
assert_equal 2007, post.post_year
|
|
32
|
+
assert_equal Date, post.publish_date.class
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../helpers'
|
|
2
|
+
require 'bloggit'
|
|
3
|
+
|
|
4
|
+
class SiteTest < Test::Unit::TestCase
|
|
5
|
+
|
|
6
|
+
should "not allow `Site.new`" do
|
|
7
|
+
assert_raise(NoMethodError) { Bloggit::Site.new }
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
should "not create a `Site` object unless path is a directory" do
|
|
11
|
+
assert_raise(RuntimeError) { Bloggit::Site.from_file(__FILE__) }
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
should "create a `Site` object from a file path" do
|
|
15
|
+
site = Bloggit::Site.from_file(File.join(File.dirname(__FILE__), '../fixtures/test.blog') )
|
|
16
|
+
assert_not_nil site
|
|
17
|
+
assert site.is_a?( Bloggit::Site )
|
|
18
|
+
assert_equal 3, site.posts.length
|
|
19
|
+
assert_equal Date, site.posts[0].publish_date.class
|
|
20
|
+
assert_not_nil site.settings
|
|
21
|
+
assert_equal 'My Site', site.settings['site']['title']
|
|
22
|
+
# Test Hash extenstion too..
|
|
23
|
+
assert_equal 'My Site', site.settings.site.title
|
|
24
|
+
assert_equal 'My Site', site.title
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../helpers'
|
|
2
|
+
require 'bloggit'
|
|
3
|
+
|
|
4
|
+
class TemplateTest < Test::Unit::TestCase
|
|
5
|
+
|
|
6
|
+
def setup
|
|
7
|
+
site = Bloggit::Site.from_file(File.join(File.dirname(__FILE__), '../fixtures/test.blog') )
|
|
8
|
+
Template.config do |t|
|
|
9
|
+
t.site = site
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
should "render templates from text" do
|
|
14
|
+
output = Template.from_text('Hello, <%= name %>').render :template=>{:name=>'Sally'}
|
|
15
|
+
assert "Hello, Sally", output
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
should "generate URLs correctly"
|
|
19
|
+
should "render templates from file"
|
|
20
|
+
|
|
21
|
+
end
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
require File.dirname(__FILE__) + '/../helpers'
|
|
2
|
+
require 'bloggit/text_formatter'
|
|
3
|
+
|
|
4
|
+
class TextFormatterTest < Test::Unit::TestCase
|
|
5
|
+
|
|
6
|
+
should "render text using Textile" do
|
|
7
|
+
keys = [:textile, :Textile, :teXtile, 'Textile', 'teXTIle']
|
|
8
|
+
keys.each do |key|
|
|
9
|
+
output = Bloggit::TextFormatter.render('Hello, *Sally*', key)
|
|
10
|
+
assert_equal "<p>Hello, <strong>Sally</strong></p>", output
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
should "render text using Markdown" do
|
|
15
|
+
keys = [:markdown, :Markdown, :markDOWN, 'Markdown', 'MarKDowN']
|
|
16
|
+
keys.each do |key|
|
|
17
|
+
output = Bloggit::TextFormatter.render('Hello, *Sally*', key)
|
|
18
|
+
assert_equal "<p>Hello, <em>Sally</em></p>", output
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
should "raise an error when trying to use an undefined format" do
|
|
23
|
+
assert_raise(RuntimeError) { Bloggit::TextFormatter.render('Hello, *Sally*', :cpt_gloval) }
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
should "allow registration of custom text formatter" do
|
|
27
|
+
# Register Formatter...
|
|
28
|
+
Bloggit::TextFormatter.register :rdoc do |text|
|
|
29
|
+
require 'rdoc/markup/simple_markup'
|
|
30
|
+
require 'rdoc/markup/simple_markup/to_html'
|
|
31
|
+
|
|
32
|
+
p = SM::SimpleMarkup.new
|
|
33
|
+
h = SM::ToHtml.new
|
|
34
|
+
p.convert(text, h)
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
assert_nothing_raised(RuntimeError) do
|
|
38
|
+
output = Bloggit::TextFormatter.render('Hello, *Sally*', :rdoc)
|
|
39
|
+
assert_equal "<p>\nHello, <b>Sally</b>\n</p>\n", output
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,520 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
rubygems_version: 0.9.4
|
|
3
|
+
specification_version: 1
|
|
4
|
+
name: bloggit
|
|
5
|
+
version: !ruby/object:Gem::Version
|
|
6
|
+
version: 1.0.3
|
|
7
|
+
date: 2007-10-23 00:00:00 -05:00
|
|
8
|
+
summary: A static site generator for a blog with static pages
|
|
9
|
+
require_paths:
|
|
10
|
+
- lib
|
|
11
|
+
email: darthapo@gmail.com
|
|
12
|
+
homepage: http://www.mattmccray.com
|
|
13
|
+
rubyforge_project: bloggit
|
|
14
|
+
description: "== FEATURES/PROBLEMS: * Static generation of blog * Tags * Archives * ERb based layout support * ERb processing in pages/posts * Simple static pages * Comments (via Haloscan) * Searching (using JavaScript) == SYNOPSIS: You can generate the site from the commandline using Rake:"
|
|
15
|
+
autorequire:
|
|
16
|
+
default_executable:
|
|
17
|
+
bindir: bin
|
|
18
|
+
has_rdoc: true
|
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.0.0
|
|
24
|
+
version:
|
|
25
|
+
platform: ruby
|
|
26
|
+
signing_key:
|
|
27
|
+
cert_chain:
|
|
28
|
+
post_install_message:
|
|
29
|
+
authors:
|
|
30
|
+
- M@ McCray
|
|
31
|
+
files:
|
|
32
|
+
- History
|
|
33
|
+
- Manifest
|
|
34
|
+
- Rakefile
|
|
35
|
+
- ReadMe
|
|
36
|
+
- Todo
|
|
37
|
+
- bin/bloggit
|
|
38
|
+
- docs/index.html
|
|
39
|
+
- docs/specifications.html
|
|
40
|
+
- docs/src/_layout.rhtml
|
|
41
|
+
- docs/src/index.markdown
|
|
42
|
+
- docs/src/specifications.markdown
|
|
43
|
+
- lib/bloggit.rb
|
|
44
|
+
- lib/bloggit/boilerplate/Rakefile
|
|
45
|
+
- lib/bloggit/boilerplate/pages/about.page
|
|
46
|
+
- lib/bloggit/boilerplate/plugins/haloscan/init.rb
|
|
47
|
+
- lib/bloggit/boilerplate/settings.yml
|
|
48
|
+
- lib/bloggit/boilerplate/themes/default/styles/main.css
|
|
49
|
+
- lib/bloggit/boilerplate/themes/default/templates/archive.rhtml
|
|
50
|
+
- lib/bloggit/boilerplate/themes/default/templates/home.rhtml
|
|
51
|
+
- lib/bloggit/boilerplate/themes/default/templates/layouts/main.rhtml
|
|
52
|
+
- lib/bloggit/boilerplate/themes/default/templates/layouts/two-columns.rhtml
|
|
53
|
+
- lib/bloggit/boilerplate/themes/default/templates/page.rhtml
|
|
54
|
+
- lib/bloggit/boilerplate/themes/default/templates/post.rhtml
|
|
55
|
+
- lib/bloggit/boilerplate/themes/default/templates/snippets/blog_entry.rhtml
|
|
56
|
+
- lib/bloggit/boilerplate/themes/default/templates/snippets/navigation.rhtml
|
|
57
|
+
- lib/bloggit/boilerplate/themes/default/templates/snippets/tag_list.rhtml
|
|
58
|
+
- lib/bloggit/boilerplate/themes/default/templates/tag_archive.rhtml
|
|
59
|
+
- lib/bloggit/checksum.rb
|
|
60
|
+
- lib/bloggit/client/index.html
|
|
61
|
+
- lib/bloggit/client/scripts/adapter/jquery/ext-jquery-adapter.js
|
|
62
|
+
- lib/bloggit/client/scripts/adapter/jquery/jquery-plugins.js
|
|
63
|
+
- lib/bloggit/client/scripts/adapter/jquery/jquery.js
|
|
64
|
+
- lib/bloggit/client/scripts/adapter/prototype/effects.js
|
|
65
|
+
- lib/bloggit/client/scripts/adapter/prototype/ext-prototype-adapter.js
|
|
66
|
+
- lib/bloggit/client/scripts/adapter/prototype/prototype.js
|
|
67
|
+
- lib/bloggit/client/scripts/adapter/prototype/scriptaculous.js
|
|
68
|
+
- lib/bloggit/client/scripts/adapter/yui/ext-yui-adapter.js
|
|
69
|
+
- lib/bloggit/client/scripts/adapter/yui/yui-utilities.js
|
|
70
|
+
- lib/bloggit/client/scripts/app.js
|
|
71
|
+
- lib/bloggit/client/scripts/ext-all.js
|
|
72
|
+
- lib/bloggit/client/scripts/resources/css/README.txt
|
|
73
|
+
- lib/bloggit/client/scripts/resources/css/basic-dialog.css
|
|
74
|
+
- lib/bloggit/client/scripts/resources/css/box.css
|
|
75
|
+
- lib/bloggit/client/scripts/resources/css/button.css
|
|
76
|
+
- lib/bloggit/client/scripts/resources/css/combo.css
|
|
77
|
+
- lib/bloggit/client/scripts/resources/css/core.css
|
|
78
|
+
- lib/bloggit/client/scripts/resources/css/date-picker.css
|
|
79
|
+
- lib/bloggit/client/scripts/resources/css/dd.css
|
|
80
|
+
- lib/bloggit/client/scripts/resources/css/debug.css
|
|
81
|
+
- lib/bloggit/client/scripts/resources/css/ext-all.css
|
|
82
|
+
- lib/bloggit/client/scripts/resources/css/form.css
|
|
83
|
+
- lib/bloggit/client/scripts/resources/css/grid.css
|
|
84
|
+
- lib/bloggit/client/scripts/resources/css/layout.css
|
|
85
|
+
- lib/bloggit/client/scripts/resources/css/menu.css
|
|
86
|
+
- lib/bloggit/client/scripts/resources/css/panel.css
|
|
87
|
+
- lib/bloggit/client/scripts/resources/css/qtips.css
|
|
88
|
+
- lib/bloggit/client/scripts/resources/css/reset-min.css
|
|
89
|
+
- lib/bloggit/client/scripts/resources/css/resizable.css
|
|
90
|
+
- lib/bloggit/client/scripts/resources/css/tabs.css
|
|
91
|
+
- lib/bloggit/client/scripts/resources/css/toolbar.css
|
|
92
|
+
- lib/bloggit/client/scripts/resources/css/tree.css
|
|
93
|
+
- lib/bloggit/client/scripts/resources/css/window.css
|
|
94
|
+
- lib/bloggit/client/scripts/resources/css/ytheme-aero.css
|
|
95
|
+
- lib/bloggit/client/scripts/resources/css/ytheme-gray.css
|
|
96
|
+
- lib/bloggit/client/scripts/resources/css/ytheme-vista.css
|
|
97
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close-over.gif
|
|
98
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/aero-close.gif
|
|
99
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-center.gif
|
|
100
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-left.gif
|
|
101
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/bg-right.gif
|
|
102
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/close.gif
|
|
103
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse-over.gif
|
|
104
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/collapse.gif
|
|
105
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/e-handle.gif
|
|
106
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand-over.gif
|
|
107
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/expand.gif
|
|
108
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/hd-sprite.gif
|
|
109
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/s-handle.gif
|
|
110
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/se-handle.gif
|
|
111
|
+
- lib/bloggit/client/scripts/resources/images/aero/basic-dialog/w-handle.gif
|
|
112
|
+
- lib/bloggit/client/scripts/resources/images/aero/gradient-bg.gif
|
|
113
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/grid-blue-split.gif
|
|
114
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/grid-hrow.gif
|
|
115
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/grid-split.gif
|
|
116
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/grid-vista-hd.gif
|
|
117
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/pspbrwse.jbf
|
|
118
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/sort-col-bg.gif
|
|
119
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/sort_asc.gif
|
|
120
|
+
- lib/bloggit/client/scripts/resources/images/aero/grid/sort_desc.gif
|
|
121
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/collapse.gif
|
|
122
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/expand.gif
|
|
123
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/gradient-bg.gif
|
|
124
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/ns-collapse.gif
|
|
125
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/ns-expand.gif
|
|
126
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/panel-close.gif
|
|
127
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-bg.gif
|
|
128
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/panel-title-light-bg.gif
|
|
129
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/tab-close-on.gif
|
|
130
|
+
- lib/bloggit/client/scripts/resources/images/aero/layout/tab-close.gif
|
|
131
|
+
- lib/bloggit/client/scripts/resources/images/aero/qtip/bg.gif
|
|
132
|
+
- lib/bloggit/client/scripts/resources/images/aero/s.gif
|
|
133
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle-dark.gif
|
|
134
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/e-handle.gif
|
|
135
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle-dark.gif
|
|
136
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/ne-handle.gif
|
|
137
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle-dark.gif
|
|
138
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/nw-handle.gif
|
|
139
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle-dark.gif
|
|
140
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/s-handle.gif
|
|
141
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle-dark.gif
|
|
142
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/se-handle.gif
|
|
143
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle-dark.gif
|
|
144
|
+
- lib/bloggit/client/scripts/resources/images/aero/sizer/sw-handle.gif
|
|
145
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-left-bg.gif
|
|
146
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-inactive-right-bg.gif
|
|
147
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-left-bg.gif
|
|
148
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-btm-right-bg.gif
|
|
149
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-sprite.gif
|
|
150
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.gif
|
|
151
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-bg.png
|
|
152
|
+
- lib/bloggit/client/scripts/resources/images/aero/tabs/tab-strip-btm-bg.gif
|
|
153
|
+
- lib/bloggit/client/scripts/resources/images/aero/toolbar/bg.gif
|
|
154
|
+
- lib/bloggit/client/scripts/resources/images/aero/toolbar/tb-btn-sprite.gif
|
|
155
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-arrow.gif
|
|
156
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/btn-sprite.gif
|
|
157
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/close.gif
|
|
158
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/collapse.gif
|
|
159
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/e-handle.gif
|
|
160
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/expand.gif
|
|
161
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/hd-sprite.gif
|
|
162
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress.gif
|
|
163
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/progress2.gif
|
|
164
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/s-handle.gif
|
|
165
|
+
- lib/bloggit/client/scripts/resources/images/default/basic-dialog/se-handle.gif
|
|
166
|
+
- lib/bloggit/client/scripts/resources/images/default/box/corners-blue.gif
|
|
167
|
+
- lib/bloggit/client/scripts/resources/images/default/box/corners.gif
|
|
168
|
+
- lib/bloggit/client/scripts/resources/images/default/box/l-blue.gif
|
|
169
|
+
- lib/bloggit/client/scripts/resources/images/default/box/l.gif
|
|
170
|
+
- lib/bloggit/client/scripts/resources/images/default/box/r-blue.gif
|
|
171
|
+
- lib/bloggit/client/scripts/resources/images/default/box/r.gif
|
|
172
|
+
- lib/bloggit/client/scripts/resources/images/default/box/tb-blue.gif
|
|
173
|
+
- lib/bloggit/client/scripts/resources/images/default/box/tb.gif
|
|
174
|
+
- lib/bloggit/client/scripts/resources/images/default/dd/drop-add.gif
|
|
175
|
+
- lib/bloggit/client/scripts/resources/images/default/dd/drop-no.gif
|
|
176
|
+
- lib/bloggit/client/scripts/resources/images/default/dd/drop-yes.gif
|
|
177
|
+
- lib/bloggit/client/scripts/resources/images/default/form/date-trigger.gif
|
|
178
|
+
- lib/bloggit/client/scripts/resources/images/default/form/error-tip-corners.gif
|
|
179
|
+
- lib/bloggit/client/scripts/resources/images/default/form/exclamation.gif
|
|
180
|
+
- lib/bloggit/client/scripts/resources/images/default/form/text-bg.gif
|
|
181
|
+
- lib/bloggit/client/scripts/resources/images/default/form/trigger.gif
|
|
182
|
+
- lib/bloggit/client/scripts/resources/images/default/gradient-bg.gif
|
|
183
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/Thumbs.db
|
|
184
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/arrow-left-white.gif
|
|
185
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/arrow-right-white.gif
|
|
186
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/col-move-bottom.gif
|
|
187
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/col-move-top.gif
|
|
188
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/dirty.gif
|
|
189
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/done.gif
|
|
190
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/drop-no.gif
|
|
191
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/drop-yes.gif
|
|
192
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/footer-bg.gif
|
|
193
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-hd.gif
|
|
194
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-blue-split.gif
|
|
195
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-hrow.gif
|
|
196
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-loading.gif
|
|
197
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-split.gif
|
|
198
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/grid-vista-hd.gif
|
|
199
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hd-pop.gif
|
|
200
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-asc.gif
|
|
201
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-desc.gif
|
|
202
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.gif
|
|
203
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-lock.png
|
|
204
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.gif
|
|
205
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/hmenu-unlock.png
|
|
206
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/invalid_line.gif
|
|
207
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/loading.gif
|
|
208
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/mso-hd.gif
|
|
209
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/nowait.gif
|
|
210
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-first-disabled.gif
|
|
211
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-first.gif
|
|
212
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-last-disabled.gif
|
|
213
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-last.gif
|
|
214
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-next-disabled.gif
|
|
215
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-next.gif
|
|
216
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-prev-disabled.gif
|
|
217
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/page-prev.gif
|
|
218
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/pick-button.gif
|
|
219
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/refresh.gif
|
|
220
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/sort_asc.gif
|
|
221
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/sort_desc.gif
|
|
222
|
+
- lib/bloggit/client/scripts/resources/images/default/grid/wait.gif
|
|
223
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/collapse.gif
|
|
224
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/expand.gif
|
|
225
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/gradient-bg.gif
|
|
226
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/ns-collapse.gif
|
|
227
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/ns-expand.gif
|
|
228
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/panel-close.gif
|
|
229
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/panel-title-bg.gif
|
|
230
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/panel-title-light-bg.gif
|
|
231
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/stick.gif
|
|
232
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/stuck.gif
|
|
233
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/tab-close-on.gif
|
|
234
|
+
- lib/bloggit/client/scripts/resources/images/default/layout/tab-close.gif
|
|
235
|
+
- lib/bloggit/client/scripts/resources/images/default/menu/checked.gif
|
|
236
|
+
- lib/bloggit/client/scripts/resources/images/default/menu/group-checked.gif
|
|
237
|
+
- lib/bloggit/client/scripts/resources/images/default/menu/menu-parent.gif
|
|
238
|
+
- lib/bloggit/client/scripts/resources/images/default/menu/menu.gif
|
|
239
|
+
- lib/bloggit/client/scripts/resources/images/default/menu/unchecked.gif
|
|
240
|
+
- lib/bloggit/client/scripts/resources/images/default/qtip/bg.gif
|
|
241
|
+
- lib/bloggit/client/scripts/resources/images/default/qtip/close.gif
|
|
242
|
+
- lib/bloggit/client/scripts/resources/images/default/qtip/tip-sprite.gif
|
|
243
|
+
- lib/bloggit/client/scripts/resources/images/default/s.gif
|
|
244
|
+
- lib/bloggit/client/scripts/resources/images/default/shadow-c.png
|
|
245
|
+
- lib/bloggit/client/scripts/resources/images/default/shadow-lr.png
|
|
246
|
+
- lib/bloggit/client/scripts/resources/images/default/shadow.png
|
|
247
|
+
- lib/bloggit/client/scripts/resources/images/default/shared/calendar.gif
|
|
248
|
+
- lib/bloggit/client/scripts/resources/images/default/shared/left-btn.gif
|
|
249
|
+
- lib/bloggit/client/scripts/resources/images/default/shared/right-btn.gif
|
|
250
|
+
- lib/bloggit/client/scripts/resources/images/default/shared/warning.gif
|
|
251
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/e-handle-dark.gif
|
|
252
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/e-handle.gif
|
|
253
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle-dark.gif
|
|
254
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/ne-handle.gif
|
|
255
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle-dark.gif
|
|
256
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/nw-handle.gif
|
|
257
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/s-handle-dark.gif
|
|
258
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/s-handle.gif
|
|
259
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/se-handle-dark.gif
|
|
260
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/se-handle.gif
|
|
261
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/square.gif
|
|
262
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle-dark.gif
|
|
263
|
+
- lib/bloggit/client/scripts/resources/images/default/sizer/sw-handle.gif
|
|
264
|
+
- lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-left-bg.gif
|
|
265
|
+
- lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-inactive-right-bg.gif
|
|
266
|
+
- lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-left-bg.gif
|
|
267
|
+
- lib/bloggit/client/scripts/resources/images/default/tabs/tab-btm-right-bg.gif
|
|
268
|
+
- lib/bloggit/client/scripts/resources/images/default/tabs/tab-sprite.gif
|
|
269
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow-light.gif
|
|
270
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/btn-arrow.gif
|
|
271
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/btn-over-bg.gif
|
|
272
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/gray-bg.gif
|
|
273
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/tb-bg.gif
|
|
274
|
+
- lib/bloggit/client/scripts/resources/images/default/toolbar/tb-btn-sprite.gif
|
|
275
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-add.gif
|
|
276
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-between.gif
|
|
277
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-no.gif
|
|
278
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-over.gif
|
|
279
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-under.gif
|
|
280
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/drop-yes.gif
|
|
281
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus-nl.gif
|
|
282
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-minus.gif
|
|
283
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus-nl.gif
|
|
284
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-end-plus.gif
|
|
285
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-end.gif
|
|
286
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-line.gif
|
|
287
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus-nl.gif
|
|
288
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-minus.gif
|
|
289
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus-nl.gif
|
|
290
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow-plus.gif
|
|
291
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/elbow.gif
|
|
292
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/folder-open.gif
|
|
293
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/folder.gif
|
|
294
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/leaf.gif
|
|
295
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/loading.gif
|
|
296
|
+
- lib/bloggit/client/scripts/resources/images/default/tree/s.gif
|
|
297
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/close.gif
|
|
298
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/collapse.gif
|
|
299
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/dlg-bg.gif
|
|
300
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/e-handle.gif
|
|
301
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/expand.gif
|
|
302
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/hd-sprite.gif
|
|
303
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/s-handle.gif
|
|
304
|
+
- lib/bloggit/client/scripts/resources/images/gray/basic-dialog/se-handle.gif
|
|
305
|
+
- lib/bloggit/client/scripts/resources/images/gray/gradient-bg.gif
|
|
306
|
+
- lib/bloggit/client/scripts/resources/images/gray/grid/grid-hrow.gif
|
|
307
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/collapse.gif
|
|
308
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/expand.gif
|
|
309
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/gradient-bg.gif
|
|
310
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/ns-collapse.gif
|
|
311
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/ns-expand.gif
|
|
312
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/panel-close.gif
|
|
313
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-bg.gif
|
|
314
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/panel-title-light-bg.gif
|
|
315
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/stick.gif
|
|
316
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/tab-close-on.gif
|
|
317
|
+
- lib/bloggit/client/scripts/resources/images/gray/layout/tab-close.gif
|
|
318
|
+
- lib/bloggit/client/scripts/resources/images/gray/menu/checked.gif
|
|
319
|
+
- lib/bloggit/client/scripts/resources/images/gray/menu/group-checked.gif
|
|
320
|
+
- lib/bloggit/client/scripts/resources/images/gray/menu/menu-parent.gif
|
|
321
|
+
- lib/bloggit/client/scripts/resources/images/gray/menu/menu.gif
|
|
322
|
+
- lib/bloggit/client/scripts/resources/images/gray/menu/unchecked.gif
|
|
323
|
+
- lib/bloggit/client/scripts/resources/images/gray/qtip/bg.gif
|
|
324
|
+
- lib/bloggit/client/scripts/resources/images/gray/qtip/tip-sprite.gif
|
|
325
|
+
- lib/bloggit/client/scripts/resources/images/gray/s.gif
|
|
326
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle-dark.gif
|
|
327
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/e-handle.gif
|
|
328
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle-dark.gif
|
|
329
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/ne-handle.gif
|
|
330
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle-dark.gif
|
|
331
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/nw-handle.gif
|
|
332
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle-dark.gif
|
|
333
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/s-handle.gif
|
|
334
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle-dark.gif
|
|
335
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/se-handle.gif
|
|
336
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle-dark.gif
|
|
337
|
+
- lib/bloggit/client/scripts/resources/images/gray/sizer/sw-handle.gif
|
|
338
|
+
- lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-left-bg.gif
|
|
339
|
+
- lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-inactive-right-bg.gif
|
|
340
|
+
- lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-left-bg.gif
|
|
341
|
+
- lib/bloggit/client/scripts/resources/images/gray/tabs/tab-btm-right-bg.gif
|
|
342
|
+
- lib/bloggit/client/scripts/resources/images/gray/tabs/tab-sprite.gif
|
|
343
|
+
- lib/bloggit/client/scripts/resources/images/gray/toolbar/gray-bg.gif
|
|
344
|
+
- lib/bloggit/client/scripts/resources/images/gray/toolbar/tb-btn-sprite.gif
|
|
345
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-center.gif
|
|
346
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-left.gif
|
|
347
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/bg-right.gif
|
|
348
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/close.gif
|
|
349
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/collapse.gif
|
|
350
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/dlg-bg.gif
|
|
351
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/e-handle.gif
|
|
352
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/expand.gif
|
|
353
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/hd-sprite.gif
|
|
354
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/s-handle.gif
|
|
355
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/se-handle.gif
|
|
356
|
+
- lib/bloggit/client/scripts/resources/images/vista/basic-dialog/w-handle.gif
|
|
357
|
+
- lib/bloggit/client/scripts/resources/images/vista/gradient-bg.gif
|
|
358
|
+
- lib/bloggit/client/scripts/resources/images/vista/grid/grid-split.gif
|
|
359
|
+
- lib/bloggit/client/scripts/resources/images/vista/grid/grid-vista-hd.gif
|
|
360
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/collapse.gif
|
|
361
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/expand.gif
|
|
362
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/gradient-bg.gif
|
|
363
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/ns-collapse.gif
|
|
364
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/ns-expand.gif
|
|
365
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/panel-close.gif
|
|
366
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-bg.gif
|
|
367
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/panel-title-light-bg.gif
|
|
368
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/stick.gif
|
|
369
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/tab-close-on.gif
|
|
370
|
+
- lib/bloggit/client/scripts/resources/images/vista/layout/tab-close.gif
|
|
371
|
+
- lib/bloggit/client/scripts/resources/images/vista/qtip/bg.gif
|
|
372
|
+
- lib/bloggit/client/scripts/resources/images/vista/qtip/tip-sprite.gif
|
|
373
|
+
- lib/bloggit/client/scripts/resources/images/vista/s.gif
|
|
374
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle-dark.gif
|
|
375
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/e-handle.gif
|
|
376
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle-dark.gif
|
|
377
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/ne-handle.gif
|
|
378
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle-dark.gif
|
|
379
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/nw-handle.gif
|
|
380
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle-dark.gif
|
|
381
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/s-handle.gif
|
|
382
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle-dark.gif
|
|
383
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/se-handle.gif
|
|
384
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle-dark.gif
|
|
385
|
+
- lib/bloggit/client/scripts/resources/images/vista/sizer/sw-handle.gif
|
|
386
|
+
- lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-left-bg.gif
|
|
387
|
+
- lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-inactive-right-bg.gif
|
|
388
|
+
- lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-left-bg.gif
|
|
389
|
+
- lib/bloggit/client/scripts/resources/images/vista/tabs/tab-btm-right-bg.gif
|
|
390
|
+
- lib/bloggit/client/scripts/resources/images/vista/tabs/tab-sprite.gif
|
|
391
|
+
- lib/bloggit/client/scripts/resources/images/vista/toolbar/gray-bg.gif
|
|
392
|
+
- lib/bloggit/client/scripts/resources/images/vista/toolbar/tb-btn-sprite.gif
|
|
393
|
+
- lib/bloggit/client/scripts/resources/license.txt
|
|
394
|
+
- lib/bloggit/client/scripts/resources/raw-images/shadow.psd
|
|
395
|
+
- lib/bloggit/client/scripts/resources/resources.jsb
|
|
396
|
+
- lib/bloggit/client/templates/json.rhtml
|
|
397
|
+
- lib/bloggit/client/templates/main.rhtml
|
|
398
|
+
- lib/bloggit/commandline.rb
|
|
399
|
+
- lib/bloggit/commands/page_cmd.rb
|
|
400
|
+
- lib/bloggit/commands/plugin_cmd.rb
|
|
401
|
+
- lib/bloggit/commands/post_cmd.rb
|
|
402
|
+
- lib/bloggit/commands/site_cmd.rb
|
|
403
|
+
- lib/bloggit/commands/theme_cmd.rb
|
|
404
|
+
- lib/bloggit/etc/hash.rb
|
|
405
|
+
- lib/bloggit/etc/string.rb
|
|
406
|
+
- lib/bloggit/generator.rb
|
|
407
|
+
- lib/bloggit/hooks.rb
|
|
408
|
+
- lib/bloggit/media.rb
|
|
409
|
+
- lib/bloggit/page.rb
|
|
410
|
+
- lib/bloggit/plugin.rb
|
|
411
|
+
- lib/bloggit/post.rb
|
|
412
|
+
- lib/bloggit/publisher.rb
|
|
413
|
+
- lib/bloggit/server.rb
|
|
414
|
+
- lib/bloggit/site.rb
|
|
415
|
+
- lib/bloggit/tag.rb
|
|
416
|
+
- lib/bloggit/tasks/client.rb
|
|
417
|
+
- lib/bloggit/tasks/publishing.rb
|
|
418
|
+
- lib/bloggit/tasks/scm.rb
|
|
419
|
+
- lib/bloggit/tasks/specs.rb
|
|
420
|
+
- lib/bloggit/template.rb
|
|
421
|
+
- lib/bloggit/text_formatter.rb
|
|
422
|
+
- lib/util/fixed_hoe.rb
|
|
423
|
+
- test/fixtures/test.blog/Rakefile
|
|
424
|
+
- test/fixtures/test.blog/pages/about.page
|
|
425
|
+
- test/fixtures/test.blog/pages/coming-soon.page
|
|
426
|
+
- test/fixtures/test.blog/pages/todo.page
|
|
427
|
+
- test/fixtures/test.blog/plugins/example/init.rb
|
|
428
|
+
- test/fixtures/test.blog/plugins/haloscan/init.rb
|
|
429
|
+
- test/fixtures/test.blog/plugins/js_search/init.rb
|
|
430
|
+
- test/fixtures/test.blog/plugins/rdoc_formatter/init.rb
|
|
431
|
+
- test/fixtures/test.blog/posts/2004.03.07_to-boldly-go.post
|
|
432
|
+
- test/fixtures/test.blog/posts/2007.03.25_sure-whatever.post
|
|
433
|
+
- test/fixtures/test.blog/posts/2007.03.27_rdoc-anyone.post
|
|
434
|
+
- test/fixtures/test.blog/posts/2010.12.07_35-already.post
|
|
435
|
+
- test/fixtures/test.blog/settings.yml
|
|
436
|
+
- test/fixtures/test.blog/themes/default/styles/main.css
|
|
437
|
+
- test/fixtures/test.blog/themes/default/templates/archive.rhtml
|
|
438
|
+
- test/fixtures/test.blog/themes/default/templates/home.rhtml
|
|
439
|
+
- test/fixtures/test.blog/themes/default/templates/layouts/main.rhtml
|
|
440
|
+
- test/fixtures/test.blog/themes/default/templates/layouts/two-columns.rhtml
|
|
441
|
+
- test/fixtures/test.blog/themes/default/templates/page.rhtml
|
|
442
|
+
- test/fixtures/test.blog/themes/default/templates/post.rhtml
|
|
443
|
+
- test/fixtures/test.blog/themes/default/templates/snippets/blog_entry.rhtml
|
|
444
|
+
- test/fixtures/test.blog/themes/default/templates/snippets/navigation.rhtml
|
|
445
|
+
- test/fixtures/test.blog/themes/default/templates/snippets/tag_list.rhtml
|
|
446
|
+
- test/fixtures/test.blog/themes/default/templates/tag_archive.rhtml
|
|
447
|
+
- test/helpers.rb
|
|
448
|
+
- test/unit/bloggit_test.rb
|
|
449
|
+
- test/unit/page_test.rb
|
|
450
|
+
- test/unit/post_test.rb
|
|
451
|
+
- test/unit/site_test.rb
|
|
452
|
+
- test/unit/template_test.rb
|
|
453
|
+
- test/unit/text_formatter_test.rb
|
|
454
|
+
test_files: []
|
|
455
|
+
|
|
456
|
+
rdoc_options: []
|
|
457
|
+
|
|
458
|
+
extra_rdoc_files: []
|
|
459
|
+
|
|
460
|
+
executables:
|
|
461
|
+
- bloggit
|
|
462
|
+
extensions: []
|
|
463
|
+
|
|
464
|
+
requirements: []
|
|
465
|
+
|
|
466
|
+
dependencies:
|
|
467
|
+
- !ruby/object:Gem::Dependency
|
|
468
|
+
name: activesupport
|
|
469
|
+
version_requirement:
|
|
470
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
471
|
+
requirements:
|
|
472
|
+
- - ">"
|
|
473
|
+
- !ruby/object:Gem::Version
|
|
474
|
+
version: 0.0.0
|
|
475
|
+
version:
|
|
476
|
+
- !ruby/object:Gem::Dependency
|
|
477
|
+
name: RedCloth
|
|
478
|
+
version_requirement:
|
|
479
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
480
|
+
requirements:
|
|
481
|
+
- - ">"
|
|
482
|
+
- !ruby/object:Gem::Version
|
|
483
|
+
version: 0.0.0
|
|
484
|
+
version:
|
|
485
|
+
- !ruby/object:Gem::Dependency
|
|
486
|
+
name: cmdparse
|
|
487
|
+
version_requirement:
|
|
488
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
489
|
+
requirements:
|
|
490
|
+
- - ">"
|
|
491
|
+
- !ruby/object:Gem::Version
|
|
492
|
+
version: 0.0.0
|
|
493
|
+
version:
|
|
494
|
+
- !ruby/object:Gem::Dependency
|
|
495
|
+
name: BlueCloth
|
|
496
|
+
version_requirement:
|
|
497
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
498
|
+
requirements:
|
|
499
|
+
- - ">"
|
|
500
|
+
- !ruby/object:Gem::Version
|
|
501
|
+
version: 0.0.0
|
|
502
|
+
version:
|
|
503
|
+
- !ruby/object:Gem::Dependency
|
|
504
|
+
name: builder
|
|
505
|
+
version_requirement:
|
|
506
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
507
|
+
requirements:
|
|
508
|
+
- - ">"
|
|
509
|
+
- !ruby/object:Gem::Version
|
|
510
|
+
version: 0.0.0
|
|
511
|
+
version:
|
|
512
|
+
- !ruby/object:Gem::Dependency
|
|
513
|
+
name: markaby
|
|
514
|
+
version_requirement:
|
|
515
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
|
516
|
+
requirements:
|
|
517
|
+
- - ">"
|
|
518
|
+
- !ruby/object:Gem::Version
|
|
519
|
+
version: 0.0.0
|
|
520
|
+
version:
|