search for: deveiate

Displaying 7 results from an estimated 7 matches for "deveiate".

Did you mean: delegate
2006 Aug 15
0
BlueCloth throws exceptions! Be careful! (was: auto_link fails to handle tilda''s (~) and markdown fails to handle acute accent (`))
.../05, Sam Joseph <sam@neurogrid.com> wrote: > markdown couldn''t handle an acute accent (`) e.g. > > Hawai`i > > It seems that acute accents (or backticks) in Markdown signify code > segments, and it seems there''s an open ticket for this: > > http://www.deveiate.org/projects/BlueCloth/ticket/24 I would just like to bring this to everyone''s attention again because this problem just came up on my own site. The entire front page was brought down by a single post which had the string "``" in it, although the "Hawai`i" example abov...
2005 Dec 16
0
auto_link fails to handle tilda''s (~) and markdown fails to handle acute accent (`)
...handle urls with tildas in them (~) e.g. http://www.hawaii.edu/~name/index.html and markdown couldn''t handle an acute accent (`) e.g. Hawai`i It seems that acute accents (or backticks) in Markdown signify code segments, and it seems there''s an open ticket for this: http://www.deveiate.org/projects/BlueCloth/ticket/24 However, regarding auto_link I found where I could fix this in actionpack-1.11.0\lib\action_view\helpersTextHelper.rb changing the following line: ([\w]+[=?&\/.-]?)* # url segment to this ([\w~]+[=?&\/.-]?)* # url segment I can see that there are a numb...
2007 Jan 05
0
webgen 0.4.0 released
...rb installation method: $ ruby setup.rb config $ ruby setup.rb setup $ ruby setup.rb install Or all commands together via $ rake install The above listed methods also work when installing on Windows. [1]: http://cmdparse.rubyforge.org [2]: http://redcloth.rubyforge.org [3]: http://www.deveiate.org [4]: http://rmagick.rubyforge.org [5]: http://builder.rubyforge.org [6]: http://exifr.rubyforge.org [7]: http://coderay.rubychan.de
2006 Jan 02
0
problem with ruby gem activate when trying to run actionpack tests
...; >http://www.hawaii.edu/~name/index.html > >and markdown couldn''t handle an acute accent (`) e.g. > >Hawai`i > >It seems that acute accents (or backticks) in Markdown signify code >segments, and it seems there''s an open ticket for this: > >http://www.deveiate.org/projects/BlueCloth/ticket/24 > >However, regarding auto_link I found where I could fix this in >actionpack-1.11.0\lib\action_view\helpersTextHelper.rb > >changing the following line: > >([\w]+[=?&\/.-]?)* # url segment >to this > >([\w~]+[=?&\/.-]?)* # url...
2005 Dec 15
5
Rails vs. J2EE: Sharing state in memory?
Hi, I am from a Java background and pretty new to Ruby and Rails. What I am wondering is how I would shared state accross requests and users without involving IO, i.e. use memory. My current understanding is that for each request a new process ist spawn and therefore it gets its own memory. So no sharing can take place between requests? Do I understand this right? For those who know
2006 Aug 24
10
MongrelCluster - How can I make a request to a specific mongrel instance?
In our app we''ve a number of singleton ruby classes that cache static data in hashes, things like string values, system config params, etc). In a webbrick environment this works ok, but we find in production we have a problem because we have 4 caches, one for each mongrel instance. This also isn''t a BIG problem, but our cache.reload() methods are kinda useless now, because we
2006 Jul 29
29
Dynamically generating 10k pages per second
Hi, Anyone got an idea of how many web and database servers I''d need to push out 10,000 dynamic pages per second? Fairly simple pages and database queries. I''d appreciate recommendations for hardware. The clients for this project are anticipating large amounts of burst traffic. Joe