Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
bf0f2e14
Commit
bf0f2e14
authored
Aug 09, 2002
by
Michael Smith
Browse files
rename transformXSLT to xslt_transform() for consistency with the rest
of the source. svn path=/trunk/icecast/; revision=3781
parent
7f0230e8
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/stats.c
View file @
bf0f2e14
...
...
@@ -735,7 +735,7 @@ void stats_transform_xslt(client_t *client, char *xslpath)
stats_get_xml
(
&
doc
);
transform
XSLT
(
doc
,
xslpath
,
client
);
xslt_
transform
(
doc
,
xslpath
,
client
);
xmlFreeDoc
(
doc
);
}
...
...
src/xslt.c
View file @
bf0f2e14
...
...
@@ -26,7 +26,7 @@
#include
"stats.h"
void
transform
XSLT
(
xmlDocPtr
doc
,
char
*
xslfilename
,
client_t
*
client
)
void
xslt_
transform
(
xmlDocPtr
doc
,
char
*
xslfilename
,
client_t
*
client
)
{
xmlOutputBufferPtr
outputBuffer
;
xmlDocPtr
res
;
...
...
src/xslt.h
View file @
bf0f2e14
...
...
@@ -22,5 +22,5 @@
#include
"stats.h"
void
transform
XSLT
(
xmlDocPtr
doc
,
char
*
xslfilename
,
client_t
*
client
);
void
xslt_
transform
(
xmlDocPtr
doc
,
char
*
xslfilename
,
client_t
*
client
);
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment