junebug-wiki 0.0.35 → 0.0.36

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ = 0.0.36 2007-12-08
2
+
3
+ * Make ASCIIMathML support optional (annoying warning msgs on safari)
4
+
1
5
  = 0.0.35 2007-12-07
2
6
 
3
7
  * Added support for YUI 2.4
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
@@ -1,5 +1,6 @@
1
1
  # this what you want to be the default wiki page
2
2
  startpage: Welcome_to_Junebug
3
+ mathml_enable: false
3
4
 
4
5
  # server configuration
5
6
  host: 127.0.0.1
@@ -2,7 +2,7 @@ module Junebug #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 35
5
+ TINY = 36
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: junebug-wiki
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.35
6
+ version: 0.0.36
7
7
  date: 2007-12-08 00:00:00 -08:00
8
8
  summary: Junebug is a minimalist ruby wiki running on Camping.
9
9
  require_paths: