Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
259 views

Is > ever necessary?

I now develop websites and XML interfaces since 7 years, and never, ever came in a situation, where it was really necessary to use the > for a >. All disambiguition could so far be handled ...
8
votes
2answers
685 views

SGML parser in Java?

I'm looking for a parser in Java that can parse a document formatted in SGML. For duplicate monitors: I'm aware of the two other threads that discuss this topic: Parsing Java String with SGML. ...
8
votes
4answers
373 views

HTML comments break down

I have a page that is generated which inserts an HTML comment near the top of the page. Inside the comment is a *nix-style command. <!-- command --option value --option2 value2 --option3 --> ...
6
votes
3answers
512 views

Is HTML a context-free language?

Reading some related questions made me think about the theoretical nature of HTML. I'm not talking about XHTML-like code here. I'm talking about stuff like this crazy piece of markup, which is ...
5
votes
2answers
482 views

Definition of HTML whitespace rules?

I'm looking for this definition to make my HTML renderer conform a bit better. Currently it's guessing which whitespace to keep, which to collapse and what to throw. The SGML standard is hard to find ...
4
votes
3answers
541 views

Why can't SGML::Parser::OpenSP find the symbol __ZTI15SGMLApplication?

I'm trying to "install SGML::Parser::OpenSP" from the cpan shell, but it fails on the first "make test". I also get the same error if I go into the build directory and run make test. I believe this ...
3
votes
1answer
40 views

DTD Parsing: Parameter entity reference name including another parameter entity reference - is it well formed?

I'm writing a DTD parser and I'm a little uncertain how to expand parameter entities. For example is this DTD excerpt valid? <!ENTITY % xx '&#37;zz;'> <!ENTITY % zz '&#60;!ENTITY ...
3
votes
2answers
52 views

What is “- O” meaning when declare a DTD element type?

According W3C XML specification, element is declared in form of : [45] elementdecl ::= '<!ELEMENT' S Name S contentspec S? '>' [46] contentspec ::= 'EMPTY' | 'ANY' | ...
2
votes
1answer
24 views

Can I reference an external sgml declaration from within a sgml document?

I'm more used to xml documents and tools, but I need to deal with sgml. I have an sgml document that I'm using nsgmls to parse, and I need to include a particular sgml declaration with it. It works ...
2
votes
2answers
315 views

Java code to read SGML files

I'm doing my project on Text Categorization.I've got a text categorisation test collection called Reuters-21578 for my Information Retrieval project. It is distributed in 22 files. Each of the first ...
2
votes
2answers
853 views

Grab some ofx data with python

I was trying to use http://www.jongsma.org/gc/scripts/ofx-ba.py to grab my bank account information from wachovia. Having no luck, I decided that I would just try to manually construct some request ...
2
votes
3answers
239 views

Are there any reasons to use SGML instead of XML?

As I understand it, XML is a subset of SGML conceived to simplify it and encourage a more widespread usage. I guess most useful features was brought into XML, but are there any features in SGML ...
2
votes
2answers
652 views

SGML Parser in Plain C

I'm looking for an open-source SGML parser written in plain C. This is to parse bona-fide SGML, not malformed stuff. Any ideas?
1
vote
1answer
25 views

Which ASCII characters are forbidden for use in SGML attributes?

Apart from whitespace, quotation mark, equal sign, and tab, which other characters of the printable subset of ASCII are forbidden to be used as attribute names in SGML?
1
vote
1answer
112 views

PHP strip non-SGML characters from a string?

I've got nonstandard characters coming out of my database (due to line breaks). My HTML validator is complaining about them. Since my HTML validator is a direct extension of my ego, I'd like to ...
1
vote
5answers
370 views

sgml to xml convertion

I have a following sample sgml data from my .sgm file and I want convert this in to xml <?dtd name="viewed"> <?XMLDOC> <viewed >xyz <cite> <yr>2010 <pno cite="2010 ...
1
vote
1answer
205 views

Make emacs always close html tags

How can I make emacs always close a sgml-tag (C-c-C-t)? For example div, h2 tags work fine but p or li do not. Basically I'm looking for a way of specifing that I'm always using xhtml when I insert a ...
1
vote
1answer
747 views

WYSIWYG XML Editor (DTD or RelaxNG or XSD based grammars)

Hi all I'm in need to make a WYSIWYG XML editor for a custom XML grammar. By this time I have explored all the OpenSource tools that I could find under this domain. Includes VEX, Oxygen, Bitflux... ...
1
vote
4answers
393 views

get contents of <a> tags using python

Assuming I have html read into my program like this: <p><a href="http://vancouver.en.craigslist.ca/nvn/ret/1817849271.html">F/T &amp; P/T Sales Associate - Caliente Fashions</a> ...
1
vote
2answers
175 views

Eclipse IDE : SGML plugin?

Do you know a plugin for editing SGML files within Eclipse ?
1
vote
5answers
1k views

Java SGML to XML conversion?

Does anyone know of a method, or library, to convert SGML into XML? EDIT: For clarification, I have to do the conversion in Java, and I cannot use the SP parser or the related SX tool.
1
vote
2answers
2k views

SGML parser .NET recommendations

In my C# project, I have been dealt with the task of parsing an SGML file and have tried, very naively, to use XmlReader, and this has led to some interesting revelations (i.e., the difference between ...
0
votes
1answer
71 views

UnicodeEncodeError in Beautiful soup (python 2.7.1)

I am using Beautiful Soup 3.2 on python 2.7.1 here. I have recently been trying to get something simple to work, but it seems rather tricky: I do the following: ...
0
votes
0answers
36 views

SGML parser in Javascript

I like the SGMLParser class in Python which has it's own style of parsing HTML with inheriting from SGMLParser and overriding some methods. If it exists show a simple example of it's usage (e.g. ...
0
votes
1answer
21 views

OFX Parser. Ignore XML Text Reader Exception

I am writing custom OFX -> XML parser on c#. Currently I am using standard XMLTextReader. The ofx format might have following structure: <STATUS> <CODE>0 <SEVERITY>INFO ...
0
votes
0answers
23 views

Means/methods to parse OFX

I want to write a parser(or use existing one) for OFX format. I'v tried ofx_csharp, but it doesn't suit to my case, moreover it has some requirements to import file. So I thought it would be better ...
0
votes
1answer
142 views

Handle <nobr> tag in python sgmllib

I'm trying to parse a page using my python script. But <nobr> tag along with '&' is giving me trouble. Here the actual html. <A HREF="http://enpass.in/algo/c12.html" CLASS="style"> ...
0
votes
3answers
785 views

SGML Parser in Python

I am completely new to Python. I have the following code: class ExtractTitle(sgmllib.SGMLParser): def __init__(self, verbose=0): sgmllib.SGMLParser.__init__(self, verbose) self.title = ...
0
votes
1answer
188 views

Using lxml to extract data where all elements are not known in advance

I have some sgml files that are roughly standardized. However, there can be data contained within a tag that I do not know exists before I open the file and personally read it. For example, the ...
0
votes
2answers
75 views

removing multiple tags in SGML

i have a sgml file like <p><p><data>sdlksdskdmskdmsamdakmdksam<p></data>... my question is how to remove one tag <p> and keep another one intact ...which regular ...
0
votes
2answers
487 views

Parsing Java String with SGML

I have a Java String with SGML, something like this... <misspell></misspell><plain>I</plain> <plain>know</plain> <plain>you</plain> ...
0
votes
4answers
89 views

quoting HTML attribute values

I know the spec allows both ' and " as delimiters for attribute values, and I also know it's a good practice to always quote. However I consider " being the cleaner way, maybe it's just me having ...
0
votes
1answer
289 views

Converting legacy SGM to XML

I have a task at work that involves converting legacy SGM files into XML. The SGM files were created using 5 separate high level tags, the new DTD has about 8-12 top level tags that the old ones would ...
0
votes
2answers
700 views

What is the difference between SGML and XML?

All the Google results suck.