mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-04-23 14:45:32 +03:00
* configure.in python/Makefile.am: attempst to tweak to get full memory debug... * python/generator.py python/libxsl.py python/libxslt-python-api.xml python/libxslt.c python/libxslt_wrap.h python/libxsltclass.txt: the basic API starts to work * python/tests/test.*: first basic test * libxslt/xsltutils.c: fixed a comment Daniel
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
#include "libxml_wrap.h"
|
|
#include <libxslt/xslt.h>
|
|
#include <libxslt/xsltInternals.h>
|
|
#include <libxslt/xsltutils.h>
|
|
#include <libxslt/attributes.h>
|
|
#include <libxslt/documents.h>
|
|
#include <libxslt/extensions.h>
|
|
#include <libxslt/extra.h>
|
|
#include <libxslt/functions.h>
|
|
#include <libxslt/imports.h>
|
|
#include <libxslt/keys.h>
|
|
#include <libxslt/namespaces.h>
|
|
#include <libxslt/numbersInternals.h>
|
|
#include <libxslt/pattern.h>
|
|
#include <libxslt/preproc.h>
|
|
#include <libxslt/templates.h>
|
|
#include <libxslt/transform.h>
|
|
#include <libxslt/variables.h>
|
|
#include <libxslt/xsltconfig.h>
|
|
|
|
#define Pystylesheet_Get(v) (((v) == Py_None) ? NULL : \
|
|
(((Pystylesheet_Object *)(v))->obj))
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
xsltStylesheetPtr obj;
|
|
} Pystylesheet_Object;
|
|
|
|
#define PytransformCtxt_Get(v) (((v) == Py_None) ? NULL : \
|
|
(((PytransformCtxt_Object *)(v))->obj))
|
|
|
|
typedef struct {
|
|
PyObject_HEAD
|
|
xsltTransformContextPtr obj;
|
|
} PytransformCtxt_Object;
|
|
|
|
PyObject * libxslt_xsltStylesheetPtrWrap(xsltStylesheetPtr ctxt);
|
|
PyObject * libxslt_xsltTransformContextPtrWrap(xsltTransformContextPtr ctxt);
|