Instiki 0.16.6
Fix an incompatiblity between form_spam_protect and IE7. (Thanks to Jason Blevins) Roll a new version.
This commit is contained in:
parent
681065631c
commit
ec7141942b
25
CHANGELOG
25
CHANGELOG
|
@ -1,3 +1,28 @@
|
||||||
|
* 0.16.6
|
||||||
|
|
||||||
|
New Features:
|
||||||
|
* More colour schemes: blue, brown, scarlet red, and plum.
|
||||||
|
(From Jason Blevins)
|
||||||
|
* History Pages: created a history page for each wiki page.
|
||||||
|
Link to it and to the "Diff" page from "Recently Revised".
|
||||||
|
(from Jason Blevins)
|
||||||
|
* Support for SVG clipping paths
|
||||||
|
(requested by Andrew Stacey)
|
||||||
|
* Updated for itex2MML 1.3.8. (You should
|
||||||
|
upgrade that, as well.) Support for blackboard bold lowercase
|
||||||
|
letters and digits.
|
||||||
|
|
||||||
|
Bugs Fixed:
|
||||||
|
* Fixed several bugs in Maruku, where "greedy" regexps
|
||||||
|
could lead to exponential slowdown on certain inputs.
|
||||||
|
* Fixed a bug in listing/deleting links to uploaded video and
|
||||||
|
audio files.
|
||||||
|
* Fixed some caching bugs.
|
||||||
|
* Removed the defunct list.dsbl.org from anti-spam dnsbl lookups.
|
||||||
|
* Resolved a conflict between form_spam_protect plugin and IE7.
|
||||||
|
(thanks to Jason Blevins)
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------
|
||||||
* 0.16.5: Rails 2.3.2
|
* 0.16.5: Rails 2.3.2
|
||||||
|
|
||||||
* Runs on the Stable Release, Rails 2.3.2.
|
* Runs on the Stable Release, Rails 2.3.2.
|
||||||
|
|
|
@ -258,7 +258,7 @@ module Instiki
|
||||||
module VERSION #:nodoc:
|
module VERSION #:nodoc:
|
||||||
MAJOR = 0
|
MAJOR = 0
|
||||||
MINOR = 16
|
MINOR = 16
|
||||||
TINY = 5
|
TINY = 6
|
||||||
SUFFIX = '(MML+)'
|
SUFFIX = '(MML+)'
|
||||||
PRERELEASE = false
|
PRERELEASE = false
|
||||||
if PRERELEASE
|
if PRERELEASE
|
||||||
|
|
|
@ -69,7 +69,7 @@ module ActionView
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
kode = "var pos=document;while(pos.lastChild.nodeType==1)pos=pos.lastChild;var hiddenfield=document.createElement('input');hiddenfield.setAttribute('type','hidden');hiddenfield.setAttribute('name','_form_key');hiddenfield.setAttribute('value','"+form_key+"');pos.parentNode.appendChild(hiddenfield);"
|
kode = "var pos=document.documentElement;while(pos && pos.lastChild && pos.lastChild.nodeType==1)pos=pos.lastChild;var hiddenfield=document.createElement('input');hiddenfield.setAttribute('type','hidden');hiddenfield.setAttribute('name','_form_key');hiddenfield.setAttribute('value','"+form_key+"');pos.parentNode.appendChild(hiddenfield);null;"
|
||||||
|
|
||||||
max_length = kode.length+1 unless max_length>kode.length
|
max_length = kode.length+1 unless max_length>kode.length
|
||||||
|
|
||||||
|
@ -82,8 +82,8 @@ module ActionView
|
||||||
js = "var kode=\n"+js_wrap_quote(js_dbl_quote(kode),79)
|
js = "var kode=\n"+js_wrap_quote(js_dbl_quote(kode),79)
|
||||||
js = js+"\n;var i,c,x;while(eval(kode));"
|
js = js+"\n;var i,c,x;while(eval(kode));"
|
||||||
js = "function hivelogic_enkoder(){"+js+"}hivelogic_enkoder();"
|
js = "function hivelogic_enkoder(){"+js+"}hivelogic_enkoder();"
|
||||||
js = '<script type="text/javascript">'+"\n/* <![CDATA[ */\n"+js
|
js = '<script type="text/javascript">'+"\n<!--//--><![CDATA[//><!--\n"+js
|
||||||
js = js+"\n/* ]]> */\n</script>\n"
|
js = js+"\n//--><!]]>\n</script>\n"
|
||||||
result = js unless result.length>max_length
|
result = js unless result.length>max_length
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue