search for: attrv

Displaying 5 results from an estimated 5 matches for "attrv".

Did you mean: attr
2005 Nov 22
1
Patches?
...bugs are still there. This fixes a bug that caused clean_html to die on me. @@ -1114,8 +1120,8 @@ q2 = ( q != '''' ? q : ''\s'' ) if raw[3] =~ /#{prop}\s*=\s*#{q}([^#{q2}]+)# {q}/i attrv = $1 - pcs << "#{prop}=\"#{$1.gsub(''"'', ''\\"'')}\"" + pcs << "#{prop}=\"#{attrv.gsub(''"'', ''\ \"'')}\""...
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 not processed correctly and gives only "??" as output. The new version crashed with an error. Anyone an idea? Cheers, Markus
2007 Aug 29
0
Patch - bug fix for RedCloth when using !image! and :filter_html in combination
...se 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 @@ if raw[3] =~ /#{prop}\s*=\s*#{q}([^#{q2}]+)#{q}/i attrv = $1 next if prop == ''src'' and attrv =~ %r{^(?!http)\w+:} - pcs << "#{prop}=\"#{$1.gsub(''"'', ''\\"'')}\"" + pcs << &quo...
2006 Jan 27
10
html special characters. h() failure.
I was trying to convert a some text with the (r) character it so it replaced character \xAE with &reg; h(@item.description) didn''t do anything. I need to use @item.description.grep(/\xAE/,''&reg;'') for it to work. I think the h() function should be able to do all the codes that are available. Regards Neil.
2009 Dec 30
4
[PATCH 1/3] nv50: remove vtxbuf stateobject after a referenced vtxbuf is mapped
- This avoids problematic "reloc'ed while mapped" messages and some associated corruption as well. Signed-off-by: Maarten Maathuis <madman2003 at gmail.com> --- src/gallium/drivers/nouveau/nouveau_screen.c | 21 +++++++++++++++++++++ src/gallium/drivers/nouveau/nouveau_screen.h | 3 +++ src/gallium/drivers/nouveau/nouveau_stateobj.h | 13 +++++++++++++