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

Side by Side Diff: third_party/libxslt/libexslt/exslt.c

Issue 661058: libxslt update (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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/libexslt/exslt.h ('k') | third_party/libxslt/libexslt/exsltconfig.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 #define IN_LIBEXSLT 1 #define IN_LIBEXSLT
2 #include "libexslt/libexslt.h" 2 #include "libexslt/libexslt.h"
3 3
4 #include <libxml/xmlversion.h> 4 #include <libxml/xmlversion.h>
5 5
6 #include "config.h" 6 #include "config.h"
7 7
8 #include <libxslt/xsltconfig.h> 8 #include <libxslt/xsltconfig.h>
9 #include <libxslt/extensions.h> 9 #include <libxslt/extensions.h>
10 10
11 #include "exsltconfig.h" 11 #include "exsltconfig.h"
12 #include "exslt.h" 12 #include "exslt.h"
13 13
14 const char *exsltLibraryVersion = LIBEXSLT_VERSION_STRING 14 const char *exsltLibraryVersion = LIBEXSLT_VERSION_STRING
15 LIBEXSLT_VERSION_EXTRA; 15 LIBEXSLT_VERSION_EXTRA;
16 const int exsltLibexsltVersion = LIBEXSLT_VERSION; 16 const int exsltLibexsltVersion = LIBEXSLT_VERSION;
17 const int exsltLibxsltVersion = LIBXSLT_VERSION; 17 const int exsltLibxsltVersion = LIBXSLT_VERSION;
18 const int exsltLibxmlVersion = LIBXML_VERSION; 18 const int exsltLibxmlVersion = LIBXML_VERSION;
19 19
20 /** 20 /**
21 * exsltRegisterAll: 21 * exsltRegisterAll:
22 * 22 *
23 * Registers all available EXSLT extensions 23 * Registers all available EXSLT extensions
24 */ 24 */
25 void 25 void
26 exsltRegisterAll (void) { 26 exsltRegisterAll (void) {
27 xsltInitGlobals();
27 exsltCommonRegister(); 28 exsltCommonRegister();
28 #ifdef EXSLT_CRYPTO_ENABLED 29 #ifdef EXSLT_CRYPTO_ENABLED
29 exsltCryptoRegister(); 30 exsltCryptoRegister();
30 #endif 31 #endif
31 exsltMathRegister(); 32 exsltMathRegister();
32 exsltSetsRegister(); 33 exsltSetsRegister();
33 exsltFuncRegister(); 34 exsltFuncRegister();
34 exsltStrRegister(); 35 exsltStrRegister();
35 exsltDateRegister(); 36 exsltDateRegister();
36 exsltSaxonRegister(); 37 exsltSaxonRegister();
37 exsltDynRegister(); 38 exsltDynRegister();
38 } 39 }
39 40
OLDNEW
« no previous file with comments | « third_party/libxslt/libexslt/exslt.h ('k') | third_party/libxslt/libexslt/exsltconfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698