similar to: Documentation Error

Displaying 20 results from an estimated 4000 matches similar to: "Documentation Error"

2006 Aug 28
0
bug / infinite loop
Hi. I spent about 10 hours on saturday trying to understand why my blog/Typo was taking more than 500M and then crashing my server. There is a recursive function in redcloth.rb which is not written properly (a variant is in the parameters, but is not even checked. Variant is existing to be checked, not just print a debug...). Here is the patch to prevent this. Please apply them and release
2006 Aug 29
0
Several bug-fixes and improvements(?)
Hey guys, I have been working with RedCloth for the past week or so in order to try and upgrade a University''s blog system (blogs.warwick.ac.uk) to Textile2, having used a bespoke Java-based Textile1 implementation in the past. As such, it''s been an important part of this that it works as much as possible to give the same results for Textile1 code, but with the added features
2007 Jan 23
7
RedCloth and SuperRedCloth
Good day to the parliament of RedCloth followers gathered here. Grave matters at hand!! I''m personally quite unhappy with the state of RedCloth and am reluctant to release the code in the repository. I can''t say if the code works with any confidence because I can''t generate the (Poignant) Guide with the current RedCloth. I know some things are fixed, but I''m
2008 Nov 06
2
redcloth executable removed from gem?
Hello, I have the RedCloth 4.x gem installed on a new machine. I used to use the redcloth command line tool/executable ocassionally. Can anyone clarify if it''s still part of the RedCloth 4.x gem series? Thanks. PS: I checked the sources. And the executable source resides in bin [1]. However, checking the Rakefile that generates the gem package I can''t find any
2007 Apr 25
0
Redcloth bug - Stack overflow in regexp matcher
Hi, I''ve been using the rassmalog static blogging engine and have encountered a stack overflow inside the redcloth regexp matcher. I don''t seem to suffer this error on my Ubuntu (Feisty Fawn) box (with Ruby 1.8.4??), but I do get it on my Gentoo system. Running the following line will generate it (I''ve attached the YAML/redcloth file to this message). $ ruby -ryaml
2007 Mar 24
0
ignored blocks in redcloth
Hello Redclothians, In Redcloth, is there syntax to add something to a wiki block that is not parsed by redcloth? for example: $permission$ h2. title * blah * blah where $permission$ is ignored by redcloth, so it doesnt affect the rendering of wiki syntax -> html, but appears when you edit a page (perk for me would to also have it not appear in the rendered html). Why would anyone want
2007 Dec 04
2
Bug: NoMethodError: private method `gsub'' called for nil:NilClass
Hi there. I''m using RedCloth as part of a social network''s blog system. I came across the following bug when an img tag with the src attribute is inputted, and filter_html is set to true. I have pasted the code sample below. >> require ''RubyGems'' => true >> require ''RedCloth'' => true >>
2005 Nov 22
1
Patches?
I have a few of patches for RC. A quick fix for a bug in clean_html, an improvement to clean_html to sanitize more links, and the addition of "filter_classes" and "filter_ids". What should I do? Email them to someone? why? (sorry, couldn''t avoid it) I actually don''t have separate patches for each, but could do them if needed. The first two are
2006 Aug 04
0
Hard break broken in 3.0.4?
Is :hard_break working in RedCloth 3.0.4? $ ruby -v ruby 1.8.4 (2005-12-24) [i686-linux] $ pwd /lib/ruby/gems/1.8/gems/RedCloth-3.0.4/lib $ irb irb(main):001:0> require ''redcloth'' => true irb(main):002:0> rc = RedCloth.new("h1. Heading\n\n_Not_ heading.") => "h1. Heading\n\n_Not_ heading." irb(main):003:0>
2006 May 04
1
SVK failure trying to sync to redcloth trunk
Hi all, I''m seeing the following failure when trying to sync redcloth/trunk. I also get a 400 Bad Request error with the Eclipse SVN client. Google suggests a naughty proxy might be at work here... Tried curl - i -X OPTIONS, but didn''t see anything strange -- standard webdav enabled stuff. Any ideas? >> svk sync //redcloth/trunk Syncing
2007 Nov 07
0
RedCloth startup?
hello hello.. as i am both developing and using my rails app on my laptop and as i shut it down at least daily (at night - to conserve energy), i had put the ruby startup server command (ruby script/server -d) in a cronjob set to reboot. that way, by the time i opened my browser, rails was already running. presto. problem is, now that im using redcloth (via acts_as_textiled), i get an error on
2007 Aug 29
0
Patch - bug fix for RedCloth when using !image! and :filter_html in combination
RedCloth.new("!image!", [:filter_html]).to_html will cause the following error: "error occurred while evaluating nil.gsub" This patch will fix it. Can you apply this please to next release of RedCloth? Thanks! Tim --- redcloth_old.rb 2007-08-29 17:02:51.537099600 -0600 +++ redcloth.rb 2007-08-29 17:04:34.666099600 -0600 @@ -1115,7 +1115,7 @@
2006 Apr 29
1
Textile to LaTeX
Hello, Is there a patch laying around somewhere to convert Textile to LaTeX? (Instiki did/does this?) Or, better yet, is RedCloth 3.1 still in the pipeline? In ruby-talk 129874 (7 Feb 2005), why the lucky stiff wrote: > > Let me give you a roadmap of what to expect with RedCloth 3 > in the coming months. > > RedCloth 3.1 will focus on getting us diverse outputs.
2008 Mar 23
1
redcloth gem ragel code doesn''t build in jruby
I tried to install RedCloth-3.274 in jruby (trunk) but the install failed when RedCloth tried to build the C code using mkmf: I forget whether SuperRedcloth ever did build in JRuby?? I know Hpricot (which also uses ragel which can compile to Java code) works in JRuby -- with the patch here: https://code.whytheluckystiff.net/hpricot/ticket/131) I might be confusing the two ... FYI: If you
2007 Nov 23
1
SuperRedCloth inserting <pre><code>
I maintain a web application frozen to version Ruby 1.8.6 and RedCloth 3.0.4 Whenever I insert a newline followed by a white space, SuperRedCloth, wraps the text with <pre><code> tags. Say for example I write ############### Hi This is me ############### This piece of text gets translated to <p>Hi</p><pre><code>This is me</code></pre>
2007 Jul 03
0
redcloth 3.0.4 bug
irb(main):001:0> require ''redcloth'' => true irb(main):002:0> RedCloth.new("a^2^+b^2^=c^2^").to_html => "<p>a<sup>2^+b</sup>2<sup>=c</sup>2^</p>" The output is not what I expect at all. Am I missing something or is this actually a bug. -------------- next part -------------- An HTML attachment was scrubbed...
2005 Nov 14
0
New RedCloth repository
Starting with RedCloth 3.1, we''re switching to the `redcloth3'' module in Rubyforge CVS: cvs -d :pserver:anonymous at rubyforge.org:/var/cvs/redcloth login cvs -d :pserver:anonymous at rubyforge.org:/var/cvs/redcloth checkout redcloth3 _why //
2006 Oct 18
0
Versions and gem ?
Hi all, I am using the Textile part of RedCloth for the Manta version of LogiLogi.org, an OS project of mine. Now I was looking at changing the LINK_RE so it allows links without spaces inbetween them like ("te":index.html;"xt":index.txt). Now that''s pretty easy, but still risky because a change in the bracket-order of the LINK_RE in a newer version would wreck it,
2006 Sep 15
1
quotes
Hello! I''m new on this list (and actually pretty new to redcloth also). This e-mail is about the wery fine feature of converting quotes. I''m norwegian, and we have our own qoutes: "?" and "?". I therefore hacked this feature, so it is now in lib/redcloth.rb, around line 404, so I now have: [ /([^\s\[{(>#{PUNCT_Q}][#{PUNCT_Q}]*)"/,
2006 Aug 23
0
emdash vs <del>
Hey guys. Is this a bug or what? >> RedCloth.new("First part -- middle part -- end part.").to_html => "<p>First part <del>- middle part -</del> end part.</p>" But http://textism.com/tools/textile/index.php says the output should be: <p>First part&#8212;middle part&#8212;end part.</p> Thing is, I *want*