junebug-wiki 0.0.35 → 0.0.36
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.txt +4 -0
- data/RELEASE_NOTES.txt +7 -0
- data/deploy/config.yml +1 -0
- data/lib/junebug/version.rb +1 -1
- data/lib/junebug/views.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/RELEASE_NOTES.txt
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
= 0.0.36 2007-12-08
|
|
2
|
+
|
|
3
|
+
ASCIIMathML support is made optional, since it inserts annoying warning messages on browsers that do not support mathml (like safari).
|
|
4
|
+
|
|
5
|
+
To enable MathML support, add "mathml_enable: true" to config.yml.
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
= 0.0.35 2007-12-07
|
|
2
9
|
|
|
3
10
|
This release includes some css changes, so don't forget to rake update:everything. Read the updating page at http://www.junebugwiki.com/JunebugUpdating
|
data/deploy/config.yml
CHANGED
data/lib/junebug/version.rb
CHANGED
data/lib/junebug/views.rb
CHANGED
|
@@ -12,7 +12,7 @@ module Junebug::Views
|
|
|
12
12
|
link :href=>'http://yui.yahooapis.com/2.4.0/build/reset-fonts-grids/reset-fonts-grids.css', :type=>'text/css', :rel=>'stylesheet'
|
|
13
13
|
link :href=>'http://yui.yahooapis.com/2.4.0/build/base/base-min.css', :type=>'text/css', :rel=>'stylesheet'
|
|
14
14
|
link :href=>'/style/base.css', :type=>'text/css', :rel=>'stylesheet'
|
|
15
|
-
script :type=>'text/javascript', :src=>'/javascripts/ASCIIMathML.js'
|
|
15
|
+
script( :type=>'text/javascript', :src=>'/javascripts/ASCIIMathML.js') if Junebug.config['mathml_enable']
|
|
16
16
|
link :href=>Junebug.config['feedurl'], :rel => "alternate", :title => "Recently Updated Pages", :type => "application/atom+xml"
|
|
17
17
|
}
|
|
18
18
|
body {
|
metadata
CHANGED