search for: unescape

Displaying 20 results from an estimated 258 matches for "unescape".

2018 Dec 26
1
Issue when building R-parched_2018-12-26
...extra left brace somewhere; or is the problem on my end? My installed Perl is Strawberry 5.28.0.1-64 bit. Thank you, Avi (Sent from an iPhone, so my apologies if HTML also comes through) ------ Making HTML documentation ------ creating doc/manual/version.texi creating doc/manual/R-FAQ.html Unescaped left brace in regex is deprecated here (and will be fatal in Perl 5.32), passed through in regex; marked by <-- HERE in m/^\s+@([[:alnum:]][[:alnum:]\-]*)({ <-- HERE })?\s*/ at C:/Rtools/texinfo5/Texinfo/Parser.pm line 5441. Unescaped left brace in regex is deprecated here (and will be fata...
2006 Nov 22
1
to_absolute_uri typo in 0.6.3?
...;bang=boom=1|a=|b=|c= (etc.) Interestingly, Mechanize 0.6.2 handled this OK, but in 0.6.3 this causes a URI::InvalidURIError exception from URI.parse() in to_absolute_uri in mechanize.rb. I noticed that the new 0.6.3 version of to_absolute_uri starts with: url = URI.parse( URI.unescape(Util.html_unescape(url.to_s.strip)).gsub(/ /, ''%20'') ) unless url.is_a? URI where the old 0.6.2 version started with: url = URI.parse( URI.escape( URI.unescape(url.to_s.strip) )) unless url.is_a? URI It se...
2007 Oct 13
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_xml.c test/trace
...amp;amp; &nbsp;"> + &lt; &gt; &quot; &apos; &amp; &nbsp; </entities> <!-- utf-8 --> @@ -25,8 +25,8 @@ cruft <?xml version="1.0" encoding="UTF- <no_comment_inside_text>comment text</no_comment_inside_text> <!-- unescaped entities --> -<unescaped entities="> ' &"> - > " ' & +<unescaped entities="> ' & ??(nbsp)"> + > " ' & ??(nbsp) </unescaped> <!-- missing end element --> diff --git a/test/trace/xml-parse-6.sw...
2006 Aug 07
1
DirHandler in surplus slashing / unrequited unescaping
...ges/All//gtk -2.10.1.tbz2 HTTP/1.1..Host: m..Accept-Encoding: identity..Range: bytes=-3000.. .. which does look a little messed. theres a space between gtk and -. the package is actually gtk+-. presumably this line in DirHandler#send_dir_listing is causing it: child = HttpRequest.unescape(child) maybe it should only unescape this for the displayed version? eg within the <a></a>? i havent read over everything to look at the overall escaping strategy, but its what i will do for now, so that it stops mangling the filename.. cheers, C -------------- next part -------------...
2008 May 13
1
Problem with odfWeave: Unescaped '<' not allowed in attributes values
Dear R users, I am having a problem with odfWeave: when I run odfWeave('notes.odt', 'notes_out.odt') I get a bunch of errors that start with "Unescaped '<' not allowed in attributes values" in post-processing: <snip> ... 'content_1.xml' has been Sweaved Removing content.xml Post-processing the contents Unescaped '<' not allowed in attributes values attributes construct error error parsing attrib...
2006 Dec 30
0
Change I needed to make in to_absolute_uri for unescaped URL separator characters
Mechanize is great! It''s better than anything I was expecting to be out there, and the syntax is really nice. I had a bit of a problem though -- following URLs with commas. The code in to_absolute_uri works great for spaces, but some pages I was working on had URLs with unescaped commas that URI rejected when I tried to click() on them. So I changed the first statement in Mechanize#to_absolute_uri to: url = URI.parse( URI.unescape( Util.html_unescape(url.to_s.strip)).gsub(/[ ,]/){|m| ''%%%X'' % m[0]} ) unless url.is_a? URI I...
2013 Nov 08
1
Dict client unescaping sieve script
I've created a dict service that listens on a unix socket and answers queries for sieve scripts (among other things). As I understand it (from the source code at http://hg.dovecot.org/dovecot-2.2/file/tip/src/lib-dict/dict-client.c), the dict client will unescape \001n, \001t, and \0011 to line feeds, tabs, and the \001 character respectively. In my service I am escaping those three characters in my response (if I don't escape them the line-oriented nature of the protocol causes a failure for multiline sieve scripts) but every time LDA attempts to...
2006 Jan 22
0
Escaping and Unescaping text in ERb
...I''ve also seen many people asking what ''h'' means, which makes me concerned that it''s missing from quite a few places where it should be. I would rather have a format like this... <%= unsafe(link_to :action=>''something'') %> # outputs unescaped html <%= object.unsafe_string %> #escaped html That way if I forget to put an ''h'' on my output the worst that can happen is that it will render improperly. If you really want to over ride that behavior, you can go a head and let the raw text out. But since it would ha...
2010 Mar 02
0
how to get unescaped value of request.url AS-IS?
hi guys, Calling request.url returns "http://gozila-underground.com/search? search%5Bby_keyword%5D=&commit=Search" which is an escaped version of "http://gozila-underground.com:3000/search? search[by_keyword]=&commit=Search". In ruby on rails, how to get the unescaped value of request.url (AS IS)? thank you -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, se...
2010 Aug 30
2
S4 Method Rd Warning
Hello, I am using R 2.11.0. I have a curious problem where I get a warning in R CMD check which is seemingly not relevant to my Rd file. The warning says : * checking Rd \usage sections ... WARNING Bad \usage lines found in documentation object 'enrichmentCalc': <unescaped bksl>S4method{enrichmentCalc}{GenomeDataList, BSgenome}(rs, organism, seqLen=NULL, ...) <unescaped bksl>S4method{enrichmentCalc}{GenomeData, BSgenome}(rs, organism, seqLen=NULL, do.warn=FALSE) <unescaped bksl>S4method{enrichmentCalc}{GRanges, BSgenome}(rs, organism, seqLen=N...
2010 Aug 30
2
S4 Method Rd Warning
Hello, I am using R 2.11.0. I have a curious problem where I get a warning in R CMD check which is seemingly not relevant to my Rd file. The warning says : * checking Rd \usage sections ... WARNING Bad \usage lines found in documentation object 'enrichmentCalc': <unescaped bksl>S4method{enrichmentCalc}{GenomeDataList, BSgenome}(rs, organism, seqLen=NULL, ...) <unescaped bksl>S4method{enrichmentCalc}{GenomeData, BSgenome}(rs, organism, seqLen=NULL, do.warn=FALSE) <unescaped bksl>S4method{enrichmentCalc}{GRanges, BSgenome}(rs, organism, seqLen=N...
2007 Jun 18
7
Testing for cross site scripting, etc.
Being new to testing and ruby, are there "standard" tests that can be done that test for things like cross site scripting and friends? If not, anyone have ideas on what I might do about testing those sorts of things? I''ll be using rails, also. Mike B. ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging
2007 Oct 14
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_xml.c libswfdec/swfdec_xml.h
..._new->left_margin = text->text->left_margin / 20; text->format_new->right_margin = text->text->right_margin / 20; commit eecddf540e4e6cc66af293061e2f1d58fa9e0843 Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Sun Oct 14 14:11:42 2007 +0300 Make swfdec_xml_unescape output &nbsp; different based on the version diff --git a/libswfdec/swfdec_html_parser.c b/libswfdec/swfdec_html_parser.c index 3c0ca04..cba7aa7 100644 --- a/libswfdec/swfdec_html_parser.c +++ b/libswfdec/swfdec_html_parser.c @@ -339,7 +339,7 @@ swfdec_text_field_movie_html_parse_text (ParserD...
2011 May 16
3
Problem with GET args and UTF-8 encoding (output of Rack::Utils.unescape() ?)
Hi folks, Here''s my basic issue, hopefully this is clear. I''m trying to submit some UTF-8 values in my query string, but they are coming out mangled on the other end. It *seems* like the problem is that what Rack::Utils.unescape() pushes out gets converted to UTF-8 somewhere in the chain (using 3.0.7, and Ruby 1.9.2, by the way), and it''s mangling characters which are two bytes (for example, "%20," which is space and a one byte character, gets converted fine). I feel like I''ve almost figured th...
2005 Dec 30
0
Unescaped selection options
Been having a tough time finding any info on this subject (somewhat suprising actually). Looking thru the code, Rails automatically html_escape''s all option values and while this is generally good, I have some categories that have HTML embedded in them and therefore am looking for a way to turn this off. So far I have found none and am writing my own code to do this. If anyone knows
2002 Aug 04
0
Unescape(aCrumb
This is an auto-generated response designed to answer your question as quickly as possible. Please note that you will not receive a reply if you respond directly to this message. We hope the directions below answer your question. If after following the directions your problem is still unresolved, please click the link to the Hotmail Customer Support form at the end of this message to submit your
2006 Jul 28
1
escape/unescape attribution
Not filing this as a bug, but simply as confusion. In the mongrel.rb, you have a comment that says this about the self.escape method: # Performs URI escaping so that you can construct proper # query strings faster. Use this rather than the cgi.rb # version since it''s faster. (Stolen from Camping). def self.escape(s) s.to_s.gsub(/([^ a-zA-Z0-9_.-]+)/n) {
2007 Oct 31
0
5 commits - libswfdec/swfdec_as_object.c libswfdec/swfdec_audio.c libswfdec/swfdec_sound.c libswfdec/swfdec_xml.c
...++++++------------- libswfdec/swfdec_xml.c | 2 +- 4 files changed, 22 insertions(+), 22 deletions(-) New commits: commit cd8a1b3eb4192c51b5787f53071e17270b5d2cca Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Wed Oct 31 12:08:50 2007 +0200 Fix a mistake in swfdec_xml_unescape leading to invalid UTF-8 on version 5 diff --git a/libswfdec/swfdec_xml.c b/libswfdec/swfdec_xml.c index f447e46..37174bc 100644 --- a/libswfdec/swfdec_xml.c +++ b/libswfdec/swfdec_xml.c @@ -133,7 +133,7 @@ swfdec_xml_unescape_len (SwfdecAsContext *cx, const char *orginal, if (!g_ascii_strn...
2006 Jun 21
7
acts_as_taggable and paginate?
Hi there, I''ve been trying to paginate over a list of members that all share a tag in common using the acts_as_taggable plugin. The regular way of paginating over a collection doesn''t seem to work with acts_as_taggable. Here''s what my method looks like that takes in a tag name, finds all the members that share the tag and then displays all the members. Nothing too fancy
2014 Oct 31
0
[PATCH 2/3] fish: basic tests for readline escaping
...end.h> +#include <rl.h> + +int +eq_bracket (char *(*fn)(char*), char * in, char * out) +{ + char * q = fn(in); + return (q != NULL) && STREQ(q, out); +} + +int +test_empty_escape (void) +{ + return eq_bracket(bs_escape_filename, "", ""); +} + +int +test_empty_unescape (void) +{ + return eq_bracket(bs_unescape_filename, "", ""); +} + +int +test_singlespace_escape (void) +{ + return eq_bracket(bs_escape_filename, " ", "\\ "); +} + +int +test_singlespace_unescape (void) +{ + return eq_bracket(bs_unescape_filename, "\\...