~ubuntu-branches/ubuntu/lucid/libxml-libxml-perl/lucid

« back to all changes in this revision

Viewing changes to xpath.h

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann, gregor herrmann, Damyan Ivanov
  • Date: 2008-11-29 10:43:03 UTC
  • mfrom: (1.2.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20081129104303-z1jg50ymutx3kgos
Tags: 1.69.ds-1
[ gregor herrmann ]
* New upstream release.
* Set Standards-Version to 3.8.0; add debian/README.source to document quilt
  usage.
* Add a debian/repack.sh script that creates the .ds version from the
  upstream tarball: it removes the debian/ directory and the lines
  referencing it in MANIFEST. Mention the repackaging in
  debian/README.source. Add get-orig-source target to debian/rules.
* debian/watch: extended regexp for matching upstream releases.
* Refresh patch fix_manpage_typos and add a short description.
* Set debhelper compatibility level to 7; adapt
  debian/{control,compat,rules}.
* debian/copyright: switch to new format.
* debian/control:
  - switch Vcs-Browser field to ViewSVN
  - add /me to Uploaders
  - wrap long lines
  - mention module name in long description
  - remove -1 revision from versioned build dependency
  - add ${misc:Depends} to Depends:

[ Damyan Ivanov ]
* add no_linking_with_libm.patch, avoiding unneeded linkage with libm

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
domXPathSelect( xmlNodePtr refNode, xmlChar * xpathstring );
12
12
 
13
13
xmlXPathObjectPtr
14
 
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring );
 
14
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring, int to_bool );
 
15
 
 
16
xmlNodeSetPtr
 
17
domXPathCompSelect( xmlNodePtr refNode, xmlXPathCompExprPtr comp );
 
18
 
 
19
xmlXPathObjectPtr
 
20
domXPathCompFind( xmlNodePtr refNode, xmlXPathCompExprPtr comp, int to_bool );
15
21
 
16
22
xmlNodeSetPtr
17
23
domXPathSelectCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring );
18
24
 
19
25
xmlXPathObjectPtr
20
 
domXPathFindCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring );
 
26
domXPathFindCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring, int to_bool );
 
27
 
 
28
xmlXPathObjectPtr
 
29
domXPathCompFindCtxt( xmlXPathContextPtr ctxt, xmlXPathCompExprPtr comp, int to_bool );
21
30
 
22
31
#endif