<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.kde.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.6"
          urlbase="https://bugs.kde.org/"
          
          maintainer="sysadmin@kde.org"
>

    <bug>
          <bug_id>109723</bug_id>
          
          <creation_ts>2005-07-27 17:44:45 +0000</creation_ts>
          <short_desc>VPL mode does not show DT  data in definition lists</short_desc>
          <delta_ts>2005-10-05 12:30:22 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>10</classification_id>
          <classification>Unmaintained</classification>
          <product>quanta</product>
          <component>VPL</component>
          <version>3.4.1</version>
          <rep_platform>unspecified</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>NOR</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>0</everconfirmed>
          <reporter name="Nigel Wade">nmw</reporter>
          <assigned_to name="Paulo Moura Guedes">kde</assigned_to>
          <cc>amantia</cc>
          
          <cf_commitlink></cf_commitlink>
          <cf_versionfixedin></cf_versionfixedin>
          <cf_sentryurl></cf_sentryurl>
          <votes>0</votes>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>360868</commentid>
    <comment_count>0</comment_count>
    <who name="Nigel Wade">nmw</who>
    <bug_when>2005-07-27 17:44:45 +0000</bug_when>
    <thetext>Version:           3.4.1 (using KDE KDE 3.4.1)
Installed from:    Unlisted Binary Package
OS:                Linux

When entering definition lists in VPL mode, the definition terms (DT) data are not displayed. For example, the example list straight from the W3C website:
&lt;DL&gt;
  &lt;DT&gt;Dweeb
  &lt;DD&gt;young excitable person who may mature
    into a &lt;EM&gt;Nerd&lt;/EM&gt; or &lt;EM&gt;Geek&lt;/EM&gt;

  &lt;DT&gt;Hacker
  &lt;DD&gt;a clever programmer

  &lt;DT&gt;Nerd
  &lt;DD&gt;technically bright but socially inept person

&lt;/DL&gt;

Displays as:

    a young excitable person who may mature into a Nerd or Geek
    a clever programmer
    technically bright but socially inept person

The &lt;DT&gt; tag information is not displayed.

Furthermore, Quanta claims that there are several syntax errors when there are no &lt;/DD&gt; tags. Adding these tags removes the errors but does not show the &lt;DT&gt; data. The &lt;/DD&gt; tags should not be necessary, they are optional according to the W3C website.

When viewed in Preview mode the list is displayed correctly.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>361142</commentid>
    <comment_count>1</comment_count>
    <who name="Philippe Rigault">prigault</who>
    <bug_when>2005-07-28 18:42:16 +0000</bug_when>
    <thetext>Confirmed on KDE 3.4.2</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>379089</commentid>
    <comment_count>2</comment_count>
    <who name="András Manţia">amantia</who>
    <bug_when>2005-10-05 12:09:28 +0000</bug_when>
    <thetext>Regarding the closing tag for DD:
- it is required in XHTML mode, so make sure you use a HTML DTD for your 
document
- in HTML mode it is not required if it is followed by a DD or DT tag. 
Quanta will warn you when &lt;DD&gt; is not closed and it is followed by 
&lt;/DL&gt;. Although the W3C example gives you such a code and it is 
displayed by the browsers, I can say that this warning is valid. Doing 
ir in a way that both &lt;/DL&gt; closed &lt;DD&gt; and &lt;DD&gt; can have &lt;DL&gt; tags 
inside is very hard.

Regarding the VPL part of the bug: unfrotunately I couldn&apos;t find the 
reason yet.
</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>379097</commentid>
    <comment_count>3</comment_count>
    <who name="András Manţia">amantia</who>
    <bug_when>2005-10-05 12:30:22 +0000</bug_when>
    <thetext>SVN commit 467449 by amantia:

Show DT tags in VPL.
Fix list of children for DT.

BUG: 109723

 M  +1 -0      ChangeLog  
 M  +40 -3     data/dtep/html/d.tag  
 M  +3 -3      data/dtep/html/p.tag  


--- branches/KDE/3.5/kdewebdev/quanta/ChangeLog #467448:467449
@@ -32,6 +32,7 @@
         - replace a leading ~ in an upload profile with the users home folder and avoid a hang
         - fix lots of VPL related crashes [#112733, #112853, #108501]
         - give to the host field more space in the upload profile dialog [#112778]
+        - show DT tags in VPL [#109723]
 
  - improvements:
         - md5sum based file changed detection
--- branches/KDE/3.5/kdewebdev/quanta/data/dtep/html/d.tag #467448:467449
@@ -195,7 +195,7 @@
  &lt;/children&gt;
 &lt;/tag&gt;
 
-&lt;tag name=&quot;div&quot; hasScript=&quot;1&quot; hasCore=&quot;1&quot; hasI18n=&quot;1&quot; scope=&quot;paragraph&quot;&gt;
+&lt;tag name=&quot;div&quot; hasScript=&quot;1&quot; hasCore=&quot;1&quot; hasI18n=&quot;1&quot;&gt;
 
     &lt;attr name=&quot;align&quot; type=&quot;list&quot;&gt;
         &lt;text&gt;Alignment&lt;/text&gt;
@@ -293,8 +293,45 @@
     &lt;stoppingtag name=&quot;dd&quot; /&gt;
   &lt;/stoppingtags&gt;
 &lt;children&gt;
-&lt;child name=&quot;dd&quot; /&gt;
-&lt;child name=&quot;dt&quot; /&gt;
+ &lt;child name=&quot;#text&quot; /&gt;
+ &lt;child name=&quot;tt&quot; /&gt;
+ &lt;child name=&quot;i&quot; /&gt;
+ &lt;child name=&quot;b&quot; /&gt;
+ &lt;child name=&quot;u&quot; /&gt;
+ &lt;child name=&quot;s&quot; /&gt;
+ &lt;child name=&quot;strike&quot; /&gt;
+ &lt;child name=&quot;big&quot; /&gt;
+ &lt;child name=&quot;small&quot; /&gt;
+ &lt;child name=&quot;em&quot; /&gt;
+ &lt;child name=&quot;strong&quot; /&gt;
+ &lt;child name=&quot;dfn&quot; /&gt;
+ &lt;child name=&quot;code&quot; /&gt;
+ &lt;child name=&quot;samp&quot; /&gt;
+ &lt;child name=&quot;kbd&quot; /&gt;
+ &lt;child name=&quot;var&quot; /&gt;
+ &lt;child name=&quot;cite&quot; /&gt;
+ &lt;child name=&quot;abbr&quot; /&gt;
+ &lt;child name=&quot;acronym&quot; /&gt;
+ &lt;child name=&quot;a&quot; /&gt;
+ &lt;child name=&quot;img&quot; /&gt;
+ &lt;child name=&quot;applet&quot; /&gt;
+ &lt;child name=&quot;object&quot; /&gt;
+ &lt;child name=&quot;font&quot; /&gt;
+ &lt;child name=&quot;basefont&quot; /&gt;
+ &lt;child name=&quot;br&quot; /&gt;
+ &lt;child name=&quot;script&quot; /&gt;
+ &lt;child name=&quot;map&quot; /&gt;
+ &lt;child name=&quot;q&quot; /&gt;
+ &lt;child name=&quot;sub&quot; /&gt;
+ &lt;child name=&quot;sup&quot; /&gt;
+ &lt;child name=&quot;span&quot; /&gt;
+ &lt;child name=&quot;bdo&quot; /&gt;
+ &lt;child name=&quot;iframe&quot; /&gt;
+ &lt;child name=&quot;input&quot; /&gt;
+ &lt;child name=&quot;select&quot; /&gt;
+ &lt;child name=&quot;textarea&quot; /&gt;
+ &lt;child name=&quot;label&quot; /&gt;
+ &lt;child name=&quot;button&quot; /&gt;
 &lt;/children&gt;
 &lt;/tag&gt;
 &lt;/TAGS&gt;
--- branches/KDE/3.5/kdewebdev/quanta/data/dtep/html/p.tag #467448:467449
@@ -35,7 +35,7 @@
  &lt;child name=&quot;strike&quot; /&gt;
  &lt;child name=&quot;big&quot; /&gt;
  &lt;child name=&quot;small&quot; /&gt;
-  &lt;child name=&quot;em&quot; /&gt;
+ &lt;child name=&quot;em&quot; /&gt;
  &lt;child name=&quot;strong&quot; /&gt;
  &lt;child name=&quot;dfn&quot; /&gt;
  &lt;child name=&quot;code&quot; /&gt;
@@ -45,7 +45,7 @@
  &lt;child name=&quot;cite&quot; /&gt;
  &lt;child name=&quot;abbr&quot; /&gt;
  &lt;child name=&quot;acronym&quot; /&gt;
-  &lt;child name=&quot;a&quot; /&gt;
+ &lt;child name=&quot;a&quot; /&gt;
  &lt;child name=&quot;img&quot; /&gt;
  &lt;child name=&quot;applet&quot; /&gt;
  &lt;child name=&quot;object&quot; /&gt;
@@ -60,7 +60,7 @@
  &lt;child name=&quot;span&quot; /&gt;
  &lt;child name=&quot;bdo&quot; /&gt;
  &lt;child name=&quot;iframe&quot; /&gt;
-  &lt;child name=&quot;input&quot; /&gt;
+ &lt;child name=&quot;input&quot; /&gt;
  &lt;child name=&quot;select&quot; /&gt;
  &lt;child name=&quot;textarea&quot; /&gt;
  &lt;child name=&quot;label&quot; /&gt;
</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>