OSDN Git Service

* change writting.
authorkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Mon, 3 Jul 2006 17:44:46 +0000 (17:44 +0000)
committerkonn <konn@1a406e8e-add9-4483-a2c8-d8cac5b7c224>
Mon, 3 Jul 2006 17:44:46 +0000 (17:44 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/modchxj/mod_chxj/trunk@1676 1a406e8e-add9-4483-a2c8-d8cac5b7c224

include/chxj_qr_code.h
include/chxj_specified_device.h
include/chxj_tag_util.h
src/chxj_chtml30.c
src/chxj_hdml.c
src/chxj_img_conv_format.c
src/chxj_jhtml.c

index 516d5e1..343e3c7 100644 (file)
@@ -129,7 +129,7 @@ chxj_qrcode_create_image_data(
 extern void    
 chxj_qrcode_node_to_qrcode(
   qr_code_t* qrcode, 
-  Node* root);
+  Node*      root);
 extern char*   chxj_qr_code_blob_handler       (request_rec* r, const char* indata, size_t* len);
 
 #endif
index 743fbdc..4e833eb 100644 (file)
@@ -114,6 +114,6 @@ struct converter_t {
 
 extern converter_t convert_routine[];
 
-device_table* chxj_specified_device(request_rec* r, const char* user_agent);
+extern device_table* chxj_specified_device(request_rec* r, const char* user_agent);
 
 #endif
index ddf7c5c..b2ab6f5 100644 (file)
@@ -24,7 +24,8 @@
 /*----------------------------------------------------------------------------*/
 extern char*    
 qs_get_value_attr(
-  Doc* doc, Node* tag, request_rec* r);
+  Doc* doc, 
+  Node* tag, request_rec* r);
 extern char*    qs_get_checked_attr   (Doc* doc, Node* tag, request_rec* r);
 extern char*    qs_get_type_attr      (Doc* doc, Node* tag, request_rec* r);
 extern char*    qs_get_name_attr      (Doc* doc, Node* tag, request_rec* r);
index 3b11034..a7ba010 100644 (file)
@@ -1261,7 +1261,7 @@ s_chtml30_start_font_tag(void* pdoc, Node* node)
                                  chtml30->out, 
                                  " color=\"", 
                                  value, 
-                      "\"", 
+                                 "\"", 
                       NULL);
     }
     else
index 48dbeef..4fe7648 100644 (file)
@@ -1523,7 +1523,7 @@ s_hdml_do_input_text_tag(hdml_t* hdml, Node* tag)
   if (val) 
     s_output_to_init_vars(hdml, 
                           apr_psprintf(r->pool, "%s%02d=%s", 
-                        s_get_form_no(r, hdml),
+                                       s_get_form_no(r, hdml),
                         hdml->var_cnt[hdml->pure_form_cnt],
                         ap_escape_uri(r->pool,val)));
   else 
index c896c47..c634e31 100644 (file)
@@ -177,7 +177,7 @@ static apr_status_t s_send_cache_file(  device_table*         spec,
                                         request_rec*          r,
                                         const char*           tmpfile);
 
-static apr_status_t s_header_only_cache_file(device_table* spec, 
+static apr_status_t s_header_only_cache_file(device_table*         spec, 
                                              query_string_param_t* query_string, 
                                              request_rec*          r, 
                                              const char*           tmpfile);
index ac86b28..4fe9e95 100644 (file)
@@ -1266,7 +1266,7 @@ s_jhtml_start_font_tag(void* pdoc, Node* node)
 
     if ((*name == 'c' || *name == 'C') && strcasecmp(name, "color") == 0) {
       jhtml->out = apr_pstrcat(r->pool, 
-                      jhtml->out, 
+                               jhtml->out, 
                       " color=\"", 
                       value, 
                       "\"",