OSDN Git Service

* Added <dl> tag for au XHTML converter.
authorkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Sun, 13 Apr 2008 10:14:48 +0000 (10:14 +0000)
committerkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Sun, 13 Apr 2008 10:14:48 +0000 (10:14 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/modchxj/mod_chxj/branches/RELEASE_0_11_0@2190 1a406e8e-add9-4483-a2c8-d8cac5b7c224

src/chxj_chtml30.c
src/chxj_xhtml_mobile_1_0.c
test/chxj_xhtml_mobile_1_0/test_chxj_xhtml_mobile_1_0.c

index 2c44751..de882ce 100644 (file)
@@ -3106,6 +3106,7 @@ s_chtml30_end_dl_tag(void *pdoc, Node *UNUSED(child))
   return chtml30->out;
 }
 
+
 /**
  * It is a handter who processes the DT tag.
  *
index 21a03a4..cc2c41e 100644 (file)
@@ -97,6 +97,8 @@ static char *s_xhtml_1_0_start_blockquote_tag(void *pdoc, Node *node);
 static char *s_xhtml_1_0_end_blockquote_tag  (void *pdoc, Node *node);
 static char *s_xhtml_1_0_start_dir_tag       (void *pdoc, Node *node);
 static char *s_xhtml_1_0_end_dir_tag         (void *pdoc, Node *node);
+static char *s_xhtml_1_0_start_dl_tag        (void *pdoc, Node *node);
+static char *s_xhtml_1_0_end_dl_tag          (void *pdoc, Node *node);
 
 static void  s_init_xhtml(xhtml_t *xhtml, Doc *doc, request_rec *r, device_table *spec);
 static int   s_xhtml_search_emoji(xhtml_t *xhtml, char *txt, char **rslt);
@@ -341,8 +343,8 @@ tag_handler xhtml_handler[] = {
   },
   /* tagDL */
   {
-    NULL,
-    NULL,
+    s_xhtml_1_0_start_dl_tag,
+    s_xhtml_1_0_end_dl_tag,
   },
   /* tagDD */
   {
@@ -2457,6 +2459,42 @@ s_xhtml_1_0_end_dir_tag(void *pdoc, Node *UNUSED(child))
   W_L("</dir>");
   return xhtml->out;
 }
+
+
+/**
+ * It is a handler who processes the DL tag.
+ *
+ * @param pdoc  [i/o] The pointer to the XHTML structure at the output
+ *                     destination is specified.
+ * @param node   [i]   The DL tag node is specified.
+ * @return The conversion result is returned.
+ */
+static char *
+s_xhtml_1_0_start_dl_tag(void *pdoc, Node *UNUSED(child))
+{
+  xhtml_t *xhtml = GET_XHTML(pdoc);
+  Doc *doc = xhtml->doc;
+  W_L("<dl>");
+  return xhtml->out;
+}
+
+
+/**
+ * It is a handler who processes the DL tag.
+ *
+ * @param pdoc  [i/o] The pointer to the XHTML structure at the output
+ *                     destination is specified.
+ * @param node   [i]   The DL tag node is specified.
+ * @return The conversion result is returned.
+ */
+static char *
+s_xhtml_1_0_end_dl_tag(void *pdoc, Node *UNUSED(child))
+{
+  xhtml_t *xhtml = GET_XHTML(pdoc);
+  Doc *doc = xhtml->doc;
+  W_L("</dl>");
+  return xhtml->out;
+}
 /*
  * vim:ts=2 et
  */
index 5a94d8c..43de125 100644 (file)
@@ -511,9 +511,9 @@ main()
 
   CU_add_test(xhtml_suite, "test <dir>.",                                       test_xhtml_dir_tag_001);
   CU_add_test(xhtml_suite, "test <dir> with no <li>.",                          test_xhtml_dir_tag_002);
-#if 0
 
   CU_add_test(xhtml_suite, "test <dl>.",                                        test_xhtml_dl_tag_001);
+#if 0
 
   CU_add_test(xhtml_suite, "test <dt>.",                                        test_xhtml_dt_tag_001);
   CU_add_test(xhtml_suite, "test <dt> with void value.",                        test_xhtml_dt_tag_002);