OSDN Git Service

* Fixed bug.
authorAtsushi Konno <konn@users.sourceforge.jp>
Wed, 17 Dec 2008 17:37:56 +0000 (02:37 +0900)
committerAtsushi Konno <konn@users.sourceforge.jp>
Wed, 17 Dec 2008 17:37:56 +0000 (02:37 +0900)
    - telto: -> tel:

src/chxj_chtml10.c
src/chxj_chtml20.c
src/chxj_chtml30.c
src/chxj_chtml40.c
src/chxj_chtml50.c
src/chxj_jhtml.c
src/chxj_jxhtml.c
src/chxj_xhtml_mobile_1_0.c

index 6caeaf0..3be704a 100644 (file)
@@ -1502,7 +1502,7 @@ s_chtml10_start_a_tag(void *pdoc, Node *node)
         /* CHTML1.0                                                           */
         /*--------------------------------------------------------------------*/
         value = chxj_encoding_parameter(r, value);
-        if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+        if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
           value = chxj_add_cookie_parameter(r, value, chtml10->cookie);
         }
         W_L(" href=\"");
index 90468c0..7921978 100644 (file)
@@ -1072,7 +1072,7 @@ s_chtml20_start_a_tag(void *pdoc, Node *node)
         /* CHTML1.0                                                           */
         /*--------------------------------------------------------------------*/
         value = chxj_encoding_parameter(r, value);
-        if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+        if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
           value = chxj_add_cookie_parameter(r, value, chtml20->cookie);
         }
         W_L(" href=\"");
index 3d61953..51a9f3c 100644 (file)
@@ -1006,7 +1006,7 @@ s_chtml30_start_a_tag(void *pdoc, Node *node)
       /* CHTML1.0                                                             */
       /*----------------------------------------------------------------------*/
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_add_cookie_parameter(r, value, chtml30->cookie);
       }
       W_L(" href=\"");
index 2c3ee70..ed734f5 100644 (file)
@@ -1011,7 +1011,7 @@ s_chtml40_start_a_tag(void *pdoc, Node *node)
       /* CHTML1.0                                                             */
       /*----------------------------------------------------------------------*/
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_add_cookie_parameter(r, value, chtml40->cookie);
       }
       W_L(" href=\"");
index 984b6e1..6d55672 100644 (file)
@@ -1013,7 +1013,7 @@ s_chtml50_start_a_tag(void *pdoc, Node *node)
       /* CHTML1.0                                                             */
       /*----------------------------------------------------------------------*/
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_add_cookie_parameter(r, value, chtml50->cookie);
       }
       W_L(" href=\"");
index 24f853a..0fc8b8d 100644 (file)
@@ -1056,7 +1056,7 @@ s_jhtml_start_a_tag(void *pdoc, Node *node)
       /* CHTML1.0                                                             */
       /*----------------------------------------------------------------------*/
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_add_cookie_parameter(r, value, jhtml->cookie);
         value = chxj_jreserved_tag_to_safe_for_query_string(r, value);
       }
index 11ff059..2eef9f6 100644 (file)
@@ -1058,7 +1058,7 @@ s_jxhtml_start_a_tag(void *pdoc, Node *node)
       /* CHTML1.0                                                             */
       /*----------------------------------------------------------------------*/
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_jreserved_tag_to_safe_for_query_string(r, value);
       }
       W_L(" href=\"");
index 0311b0e..7e7556e 100644 (file)
@@ -1032,7 +1032,7 @@ s_xhtml_1_0_start_a_tag(void *pdoc, Node *node)
     }
     else if (STRCASEEQ('h','H',"href", name) && value && *value) {
       value = chxj_encoding_parameter(r, value);
-      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "telto:")) {
+      if (! chxj_starts_with(value, "mailto:") && ! chxj_starts_with(value, "tel:")) {
         value = chxj_add_cookie_parameter(r, value, xhtml->cookie);
       }
       W_L(" href=\"");