added options to disable quoting and open links in new tabs

fixed a some regressions
removed some dead code
fixed messages about constants being re-defined
This commit is contained in:
Sam
2013-03-12 20:06:58 -07:00
parent 5a2d8e344f
commit 38f185355d
16 changed files with 64 additions and 2072 deletions

View File

@@ -1,10 +1,13 @@
module Discourse
module VERSION #:nodoc:
MAJOR = 0
MINOR = 8
TINY = 3
PRE = nil
# work around reloader
unless defined? ::Discourse::VERSION
module VERSION #:nodoc:
MAJOR = 0
MINOR = 8
TINY = 3
PRE = nil
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end
end
end