Tagged Questions
50
votes
26answers
8k views
Can you provide an example of parsing HTML with your favorite parser?
This question is a lazy way of collecting examples of parsing HTML with a variety of languages and parsing libraries. Individual comments will be linked to in answers to questions about how to parse ...
9
votes
3answers
1k views
Is there an alternative to HTML Tidy?
I have embedded HTML Tidy in my application to clean incoming HTML. But Tidy has a huge amount of bugs and fixing them directly in the source is my worst nightmare. Tidy source code is an unreadable ...
9
votes
2answers
5k views
Best way to parse HTML in Qt?
How would I go about parsing all of the "a" html tags "href" properties on a page full of BAD html, in Qt?
9
votes
8answers
6k views
html parsing with libxml
In another thread I got convinced into using HTML parsers instead of regexps for HTML parsing. I thought of using libxml (it has some HTML parser built in), but failed to find any useful tutorial. I ...
8
votes
4answers
1k views
Create and use HTML full text search index (C++)
I need to create a search index for a collection of HTML pages.
I have no experience in implementing a search index at all, so any general information how to build one, what information to store, ...
8
votes
5answers
935 views
Convert latex to html in Java or C++?
There are many tools for converting latex into html. I'm looking for a Java or C++ program to do this. It will need to run on multiple operating systems. The solution will be used on academic ...
6
votes
3answers
779 views
Saving a web page as image
As a hobby project I am exploring the ways to save a web page (HTML) as image, mostly programatically using c/c++/javascript/java. Till now I have come across the following ways:
Get the ...
5
votes
1answer
272 views
C++ Server Pages
I came across this site a few months ago, but only remembered to download it today. It's called CSP (C++ Server Pages), and it's basically just C++ inside a webpage (like cscript, i think). Anyways: ...
5
votes
2answers
196 views
Why C++ does not move to a 'unversioned model' like HTML/HTML5? [closed]
First, i must say that i write this from the bottom of my dark, envious heart:
After reading this: http://blog.whatwg.org/html-is-the-new-html5
i wonder, what is up that C++ has become so fosilized ...
4
votes
4answers
928 views
How do I HTML-/ URL-Encode a std::wstring containing Unicode characters?
I have another question yet. If I had a std::wstring looking like this:
ドイツ語で検索していてこちらのサイトにたどり着きました。
How could I possibly get it to be URL-Encoded (%nn, n = 0-9, a-f) to:
...
4
votes
1answer
102 views
How can I load scripts, styles and images from a non-URL source?
I am integrating WebKit (via Qt) into an application. Instead of having WebKit retrieve scripts, CSS files and images via URLs, I want my application to provide them (e.g. retrieved from a ...
4
votes
4answers
508 views
Display web page using libgtkhtml c c++
I want to display a very simple html page from the web, using libgtkhtml. Can you give an example please? Or some documentation/resources? I found nothing. (C preferred, but C++ also acceptable). ...
4
votes
2answers
661 views
Small, portable web browser library?
I am looking for a small and portable web browser to embed into my 3D engine. Basically, I need something small and fast that can render into a graphical buffer and take my input for links and stuff. ...
3
votes
1answer
151 views
What is the best way to produce HTML output in C++? [closed]
Possible Duplicate:
C++ HTML template framework, templatizing library, HTML generator library
I have a program, that contains many tables, so I want to track them in log files when I debug ...
3
votes
6answers
123 views
Running c++ in browser
I have written some basic c++ programs in one of my classes for school. I was wondering if it was possible to somehow virtually run the program in a broswer. I would like to post the program to my ...
3
votes
2answers
207 views
Regular expression to get HTML table contents
I've stumbled on a bit of challenge here: how to get the contents of a table in HTML with the help of a regular expression. Let's say this is our table:
<table someprop=2 id="the_table" ...
3
votes
2answers
1k views
How can I decode HTML entities in C++?
How can I decode HTML entities in C++?
For example:
HTML: "Music" & "video"
Decoded: "Music" & "video"
Thanks.
3
votes
2answers
300 views
light weight HTML Parser for translating to formatted text?
I'm finding light weight HTML Parser for translating to formatted text. for example:
<html>
<body>
<a href="http://www.google.com/">Google</a>
<img ...
3
votes
4answers
450 views
How can web technology be used for a C++ application GUI?
Can web technologies be used for a desktop application written in a traditional language like C++? I'd guess that they can, though I've not been able to find any evidence of this. I understand Adobe ...
3
votes
3answers
1k views
How to access Firefox's DOM (or HTML content) from outside firefox
I have a question:
My program will search FireFox windows opened by user. When a user open Firefox and enter any site, I want to search for a keyword in that page's HTML content.
How can I access ...
3
votes
2answers
522 views
C++ HTML generation classes
A question prompted by jbar's question.
In scripting languages like Python, Ruby, and Perl, there are libraries that simplify generating dynamic HTML. (For example, the cgi module in Ruby.)
Are ...
3
votes
6answers
2k views
C++ Library to Convert HTML to PDF?
I am looking for a C/C++ library to convert HTML (Actually XHTML + CSS) documents to PDF.
It is for commercial use and source would be nice but not essential.
Anybody have any recommendations or ...
2
votes
0answers
38 views
IHTMLElement to HWnd
Is it possible to get a window handle out of IHTMLElement?
If so, can someone show me how to do it in c++?
TIA
2
votes
2answers
55 views
Missing HTML code/tags when downloading page with C++
I've finally succeeded in downloading a webpage to disk using the wininet library. I'm currently using the following c++ code:
#include <windows.h>
#include <wininet.h>
...
2
votes
2answers
141 views
C++ or Python: Bruteforcing to find text in many webpages
Suppose I want to bruteforce webpages:
for example, http://www.example.com/index.php?id=<1 - 99999>
and search each page to find if there contain a certain text.
If the page contains the text, ...
2
votes
3answers
187 views
Small library for generating HTML files in C++
Is there a library that will allow easier generation of a simple website using C++ code. This 'website' will then be compiled into a CHM help file (which is the final goal here). Ideally, it will ...
2
votes
1answer
275 views
Looking for HTML parser for C++ [closed]
Possible Duplicate:
Library Recommendation: C++ HTML Parser
Hi,
I'm looking for a HTML parser written in standard C++ that can process invalid documents and is open source (LGPL, BSD - not ...
2
votes
3answers
447 views
Open Source C++ Crawler?
What open source c++ web crawlers for parsing html do you know and use?
Thank you!
2
votes
1answer
417 views
Need Webkit and C++ example code for reading and displaying HTML from file
I'm looking for some C++/webkit example code or some grate tutorials. Here is what i need in the example:
1. Read Html file from disk, and render the htmlvascript and display content
2. I need so ...
2
votes
3answers
394 views
How to strip HTML from a text property of a Qt4 widget?
What's the easiest way in terms of coding effort, to change a text property of a Qt4 widget, e.g. QLabel.text, so all HTML tags are removed?
The HTML is simple, typically just one to three tags ...
2
votes
1answer
275 views
which layout engine for finding coordinates of html elements on the web page?
I am doing some web data classification task and was thinking if I could get the co-ordinates of html elements as they would appear on a web-browser without taking into consideration any css or ...
2
votes
5answers
1k views
HTML Sanitization in C++
Is there any available C++ (or maybe C) function/class/library with only purpose to sanitize a string that might contain HTML?
I find a lot of source code for sanitizing in C# or other languages more ...
2
votes
5answers
1k views
How to programmatically capture a web page with forced updates
I need to capture a web site and am looking for an appropriate library or program to do this. The website uses Java Script and pushes updates to the page and I need to capture these as well as the ...
1
vote
2answers
54 views
Program interacting with web
How or what do I need to know programming wise in order to interact with the web using c++. For instance i want to wrote a program that automatically sends invites to players on yahoo chess. How ...
1
vote
1answer
64 views
Getting POST arguments sent with a HTML form in C++
I am developing a program in C++ which is associated to open an URL with a personal protocol (it is similar to mailto protocol).
I can recover GET arguments with argv[1], but what is for POST ...
1
vote
3answers
59 views
Extracting key words from HTML to C++ under linux
I am working on a simple client-server project. Client is written in Java, it sends key words to C++ server written under Linux and recives a list of URLs with best ranks ( depending on number of ...
1
vote
6answers
130 views
Web GUI for C++ console application?
I have a C++ project which I need to have some sort of GUI for, and I don't have time to learn something like the Win32 API (or qt or gtk for that matter).
So my question is:
What options do I have ...
1
vote
1answer
128 views
How do I run POCO C++ server pages?
I'm a beginner in C++ server pages. I have tried C++ Server Pages by micronovae, but couldnt connect ODBC it used to give link error "undefined reference to SQLAllocHandle@12", I could not resolve it. ...
1
vote
1answer
147 views
What type of streaming protocols and sockets to use for live video streaming
I am a building a video server written in C++ to stream live video to a web video client written in php and html to implement video chatting.
What type of protocols eg. "UDP,TCP, RTP, RTSP, MMS, ...
1
vote
2answers
104 views
C++ Ifstream reads too much?
I'm trying to read a file and output the contents. Everything works fine, I can see the contents but it seems to add about 14 empty bytes at the end. Does anyone know whats wrong with this code?
...
1
vote
5answers
198 views
Easy Way To Send HTML Formatted Email in C++
I have an HTML form that currently takes the inputs and sends them out in an email with HTML formatting, so that the email looks basically like the form webpage, but with all of the fields filled in.
...
1
vote
1answer
455 views
Parsing HTML with C++ (using Qt preferably)
I'm trying to parse some HTML with C++ to extract all urls from the HTML (the urls can be inside the href and src attributes).
I tried to use Webkit to do the heavy work for me but for some reason ...
1
vote
2answers
613 views
Can we convert PDF files to HTML using C,C++,or Java (any language)?
I need to convert PDF files into HTML files (IOS platform) so that I can annotate the HTML page using Javascript. I had some success in annotating HTML pages, so if I can convert PDF to HTML I can ...
1
vote
1answer
81 views
How do I Parse an HTML file in CGI application and modify its contents? C++
I'm really new to this. I am trying to write a CGI program that will take a pseudo-html
file, find certain tags, and replace them with something else.
For example, if there is an html file, that has ...
1
vote
1answer
206 views
Mshtml.h tutorial
I am looking for a c++ tutorial using Mshtml.h and IHtmlDocument ,it would be much appricated if someone could point me in the right direction.
Edit:I am trying to parse html
1
vote
1answer
248 views
Embedding C/C++ code with syntaxhighlighting into HTML with javascript
Hopefully somebody can point me to something that could help. What I'm doing is designing a few things in a HTML document, but I'd really like to be able to have blocks of C/C++ (not too worried, ...
1
vote
2answers
178 views
Printing the HTML of a website with c++/php?
I've been wondering, is there any way to print out the HTMl code of a website using c++ or php code? IF there is, I'd be glad if you could provide me with some materials to read and/or perhaps some ...
1
vote
1answer
493 views
How can I get the URL of the FLV file in the youtube site? [closed]
Possible Duplicate:
How can I get the URL of the FLV file in the youtube site?
I read this post but it doesn't work for me.....
I'm trying to make a youtube video downloader with C/C++ and ...
1
vote
3answers
84 views
Code (C++) to html converter for Forums
I have searched for quite some time and was unable to find a program that is able to convert code to html quickly for use in forums, but not web-pages, in which case it cannot use style-sheets and ...
1
vote
3answers
541 views
How To Use C++ CGI Script?
I am currently enrolled in a web applications class at my college and we are learning about cgi scripts. I am having a hard time learning how to implement my CGI script. When I click on my link a ...