Standard Generalized Markup Language(SGML) is the precursor to XML. It was an ISO standard used for electronic publishing of documents and books.

learn more… | top users | synonyms

-1
votes
0answers
18 views

W3C Validator says: “this is not a sgml document” [closed]

I'm trying to validate my webpage using dreamweaver cs6, however it can't be validated because it gives me the following error:" This is not a SGML document" , "cannot continue because of previous ...
1
vote
1answer
60 views

HTML5 is not based on SGML, so is it based on then?

http://www.w3schools.com/tags/tag_doctype.asp HTML5 is not based on SGML, and therefore does not require a reference to a DTD. On what standard is HTML 5 based on if not on SGML?
2
votes
1answer
70 views

How to parse a OFX (Version 1.0.2) file in PHP?

I have a OFX file downloaded from Citibank, this file has a DTD defined at http://www.ofx.net/DownloadPage/Files/ofx102spec.zip (file OFXBANK.DTD), the OFX file appear to be SGML valid. I'm trying ...
1
vote
1answer
63 views

Parsing OFX or SGML in iOS

How do I parse OFX in iOS? OFX is formatted in SGML, and I can't find any good parsers to use in C or Objective-C on iOS.
0
votes
1answer
59 views

Extracting information from SGM files using Python

I need some help for extracting information out of an .sgm file using Python. Is there a specific library suitable for this specific kind of file? Or will libraries used to extract infos from .xml ...
2
votes
3answers
127 views

Linq to XML query on structured document

I'm trying to work out how to use Linq to XML on files which are currently structured but not strictly XML files. They are well formed files but do not contain an XML declaration. They are in fact ...
0
votes
1answer
74 views

Using HTML Parser with SGML

I wanted to use an XML parser with an SGML document, however this doesnt work. After reading some suggestions it seems to only way around this is to use a HTML parser. So im basically just trying to ...
1
vote
1answer
50 views

Regex for an open SGML node that contains <p> , </p>, and <br /> tags

I have some SGML that I'm trying to clean up by adding closing tags to the opening ones. Right now, the document has a structure like this: <CAT> <NAME>Daniel <COLOR>White ...
1
vote
1answer
79 views

validate SGML DTD

I wrote the following SGML DTD: <!DOCTYPE tvguide[ <!ELEMENT tvguide--(date,channel+)> <!ELEMENT date--(#PCDATA)> <!ELEMENT channel--(channel_name,format?,program*)> ...
0
votes
1answer
227 views

Parsing EDGAR filings

I would like to use python2.7 to remove anything that isn't the documents' text from EDGAR filings (which are available online as .txt files). An example of what the files look like is here: Example ...
1
vote
2answers
146 views

non SGML character number 6

I am getting the following validation error for a site I am working on Line 1, Column 1: non SGML character number 6 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
-1
votes
2answers
186 views

Recommendation for parsing HTML and SGML file [closed]

I have a project that will accept inputs such as (html, sgml, xml and txt). I have no problem parsing the XML files and txt files, Can you please suggest some tools that I can use on parsing html ...
4
votes
1answer
248 views

Parse SGML with Open Arbitrary Tags in Python 3

I am trying to parse a file such as: http://www.sec.gov/Archives/edgar/data/1409896/000118143112051484/0001181431-12-051484.hdr.sgml I am using Python 3 and have been unable to find a solution with ...
0
votes
0answers
150 views

SGML parsing in python using LXML

I have a bunch of SGML files which I want to parse and extract information from them. I tried using regex, but after reading some of the previous posts, started using LXML. Can I use LXML to parse ...
0
votes
4answers
112 views

Turn HTML files into SGML

I have well formed HTML files. To turn them into SGML do I just switch the extension or is there more to do?
1
vote
1answer
124 views

SGML Parser for Python 3?

I have some documents that are structured using SGML, and I have a DTD file which describes this structure. Can someone recommend a Python-3 compatible library or module to me to parse this data? ...
0
votes
1answer
54 views

Proper XML application for storing old text documents (talmud, bible, etc.)

I am planning to set up a simple, but extensive database of old religious texts. I was wondering if anyone could suggest an existing XML compliant format for storing such documents. Preferably a ...
0
votes
1answer
57 views

SGML replace tags and write to new and different file in Ruby

I have a very long SGML file which I need to convert to a another syntax, but for some reason my code don't work, when I get the output it is the exactly the same document, the code is as following: ...
0
votes
1answer
32 views

How to validate SGML on OS X?

I have an SGML DTD (and related XML packet to go with it) that I need to validate. How can I do this on OS X? It seems most XML tools don't 'get' SGML.
-4
votes
1answer
50 views

How might I parse an SGML file with the help of SGML::Parser?

How might I parse an SGML file with the help of the SGML::Parser module?
2
votes
1answer
44 views

Get all information from an SGML DTD in Perl

I would like to get information from an SGML DTD (element, attribute, etc.) I tried to get the element with the help of module use SGML::DTD, which is not working. Suppose, if the DTD contains ...
0
votes
2answers
185 views

How to use Pseudo Code in a .xml file under res/layout folder? Android

So I want to tell myself some things withing the .xml file using Pseudo code but when I do the // it enters it like a code so I can't really use it in there. Is there something I could do to make the ...
1
vote
3answers
246 views

Correct syntax for parsing an SGML to XML file using Perl?

I'm a Perl newbie attempting to read an SGML file, parse it then convert it to XML so I can get the key/value pairs of all the elements. I found the SGML::DTDParse and XML::Simple modules as I think ...
1
vote
1answer
114 views

how to extract specified text in HTML using SGMLParser

i create a class extended SGMLParser: class URLLister(SGMLParser): def __init__(self): SGMLParser.__init__(self) def start_title(self, attrs): pass def ...
0
votes
2answers
148 views

How to extract textual content from an SGML DTD using Perl?

I'm looking into extracting all the content from a DTD using Perl, but I'm not sure which is the best way to go about it. I know there are modules for working with XML, but I'm not sure if there are ...
1
vote
2answers
88 views

What does “Markup should be rigorous” mean?

The ISO definition of generalized markup states: Markup should be rigorous so that the techniques available for processing rigorously-defined objects like programs and databases can be used for ...
1
vote
1answer
802 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: ...
3
votes
6answers
506 views

Should an end tag close all unclosed intervening start tags with omitted end tags?

Am I reading the HTML 4.01 standard wrong, or is Google? In HTML 4.01, if I write: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> ...
0
votes
1answer
202 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 ...
2
votes
1answer
71 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?
3
votes
1answer
182 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
139 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
74 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
1answer
427 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 ...
17
votes
4answers
2k 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 ...
1
vote
1answer
802 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 ...
0
votes
1answer
228 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"> ...
15
votes
6answers
2k 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. ...
0
votes
3answers
2k 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 = ...
2
votes
5answers
1k 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 ...
3
votes
1answer
500 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
365 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
116 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 ...
2
votes
1answer
2k views

WYSIWYG XML Editor (DTD or RelaxNG or XSD based grammars) [closed]

I'm need to make a WYSIWYG XML editor for a custom XML grammar. I have explored all the OpenSource tools that I could find under this domain. Includes VEX, Oxygen, Bitflux... None of them served my ...
14
votes
4answers
382 views

Is &gt; 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 &gt; for a >. All disambiguition could so far be handled ...
0
votes
2answers
933 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> ...
1
vote
4answers
2k 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> ...
0
votes
4answers
113 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 ...
1
vote
2answers
258 views

Eclipse IDE : SGML plugin?

Do you know a plugin for editing SGML files within Eclipse ?
3
votes
2answers
1k 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 ...

1 2