blowmage-webby 0.9.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (247) hide show
  1. data/History.txt +214 -0
  2. data/Manifest.txt +249 -0
  3. data/README.rdoc +92 -0
  4. data/Rakefile +56 -0
  5. data/bin/webby +41 -0
  6. data/bin/webby-gen +41 -0
  7. data/examples/blog/Sitefile +7 -0
  8. data/examples/blog/tasks/blog.rake +72 -0
  9. data/examples/blog/templates/atom_feed.erb +40 -0
  10. data/examples/blog/templates/blog/month.erb +22 -0
  11. data/examples/blog/templates/blog/post.erb +16 -0
  12. data/examples/blog/templates/blog/year.erb +22 -0
  13. data/examples/presentation/Sitefile +10 -0
  14. data/examples/presentation/content/css/uv/twilight.css +137 -0
  15. data/examples/presentation/content/presentation/_sample_code.txt +10 -0
  16. data/examples/presentation/content/presentation/index.txt +63 -0
  17. data/examples/presentation/content/presentation/s5/blank.gif +0 -0
  18. data/examples/presentation/content/presentation/s5/bodybg.gif +0 -0
  19. data/examples/presentation/content/presentation/s5/framing.css +23 -0
  20. data/examples/presentation/content/presentation/s5/iepngfix.htc +42 -0
  21. data/examples/presentation/content/presentation/s5/opera.css +7 -0
  22. data/examples/presentation/content/presentation/s5/outline.css +15 -0
  23. data/examples/presentation/content/presentation/s5/pretty.css +86 -0
  24. data/examples/presentation/content/presentation/s5/print.css +25 -0
  25. data/examples/presentation/content/presentation/s5/s5-core.css +9 -0
  26. data/examples/presentation/content/presentation/s5/slides.css +3 -0
  27. data/examples/presentation/content/presentation/s5/slides.js +553 -0
  28. data/examples/presentation/layouts/presentation.txt +43 -0
  29. data/examples/presentation/templates/_code_partial.erb +13 -0
  30. data/examples/presentation/templates/presentation.erb +40 -0
  31. data/examples/tumblog/Sitefile +9 -0
  32. data/examples/tumblog/content/css/tumblog.css +308 -0
  33. data/examples/tumblog/content/images/tumblog/permalink.gif +0 -0
  34. data/examples/tumblog/content/images/tumblog/rss.gif +0 -0
  35. data/examples/tumblog/content/tumblog/200806/the-noble-chicken/index.txt +12 -0
  36. data/examples/tumblog/content/tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/index.txt +12 -0
  37. data/examples/tumblog/content/tumblog/200807/mad-city-chickens/index.txt +10 -0
  38. data/examples/tumblog/content/tumblog/200807/the-wisdom-of-the-dutch/index.txt +11 -0
  39. data/examples/tumblog/content/tumblog/200807/up-a-tree/index.txt +13 -0
  40. data/examples/tumblog/content/tumblog/index.txt +37 -0
  41. data/examples/tumblog/content/tumblog/rss.txt +37 -0
  42. data/examples/tumblog/layouts/tumblog/default.txt +44 -0
  43. data/examples/tumblog/layouts/tumblog/post.txt +15 -0
  44. data/examples/tumblog/lib/tumblog_helper.rb +32 -0
  45. data/examples/tumblog/tasks/tumblog.rake +30 -0
  46. data/examples/tumblog/templates/atom_feed.erb +40 -0
  47. data/examples/tumblog/templates/tumblog/conversation.erb +12 -0
  48. data/examples/tumblog/templates/tumblog/link.erb +10 -0
  49. data/examples/tumblog/templates/tumblog/photo.erb +13 -0
  50. data/examples/tumblog/templates/tumblog/post.erb +12 -0
  51. data/examples/tumblog/templates/tumblog/quote.erb +11 -0
  52. data/examples/webby/Sitefile +19 -0
  53. data/examples/webby/content/communicate/index.txt +28 -0
  54. data/examples/webby/content/css/background.gif +0 -0
  55. data/examples/webby/content/css/blueprint/print.css +76 -0
  56. data/examples/webby/content/css/blueprint/screen.css +696 -0
  57. data/examples/webby/content/css/coderay.css +96 -0
  58. data/examples/webby/content/css/site.css +196 -0
  59. data/examples/webby/content/css/uv/twilight.css +137 -0
  60. data/examples/webby/content/index.txt +37 -0
  61. data/examples/webby/content/learn/index.txt +28 -0
  62. data/examples/webby/content/reference/index.txt +204 -0
  63. data/examples/webby/content/release-notes/index.txt +21 -0
  64. data/examples/webby/content/release-notes/rel-0-9-0/index.txt +74 -0
  65. data/examples/webby/content/release-notes/rel-0-9-1/index.txt +93 -0
  66. data/examples/webby/content/release-notes/rel-0-9-2/index.txt +14 -0
  67. data/examples/webby/content/release-notes/rel-0-9-3/index.txt +47 -0
  68. data/examples/webby/content/robots.txt +6 -0
  69. data/examples/webby/content/script/jquery.corner.js +152 -0
  70. data/examples/webby/content/script/jquery.js +31 -0
  71. data/examples/webby/content/sitemap.txt +31 -0
  72. data/examples/webby/content/tips_and_tricks/index.txt +97 -0
  73. data/examples/webby/content/tutorial/index.txt +135 -0
  74. data/examples/webby/content/user-manual/index.txt +419 -0
  75. data/examples/webby/layouts/default.txt +49 -0
  76. data/examples/webby/templates/page.erb +10 -0
  77. data/examples/website/Sitefile +7 -0
  78. data/examples/website/content/css/blueprint/ie.css +26 -0
  79. data/examples/website/content/css/blueprint/plugins/buttons/icons/cross.png +0 -0
  80. data/examples/website/content/css/blueprint/plugins/buttons/icons/key.png +0 -0
  81. data/examples/website/content/css/blueprint/plugins/buttons/icons/tick.png +0 -0
  82. data/examples/website/content/css/blueprint/plugins/buttons/readme.txt +32 -0
  83. data/examples/website/content/css/blueprint/plugins/buttons/screen.css +97 -0
  84. data/examples/website/content/css/blueprint/plugins/fancy-type/readme.txt +14 -0
  85. data/examples/website/content/css/blueprint/plugins/fancy-type/screen.css +71 -0
  86. data/examples/website/content/css/blueprint/plugins/link-icons/icons/doc.png +0 -0
  87. data/examples/website/content/css/blueprint/plugins/link-icons/icons/email.png +0 -0
  88. data/examples/website/content/css/blueprint/plugins/link-icons/icons/external.png +0 -0
  89. data/examples/website/content/css/blueprint/plugins/link-icons/icons/feed.png +0 -0
  90. data/examples/website/content/css/blueprint/plugins/link-icons/icons/im.png +0 -0
  91. data/examples/website/content/css/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  92. data/examples/website/content/css/blueprint/plugins/link-icons/icons/visited.png +0 -0
  93. data/examples/website/content/css/blueprint/plugins/link-icons/icons/xls.png +0 -0
  94. data/examples/website/content/css/blueprint/plugins/link-icons/readme.txt +18 -0
  95. data/examples/website/content/css/blueprint/plugins/link-icons/screen.css +40 -0
  96. data/examples/website/content/css/blueprint/plugins/rtl/readme.txt +10 -0
  97. data/examples/website/content/css/blueprint/plugins/rtl/screen.css +109 -0
  98. data/examples/website/content/css/blueprint/print.css +30 -0
  99. data/examples/website/content/css/blueprint/screen.css +251 -0
  100. data/examples/website/content/css/blueprint/src/forms.css +49 -0
  101. data/examples/website/content/css/blueprint/src/grid.css +212 -0
  102. data/examples/website/content/css/blueprint/src/grid.png +0 -0
  103. data/examples/website/content/css/blueprint/src/ie.css +59 -0
  104. data/examples/website/content/css/blueprint/src/print.css +85 -0
  105. data/examples/website/content/css/blueprint/src/reset.css +38 -0
  106. data/examples/website/content/css/blueprint/src/typography.css +105 -0
  107. data/examples/website/content/css/coderay.css +111 -0
  108. data/examples/website/content/css/site.css +67 -0
  109. data/examples/website/content/index.txt +19 -0
  110. data/examples/website/layouts/default.txt +61 -0
  111. data/examples/website/lib/breadcrumbs.rb +28 -0
  112. data/examples/website/templates/_partial.erb +10 -0
  113. data/examples/website/templates/page.erb +18 -0
  114. data/lib/webby.rb +233 -0
  115. data/lib/webby/apps.rb +12 -0
  116. data/lib/webby/apps/generator.rb +276 -0
  117. data/lib/webby/apps/main.rb +258 -0
  118. data/lib/webby/auto_builder.rb +157 -0
  119. data/lib/webby/builder.rb +172 -0
  120. data/lib/webby/core_ext/enumerable.rb +11 -0
  121. data/lib/webby/core_ext/hash.rb +28 -0
  122. data/lib/webby/core_ext/kernel.rb +26 -0
  123. data/lib/webby/core_ext/string.rb +163 -0
  124. data/lib/webby/core_ext/time.rb +9 -0
  125. data/lib/webby/filters.rb +83 -0
  126. data/lib/webby/filters/basepath.rb +97 -0
  127. data/lib/webby/filters/erb.rb +9 -0
  128. data/lib/webby/filters/haml.rb +18 -0
  129. data/lib/webby/filters/markdown.rb +16 -0
  130. data/lib/webby/filters/maruku.rb +16 -0
  131. data/lib/webby/filters/outline.rb +309 -0
  132. data/lib/webby/filters/sass.rb +17 -0
  133. data/lib/webby/filters/slides.rb +56 -0
  134. data/lib/webby/filters/textile.rb +16 -0
  135. data/lib/webby/filters/tidy.rb +76 -0
  136. data/lib/webby/filters/wiki_words.rb +14 -0
  137. data/lib/webby/helpers.rb +30 -0
  138. data/lib/webby/helpers/capture_helper.rb +141 -0
  139. data/lib/webby/helpers/coderay_helper.rb +69 -0
  140. data/lib/webby/helpers/graphviz_helper.rb +136 -0
  141. data/lib/webby/helpers/tag_helper.rb +65 -0
  142. data/lib/webby/helpers/tex_img_helper.rb +133 -0
  143. data/lib/webby/helpers/ultraviolet_helper.rb +63 -0
  144. data/lib/webby/helpers/url_helper.rb +241 -0
  145. data/lib/webby/journal.rb +126 -0
  146. data/lib/webby/link_validator.rb +160 -0
  147. data/lib/webby/renderer.rb +386 -0
  148. data/lib/webby/resources.rb +136 -0
  149. data/lib/webby/resources/db.rb +251 -0
  150. data/lib/webby/resources/layout.rb +54 -0
  151. data/lib/webby/resources/meta_file.rb +211 -0
  152. data/lib/webby/resources/page.rb +82 -0
  153. data/lib/webby/resources/partial.rb +85 -0
  154. data/lib/webby/resources/resource.rb +201 -0
  155. data/lib/webby/resources/static.rb +36 -0
  156. data/lib/webby/stelan/mktemp.rb +135 -0
  157. data/lib/webby/stelan/paginator.rb +165 -0
  158. data/lib/webby/tasks/build.rake +27 -0
  159. data/lib/webby/tasks/create.rake +25 -0
  160. data/lib/webby/tasks/deploy.rake +22 -0
  161. data/lib/webby/tasks/growl.rake +16 -0
  162. data/lib/webby/tasks/validate.rake +19 -0
  163. data/spec/core_ext/hash_spec.rb +47 -0
  164. data/spec/core_ext/string_spec.rb +110 -0
  165. data/spec/core_ext/time_spec.rb +19 -0
  166. data/spec/data/hooligans/bad_meta_data_1.txt +34 -0
  167. data/spec/data/hooligans/bad_meta_data_2.txt +34 -0
  168. data/spec/data/html/anchor.html +11 -0
  169. data/spec/data/html/external.html +10 -0
  170. data/spec/data/html/invalid-relative.html +10 -0
  171. data/spec/data/html/relative-anchor.html +10 -0
  172. data/spec/data/html/relative-invalid-anchor.html +10 -0
  173. data/spec/data/html/relative.html +10 -0
  174. data/spec/data/outline/basic.out +81 -0
  175. data/spec/data/outline/basic.txt +25 -0
  176. data/spec/data/outline/no_clobber.out +86 -0
  177. data/spec/data/outline/numbering.out +81 -0
  178. data/spec/data/outline/numbering_only.out +21 -0
  179. data/spec/data/outline/toc_range_1.out +66 -0
  180. data/spec/data/outline/toc_range_2.out +55 -0
  181. data/spec/data/outline/toc_style.out +81 -0
  182. data/spec/data/site/Sitefile +9 -0
  183. data/spec/data/site/content/_partial.txt +10 -0
  184. data/spec/data/site/content/css/coderay.css +111 -0
  185. data/spec/data/site/content/css/site.css +67 -0
  186. data/spec/data/site/content/css/tumblog.css +308 -0
  187. data/spec/data/site/content/images/tumblog/permalink.gif +0 -0
  188. data/spec/data/site/content/images/tumblog/rss.gif +0 -0
  189. data/spec/data/site/content/index.txt +19 -0
  190. data/spec/data/site/content/photos.txt +21 -0
  191. data/spec/data/site/content/tumblog/200806/the-noble-chicken/index.txt +12 -0
  192. data/spec/data/site/content/tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/index.txt +12 -0
  193. data/spec/data/site/content/tumblog/200807/mad-city-chickens/index.txt +10 -0
  194. data/spec/data/site/content/tumblog/200807/the-wisdom-of-the-dutch/index.txt +11 -0
  195. data/spec/data/site/content/tumblog/200807/up-a-tree/index.txt +13 -0
  196. data/spec/data/site/content/tumblog/index.txt +37 -0
  197. data/spec/data/site/content/tumblog/rss.txt +37 -0
  198. data/spec/data/site/layouts/default.txt +58 -0
  199. data/spec/data/site/layouts/tumblog/default.txt +44 -0
  200. data/spec/data/site/layouts/tumblog/post.txt +15 -0
  201. data/spec/data/site/lib/breadcrumbs.rb +28 -0
  202. data/spec/data/site/lib/tumblog_helper.rb +32 -0
  203. data/spec/data/site/tasks/tumblog.rake +30 -0
  204. data/spec/data/site/templates/_partial.erb +10 -0
  205. data/spec/data/site/templates/atom_feed.erb +40 -0
  206. data/spec/data/site/templates/page.erb +18 -0
  207. data/spec/data/site/templates/presentation.erb +40 -0
  208. data/spec/data/site/templates/tumblog/conversation.erb +12 -0
  209. data/spec/data/site/templates/tumblog/link.erb +10 -0
  210. data/spec/data/site/templates/tumblog/photo.erb +13 -0
  211. data/spec/data/site/templates/tumblog/post.erb +12 -0
  212. data/spec/data/site/templates/tumblog/quote.erb +11 -0
  213. data/spec/spec.opts +1 -0
  214. data/spec/spec_helper.rb +58 -0
  215. data/spec/webby/apps/generator_spec.rb +117 -0
  216. data/spec/webby/apps/main_spec.rb +88 -0
  217. data/spec/webby/filters/basepath_spec.rb +167 -0
  218. data/spec/webby/filters/maruku_spec.rb +31 -0
  219. data/spec/webby/filters/outline_spec.rb +92 -0
  220. data/spec/webby/filters/textile_spec.rb +31 -0
  221. data/spec/webby/helpers/capture_helper_spec.rb +56 -0
  222. data/spec/webby/link_validator_spec.rb +154 -0
  223. data/spec/webby/renderer_spec.rb +139 -0
  224. data/spec/webby/resources/db_spec.rb +250 -0
  225. data/spec/webby/resources/layout_spec.rb +83 -0
  226. data/spec/webby/resources/meta_file_spec.rb +171 -0
  227. data/spec/webby/resources/page_spec.rb +129 -0
  228. data/spec/webby/resources/partial_spec.rb +58 -0
  229. data/spec/webby/resources/resource_spec.rb +219 -0
  230. data/spec/webby/resources/static_spec.rb +49 -0
  231. data/spec/webby/resources_spec.rb +69 -0
  232. data/tasks/ann.rake +80 -0
  233. data/tasks/bones.rake +20 -0
  234. data/tasks/gem.rake +192 -0
  235. data/tasks/git.rake +40 -0
  236. data/tasks/manifest.rake +48 -0
  237. data/tasks/mswin32.rake +38 -0
  238. data/tasks/notes.rake +27 -0
  239. data/tasks/post_load.rake +39 -0
  240. data/tasks/rdoc.rake +50 -0
  241. data/tasks/rubyforge.rake +55 -0
  242. data/tasks/setup.rb +279 -0
  243. data/tasks/spec.rake +54 -0
  244. data/tasks/svn.rake +47 -0
  245. data/tasks/test.rake +40 -0
  246. data/tasks/website.rake +37 -0
  247. metadata +386 -0
@@ -0,0 +1,214 @@
1
+ == 0.9.4 / 2008-12-
2
+
3
+ * 2 minor enhancements
4
+ - Added a Maruku filter (thanks to Martyn Loughran)
5
+ - Updated to version 0.8.0 of Blueprint css
6
+ * 1 bug fix
7
+ - Editor launching now handles switches passed to the editor
8
+
9
+ == 0.9.3 / 2008-10-08
10
+
11
+ * 4 minor enhancements
12
+ - Added a "wikiwords" filter to process [[text]] as links to other pages
13
+ (thanks to Paul)
14
+ - Added colorization to the output text (facets gem required)
15
+ - Replaced the Heel webserver with webrick
16
+ - Special windows version with windows line endings in generated files
17
+ * 2 bug fixes
18
+ - Fixed a bug on Windows where line endings were messing with meta-data
19
+ - The paginator was not linking correctly back to the first page from
20
+ subsequent pages in a list
21
+
22
+ == 0.9.2 / 2008-09-11
23
+
24
+ * 1 bug fix
25
+ - Layouts were not being found if more than one layout was in a directory
26
+ in the layouts folder
27
+
28
+ == 0.9.1 / 2008-09-10
29
+
30
+ * 1 major enhancement
31
+ - multiple output files can be generated from a single page
32
+ * 2 minor enhancements
33
+ - simplified the handling of meta-data at the top of files
34
+ - pagination now honors the "page per directory" flag
35
+ * 2 bug fixes
36
+ - filename extensions were not being preserved when creating a new page
37
+ - webby now works properly with rake 0.8.2
38
+
39
+ == 0.9.0 / 2008-08-25
40
+
41
+ * 2 major enhancements
42
+ - The "rake" command line tool has been replaced by the "webby"
43
+ command line tool for day to day site tasks
44
+ - Now using the "rdiscount" gem for markdown syntax
45
+ * 4 minor enhancements
46
+ - Layouts can exist in subdirectories of the layouts folder
47
+ - Addition of a "tumblog" template
48
+ - Addition of a sitemap file (Ana Nelson)
49
+ - Updated to version 6.4.2 of ImageMagick for tex2img conversions
50
+ * 5 bug fixes
51
+ - Better error message when an unkonwn filter is given
52
+ - Table of contents generation bug
53
+ - Failing to clean out the "content_for" cache when doing a
54
+ multi-page render
55
+ - Explicitly loading the RedCloth gem
56
+ - Handling exceptions from system calls on the Windows platform
57
+
58
+ == 0.8.4 / 2008-06-03
59
+
60
+ * 1 minor improvement
61
+ - Global defaults for HAML and SASS [Dag Odenhall]
62
+ * 1 bug fix
63
+ - Added the blog templates to the package
64
+
65
+ == 0.8.3 / 2008-06-02
66
+
67
+ * 2 major enhancements
68
+ - Added blogging support
69
+ - Added S5 slide presentation support
70
+ * 6 minor enhancements
71
+ - Changed the arguments to the DB#find method
72
+ - Added locals support for page templates
73
+ - Updated atom feed generation template
74
+ - Partials now support local variables when rendering
75
+ - Can guard rendering results from processing by subsequent filters
76
+ (useful when rendering partials or embedding other pages)
77
+ - Support for "content_for" style captures [M@ McCray]
78
+ * 5 bug fixes
79
+ - Fixed reference to an non-existent Error class
80
+ - Basepath filter now handles XML files properly
81
+ - Removed the "--delete" flag from the rsync options [Denis Defreyne]
82
+ - Fixed a nil cursor bug in the rendering filter stack
83
+ - Recursive find now works from the root content folder (bug 20281)
84
+
85
+ == 0.8.2 / 2008-03-12
86
+
87
+ * 2 bug fixes
88
+ - Fixed an error when paginating on an index page
89
+ - Fixed an error where leading and trailing whitespace was being
90
+ stripped from syntax highlighted code blocks
91
+
92
+ == 0.8.1 / 2008-03-09
93
+
94
+ * 2 major enhancement
95
+ - Added support for UltraViolet syntax highlighting
96
+ (code provided by Guillaume Carbonneau)
97
+ - Added rake tasks to validate the hyperlinks for the HTML files
98
+ in the output directory
99
+ * 2 minor enhancements
100
+ - Improved error handling and reporting during the build process
101
+ - Added site defaults for the helpers (coderay, graphviv, latex,
102
+ etc.)
103
+ * 1 bug fix
104
+ - Fixed an error with the prev / next calls in the paginator and
105
+ rendering links to those pages
106
+
107
+ == 0.8.0 / 2008-02-28
108
+
109
+ * 3 major enhancements
110
+ - Added support for partials
111
+ - Refactored the coderay and graphviz filters into helper methods
112
+ accessible from ERB
113
+ - Added support for embedding LaTeX mathematical equations
114
+ * 3 minor enhancements
115
+ - Added a template file for creating Atom feeds
116
+ - The SITE configuration is available in pages and layouts as
117
+ the @config variable
118
+ - Can specify the port the Heel webserver starts on using the
119
+ SITE.heel_port option in the Rakefile
120
+ * 2 bug fixes
121
+ - When creating pages in directory mode the full page path was
122
+ not being created
123
+ - Read only files were being created in the output folder
124
+ preventing them from being overwritten if changed
125
+
126
+ == 0.7.4 / 2008-02-15
127
+
128
+ * 3 minor enhancements
129
+ - Added "limit" and "sort_by" options to the pages find method
130
+ - Removed dependency on RedCloth for outline generation
131
+ - Added some more options for outline generation, numbering, and
132
+ table of contents generation
133
+ * 1 bug fix
134
+ - Fixed incompatibility with the new logging library
135
+
136
+ == 0.7.3 / 2008-02-05
137
+
138
+ * 2 bug fixes
139
+ - The setup.rb task now requires rubygems in case it is not in the
140
+ user's rubyopt
141
+ - Fixed file line endings on Windows when creating a new site
142
+
143
+ == 0.7.2 / 2008-02-02
144
+
145
+ * 4 minor enhancements
146
+ - Created a URI base path rewriter filter
147
+ - Create an outline filter for generating table of contents
148
+ - Pages can be created as files or as directories
149
+ - The @pages find method now recurses into sub-directories
150
+ * 3 bug fixes
151
+ - Fixed a bug in the graphviz filter where the wrong map ID was
152
+ being generated
153
+ - Now passing the binding of the Renderer to the HAML filter
154
+ (this makes the @page, @pages availabe in HAML pages)
155
+ - The created_at attribute was not being created as a YAML
156
+ time object
157
+
158
+ == 0.7.1 / 2008-01-03
159
+
160
+ * 2 bug fixes
161
+ - No longer appending a '.' to files without an extension (like .htaccess)
162
+ (patch supplied by Stephen Duncan)
163
+ - Fixed a "No such file or directory" error when creating pages
164
+ from templates
165
+
166
+ == 0.7.0 / 2008-01-01
167
+
168
+ * 1 major enhancement
169
+ - Refactored how the filters are handled (thanks Bruce Williams)
170
+ * 2 minor enhancements
171
+ - Added helper methods for URL and anchor generation
172
+ - Added rake task to delete the generated website
173
+ * 2 bug fixes
174
+ - Fixed a bug arising from the order of the logger creation
175
+ - Removed the file extension form the page defaults
176
+ (should be set in the layout or the page itself)
177
+
178
+ == 0.6.0 / 2007-12-04
179
+
180
+ * Added support for embedded graphviz images and image maps
181
+ * Tidy can be used as a filter to format HTML and check for errors
182
+ * Simplified coderay when used with textile
183
+
184
+ == 0.5.1 / 2007-11-29
185
+
186
+ * Growl notifications now work on Leopard / Tiger
187
+ * Fixed a few things for compatibility with Ruby 1.9
188
+
189
+ == 0.5.0 / 2007-11-26
190
+
191
+ * Launching heel now works on Windows boxen
192
+ * Now using "logging" gem to output build status
193
+ * Updated find routine for the pages DB
194
+ * First whack at pagination support
195
+
196
+ == 0.4.0 / 2007-09-18
197
+
198
+ * Updated the Blueprint CSS stylesheets to version 0.5
199
+ * Updating documentation and comments
200
+
201
+ == 0.3.0 / 2007-09-17
202
+
203
+ * Added support for CodeRay syntax highlighting
204
+
205
+ == 0.2.0 / 2007-08-28
206
+
207
+ * Updated rake tasks for website deployment
208
+ * Can use 'heel' and 'launchy' for viewing websites
209
+ * Webby executable can update rake tasks for existing websites
210
+ * Added more rdoc documentation to classes
211
+
212
+ == 0.1.0 / 2007-08-22
213
+
214
+ * Birthday!
@@ -0,0 +1,249 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.rdoc
4
+ Rakefile
5
+ bin/webby
6
+ bin/webby-gen
7
+ examples/blog/Sitefile
8
+ examples/blog/tasks/blog.rake
9
+ examples/blog/templates/atom_feed.erb
10
+ examples/blog/templates/blog/month.erb
11
+ examples/blog/templates/blog/post.erb
12
+ examples/blog/templates/blog/year.erb
13
+ examples/presentation/Sitefile
14
+ examples/presentation/content/css/uv/twilight.css
15
+ examples/presentation/content/presentation/_sample_code.txt
16
+ examples/presentation/content/presentation/index.txt
17
+ examples/presentation/content/presentation/s5/blank.gif
18
+ examples/presentation/content/presentation/s5/bodybg.gif
19
+ examples/presentation/content/presentation/s5/framing.css
20
+ examples/presentation/content/presentation/s5/iepngfix.htc
21
+ examples/presentation/content/presentation/s5/opera.css
22
+ examples/presentation/content/presentation/s5/outline.css
23
+ examples/presentation/content/presentation/s5/pretty.css
24
+ examples/presentation/content/presentation/s5/print.css
25
+ examples/presentation/content/presentation/s5/s5-core.css
26
+ examples/presentation/content/presentation/s5/slides.css
27
+ examples/presentation/content/presentation/s5/slides.js
28
+ examples/presentation/layouts/presentation.txt
29
+ examples/presentation/templates/_code_partial.erb
30
+ examples/presentation/templates/presentation.erb
31
+ examples/tumblog/Sitefile
32
+ examples/tumblog/content/css/tumblog.css
33
+ examples/tumblog/content/images/tumblog/permalink.gif
34
+ examples/tumblog/content/images/tumblog/rss.gif
35
+ examples/tumblog/content/tumblog/200806/the-noble-chicken/index.txt
36
+ examples/tumblog/content/tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/index.txt
37
+ examples/tumblog/content/tumblog/200807/mad-city-chickens/index.txt
38
+ examples/tumblog/content/tumblog/200807/the-wisdom-of-the-dutch/index.txt
39
+ examples/tumblog/content/tumblog/200807/up-a-tree/index.txt
40
+ examples/tumblog/content/tumblog/index.txt
41
+ examples/tumblog/content/tumblog/rss.txt
42
+ examples/tumblog/layouts/tumblog/default.txt
43
+ examples/tumblog/layouts/tumblog/post.txt
44
+ examples/tumblog/lib/tumblog_helper.rb
45
+ examples/tumblog/tasks/tumblog.rake
46
+ examples/tumblog/templates/atom_feed.erb
47
+ examples/tumblog/templates/tumblog/conversation.erb
48
+ examples/tumblog/templates/tumblog/link.erb
49
+ examples/tumblog/templates/tumblog/photo.erb
50
+ examples/tumblog/templates/tumblog/post.erb
51
+ examples/tumblog/templates/tumblog/quote.erb
52
+ examples/webby/Sitefile
53
+ examples/webby/content/communicate/index.txt
54
+ examples/webby/content/css/background.gif
55
+ examples/webby/content/css/blueprint/print.css
56
+ examples/webby/content/css/blueprint/screen.css
57
+ examples/webby/content/css/coderay.css
58
+ examples/webby/content/css/site.css
59
+ examples/webby/content/css/uv/twilight.css
60
+ examples/webby/content/index.txt
61
+ examples/webby/content/learn/index.txt
62
+ examples/webby/content/reference/index.txt
63
+ examples/webby/content/release-notes/index.txt
64
+ examples/webby/content/release-notes/rel-0-9-0/index.txt
65
+ examples/webby/content/release-notes/rel-0-9-1/index.txt
66
+ examples/webby/content/release-notes/rel-0-9-2/index.txt
67
+ examples/webby/content/release-notes/rel-0-9-3/index.txt
68
+ examples/webby/content/robots.txt
69
+ examples/webby/content/script/jquery.corner.js
70
+ examples/webby/content/script/jquery.js
71
+ examples/webby/content/sitemap.txt
72
+ examples/webby/content/tips_and_tricks/index.txt
73
+ examples/webby/content/tutorial/index.txt
74
+ examples/webby/content/user-manual/index.txt
75
+ examples/webby/layouts/default.txt
76
+ examples/webby/templates/page.erb
77
+ examples/website/Sitefile
78
+ examples/website/content/css/blueprint/ie.css
79
+ examples/website/content/css/blueprint/plugins/buttons/icons/cross.png
80
+ examples/website/content/css/blueprint/plugins/buttons/icons/key.png
81
+ examples/website/content/css/blueprint/plugins/buttons/icons/tick.png
82
+ examples/website/content/css/blueprint/plugins/buttons/readme.txt
83
+ examples/website/content/css/blueprint/plugins/buttons/screen.css
84
+ examples/website/content/css/blueprint/plugins/fancy-type/readme.txt
85
+ examples/website/content/css/blueprint/plugins/fancy-type/screen.css
86
+ examples/website/content/css/blueprint/plugins/link-icons/icons/doc.png
87
+ examples/website/content/css/blueprint/plugins/link-icons/icons/email.png
88
+ examples/website/content/css/blueprint/plugins/link-icons/icons/external.png
89
+ examples/website/content/css/blueprint/plugins/link-icons/icons/feed.png
90
+ examples/website/content/css/blueprint/plugins/link-icons/icons/im.png
91
+ examples/website/content/css/blueprint/plugins/link-icons/icons/pdf.png
92
+ examples/website/content/css/blueprint/plugins/link-icons/icons/visited.png
93
+ examples/website/content/css/blueprint/plugins/link-icons/icons/xls.png
94
+ examples/website/content/css/blueprint/plugins/link-icons/readme.txt
95
+ examples/website/content/css/blueprint/plugins/link-icons/screen.css
96
+ examples/website/content/css/blueprint/plugins/rtl/readme.txt
97
+ examples/website/content/css/blueprint/plugins/rtl/screen.css
98
+ examples/website/content/css/blueprint/print.css
99
+ examples/website/content/css/blueprint/screen.css
100
+ examples/website/content/css/blueprint/src/forms.css
101
+ examples/website/content/css/blueprint/src/grid.css
102
+ examples/website/content/css/blueprint/src/grid.png
103
+ examples/website/content/css/blueprint/src/ie.css
104
+ examples/website/content/css/blueprint/src/print.css
105
+ examples/website/content/css/blueprint/src/reset.css
106
+ examples/website/content/css/blueprint/src/typography.css
107
+ examples/website/content/css/coderay.css
108
+ examples/website/content/css/site.css
109
+ examples/website/content/index.txt
110
+ examples/website/layouts/default.txt
111
+ examples/website/lib/breadcrumbs.rb
112
+ examples/website/templates/_partial.erb
113
+ examples/website/templates/page.erb
114
+ lib/webby.rb
115
+ lib/webby/apps.rb
116
+ lib/webby/apps/generator.rb
117
+ lib/webby/apps/main.rb
118
+ lib/webby/auto_builder.rb
119
+ lib/webby/builder.rb
120
+ lib/webby/core_ext/enumerable.rb
121
+ lib/webby/core_ext/hash.rb
122
+ lib/webby/core_ext/kernel.rb
123
+ lib/webby/core_ext/string.rb
124
+ lib/webby/core_ext/time.rb
125
+ lib/webby/filters.rb
126
+ lib/webby/filters/basepath.rb
127
+ lib/webby/filters/erb.rb
128
+ lib/webby/filters/haml.rb
129
+ lib/webby/filters/markdown.rb
130
+ lib/webby/filters/maruku.rb
131
+ lib/webby/filters/outline.rb
132
+ lib/webby/filters/sass.rb
133
+ lib/webby/filters/slides.rb
134
+ lib/webby/filters/textile.rb
135
+ lib/webby/filters/tidy.rb
136
+ lib/webby/filters/wiki_words.rb
137
+ lib/webby/helpers.rb
138
+ lib/webby/helpers/capture_helper.rb
139
+ lib/webby/helpers/coderay_helper.rb
140
+ lib/webby/helpers/graphviz_helper.rb
141
+ lib/webby/helpers/tag_helper.rb
142
+ lib/webby/helpers/tex_img_helper.rb
143
+ lib/webby/helpers/ultraviolet_helper.rb
144
+ lib/webby/helpers/url_helper.rb
145
+ lib/webby/journal.rb
146
+ lib/webby/link_validator.rb
147
+ lib/webby/renderer.rb
148
+ lib/webby/resources.rb
149
+ lib/webby/resources/db.rb
150
+ lib/webby/resources/layout.rb
151
+ lib/webby/resources/meta_file.rb
152
+ lib/webby/resources/page.rb
153
+ lib/webby/resources/partial.rb
154
+ lib/webby/resources/resource.rb
155
+ lib/webby/resources/static.rb
156
+ lib/webby/stelan/mktemp.rb
157
+ lib/webby/stelan/paginator.rb
158
+ lib/webby/tasks/build.rake
159
+ lib/webby/tasks/create.rake
160
+ lib/webby/tasks/deploy.rake
161
+ lib/webby/tasks/growl.rake
162
+ lib/webby/tasks/validate.rake
163
+ spec/core_ext/hash_spec.rb
164
+ spec/core_ext/string_spec.rb
165
+ spec/core_ext/time_spec.rb
166
+ spec/data/hooligans/bad_meta_data_1.txt
167
+ spec/data/hooligans/bad_meta_data_2.txt
168
+ spec/data/html/anchor.html
169
+ spec/data/html/external.html
170
+ spec/data/html/invalid-relative.html
171
+ spec/data/html/relative-anchor.html
172
+ spec/data/html/relative-invalid-anchor.html
173
+ spec/data/html/relative.html
174
+ spec/data/outline/basic.out
175
+ spec/data/outline/basic.txt
176
+ spec/data/outline/no_clobber.out
177
+ spec/data/outline/numbering.out
178
+ spec/data/outline/numbering_only.out
179
+ spec/data/outline/toc_range_1.out
180
+ spec/data/outline/toc_range_2.out
181
+ spec/data/outline/toc_style.out
182
+ spec/data/site/Sitefile
183
+ spec/data/site/content/_partial.txt
184
+ spec/data/site/content/about.txt
185
+ spec/data/site/content/bio.txt
186
+ spec/data/site/content/contact.txt
187
+ spec/data/site/content/css/coderay.css
188
+ spec/data/site/content/css/site.css
189
+ spec/data/site/content/css/tumblog.css
190
+ spec/data/site/content/images/tumblog/permalink.gif
191
+ spec/data/site/content/images/tumblog/rss.gif
192
+ spec/data/site/content/index.txt
193
+ spec/data/site/content/photos.txt
194
+ spec/data/site/content/tumblog/200806/the-noble-chicken/index.txt
195
+ spec/data/site/content/tumblog/200807/historical-perspectives-on-the-classic-chicken-joke/index.txt
196
+ spec/data/site/content/tumblog/200807/mad-city-chickens/index.txt
197
+ spec/data/site/content/tumblog/200807/the-wisdom-of-the-dutch/index.txt
198
+ spec/data/site/content/tumblog/200807/up-a-tree/index.txt
199
+ spec/data/site/content/tumblog/index.txt
200
+ spec/data/site/content/tumblog/rss.txt
201
+ spec/data/site/layouts/default.txt
202
+ spec/data/site/layouts/tumblog/default.txt
203
+ spec/data/site/layouts/tumblog/post.txt
204
+ spec/data/site/lib/breadcrumbs.rb
205
+ spec/data/site/lib/tumblog_helper.rb
206
+ spec/data/site/tasks/tumblog.rake
207
+ spec/data/site/templates/_partial.erb
208
+ spec/data/site/templates/atom_feed.erb
209
+ spec/data/site/templates/page.erb
210
+ spec/data/site/templates/presentation.erb
211
+ spec/data/site/templates/tumblog/conversation.erb
212
+ spec/data/site/templates/tumblog/link.erb
213
+ spec/data/site/templates/tumblog/photo.erb
214
+ spec/data/site/templates/tumblog/post.erb
215
+ spec/data/site/templates/tumblog/quote.erb
216
+ spec/spec.opts
217
+ spec/spec_helper.rb
218
+ spec/webby/apps/generator_spec.rb
219
+ spec/webby/apps/main_spec.rb
220
+ spec/webby/filters/basepath_spec.rb
221
+ spec/webby/filters/maruku_spec.rb
222
+ spec/webby/filters/outline_spec.rb
223
+ spec/webby/filters/textile_spec.rb
224
+ spec/webby/helpers/capture_helper_spec.rb
225
+ spec/webby/link_validator_spec.rb
226
+ spec/webby/renderer_spec.rb
227
+ spec/webby/resources/db_spec.rb
228
+ spec/webby/resources/layout_spec.rb
229
+ spec/webby/resources/meta_file_spec.rb
230
+ spec/webby/resources/page_spec.rb
231
+ spec/webby/resources/partial_spec.rb
232
+ spec/webby/resources/resource_spec.rb
233
+ spec/webby/resources/static_spec.rb
234
+ spec/webby/resources_spec.rb
235
+ tasks/ann.rake
236
+ tasks/bones.rake
237
+ tasks/gem.rake
238
+ tasks/git.rake
239
+ tasks/manifest.rake
240
+ tasks/mswin32.rake
241
+ tasks/notes.rake
242
+ tasks/post_load.rake
243
+ tasks/rdoc.rake
244
+ tasks/rubyforge.rake
245
+ tasks/setup.rb
246
+ tasks/spec.rake
247
+ tasks/svn.rake
248
+ tasks/test.rake
249
+ tasks/website.rake