nokogiri 1.14.5-x86-linux → 1.15.0-x86-linux
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +9 -8
- data/dependencies.yml +6 -6
- data/ext/nokogiri/extconf.rb +66 -22
- data/ext/nokogiri/html4_document.c +1 -2
- data/ext/nokogiri/html4_element_description.c +19 -14
- data/ext/nokogiri/html4_sax_parser_context.c +10 -16
- data/ext/nokogiri/html4_sax_push_parser.c +2 -2
- data/ext/nokogiri/include/libexslt/exsltconfig.h +3 -3
- data/ext/nokogiri/include/libxml2/libxml/HTMLparser.h +52 -38
- data/ext/nokogiri/include/libxml2/libxml/HTMLtree.h +18 -18
- data/ext/nokogiri/include/libxml2/libxml/SAX.h +36 -36
- data/ext/nokogiri/include/libxml2/libxml/SAX2.h +37 -36
- data/ext/nokogiri/include/libxml2/libxml/c14n.h +4 -4
- data/ext/nokogiri/include/libxml2/libxml/catalog.h +36 -36
- data/ext/nokogiri/include/libxml2/libxml/chvalid.h +9 -9
- data/ext/nokogiri/include/libxml2/libxml/debugXML.h +28 -28
- data/ext/nokogiri/include/libxml2/libxml/dict.h +13 -13
- data/ext/nokogiri/include/libxml2/libxml/encoding.h +20 -19
- data/ext/nokogiri/include/libxml2/libxml/entities.h +19 -21
- data/ext/nokogiri/include/libxml2/libxml/globals.h +89 -59
- data/ext/nokogiri/include/libxml2/libxml/hash.h +25 -25
- data/ext/nokogiri/include/libxml2/libxml/list.h +26 -26
- data/ext/nokogiri/include/libxml2/libxml/nanoftp.h +22 -22
- data/ext/nokogiri/include/libxml2/libxml/nanohttp.h +17 -17
- data/ext/nokogiri/include/libxml2/libxml/parser.h +100 -79
- data/ext/nokogiri/include/libxml2/libxml/parserInternals.h +149 -143
- data/ext/nokogiri/include/libxml2/libxml/pattern.h +15 -15
- data/ext/nokogiri/include/libxml2/libxml/relaxng.h +26 -26
- data/ext/nokogiri/include/libxml2/libxml/schemasInternals.h +2 -2
- data/ext/nokogiri/include/libxml2/libxml/schematron.h +18 -18
- data/ext/nokogiri/include/libxml2/libxml/threads.h +23 -20
- data/ext/nokogiri/include/libxml2/libxml/tree.h +166 -164
- data/ext/nokogiri/include/libxml2/libxml/uri.h +15 -15
- data/ext/nokogiri/include/libxml2/libxml/valid.h +72 -87
- data/ext/nokogiri/include/libxml2/libxml/xinclude.h +10 -10
- data/ext/nokogiri/include/libxml2/libxml/xlink.h +5 -5
- data/ext/nokogiri/include/libxml2/libxml/xmlIO.h +60 -59
- data/ext/nokogiri/include/libxml2/libxml/xmlautomata.h +21 -21
- data/ext/nokogiri/include/libxml2/libxml/xmlerror.h +18 -46
- data/ext/nokogiri/include/libxml2/libxml/xmlexports.h +14 -41
- data/ext/nokogiri/include/libxml2/libxml/xmlmemory.h +26 -24
- data/ext/nokogiri/include/libxml2/libxml/xmlmodule.h +4 -4
- data/ext/nokogiri/include/libxml2/libxml/xmlreader.h +87 -87
- data/ext/nokogiri/include/libxml2/libxml/xmlregexp.h +30 -30
- data/ext/nokogiri/include/libxml2/libxml/xmlsave.h +10 -10
- data/ext/nokogiri/include/libxml2/libxml/xmlschemas.h +30 -30
- data/ext/nokogiri/include/libxml2/libxml/xmlschemastypes.h +34 -34
- data/ext/nokogiri/include/libxml2/libxml/xmlstring.h +30 -30
- data/ext/nokogiri/include/libxml2/libxml/xmlunicode.h +166 -166
- data/ext/nokogiri/include/libxml2/libxml/xmlversion.h +50 -27
- data/ext/nokogiri/include/libxml2/libxml/xmlwriter.h +80 -80
- data/ext/nokogiri/include/libxml2/libxml/xpath.h +41 -41
- data/ext/nokogiri/include/libxml2/libxml/xpathInternals.h +117 -117
- data/ext/nokogiri/include/libxml2/libxml/xpointer.h +21 -21
- data/ext/nokogiri/include/libxslt/attributes.h +1 -0
- data/ext/nokogiri/include/libxslt/variables.h +3 -3
- data/ext/nokogiri/include/libxslt/xsltInternals.h +14 -4
- data/ext/nokogiri/include/libxslt/xsltconfig.h +4 -4
- data/ext/nokogiri/include/libxslt/xsltlocale.h +14 -54
- data/ext/nokogiri/include/libxslt/xsltutils.h +35 -2
- data/ext/nokogiri/nokogiri.c +46 -24
- data/ext/nokogiri/nokogiri.h +13 -2
- data/ext/nokogiri/xml_attr.c +1 -1
- data/ext/nokogiri/xml_cdata.c +10 -2
- data/ext/nokogiri/xml_comment.c +1 -1
- data/ext/nokogiri/xml_document.c +102 -22
- data/ext/nokogiri/xml_document_fragment.c +1 -1
- data/ext/nokogiri/xml_dtd.c +1 -1
- data/ext/nokogiri/xml_element_content.c +32 -29
- data/ext/nokogiri/xml_element_decl.c +5 -5
- data/ext/nokogiri/xml_encoding_handler.c +12 -4
- data/ext/nokogiri/xml_entity_reference.c +1 -1
- data/ext/nokogiri/xml_namespace.c +11 -12
- data/ext/nokogiri/xml_node.c +7 -7
- data/ext/nokogiri/xml_node_set.c +125 -105
- data/ext/nokogiri/xml_processing_instruction.c +1 -1
- data/ext/nokogiri/xml_reader.c +37 -28
- data/ext/nokogiri/xml_relax_ng.c +65 -78
- data/ext/nokogiri/xml_sax_parser.c +24 -5
- data/ext/nokogiri/xml_sax_parser_context.c +46 -25
- data/ext/nokogiri/xml_sax_push_parser.c +29 -8
- data/ext/nokogiri/xml_schema.c +90 -116
- data/ext/nokogiri/xml_text.c +10 -2
- data/ext/nokogiri/xml_xpath_context.c +156 -83
- data/ext/nokogiri/xslt_stylesheet.c +103 -50
- data/lib/nokogiri/2.7/nokogiri.so +0 -0
- data/lib/nokogiri/3.0/nokogiri.so +0 -0
- data/lib/nokogiri/3.1/nokogiri.so +0 -0
- data/lib/nokogiri/3.2/nokogiri.so +0 -0
- data/lib/nokogiri/css/xpath_visitor.rb +2 -2
- data/lib/nokogiri/extension.rb +1 -1
- data/lib/nokogiri/html4/document_fragment.rb +1 -1
- data/lib/nokogiri/html4/element_description_defaults.rb +1821 -353
- data/lib/nokogiri/html5/document_fragment.rb +1 -1
- data/lib/nokogiri/html5/node.rb +5 -0
- data/lib/nokogiri/html5.rb +5 -2
- data/lib/nokogiri/jruby/nokogiri_jars.rb +3 -3
- data/lib/nokogiri/version/constant.rb +1 -1
- data/lib/nokogiri/xml/attribute_decl.rb +4 -2
- data/lib/nokogiri/xml/document_fragment.rb +1 -1
- data/lib/nokogiri/xml/element_content.rb +10 -2
- data/lib/nokogiri/xml/element_decl.rb +4 -2
- data/lib/nokogiri/xml/entity_decl.rb +4 -2
- data/lib/nokogiri/xml/node/save_options.rb +8 -0
- data/lib/nokogiri/xml/node.rb +22 -13
- data/lib/nokogiri/xml/pp/node.rb +23 -12
- data/lib/nokogiri/xml/sax/document.rb +1 -1
- data/lib/nokogiri/xml/searchable.rb +18 -10
- data/lib/nokogiri/xslt.rb +73 -3
- data/lib/nokogiri.rb +12 -4
- data/lib/xsd/xmlparser/nokogiri.rb +1 -1
- metadata +2 -2
@@ -100,15 +100,15 @@ extern "C" {
|
|
100
100
|
*/
|
101
101
|
#define xmlXPathGetContextNode(ctxt) ((ctxt)->context->node)
|
102
102
|
|
103
|
-
XMLPUBFUN int
|
103
|
+
XMLPUBFUN int
|
104
104
|
xmlXPathPopBoolean (xmlXPathParserContextPtr ctxt);
|
105
|
-
XMLPUBFUN double
|
105
|
+
XMLPUBFUN double
|
106
106
|
xmlXPathPopNumber (xmlXPathParserContextPtr ctxt);
|
107
|
-
XMLPUBFUN xmlChar *
|
107
|
+
XMLPUBFUN xmlChar *
|
108
108
|
xmlXPathPopString (xmlXPathParserContextPtr ctxt);
|
109
|
-
XMLPUBFUN xmlNodeSetPtr
|
109
|
+
XMLPUBFUN xmlNodeSetPtr
|
110
110
|
xmlXPathPopNodeSet (xmlXPathParserContextPtr ctxt);
|
111
|
-
XMLPUBFUN void *
|
111
|
+
XMLPUBFUN void *
|
112
112
|
xmlXPathPopExternal (xmlXPathParserContextPtr ctxt);
|
113
113
|
|
114
114
|
/**
|
@@ -331,7 +331,7 @@ XMLPUBFUN void * XMLCALL
|
|
331
331
|
* Variable Lookup forwarding.
|
332
332
|
*/
|
333
333
|
|
334
|
-
XMLPUBFUN void
|
334
|
+
XMLPUBFUN void
|
335
335
|
xmlXPathRegisterVariableLookup (xmlXPathContextPtr ctxt,
|
336
336
|
xmlXPathVariableLookupFunc f,
|
337
337
|
void *data);
|
@@ -340,7 +340,7 @@ XMLPUBFUN void XMLCALL
|
|
340
340
|
* Function Lookup forwarding.
|
341
341
|
*/
|
342
342
|
|
343
|
-
XMLPUBFUN void
|
343
|
+
XMLPUBFUN void
|
344
344
|
xmlXPathRegisterFuncLookup (xmlXPathContextPtr ctxt,
|
345
345
|
xmlXPathFuncLookupFunc f,
|
346
346
|
void *funcCtxt);
|
@@ -348,22 +348,22 @@ XMLPUBFUN void XMLCALL
|
|
348
348
|
/*
|
349
349
|
* Error reporting.
|
350
350
|
*/
|
351
|
-
XMLPUBFUN void
|
351
|
+
XMLPUBFUN void
|
352
352
|
xmlXPatherror (xmlXPathParserContextPtr ctxt,
|
353
353
|
const char *file,
|
354
354
|
int line,
|
355
355
|
int no);
|
356
356
|
|
357
|
-
XMLPUBFUN void
|
357
|
+
XMLPUBFUN void
|
358
358
|
xmlXPathErr (xmlXPathParserContextPtr ctxt,
|
359
359
|
int error);
|
360
360
|
|
361
361
|
#ifdef LIBXML_DEBUG_ENABLED
|
362
|
-
XMLPUBFUN void
|
362
|
+
XMLPUBFUN void
|
363
363
|
xmlXPathDebugDumpObject (FILE *output,
|
364
364
|
xmlXPathObjectPtr cur,
|
365
365
|
int depth);
|
366
|
-
XMLPUBFUN void
|
366
|
+
XMLPUBFUN void
|
367
367
|
xmlXPathDebugDumpCompExpr(FILE *output,
|
368
368
|
xmlXPathCompExprPtr comp,
|
369
369
|
int depth);
|
@@ -371,48 +371,48 @@ XMLPUBFUN void XMLCALL
|
|
371
371
|
/**
|
372
372
|
* NodeSet handling.
|
373
373
|
*/
|
374
|
-
XMLPUBFUN int
|
374
|
+
XMLPUBFUN int
|
375
375
|
xmlXPathNodeSetContains (xmlNodeSetPtr cur,
|
376
376
|
xmlNodePtr val);
|
377
|
-
XMLPUBFUN xmlNodeSetPtr
|
377
|
+
XMLPUBFUN xmlNodeSetPtr
|
378
378
|
xmlXPathDifference (xmlNodeSetPtr nodes1,
|
379
379
|
xmlNodeSetPtr nodes2);
|
380
|
-
XMLPUBFUN xmlNodeSetPtr
|
380
|
+
XMLPUBFUN xmlNodeSetPtr
|
381
381
|
xmlXPathIntersection (xmlNodeSetPtr nodes1,
|
382
382
|
xmlNodeSetPtr nodes2);
|
383
383
|
|
384
|
-
XMLPUBFUN xmlNodeSetPtr
|
384
|
+
XMLPUBFUN xmlNodeSetPtr
|
385
385
|
xmlXPathDistinctSorted (xmlNodeSetPtr nodes);
|
386
|
-
XMLPUBFUN xmlNodeSetPtr
|
386
|
+
XMLPUBFUN xmlNodeSetPtr
|
387
387
|
xmlXPathDistinct (xmlNodeSetPtr nodes);
|
388
388
|
|
389
|
-
XMLPUBFUN int
|
389
|
+
XMLPUBFUN int
|
390
390
|
xmlXPathHasSameNodes (xmlNodeSetPtr nodes1,
|
391
391
|
xmlNodeSetPtr nodes2);
|
392
392
|
|
393
|
-
XMLPUBFUN xmlNodeSetPtr
|
393
|
+
XMLPUBFUN xmlNodeSetPtr
|
394
394
|
xmlXPathNodeLeadingSorted (xmlNodeSetPtr nodes,
|
395
395
|
xmlNodePtr node);
|
396
|
-
XMLPUBFUN xmlNodeSetPtr
|
396
|
+
XMLPUBFUN xmlNodeSetPtr
|
397
397
|
xmlXPathLeadingSorted (xmlNodeSetPtr nodes1,
|
398
398
|
xmlNodeSetPtr nodes2);
|
399
|
-
XMLPUBFUN xmlNodeSetPtr
|
399
|
+
XMLPUBFUN xmlNodeSetPtr
|
400
400
|
xmlXPathNodeLeading (xmlNodeSetPtr nodes,
|
401
401
|
xmlNodePtr node);
|
402
|
-
XMLPUBFUN xmlNodeSetPtr
|
402
|
+
XMLPUBFUN xmlNodeSetPtr
|
403
403
|
xmlXPathLeading (xmlNodeSetPtr nodes1,
|
404
404
|
xmlNodeSetPtr nodes2);
|
405
405
|
|
406
|
-
XMLPUBFUN xmlNodeSetPtr
|
406
|
+
XMLPUBFUN xmlNodeSetPtr
|
407
407
|
xmlXPathNodeTrailingSorted (xmlNodeSetPtr nodes,
|
408
408
|
xmlNodePtr node);
|
409
|
-
XMLPUBFUN xmlNodeSetPtr
|
409
|
+
XMLPUBFUN xmlNodeSetPtr
|
410
410
|
xmlXPathTrailingSorted (xmlNodeSetPtr nodes1,
|
411
411
|
xmlNodeSetPtr nodes2);
|
412
|
-
XMLPUBFUN xmlNodeSetPtr
|
412
|
+
XMLPUBFUN xmlNodeSetPtr
|
413
413
|
xmlXPathNodeTrailing (xmlNodeSetPtr nodes,
|
414
414
|
xmlNodePtr node);
|
415
|
-
XMLPUBFUN xmlNodeSetPtr
|
415
|
+
XMLPUBFUN xmlNodeSetPtr
|
416
416
|
xmlXPathTrailing (xmlNodeSetPtr nodes1,
|
417
417
|
xmlNodeSetPtr nodes2);
|
418
418
|
|
@@ -421,208 +421,208 @@ XMLPUBFUN xmlNodeSetPtr XMLCALL
|
|
421
421
|
* Extending a context.
|
422
422
|
*/
|
423
423
|
|
424
|
-
XMLPUBFUN int
|
424
|
+
XMLPUBFUN int
|
425
425
|
xmlXPathRegisterNs (xmlXPathContextPtr ctxt,
|
426
426
|
const xmlChar *prefix,
|
427
427
|
const xmlChar *ns_uri);
|
428
|
-
XMLPUBFUN const xmlChar *
|
428
|
+
XMLPUBFUN const xmlChar *
|
429
429
|
xmlXPathNsLookup (xmlXPathContextPtr ctxt,
|
430
430
|
const xmlChar *prefix);
|
431
|
-
XMLPUBFUN void
|
431
|
+
XMLPUBFUN void
|
432
432
|
xmlXPathRegisteredNsCleanup (xmlXPathContextPtr ctxt);
|
433
433
|
|
434
|
-
XMLPUBFUN int
|
434
|
+
XMLPUBFUN int
|
435
435
|
xmlXPathRegisterFunc (xmlXPathContextPtr ctxt,
|
436
436
|
const xmlChar *name,
|
437
437
|
xmlXPathFunction f);
|
438
|
-
XMLPUBFUN int
|
438
|
+
XMLPUBFUN int
|
439
439
|
xmlXPathRegisterFuncNS (xmlXPathContextPtr ctxt,
|
440
440
|
const xmlChar *name,
|
441
441
|
const xmlChar *ns_uri,
|
442
442
|
xmlXPathFunction f);
|
443
|
-
XMLPUBFUN int
|
443
|
+
XMLPUBFUN int
|
444
444
|
xmlXPathRegisterVariable (xmlXPathContextPtr ctxt,
|
445
445
|
const xmlChar *name,
|
446
446
|
xmlXPathObjectPtr value);
|
447
|
-
XMLPUBFUN int
|
447
|
+
XMLPUBFUN int
|
448
448
|
xmlXPathRegisterVariableNS (xmlXPathContextPtr ctxt,
|
449
449
|
const xmlChar *name,
|
450
450
|
const xmlChar *ns_uri,
|
451
451
|
xmlXPathObjectPtr value);
|
452
|
-
XMLPUBFUN xmlXPathFunction
|
452
|
+
XMLPUBFUN xmlXPathFunction
|
453
453
|
xmlXPathFunctionLookup (xmlXPathContextPtr ctxt,
|
454
454
|
const xmlChar *name);
|
455
|
-
XMLPUBFUN xmlXPathFunction
|
455
|
+
XMLPUBFUN xmlXPathFunction
|
456
456
|
xmlXPathFunctionLookupNS (xmlXPathContextPtr ctxt,
|
457
457
|
const xmlChar *name,
|
458
458
|
const xmlChar *ns_uri);
|
459
|
-
XMLPUBFUN void
|
459
|
+
XMLPUBFUN void
|
460
460
|
xmlXPathRegisteredFuncsCleanup (xmlXPathContextPtr ctxt);
|
461
|
-
XMLPUBFUN xmlXPathObjectPtr
|
461
|
+
XMLPUBFUN xmlXPathObjectPtr
|
462
462
|
xmlXPathVariableLookup (xmlXPathContextPtr ctxt,
|
463
463
|
const xmlChar *name);
|
464
|
-
XMLPUBFUN xmlXPathObjectPtr
|
464
|
+
XMLPUBFUN xmlXPathObjectPtr
|
465
465
|
xmlXPathVariableLookupNS (xmlXPathContextPtr ctxt,
|
466
466
|
const xmlChar *name,
|
467
467
|
const xmlChar *ns_uri);
|
468
|
-
XMLPUBFUN void
|
468
|
+
XMLPUBFUN void
|
469
469
|
xmlXPathRegisteredVariablesCleanup(xmlXPathContextPtr ctxt);
|
470
470
|
|
471
471
|
/**
|
472
472
|
* Utilities to extend XPath.
|
473
473
|
*/
|
474
|
-
XMLPUBFUN xmlXPathParserContextPtr
|
474
|
+
XMLPUBFUN xmlXPathParserContextPtr
|
475
475
|
xmlXPathNewParserContext (const xmlChar *str,
|
476
476
|
xmlXPathContextPtr ctxt);
|
477
|
-
XMLPUBFUN void
|
477
|
+
XMLPUBFUN void
|
478
478
|
xmlXPathFreeParserContext (xmlXPathParserContextPtr ctxt);
|
479
479
|
|
480
480
|
/* TODO: remap to xmlXPathValuePop and Push. */
|
481
|
-
XMLPUBFUN xmlXPathObjectPtr
|
481
|
+
XMLPUBFUN xmlXPathObjectPtr
|
482
482
|
valuePop (xmlXPathParserContextPtr ctxt);
|
483
|
-
XMLPUBFUN int
|
483
|
+
XMLPUBFUN int
|
484
484
|
valuePush (xmlXPathParserContextPtr ctxt,
|
485
485
|
xmlXPathObjectPtr value);
|
486
486
|
|
487
|
-
XMLPUBFUN xmlXPathObjectPtr
|
487
|
+
XMLPUBFUN xmlXPathObjectPtr
|
488
488
|
xmlXPathNewString (const xmlChar *val);
|
489
|
-
XMLPUBFUN xmlXPathObjectPtr
|
489
|
+
XMLPUBFUN xmlXPathObjectPtr
|
490
490
|
xmlXPathNewCString (const char *val);
|
491
|
-
XMLPUBFUN xmlXPathObjectPtr
|
491
|
+
XMLPUBFUN xmlXPathObjectPtr
|
492
492
|
xmlXPathWrapString (xmlChar *val);
|
493
|
-
XMLPUBFUN xmlXPathObjectPtr
|
493
|
+
XMLPUBFUN xmlXPathObjectPtr
|
494
494
|
xmlXPathWrapCString (char * val);
|
495
|
-
XMLPUBFUN xmlXPathObjectPtr
|
495
|
+
XMLPUBFUN xmlXPathObjectPtr
|
496
496
|
xmlXPathNewFloat (double val);
|
497
|
-
XMLPUBFUN xmlXPathObjectPtr
|
497
|
+
XMLPUBFUN xmlXPathObjectPtr
|
498
498
|
xmlXPathNewBoolean (int val);
|
499
|
-
XMLPUBFUN xmlXPathObjectPtr
|
499
|
+
XMLPUBFUN xmlXPathObjectPtr
|
500
500
|
xmlXPathNewNodeSet (xmlNodePtr val);
|
501
|
-
XMLPUBFUN xmlXPathObjectPtr
|
501
|
+
XMLPUBFUN xmlXPathObjectPtr
|
502
502
|
xmlXPathNewValueTree (xmlNodePtr val);
|
503
|
-
XMLPUBFUN int
|
503
|
+
XMLPUBFUN int
|
504
504
|
xmlXPathNodeSetAdd (xmlNodeSetPtr cur,
|
505
505
|
xmlNodePtr val);
|
506
|
-
XMLPUBFUN int
|
506
|
+
XMLPUBFUN int
|
507
507
|
xmlXPathNodeSetAddUnique (xmlNodeSetPtr cur,
|
508
508
|
xmlNodePtr val);
|
509
|
-
XMLPUBFUN int
|
509
|
+
XMLPUBFUN int
|
510
510
|
xmlXPathNodeSetAddNs (xmlNodeSetPtr cur,
|
511
511
|
xmlNodePtr node,
|
512
512
|
xmlNsPtr ns);
|
513
|
-
XMLPUBFUN void
|
513
|
+
XMLPUBFUN void
|
514
514
|
xmlXPathNodeSetSort (xmlNodeSetPtr set);
|
515
515
|
|
516
|
-
XMLPUBFUN void
|
516
|
+
XMLPUBFUN void
|
517
517
|
xmlXPathRoot (xmlXPathParserContextPtr ctxt);
|
518
|
-
XMLPUBFUN void
|
518
|
+
XMLPUBFUN void
|
519
519
|
xmlXPathEvalExpr (xmlXPathParserContextPtr ctxt);
|
520
|
-
XMLPUBFUN xmlChar *
|
520
|
+
XMLPUBFUN xmlChar *
|
521
521
|
xmlXPathParseName (xmlXPathParserContextPtr ctxt);
|
522
|
-
XMLPUBFUN xmlChar *
|
522
|
+
XMLPUBFUN xmlChar *
|
523
523
|
xmlXPathParseNCName (xmlXPathParserContextPtr ctxt);
|
524
524
|
|
525
525
|
/*
|
526
526
|
* Existing functions.
|
527
527
|
*/
|
528
|
-
XMLPUBFUN double
|
528
|
+
XMLPUBFUN double
|
529
529
|
xmlXPathStringEvalNumber (const xmlChar *str);
|
530
|
-
XMLPUBFUN int
|
530
|
+
XMLPUBFUN int
|
531
531
|
xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt,
|
532
532
|
xmlXPathObjectPtr res);
|
533
|
-
XMLPUBFUN void
|
533
|
+
XMLPUBFUN void
|
534
534
|
xmlXPathRegisterAllFunctions (xmlXPathContextPtr ctxt);
|
535
|
-
XMLPUBFUN xmlNodeSetPtr
|
535
|
+
XMLPUBFUN xmlNodeSetPtr
|
536
536
|
xmlXPathNodeSetMerge (xmlNodeSetPtr val1,
|
537
537
|
xmlNodeSetPtr val2);
|
538
|
-
XMLPUBFUN void
|
538
|
+
XMLPUBFUN void
|
539
539
|
xmlXPathNodeSetDel (xmlNodeSetPtr cur,
|
540
540
|
xmlNodePtr val);
|
541
|
-
XMLPUBFUN void
|
541
|
+
XMLPUBFUN void
|
542
542
|
xmlXPathNodeSetRemove (xmlNodeSetPtr cur,
|
543
543
|
int val);
|
544
|
-
XMLPUBFUN xmlXPathObjectPtr
|
544
|
+
XMLPUBFUN xmlXPathObjectPtr
|
545
545
|
xmlXPathNewNodeSetList (xmlNodeSetPtr val);
|
546
|
-
XMLPUBFUN xmlXPathObjectPtr
|
546
|
+
XMLPUBFUN xmlXPathObjectPtr
|
547
547
|
xmlXPathWrapNodeSet (xmlNodeSetPtr val);
|
548
|
-
XMLPUBFUN xmlXPathObjectPtr
|
548
|
+
XMLPUBFUN xmlXPathObjectPtr
|
549
549
|
xmlXPathWrapExternal (void *val);
|
550
550
|
|
551
|
-
XMLPUBFUN int
|
552
|
-
XMLPUBFUN int
|
553
|
-
XMLPUBFUN int
|
554
|
-
XMLPUBFUN void
|
555
|
-
XMLPUBFUN void
|
556
|
-
XMLPUBFUN void
|
557
|
-
XMLPUBFUN void
|
558
|
-
XMLPUBFUN void
|
559
|
-
XMLPUBFUN void
|
551
|
+
XMLPUBFUN int xmlXPathEqualValues(xmlXPathParserContextPtr ctxt);
|
552
|
+
XMLPUBFUN int xmlXPathNotEqualValues(xmlXPathParserContextPtr ctxt);
|
553
|
+
XMLPUBFUN int xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict);
|
554
|
+
XMLPUBFUN void xmlXPathValueFlipSign(xmlXPathParserContextPtr ctxt);
|
555
|
+
XMLPUBFUN void xmlXPathAddValues(xmlXPathParserContextPtr ctxt);
|
556
|
+
XMLPUBFUN void xmlXPathSubValues(xmlXPathParserContextPtr ctxt);
|
557
|
+
XMLPUBFUN void xmlXPathMultValues(xmlXPathParserContextPtr ctxt);
|
558
|
+
XMLPUBFUN void xmlXPathDivValues(xmlXPathParserContextPtr ctxt);
|
559
|
+
XMLPUBFUN void xmlXPathModValues(xmlXPathParserContextPtr ctxt);
|
560
560
|
|
561
|
-
XMLPUBFUN int
|
561
|
+
XMLPUBFUN int xmlXPathIsNodeType(const xmlChar *name);
|
562
562
|
|
563
563
|
/*
|
564
564
|
* Some of the axis navigation routines.
|
565
565
|
*/
|
566
|
-
XMLPUBFUN xmlNodePtr
|
566
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextSelf(xmlXPathParserContextPtr ctxt,
|
567
567
|
xmlNodePtr cur);
|
568
|
-
XMLPUBFUN xmlNodePtr
|
568
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextChild(xmlXPathParserContextPtr ctxt,
|
569
569
|
xmlNodePtr cur);
|
570
|
-
XMLPUBFUN xmlNodePtr
|
570
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextDescendant(xmlXPathParserContextPtr ctxt,
|
571
571
|
xmlNodePtr cur);
|
572
|
-
XMLPUBFUN xmlNodePtr
|
572
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextDescendantOrSelf(xmlXPathParserContextPtr ctxt,
|
573
573
|
xmlNodePtr cur);
|
574
|
-
XMLPUBFUN xmlNodePtr
|
574
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextParent(xmlXPathParserContextPtr ctxt,
|
575
575
|
xmlNodePtr cur);
|
576
|
-
XMLPUBFUN xmlNodePtr
|
576
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextAncestorOrSelf(xmlXPathParserContextPtr ctxt,
|
577
577
|
xmlNodePtr cur);
|
578
|
-
XMLPUBFUN xmlNodePtr
|
578
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextFollowingSibling(xmlXPathParserContextPtr ctxt,
|
579
579
|
xmlNodePtr cur);
|
580
|
-
XMLPUBFUN xmlNodePtr
|
580
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextFollowing(xmlXPathParserContextPtr ctxt,
|
581
581
|
xmlNodePtr cur);
|
582
|
-
XMLPUBFUN xmlNodePtr
|
582
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextNamespace(xmlXPathParserContextPtr ctxt,
|
583
583
|
xmlNodePtr cur);
|
584
|
-
XMLPUBFUN xmlNodePtr
|
584
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextAttribute(xmlXPathParserContextPtr ctxt,
|
585
585
|
xmlNodePtr cur);
|
586
|
-
XMLPUBFUN xmlNodePtr
|
586
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextPreceding(xmlXPathParserContextPtr ctxt,
|
587
587
|
xmlNodePtr cur);
|
588
|
-
XMLPUBFUN xmlNodePtr
|
588
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextAncestor(xmlXPathParserContextPtr ctxt,
|
589
589
|
xmlNodePtr cur);
|
590
|
-
XMLPUBFUN xmlNodePtr
|
590
|
+
XMLPUBFUN xmlNodePtr xmlXPathNextPrecedingSibling(xmlXPathParserContextPtr ctxt,
|
591
591
|
xmlNodePtr cur);
|
592
592
|
/*
|
593
593
|
* The official core of XPath functions.
|
594
594
|
*/
|
595
|
-
XMLPUBFUN void
|
596
|
-
XMLPUBFUN void
|
597
|
-
XMLPUBFUN void
|
598
|
-
XMLPUBFUN void
|
599
|
-
XMLPUBFUN void
|
600
|
-
XMLPUBFUN void
|
601
|
-
XMLPUBFUN void
|
602
|
-
XMLPUBFUN void
|
603
|
-
XMLPUBFUN void
|
604
|
-
XMLPUBFUN void
|
605
|
-
XMLPUBFUN void
|
606
|
-
XMLPUBFUN void
|
607
|
-
XMLPUBFUN void
|
608
|
-
XMLPUBFUN void
|
609
|
-
XMLPUBFUN void
|
610
|
-
XMLPUBFUN void
|
611
|
-
XMLPUBFUN void
|
612
|
-
XMLPUBFUN void
|
613
|
-
XMLPUBFUN void
|
614
|
-
XMLPUBFUN void
|
615
|
-
XMLPUBFUN void
|
616
|
-
XMLPUBFUN void
|
617
|
-
XMLPUBFUN void
|
618
|
-
XMLPUBFUN void
|
619
|
-
XMLPUBFUN void
|
620
|
-
XMLPUBFUN void
|
595
|
+
XMLPUBFUN void xmlXPathLastFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
596
|
+
XMLPUBFUN void xmlXPathPositionFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
597
|
+
XMLPUBFUN void xmlXPathCountFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
598
|
+
XMLPUBFUN void xmlXPathIdFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
599
|
+
XMLPUBFUN void xmlXPathLocalNameFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
600
|
+
XMLPUBFUN void xmlXPathNamespaceURIFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
601
|
+
XMLPUBFUN void xmlXPathStringFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
602
|
+
XMLPUBFUN void xmlXPathStringLengthFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
603
|
+
XMLPUBFUN void xmlXPathConcatFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
604
|
+
XMLPUBFUN void xmlXPathContainsFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
605
|
+
XMLPUBFUN void xmlXPathStartsWithFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
606
|
+
XMLPUBFUN void xmlXPathSubstringFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
607
|
+
XMLPUBFUN void xmlXPathSubstringBeforeFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
608
|
+
XMLPUBFUN void xmlXPathSubstringAfterFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
609
|
+
XMLPUBFUN void xmlXPathNormalizeFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
610
|
+
XMLPUBFUN void xmlXPathTranslateFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
611
|
+
XMLPUBFUN void xmlXPathNotFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
612
|
+
XMLPUBFUN void xmlXPathTrueFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
613
|
+
XMLPUBFUN void xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
614
|
+
XMLPUBFUN void xmlXPathLangFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
615
|
+
XMLPUBFUN void xmlXPathNumberFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
616
|
+
XMLPUBFUN void xmlXPathSumFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
617
|
+
XMLPUBFUN void xmlXPathFloorFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
618
|
+
XMLPUBFUN void xmlXPathCeilingFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
619
|
+
XMLPUBFUN void xmlXPathRoundFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
620
|
+
XMLPUBFUN void xmlXPathBooleanFunction(xmlXPathParserContextPtr ctxt, int nargs);
|
621
621
|
|
622
622
|
/**
|
623
623
|
* Really internal functions
|
624
624
|
*/
|
625
|
-
XMLPUBFUN void
|
625
|
+
XMLPUBFUN void xmlXPathNodeSetFreeNs(xmlNsPtr ns);
|
626
626
|
|
627
627
|
#ifdef __cplusplus
|
628
628
|
}
|
@@ -45,64 +45,64 @@ struct _xmlLocationSet {
|
|
45
45
|
*/
|
46
46
|
|
47
47
|
XML_DEPRECATED
|
48
|
-
XMLPUBFUN xmlLocationSetPtr
|
48
|
+
XMLPUBFUN xmlLocationSetPtr
|
49
49
|
xmlXPtrLocationSetCreate (xmlXPathObjectPtr val);
|
50
50
|
XML_DEPRECATED
|
51
|
-
XMLPUBFUN void
|
51
|
+
XMLPUBFUN void
|
52
52
|
xmlXPtrFreeLocationSet (xmlLocationSetPtr obj);
|
53
53
|
XML_DEPRECATED
|
54
|
-
XMLPUBFUN xmlLocationSetPtr
|
54
|
+
XMLPUBFUN xmlLocationSetPtr
|
55
55
|
xmlXPtrLocationSetMerge (xmlLocationSetPtr val1,
|
56
56
|
xmlLocationSetPtr val2);
|
57
57
|
XML_DEPRECATED
|
58
|
-
XMLPUBFUN xmlXPathObjectPtr
|
58
|
+
XMLPUBFUN xmlXPathObjectPtr
|
59
59
|
xmlXPtrNewRange (xmlNodePtr start,
|
60
60
|
int startindex,
|
61
61
|
xmlNodePtr end,
|
62
62
|
int endindex);
|
63
63
|
XML_DEPRECATED
|
64
|
-
XMLPUBFUN xmlXPathObjectPtr
|
64
|
+
XMLPUBFUN xmlXPathObjectPtr
|
65
65
|
xmlXPtrNewRangePoints (xmlXPathObjectPtr start,
|
66
66
|
xmlXPathObjectPtr end);
|
67
67
|
XML_DEPRECATED
|
68
|
-
XMLPUBFUN xmlXPathObjectPtr
|
68
|
+
XMLPUBFUN xmlXPathObjectPtr
|
69
69
|
xmlXPtrNewRangeNodePoint (xmlNodePtr start,
|
70
70
|
xmlXPathObjectPtr end);
|
71
71
|
XML_DEPRECATED
|
72
|
-
XMLPUBFUN xmlXPathObjectPtr
|
72
|
+
XMLPUBFUN xmlXPathObjectPtr
|
73
73
|
xmlXPtrNewRangePointNode (xmlXPathObjectPtr start,
|
74
74
|
xmlNodePtr end);
|
75
75
|
XML_DEPRECATED
|
76
|
-
XMLPUBFUN xmlXPathObjectPtr
|
76
|
+
XMLPUBFUN xmlXPathObjectPtr
|
77
77
|
xmlXPtrNewRangeNodes (xmlNodePtr start,
|
78
78
|
xmlNodePtr end);
|
79
79
|
XML_DEPRECATED
|
80
|
-
XMLPUBFUN xmlXPathObjectPtr
|
80
|
+
XMLPUBFUN xmlXPathObjectPtr
|
81
81
|
xmlXPtrNewLocationSetNodes (xmlNodePtr start,
|
82
82
|
xmlNodePtr end);
|
83
83
|
XML_DEPRECATED
|
84
|
-
XMLPUBFUN xmlXPathObjectPtr
|
84
|
+
XMLPUBFUN xmlXPathObjectPtr
|
85
85
|
xmlXPtrNewLocationSetNodeSet(xmlNodeSetPtr set);
|
86
86
|
XML_DEPRECATED
|
87
|
-
XMLPUBFUN xmlXPathObjectPtr
|
87
|
+
XMLPUBFUN xmlXPathObjectPtr
|
88
88
|
xmlXPtrNewRangeNodeObject (xmlNodePtr start,
|
89
89
|
xmlXPathObjectPtr end);
|
90
90
|
XML_DEPRECATED
|
91
|
-
XMLPUBFUN xmlXPathObjectPtr
|
91
|
+
XMLPUBFUN xmlXPathObjectPtr
|
92
92
|
xmlXPtrNewCollapsedRange (xmlNodePtr start);
|
93
93
|
XML_DEPRECATED
|
94
|
-
XMLPUBFUN void
|
94
|
+
XMLPUBFUN void
|
95
95
|
xmlXPtrLocationSetAdd (xmlLocationSetPtr cur,
|
96
96
|
xmlXPathObjectPtr val);
|
97
97
|
XML_DEPRECATED
|
98
|
-
XMLPUBFUN xmlXPathObjectPtr
|
98
|
+
XMLPUBFUN xmlXPathObjectPtr
|
99
99
|
xmlXPtrWrapLocationSet (xmlLocationSetPtr val);
|
100
100
|
XML_DEPRECATED
|
101
|
-
XMLPUBFUN void
|
101
|
+
XMLPUBFUN void
|
102
102
|
xmlXPtrLocationSetDel (xmlLocationSetPtr cur,
|
103
103
|
xmlXPathObjectPtr val);
|
104
104
|
XML_DEPRECATED
|
105
|
-
XMLPUBFUN void
|
105
|
+
XMLPUBFUN void
|
106
106
|
xmlXPtrLocationSetRemove (xmlLocationSetPtr cur,
|
107
107
|
int val);
|
108
108
|
#endif /* LIBXML_XPTR_LOCS_ENABLED */
|
@@ -110,23 +110,23 @@ XMLPUBFUN void XMLCALL
|
|
110
110
|
/*
|
111
111
|
* Functions.
|
112
112
|
*/
|
113
|
-
XMLPUBFUN xmlXPathContextPtr
|
113
|
+
XMLPUBFUN xmlXPathContextPtr
|
114
114
|
xmlXPtrNewContext (xmlDocPtr doc,
|
115
115
|
xmlNodePtr here,
|
116
116
|
xmlNodePtr origin);
|
117
|
-
XMLPUBFUN xmlXPathObjectPtr
|
117
|
+
XMLPUBFUN xmlXPathObjectPtr
|
118
118
|
xmlXPtrEval (const xmlChar *str,
|
119
119
|
xmlXPathContextPtr ctx);
|
120
120
|
#ifdef LIBXML_XPTR_LOCS_ENABLED
|
121
121
|
XML_DEPRECATED
|
122
|
-
XMLPUBFUN void
|
122
|
+
XMLPUBFUN void
|
123
123
|
xmlXPtrRangeToFunction (xmlXPathParserContextPtr ctxt,
|
124
124
|
int nargs);
|
125
125
|
XML_DEPRECATED
|
126
|
-
XMLPUBFUN xmlNodePtr
|
126
|
+
XMLPUBFUN xmlNodePtr
|
127
127
|
xmlXPtrBuildNodeList (xmlXPathObjectPtr obj);
|
128
128
|
XML_DEPRECATED
|
129
|
-
XMLPUBFUN void
|
129
|
+
XMLPUBFUN void
|
130
130
|
xmlXPtrEvalRangePredicate (xmlXPathParserContextPtr ctxt);
|
131
131
|
#endif /* LIBXML_XPTR_LOCS_ENABLED */
|
132
132
|
#ifdef __cplusplus
|
@@ -43,7 +43,7 @@ extern "C" {
|
|
43
43
|
*
|
44
44
|
* RVT is destroyed after the current instructions ends.
|
45
45
|
*/
|
46
|
-
#define XSLT_RVT_LOCAL
|
46
|
+
#define XSLT_RVT_LOCAL 1
|
47
47
|
|
48
48
|
/**
|
49
49
|
* XSLT_RVT_FUNC_RESULT:
|
@@ -52,14 +52,14 @@ extern "C" {
|
|
52
52
|
* destroyed after exiting a template and will be reset to XSLT_RVT_LOCAL or
|
53
53
|
* XSLT_RVT_VARIABLE in the template that receives the return value.
|
54
54
|
*/
|
55
|
-
#define XSLT_RVT_FUNC_RESULT
|
55
|
+
#define XSLT_RVT_FUNC_RESULT 2
|
56
56
|
|
57
57
|
/**
|
58
58
|
* XSLT_RVT_GLOBAL:
|
59
59
|
*
|
60
60
|
* RVT is part of a global variable.
|
61
61
|
*/
|
62
|
-
#define XSLT_RVT_GLOBAL
|
62
|
+
#define XSLT_RVT_GLOBAL 3
|
63
63
|
|
64
64
|
/*
|
65
65
|
* Interfaces for the variable module.
|
@@ -21,7 +21,6 @@
|
|
21
21
|
#include <libxml/xmlstring.h>
|
22
22
|
#include <libxslt/xslt.h>
|
23
23
|
#include "xsltexports.h"
|
24
|
-
#include "xsltlocale.h"
|
25
24
|
#include "numbersInternals.h"
|
26
25
|
|
27
26
|
#ifdef __cplusplus
|
@@ -1047,7 +1046,6 @@ struct _xsltStyleItemSort {
|
|
1047
1046
|
int descending; /* sort */
|
1048
1047
|
const xmlChar *lang; /* sort */
|
1049
1048
|
int has_lang; /* sort */
|
1050
|
-
xsltLocale locale; /* sort */
|
1051
1049
|
const xmlChar *case_order; /* sort */
|
1052
1050
|
int lower_first; /* sort */
|
1053
1051
|
|
@@ -1377,7 +1375,6 @@ struct _xsltStylePreComp {
|
|
1377
1375
|
int descending; /* sort */
|
1378
1376
|
const xmlChar *lang; /* sort */
|
1379
1377
|
int has_lang; /* sort */
|
1380
|
-
xsltLocale locale; /* sort */
|
1381
1378
|
const xmlChar *case_order; /* sort */
|
1382
1379
|
int lower_first; /* sort */
|
1383
1380
|
|
@@ -1663,6 +1660,13 @@ typedef enum {
|
|
1663
1660
|
XSLT_OUTPUT_TEXT
|
1664
1661
|
} xsltOutputType;
|
1665
1662
|
|
1663
|
+
typedef void *
|
1664
|
+
(*xsltNewLocaleFunc)(const xmlChar *lang, int lowerFirst);
|
1665
|
+
typedef void
|
1666
|
+
(*xsltFreeLocaleFunc)(void *locale);
|
1667
|
+
typedef xmlChar *
|
1668
|
+
(*xsltGenSortKeyFunc)(void *locale, const xmlChar *lang);
|
1669
|
+
|
1666
1670
|
typedef enum {
|
1667
1671
|
XSLT_STATE_OK = 0,
|
1668
1672
|
XSLT_STATE_ERROR,
|
@@ -1786,6 +1790,12 @@ struct _xsltTransformContext {
|
|
1786
1790
|
int maxTemplateVars;
|
1787
1791
|
unsigned long opLimit;
|
1788
1792
|
unsigned long opCount;
|
1793
|
+
int sourceDocDirty;
|
1794
|
+
unsigned long currentId; /* For generate-id() */
|
1795
|
+
|
1796
|
+
xsltNewLocaleFunc newLocale;
|
1797
|
+
xsltFreeLocaleFunc freeLocale;
|
1798
|
+
xsltGenSortKeyFunc genSortKey;
|
1789
1799
|
};
|
1790
1800
|
|
1791
1801
|
/**
|
@@ -1915,7 +1925,7 @@ XSLTPUBFUN int XSLTCALL
|
|
1915
1925
|
xsltFlagRVTs(
|
1916
1926
|
xsltTransformContextPtr ctxt,
|
1917
1927
|
xmlXPathObjectPtr obj,
|
1918
|
-
|
1928
|
+
int val);
|
1919
1929
|
XSLTPUBFUN void XSLTCALL
|
1920
1930
|
xsltFreeRVTs (xsltTransformContextPtr ctxt);
|
1921
1931
|
XSLTPUBFUN void XSLTCALL
|
@@ -20,21 +20,21 @@ extern "C" {
|
|
20
20
|
*
|
21
21
|
* the version string like "1.2.3"
|
22
22
|
*/
|
23
|
-
#define LIBXSLT_DOTTED_VERSION "1.1.
|
23
|
+
#define LIBXSLT_DOTTED_VERSION "1.1.38"
|
24
24
|
|
25
25
|
/**
|
26
26
|
* LIBXSLT_VERSION:
|
27
27
|
*
|
28
28
|
* the version number: 1.2.3 value is 10203
|
29
29
|
*/
|
30
|
-
#define LIBXSLT_VERSION
|
30
|
+
#define LIBXSLT_VERSION 10138
|
31
31
|
|
32
32
|
/**
|
33
33
|
* LIBXSLT_VERSION_STRING:
|
34
34
|
*
|
35
35
|
* the version number string, 1.2.3 value is "10203"
|
36
36
|
*/
|
37
|
-
#define LIBXSLT_VERSION_STRING "
|
37
|
+
#define LIBXSLT_VERSION_STRING "10138"
|
38
38
|
|
39
39
|
/**
|
40
40
|
* LIBXSLT_VERSION_EXTRA:
|
@@ -132,7 +132,7 @@ extern "C" {
|
|
132
132
|
#ifndef WITH_MODULES
|
133
133
|
#define WITH_MODULES
|
134
134
|
#endif
|
135
|
-
#define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/x86-linux/libxslt/1.1.
|
135
|
+
#define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/x86-linux/libxslt/1.1.38/lib/libxslt-plugins"
|
136
136
|
#endif
|
137
137
|
|
138
138
|
/**
|