summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-10-06 21:28:50 +0000
committerAntony Dovgal <tony2001@php.net>2007-10-06 21:28:50 +0000
commitca4c55ad3a673257925bd9b458683c4f0e60e755 (patch)
tree22b098ba954617b791988925d0b2c190221b0d6a
parent732f54a65cf874b6dfcd505964a0606443c319da (diff)
downloadphp-git-ca4c55ad3a673257925bd9b458683c4f0e60e755.tar.gz
MFH: fix ws & folding, nuke unused vars
-rw-r--r--ext/xsl/xsl_fe.h9
-rw-r--r--ext/xsl/xsltprocessor.c36
2 files changed, 26 insertions, 19 deletions
diff --git a/ext/xsl/xsl_fe.h b/ext/xsl/xsl_fe.h
index 46705a265c..c005b036b1 100644
--- a/ext/xsl/xsl_fe.h
+++ b/ext/xsl/xsl_fe.h
@@ -35,3 +35,12 @@ PHP_FUNCTION(xsl_xsltprocessor_has_exslt_support);
PHP_FUNCTION(xsl_xsltprocessor_register_php_functions);
PHP_FUNCTION(xsl_xsltprocessor_set_profiling);
#endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
diff --git a/ext/xsl/xsltprocessor.c b/ext/xsl/xsltprocessor.c
index 487cfecfe9..7938fad9a1 100644
--- a/ext/xsl/xsltprocessor.c
+++ b/ext/xsl/xsltprocessor.c
@@ -48,7 +48,6 @@ const zend_function_entry php_xsl_xsltprocessor_class_functions[] = {
{NULL, NULL, NULL}
};
-/* {{{ attribute protos, not implemented yet */
/* {{{ php_xsl_xslt_string_to_xpathexpr()
Translates a string to a XPath Expression */
static char *php_xsl_xslt_string_to_xpathexpr(const char *str TSRMLS_DC)
@@ -73,7 +72,7 @@ static char *php_xsl_xslt_string_to_xpathexpr(const char *str TSRMLS_DC)
}
return (char *) value;
}
-
+/* }}} */
/* {{{ php_xsl_xslt_make_params()
Translates a PHP array to a libxslt parameters array */
@@ -123,8 +122,7 @@ static char **php_xsl_xslt_make_params(HashTable *parht, int xpath_params TSRMLS
}
/* }}} */
-
-static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type)
+static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */
{
xsltTransformContextPtr tctxt;
zval **args;
@@ -314,17 +312,19 @@ static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int t
efree(fci.params);
}
}
+/* }}} */
-void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs)
+void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
{
xsl_ext_function_php(ctxt, nargs, 1);
}
+/* }}} */
-void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs)
+void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
{
xsl_ext_function_php(ctxt, nargs, 2);
}
-
+/* }}} */
/* {{{ proto void xsl_xsltprocessor_import_stylesheet(domdocument doc);
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#
@@ -413,8 +413,7 @@ PHP_FUNCTION(xsl_xsltprocessor_import_stylesheet)
}
/* }}} end xsl_xsltprocessor_import_stylesheet */
-
-static xmlDocPtr php_xsl_apply_stylesheet(zval *id, xsl_object *intern, xsltStylesheetPtr style, zval *docp TSRMLS_DC)
+static xmlDocPtr php_xsl_apply_stylesheet(zval *id, xsl_object *intern, xsltStylesheetPtr style, zval *docp TSRMLS_DC) /* {{{ */
{
xmlDocPtr newdocp;
xmlDocPtr doc = NULL;
@@ -513,6 +512,7 @@ static xmlDocPtr php_xsl_apply_stylesheet(zval *id, xsl_object *intern, xsltStyl
return newdocp;
}
+/* }}} */
/* {{{ proto domdocument xsl_xsltprocessor_transform_to_doc(domnode doc);
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#
@@ -573,7 +573,6 @@ PHP_FUNCTION(xsl_xsltprocessor_transform_to_doc)
}
/* }}} end xsl_xsltprocessor_transform_to_doc */
-
/* {{{ proto int xsl_xsltprocessor_transform_to_uri(domdocument doc, string uri);
*/
PHP_FUNCTION(xsl_xsltprocessor_transform_to_uri)
@@ -605,7 +604,6 @@ PHP_FUNCTION(xsl_xsltprocessor_transform_to_uri)
}
/* }}} end xsl_xsltprocessor_transform_to_uri */
-
/* {{{ proto string xsl_xsltprocessor_transform_to_xml(domdocument doc);
*/
PHP_FUNCTION(xsl_xsltprocessor_transform_to_xml)
@@ -644,7 +642,6 @@ PHP_FUNCTION(xsl_xsltprocessor_transform_to_xml)
}
/* }}} end xsl_xsltprocessor_transform_to_xml */
-
/* {{{ proto bool xsl_xsltprocessor_set_parameter(string namespace, mixed name [, string value]);
*/
PHP_FUNCTION(xsl_xsltprocessor_set_parameter)
@@ -756,7 +753,6 @@ PHP_FUNCTION(xsl_xsltprocessor_register_php_functions)
DOM_GET_THIS(id);
-
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "a", &array_value) == SUCCESS) {
intern = (xsl_object *)zend_object_store_get_object(id TSRMLS_CC);
zend_hash_internal_pointer_reset(Z_ARRVAL_P(array_value));
@@ -793,9 +789,7 @@ PHP_FUNCTION(xsl_xsltprocessor_register_php_functions)
/* {{{ proto bool xsl_xsltprocessor_set_profiling(string filename) */
PHP_FUNCTION(xsl_xsltprocessor_set_profiling)
{
-
zval *id;
- zval *array_value, **entry, *new_string;
xsl_object *intern;
char *filename;
int filename_len;
@@ -803,15 +797,11 @@ PHP_FUNCTION(xsl_xsltprocessor_set_profiling)
if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "s", &filename, &filename_len) == SUCCESS) {
intern = (xsl_object *)zend_object_store_get_object(id TSRMLS_CC);
-
intern->profiling = estrndup(filename,filename_len);
-
RETURN_TRUE;
-
} else {
WRONG_PARAM_COUNT;
}
-
}
/* }}} end xsl_xsltprocessor_set_profiling */
@@ -827,3 +817,11 @@ PHP_FUNCTION(xsl_xsltprocessor_has_exslt_support)
}
/* }}} end xsl_xsltprocessor_has_exslt_support(); */
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */