search for: garber

Displaying 20 results from an estimated 25 matches for "garber".

Did you mean: farber
2008 Mar 15
8
Now what?
> $ rake test > /usr/local/bin/ruby -Ilib:test "/usr/local/lib/ruby/gems/1.8/gems/ > rake-0.7.3/lib/rake/rake_test_loader.rb" "test/test_formatters.rb" > "test/test_parser.rb" > Loaded suite /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.3/lib/rake/ > rake_test_loader > Started >
2009 Jun 10
3
Problems 4.2 installing on Windows?
I keep an old Windows machine around for making sure that RedCloth Win32 binary gems install. When I try gem update RedCloth, it just installs 4.1.9. Did I do something wrong in the gemspec? Would someone else with a windows machine try it and let me know how it goes? Jason
2007 Aug 23
20
Eliminating bad tests from SuperRedCloth
...all think? Can I start cleaning up test cases to be how they ought to be? I''ll do my research carefully and be testing it with real content (in a university CMS) over the next few months. I want the end result to be as stable, predictable, and intuitive as anyone. Thanks! Jason Garber -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/redcloth-upwards/attachments/20070823/974f1689/attachment.html
2007 Jul 16
6
Advice regarding extending RedCloth
Hello, I am in a bit of a bind. I need to reliably parse mediawiki markup to html, and the only parser that I can find (mediacloth) has a lot to be desired, so I would like to extend something that works and parse mediawiki markup. My question to this list is should I start working on RedCloth or SuperRedCloth or is there a difference as far as extending them? Also does anyone know of a write up
2011 Jan 13
9
spurious <li> generated when list followed by 3
...ml #=> "<ul>\n\t<li>one</li>\n\t<li>two</li>\n\t<li>three</li>\n</ul>\n<li>" # note extra trailing <li> outside <ul> A colleague generated a pull request with a new rspec test that exposes this bug: https://github.com/jgarber/redcloth/pull/1 I checked and the bug is present on master. I just took a look at the ragel code but it''s been quite a while since I''ve used ragel and it''s not quite as easy to parse as Ruby ;-) Seems like li_open in lib/redcloth/formatters/html.rb is being called inc...
2008 Feb 21
5
Question about entities
1.) What is everyone''s preference on NCRs or character entities? Textile 2 uses decimal NCRs, so a less-than character becomes &#60; whereas RedCloth (3.04 and prior) used &lt;. What is your preference? It gets tough because &#39; (a straight single quote) doesn''t have a character entity equivalent. 2.) How do you feel about encoding characters like quotes
2006 Nov 06
5
random mysql error
Does anyone get the following error at random? Mysql::Error: Lost connection to MySQL server during query: <query here> It only happens on my development machine which, unfortunately, is a windows box. It happens like every 10 clicks, but varies. I''ve got MySQL 5. Chad --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed
2008 May 13
4
hard_breaks issues
Hello, I''m new to this list, so first of all, many thanks to RedCloth''s developers, it really helps me in many ruby apps :-) I post here because I''d like to have a clear view on "hard_breaks" related issues. I saw old references on the web and on the archives on this ML, I''d like a fresh view ! It seems that RedCloth 3.0.4 does not handle
2006 Mar 10
5
ActiveLdap and windows.
I thought I might try to create a Rails app to use LDAP authentication. Unfortunately, I can''t figure out how to get the Ruby/LDAP stuff working in my environment (I''m using a windows server). If anyone out there has experience with this, could you dumb it down a little bit for me? -- Posted via http://www.ruby-forum.com/.
2009 Jun 07
1
Close to a 4.2 release; experimenting with Ragel alternatives
...ings (if that''s an english phrase). Could you describe more precisely what you are missing with ragel ? I''m parsing about anything I want with this thing but maybe I''m too dumb to see the walls I''m running into... Gaspard On Sun, Jun 7, 2009 at 12:59 PM, Jason Garber<jg at jasongarber.com> wrote: > I just went through the ticket list and dropped a bunch from the 4.2 > milestone that are just too difficult with Ragel. ?Many of them I''ve poked > at and they''ve left me saying, "how the heck am I supposed to do that!?" &gt...
2008 Jun 13
2
Bug with multiple "!!!"
Hi! I discovered a bug in the latest stable RedCloth release where multiple "!!!" are not handled correctly. The bug seems related to line 1118 in redcloth.rb. Old version: next if prop == ''src'' and attrv !~ /^http/ New version: next if prop == ''src'' and attrv =~ %r{^(?!http)\w+:} Even in the old version, the string "?!?!?" is
2006 Jun 30
0
Interpolation in association conditions broken; broken backwards-compatibility?
...interpolate_sql(@conditions) Was the change (and the fact that it breaks backwards-compatibility) known and announced or is it just an oversight? Once in awhile there''s just no other way to do what this allows (short of :finder_sql, which limits you significantly). Thanks, Jason Garber, Web Programmer Eastern Mennonite University -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060630/fc9a3d82/attachment.html
2008 Jan 07
0
HTML handling in SuperRedCloth
...to know that EM tags need to be within P tags, but not to wrap LI tags in P tags. And do things in DIV tags always need to be in Ps? <div>sometext</div> is perfectly valid, too. I''ll keep working on it, but if you have thoughts on the subject, please share them! Jason Garber -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/redcloth-upwards/attachments/20080107/746a4aa8/attachment-0001.html
2011 Jan 19
3
Installing on CentOS
Hi, I''m trying to install RedCloth on CentOS. It came with ruby 1.8.5 pre-installed so I installed rubygems-1.2.0 since that seemed compatible (later versions require ruby 1.8.6). All looks good but when I try: [root at dev4 rubygems-1.2.0]# gem install RedCloth ERROR: could not find gem RedCloth locally or in a repository Can anyone tell me what I''m missing? Do I need to
2008 Mar 10
3
Only 5 tests out of 376 currently failing!
Good news! SuperRedCloth is down to just five failing tests! I was down to 10 or so in mid-February but then I added test cases from "The official reference manual for Textile 2", which added 97 new tests, many of them failing. I''m happy to say, they''re almost all passing now. Four of these last five I just need to check with you on before I deviate from
2008 Oct 31
4
RedCloth 4.1.0 released with JRuby support
Sorry it took me a week to release the JRuby version. I was out sick most of the week. Thanks a million, Ola Bini, for implementing the Java code! Give it a go: Ruby: gem install RedCloth JRuby: jgem install RedCloth Let me know how it goes for you. Jason
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...in <jackm@dev.mellanox.com> Jack Morgenstein <jackm@mellanox.com> Jack Pham <jackp@codeaurora.org> Jack Steiner <steiner@sgi.com> Jack Wang <jack_wang@usish.com> Jackey Shen <Jackey.Shen@amd.com> Jacob E Keller <jacob.e.keller@intel.com> Jacob Garber <ajtgarber@gmail.com> Jacob Keller <jacob.e.keller@intel.com> Jacob Pan <jacob.jun.pan@linux.intel.com> Jacob Schloss <jacob.schloss@unlimitedautomata.com> Jacob Shin <jacob.shin@amd.com> Jaecheol Lee <jc.lee@samsung.com> Jaeden Amero <jaeden.amero...
2013 May 07
0
[linux-linus test] 17916: regressions - FAIL
...in <jackm@dev.mellanox.com> Jack Morgenstein <jackm@mellanox.com> Jack Pham <jackp@codeaurora.org> Jack Steiner <steiner@sgi.com> Jack Wang <jack_wang@usish.com> Jackey Shen <Jackey.Shen@amd.com> Jacob E Keller <jacob.e.keller@intel.com> Jacob Garber <ajtgarber@gmail.com> Jacob Keller <jacob.e.keller@intel.com> Jacob Pan <jacob.jun.pan@linux.intel.com> Jacob Schloss <jacob.schloss@unlimitedautomata.com> Jacob Shin <jacob.shin@amd.com> Jaecheol Lee <jc.lee@samsung.com> Jaeden Amero <jaeden.amero...
2013 Jun 16
0
[linux-linus test] 18150: regressions - FAIL
...in <jackm@dev.mellanox.com> Jack Morgenstein <jackm@mellanox.com> Jack Pham <jackp@codeaurora.org> Jack Steiner <steiner@sgi.com> Jack Wang <jack_wang@usish.com> Jackey Shen <Jackey.Shen@amd.com> Jacob E Keller <jacob.e.keller@intel.com> Jacob Garber <ajtgarber@gmail.com> Jacob Keller <jacob.e.keller@intel.com> Jacob Pan <jacob.jun.pan@linux.intel.com> Jacob Schloss <jacob.schloss@unlimitedautomata.com> Jacob Shin <jacob.shin@amd.com> Jaecheol Lee <jc.lee@samsung.com> Jaeden Amero <jaeden.amero...
2013 Jun 23
0
[linux-linus test] 18181: regressions - trouble: broken/fail/pass
...in <jackm@dev.mellanox.com> Jack Morgenstein <jackm@mellanox.com> Jack Pham <jackp@codeaurora.org> Jack Steiner <steiner@sgi.com> Jack Wang <jack_wang@usish.com> Jackey Shen <Jackey.Shen@amd.com> Jacob E Keller <jacob.e.keller@intel.com> Jacob Garber <ajtgarber@gmail.com> Jacob Keller <jacob.e.keller@intel.com> Jacob Pan <jacob.jun.pan@linux.intel.com> Jacob Schloss <jacob.schloss@unlimitedautomata.com> Jacob Shin <jacob.shin@amd.com> Jaecheol Lee <jc.lee@samsung.com> Jaeden Amero <jaeden.amero...