Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: third_party/libxslt/src/libxslt/transform.c

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxslt/src/libxslt/transform.h ('k') | third_party/libxslt/src/libxslt/trio.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * transform.c: Implementation of the XSL Transformation 1.0 engine 2 * transform.c: Implementation of the XSL Transformation 1.0 engine
3 * transform part, i.e. applying a Stylesheet to a document 3 * transform part, i.e. applying a Stylesheet to a document
4 * 4 *
5 * References: 5 * References:
6 * http://www.w3.org/TR/1999/REC-xslt-19991116 6 * http://www.w3.org/TR/1999/REC-xslt-19991116
7 * 7 *
8 * Michael Kay "XSLT Programmer's Reference" pp 637-643 8 * Michael Kay "XSLT Programmer's Reference" pp 637-643
9 * Writing Multiple Output Files 9 * Writing Multiple Output Files
10 * 10 *
(...skipping 6444 matching lines...) Expand 10 before | Expand all | Expand 10 after
6455 XSLT_NAMESPACE, 6455 XSLT_NAMESPACE,
6456 (xsltTransformFunction) xsltDebug); 6456 (xsltTransformFunction) xsltDebug);
6457 xsltRegisterExtElement(ctxt, (const xmlChar *) "otherwise", 6457 xsltRegisterExtElement(ctxt, (const xmlChar *) "otherwise",
6458 XSLT_NAMESPACE, 6458 XSLT_NAMESPACE,
6459 (xsltTransformFunction) xsltDebug); 6459 (xsltTransformFunction) xsltDebug);
6460 xsltRegisterExtElement(ctxt, (const xmlChar *) "fallback", 6460 xsltRegisterExtElement(ctxt, (const xmlChar *) "fallback",
6461 XSLT_NAMESPACE, 6461 XSLT_NAMESPACE,
6462 (xsltTransformFunction) xsltDebug); 6462 (xsltTransformFunction) xsltDebug);
6463 6463
6464 } 6464 }
OLDNEW
« no previous file with comments | « third_party/libxslt/src/libxslt/transform.h ('k') | third_party/libxslt/src/libxslt/trio.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698