Closed
Bug 219924
Opened 22 years ago
Closed 22 years ago
inefficiency in Help rdf databases?
Categories
(SeaMonkey :: Help Documentation, defect)
Tracking
(Not tracked)
VERIFIED
DUPLICATE
of bug 218878
People
(Reporter: danielwang, Assigned: rjkeller)
References
Details
In the extension\help\resources\locale\en-US\*.rdf files I see something like:
<rdf:Description about="#adding">
<nc:subheadings>
<rdf:Seq><rdf:li>
<rdf:Description ID="adding:address_book_entries"
nc:name="address book entries"
nc:link="mail_help.html#adding:address_book_entriesIDX"/>
</rdf:li></rdf:Seq>
</nc:subheadings>
</rdf:Description>
<rdf:Description about="#adding">
<nc:subheadings>
<rdf:Seq><rdf:li>
<rdf:Description ID="adding:images_to_web_pages"
nc:name="images to web pages"
nc:link="composer_help.html#adding:images_to_web_pagesIDX"/>
</rdf:li></rdf:Seq>
</nc:subheadings>
</rdf:Description>
surely this can be more efficient, like
<rdf:Description about="#adding">
<nc:subheadings>
<rdf:Seq><rdf:li>
<rdf:Description ID="adding:address_book_entries"
nc:name="address book entries"
nc:link="mail_help.html#adding:address_book_entriesIDX"/>
<rdf:Description ID="adding:images_to_web_pages"
nc:name="images to web pages"
nc:link="composer_help.html#adding:images_to_web_pagesIDX"/>
</rdf:li></rdf:Seq>
</nc:subheadings>
</rdf:Description>
I'm not an expert in RDF, so I could be wrong...
Assignee | ||
Comment 1•22 years ago
|
||
*** This bug has been marked as a duplicate of 218878 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•