search for: htmlparser

Displaying 14 results from an estimated 14 matches for "htmlparser".

Did you mean: htmlparse
2010 Oct 22
0
NUT and AsciiDoc (was: Next AsciiDoc release)
...t_dir) > File "/home/srackham/bin/a2x", line 509, in copy_resources > lambda attrs: attrs.get('type') == 'text/css') > File "/home/srackham/bin/a2x", line 240, in find_resources > parser.feed(open(f).read()) > File "/usr/lib/python2.6/HTMLParser.py", line 108, in feed > self.goahead(0) > File "/usr/lib/python2.6/HTMLParser.py", line 148, in goahead > k = self.parse_starttag(i) > File "/usr/lib/python2.6/HTMLParser.py", line 249, in parse_starttag > attrvalue = self.unescape(attrvalue) >...
2014 Dec 16
2
Replace atoi and atol with strtol strtoul:Need Help
Hello , I came across this function *HtmlParser::decode_entities(string &s)* in *xapian-application/omega/htmlparse.cc* which basically does is extract hex value if any or extract number.For extracting number atoi is used and value returned by it is stored in variable "val" , I think so replacing atoi with strtoul would be useful h...
2006 Oct 17
0
[682] trunk/wxruby2/doc/textile/htmlwindow.txtl: Fix some little formatting errors that were causing the page to be unreadable
...ot;cx"> </span><span class="lines">@@ -251,7 +251,7 @@ </span><span class="cx"> </span><span class="cx"> |*HTML_OPEN*|Open the URL.| </span><span class="cx"> |*HTML_BLOCK*|Deny access to the URL, "HtmlParser#open_url":htmlparser.html#HtmlParser_openurl will return NULL.| </span><del>-|*HTML_REDIRECT*|Don''t open _url_, redirect to anotherURL. OnOpeningURL must fill _*redirect_ with the new URL. OnOpeningURL willbe called again on returned URL.| </del><ins>+|*HTML_RE...
2004 Aug 06
5
Ices2 compile error - streaming ogg!
...========================================= -rw-r--r-- 1 root root 2435 Feb 28 13:22 debugXML.h -rw-r--r-- 1 root root 4146 Feb 28 13:22 encoding.h -rw-r--r-- 1 root root 3123 Feb 28 13:22 entities.h -rw-r--r-- 1 root root 2936 Feb 28 13:22 HTMLparser.h -rw-r--r-- 1 root root 800 Feb 28 13:22 HTMLtree.h lrwxrwxrwx 1 root root 1 May 18 18:02 libxml -> . -rw-r--r-- 1 root root 2551 Feb 28 13:22 nanoftp.h -rw-r--r-- 1 root root 920 Feb 28 13:22 nanohttp.h -rw-r--r-- 1 root r...
2004 Aug 06
1
Ices2 compile error - streaming ogg!
...t; > > -rw-r--r-- 1 root root 2435 Feb 28 13:22 debugXML.h > > -rw-r--r-- 1 root root 4146 Feb 28 13:22 encoding.h > > -rw-r--r-- 1 root root 3123 Feb 28 13:22 entities.h > > -rw-r--r-- 1 root root 2936 Feb 28 13:22 HTMLparser.h > > -rw-r--r-- 1 root root 800 Feb 28 13:22 HTMLtree.h > > lrwxrwxrwx 1 root root 1 May 18 18:02 libxml -> . > > -rw-r--r-- 1 root root 2551 Feb 28 13:22 nanoftp.h > > -rw-r--r-- 1 root root 920 Feb 28 13:...
2005 Sep 21
2
OT - Tool to pull data from the web?
Hi all; I would like to pull data from some specific web pages that have for sale ads and insert the data into a database. Anyone know ofany tools that can help me with this?
2003 Aug 12
1
install 'XML' package
...mozilla/mozilla/xpinstall/wizard/os2/uninstall/parser.h /usr/local/src/mozilla/mozilla/xpinstall/wizard/windows/uninstall/parser.h /usr/local/include/graphviz/parser.h /usr/local/graphviz-1.10/graph/parser.h /usr/local/graphviz-1.10/windows/graph/parser.h /usr/share/doc/libxml-1.8.10/html/gnome-xml-htmlparser.html /usr/share/doc/libxml-1.8.10/html/gnome-xml-parser.html /usr/share/doc/qt-devel-2.3.0/examples/xml/tagreader/structureparser.h /usr/share/doc/qt-devel-2.3.0/examples/xml/tagreader-with-features/structureparser.h /usr/share/doc/qt-devel-2.3.0/examples/xmlquotes/quoteparser.h /root/.cpan/build/H...
2004 Aug 06
0
Ices2 compile error - streaming ogg!
...================= > > -rw-r--r-- 1 root root 2435 Feb 28 13:22 debugXML.h > -rw-r--r-- 1 root root 4146 Feb 28 13:22 encoding.h > -rw-r--r-- 1 root root 3123 Feb 28 13:22 entities.h > -rw-r--r-- 1 root root 2936 Feb 28 13:22 HTMLparser.h > -rw-r--r-- 1 root root 800 Feb 28 13:22 HTMLtree.h > lrwxrwxrwx 1 root root 1 May 18 18:02 libxml -> . > -rw-r--r-- 1 root root 2551 Feb 28 13:22 nanoftp.h > -rw-r--r-- 1 root root 920 Feb 28 13:22 nanohttp.h > -...
2006 Nov 12
0
[727] trunk/wxruby2/doc/textile/index.txtl: HTML is now supported, removed reference to FS classes which are
...ass for printing HTML| </del><ins>+|HtmlWindow|HTML window class, for displaying HTML| +|HtmlEasyPrinting|Simple but useful class for printing HTML| </ins><span class="cx"> |HtmlPrintout|Generic HTML wxPrintout class| </span><span class="cx"> |HtmlParser|Generic HTML parser class| </span><span class="cx"> |HtmlTagHandler|HTML tag handler, pluginable into wxHtmlParser| </span><span class="cx"> |HtmlWinParser|HTML parser class for wxHtmlWindow| </span><span class="cx"> |HtmlWinTagHandl...
2014 Dec 15
2
Replace atoi and atol with strtol strtoul:Need Help
Hello, I am working on replacing atoi () and atol() functions with strtol() and strtoul() . I came across many files which uses statement like these time_t secs= atoi(data_span.c_str()), here time_t Datatype is not known but wikipedia says that it is integer so is it necessary to replace atoi with strtol over here ?? And is their any document which helps me what each file function does like
2004 Aug 06
2
Is there a guide?
At 07:59 AM 7/29/02 +1000, you wrote: >I noticed another post where it was mentioned which modules were needed etc, >then followed the instructions at xiph.org for CVS. It's working now, >although darkice (which is none of xiph's concern AFAIK) seg-faults..... > >I haven't been able to test ices2 in live mode, well, it seems to work, but I >get silence.... ices2 in
2014 Dec 18
4
Replace atoi and atol with strtol strtoul:Need Help
...ot;); if (val != cgi_params.end()) { sort_key = atoi(val->second.c_str()); Thank You, Priyank Bhatt On 17 December 2014 at 03:38, Olly Betts <olly at survex.com> wrote: > > On Wed, Dec 17, 2014 at 01:15:12AM +0530, Priyank Bhatt wrote: > > I came across this function *HtmlParser::decode_entities(string &s)* in > > *xapian-application/omega/htmlparse.cc* which basically does is extract > hex > > value if any or extract number. > > The code you refer to is actually parsing a decimal value (like &#38;) - > the hex case (like &#x26;) uses ss...
2012 Feb 15
4
question on unused directories in /usr/lib and /usr/lib64
I was working on archiving an old virtual server today and was reminded of how much space is wasted by some of the default installations on CentOS. I think this was a 5.x box. Anyway, in /usr/lib/64 (and probably /usr/lib on non-64 systems), there were a lot of directories which have no bearing on a basic server. I saw firefox, openoffice and many, many other directories -- replete with enough
2011 Jul 29
0
HTML sanitization
...better than someone doing a `git pull` on markdown-js and getting privacy and XSS problems added to their application. That is, **the default should be safe**. I'm **hoping I can use an existing pure-JS HTML parser** ? say, [jsdom][]'s, or [kn_htmlsafe_htmlSanitize][], or [NodeHtmlParser][] ? rather than hacking one together from scratch. (As a fallback, I could write a very simple parser for the tags-and-attributes subset of XHTML.) I'm a little worried about the performance implications of this; markdown-js is already a little slower than Showdown, and this could make the mat...