diff --git a/dist_win/jprofile_0.6.2_win/jprofile/Microsoft.VC90.CRT.manifest b/dist_win/jprofile_0.6.2_win/jprofile/Microsoft.VC90.CRT.manifest deleted file mode 100644 index 338438d..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/Microsoft.VC90.CRT.manifest +++ /dev/null @@ -1,6 +0,0 @@ - - - - - KSaO8M0iCtPF6YEr79P1dZsnomY= ojDmTgpYMFRKJYkPcM6ckpYkWUU= tVogb8kezDre2mXShlIqpp8ErIg= - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/_ctypes.pyd b/dist_win/jprofile_0.6.2_win/jprofile/_ctypes.pyd deleted file mode 100644 index 6cc4a0c..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/_ctypes.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/_hashlib.pyd b/dist_win/jprofile_0.6.2_win/jprofile/_hashlib.pyd deleted file mode 100644 index d98aa1a..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/_hashlib.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/_socket.pyd b/dist_win/jprofile_0.6.2_win/jprofile/_socket.pyd deleted file mode 100644 index e34c823..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/_socket.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/_ssl.pyd b/dist_win/jprofile_0.6.2_win/jprofile/_ssl.pyd deleted file mode 100644 index f23870d..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/_ssl.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/bz2.pyd b/dist_win/jprofile_0.6.2_win/jprofile/bz2.pyd deleted file mode 100644 index 58b0b31..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/bz2.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/include/pyconfig.h b/dist_win/jprofile_0.6.2_win/jprofile/include/pyconfig.h deleted file mode 100644 index 2b16665..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/include/pyconfig.h +++ /dev/null @@ -1,759 +0,0 @@ -#ifndef Py_CONFIG_H -#define Py_CONFIG_H - -/* pyconfig.h. NOT Generated automatically by configure. - -This is a manually maintained version used for the Watcom, -Borland and Microsoft Visual C++ compilers. It is a -standard part of the Python distribution. - -WINDOWS DEFINES: -The code specific to Windows should be wrapped around one of -the following #defines - -MS_WIN64 - Code specific to the MS Win64 API -MS_WIN32 - Code specific to the MS Win32 (and Win64) API (obsolete, this covers all supported APIs) -MS_WINDOWS - Code specific to Windows, but all versions. -MS_WINCE - Code specific to Windows CE -Py_ENABLE_SHARED - Code if the Python core is built as a DLL. - -Also note that neither "_M_IX86" or "_MSC_VER" should be used for -any purpose other than "Windows Intel x86 specific" and "Microsoft -compiler specific". Therefore, these should be very rare. - - -NOTE: The following symbols are deprecated: -NT, USE_DL_EXPORT, USE_DL_IMPORT, DL_EXPORT, DL_IMPORT -MS_CORE_DLL. - -WIN32 is still required for the locale module. - -*/ - -#ifdef _WIN32_WCE -#define MS_WINCE -#endif - -/* Deprecated USE_DL_EXPORT macro - please use Py_BUILD_CORE */ -#ifdef USE_DL_EXPORT -# define Py_BUILD_CORE -#endif /* USE_DL_EXPORT */ - -/* Visual Studio 2005 introduces deprecation warnings for - "insecure" and POSIX functions. The insecure functions should - be replaced by *_s versions (according to Microsoft); the - POSIX functions by _* versions (which, according to Microsoft, - would be ISO C conforming). Neither renaming is feasible, so - we just silence the warnings. */ - -#ifndef _CRT_SECURE_NO_DEPRECATE -#define _CRT_SECURE_NO_DEPRECATE 1 -#endif -#ifndef _CRT_NONSTDC_NO_DEPRECATE -#define _CRT_NONSTDC_NO_DEPRECATE 1 -#endif - -/* Windows CE does not have these */ -#ifndef MS_WINCE -#define HAVE_IO_H -#define HAVE_SYS_UTIME_H -#define HAVE_TEMPNAM -#define HAVE_TMPFILE -#define HAVE_TMPNAM -#define HAVE_CLOCK -#define HAVE_STRERROR -#endif - -#ifdef HAVE_IO_H -#include -#endif - -#define HAVE_HYPOT -#define HAVE_STRFTIME -#define DONT_HAVE_SIG_ALARM -#define DONT_HAVE_SIG_PAUSE -#define LONG_BIT 32 -#define WORD_BIT 32 -#define PREFIX "" -#define EXEC_PREFIX "" - -#define MS_WIN32 /* only support win32 and greater. */ -#define MS_WINDOWS -#ifndef PYTHONPATH -# define PYTHONPATH ".\\DLLs;.\\lib;.\\lib\\plat-win;.\\lib\\lib-tk" -#endif -#define NT_THREADS -#define WITH_THREAD -#ifndef NETSCAPE_PI -#define USE_SOCKET -#endif - -/* CE6 doesn't have strdup() but _strdup(). Assume the same for earlier versions. */ -#if defined(MS_WINCE) -# include -# define strdup _strdup -#endif - -#ifdef MS_WINCE -/* Windows CE does not support environment variables */ -#define getenv(v) (NULL) -#define environ (NULL) -#endif - -/* Compiler specific defines */ - -/* ------------------------------------------------------------------------*/ -/* Microsoft C defines _MSC_VER */ -#ifdef _MSC_VER - -/* We want COMPILER to expand to a string containing _MSC_VER's *value*. - * This is horridly tricky, because the stringization operator only works - * on macro arguments, and doesn't evaluate macros passed *as* arguments. - * Attempts simpler than the following appear doomed to produce "_MSC_VER" - * literally in the string. - */ -#define _Py_PASTE_VERSION(SUFFIX) \ - ("[MSC v." _Py_STRINGIZE(_MSC_VER) " " SUFFIX "]") -/* e.g., this produces, after compile-time string catenation, - * ("[MSC v.1200 32 bit (Intel)]") - * - * _Py_STRINGIZE(_MSC_VER) expands to - * _Py_STRINGIZE1((_MSC_VER)) expands to - * _Py_STRINGIZE2(_MSC_VER) but as this call is the result of token-pasting - * it's scanned again for macros and so further expands to (under MSVC 6) - * _Py_STRINGIZE2(1200) which then expands to - * "1200" - */ -#define _Py_STRINGIZE(X) _Py_STRINGIZE1((X)) -#define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X -#define _Py_STRINGIZE2(X) #X - -/* MSVC defines _WINxx to differentiate the windows platform types - - Note that for compatibility reasons _WIN32 is defined on Win32 - *and* on Win64. For the same reasons, in Python, MS_WIN32 is - defined on Win32 *and* Win64. Win32 only code must therefore be - guarded as follows: - #if defined(MS_WIN32) && !defined(MS_WIN64) - Some modules are disabled on Itanium processors, therefore we - have MS_WINI64 set for those targets, otherwise MS_WINX64 -*/ -#ifdef _WIN64 -#define MS_WIN64 -#endif - -/* set the COMPILER */ -#ifdef MS_WIN64 -#if defined(_M_IA64) -#define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)") -#define MS_WINI64 -#elif defined(_M_X64) || defined(_M_AMD64) -#define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)") -#define MS_WINX64 -#else -#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)") -#endif -#endif /* MS_WIN64 */ - -/* set the version macros for the windows headers */ -#ifdef MS_WINX64 -/* 64 bit only runs on XP or greater */ -#define Py_WINVER _WIN32_WINNT_WINXP -#define Py_NTDDI NTDDI_WINXP -#else -/* Python 2.6+ requires Windows 2000 or greater */ -#ifdef _WIN32_WINNT_WIN2K -#define Py_WINVER _WIN32_WINNT_WIN2K -#else -#define Py_WINVER 0x0500 -#endif -#define Py_NTDDI NTDDI_WIN2KSP4 -#endif - -/* We only set these values when building Python - we don't want to force - these values on extensions, as that will affect the prototypes and - structures exposed in the Windows headers. Even when building Python, we - allow a single source file to override this - they may need access to - structures etc so it can optionally use new Windows features if it - determines at runtime they are available. -*/ -#if defined(Py_BUILD_CORE) || defined(Py_BUILD_CORE_MODULE) -#ifndef NTDDI_VERSION -#define NTDDI_VERSION Py_NTDDI -#endif -#ifndef WINVER -#define WINVER Py_WINVER -#endif -#ifndef _WIN32_WINNT -#define _WIN32_WINNT Py_WINVER -#endif -#endif - -/* _W64 is not defined for VC6 or eVC4 */ -#ifndef _W64 -#define _W64 -#endif - -/* Define like size_t, omitting the "unsigned" */ -#ifdef MS_WIN64 -typedef __int64 ssize_t; -#else -typedef _W64 int ssize_t; -#endif -#define HAVE_SSIZE_T 1 - -#if defined(MS_WIN32) && !defined(MS_WIN64) -#ifdef _M_IX86 -#define COMPILER _Py_PASTE_VERSION("32 bit (Intel)") -#else -#define COMPILER _Py_PASTE_VERSION("32 bit (Unknown)") -#endif -#endif /* MS_WIN32 && !MS_WIN64 */ - -typedef int pid_t; - -#include -#define Py_IS_NAN _isnan -#define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X)) -#define Py_IS_FINITE(X) _finite(X) -#define copysign _copysign -#define hypot _hypot - -#endif /* _MSC_VER */ - -/* define some ANSI types that are not defined in earlier Win headers */ -#if defined(_MSC_VER) && _MSC_VER >= 1200 -/* This file only exists in VC 6.0 or higher */ -#include -#endif - -/* ------------------------------------------------------------------------*/ -/* The Borland compiler defines __BORLANDC__ */ -/* XXX These defines are likely incomplete, but should be easy to fix. */ -#ifdef __BORLANDC__ -#define COMPILER "[Borland]" - -#ifdef _WIN32 -/* tested with BCC 5.5 (__BORLANDC__ >= 0x0550) - */ - -typedef int pid_t; -/* BCC55 seems to understand __declspec(dllimport), it is used in its - own header files (winnt.h, ...) - so we can do nothing and get the default*/ - -#undef HAVE_SYS_UTIME_H -#define HAVE_UTIME_H -#define HAVE_DIRENT_H - -/* rename a few functions for the Borland compiler */ -#include -#define _chsize chsize -#define _setmode setmode - -#else /* !_WIN32 */ -#error "Only Win32 and later are supported" -#endif /* !_WIN32 */ - -#endif /* BORLANDC */ - -/* ------------------------------------------------------------------------*/ -/* egcs/gnu-win32 defines __GNUC__ and _WIN32 */ -#if defined(__GNUC__) && defined(_WIN32) -/* XXX These defines are likely incomplete, but should be easy to fix. - They should be complete enough to build extension modules. */ -/* Suggested by Rene Liebscher to avoid a GCC 2.91.* - bug that requires structure imports. More recent versions of the - compiler don't exhibit this bug. -*/ -#if (__GNUC__==2) && (__GNUC_MINOR__<=91) -#warning "Please use an up-to-date version of gcc! (>2.91 recommended)" -#endif - -#define COMPILER "[gcc]" -#define hypot _hypot -#define PY_LONG_LONG long long -#define PY_LLONG_MIN LLONG_MIN -#define PY_LLONG_MAX LLONG_MAX -#define PY_ULLONG_MAX ULLONG_MAX -#endif /* GNUC */ - -/* ------------------------------------------------------------------------*/ -/* lcc-win32 defines __LCC__ */ -#if defined(__LCC__) -/* XXX These defines are likely incomplete, but should be easy to fix. - They should be complete enough to build extension modules. */ - -#define COMPILER "[lcc-win32]" -typedef int pid_t; -/* __declspec() is supported here too - do nothing to get the defaults */ - -#endif /* LCC */ - -/* ------------------------------------------------------------------------*/ -/* End of compilers - finish up */ - -#ifndef NO_STDIO_H -# include -#endif - -/* 64 bit ints are usually spelt __int64 unless compiler has overridden */ -#define HAVE_LONG_LONG 1 -#ifndef PY_LONG_LONG -# define PY_LONG_LONG __int64 -# define PY_LLONG_MAX _I64_MAX -# define PY_LLONG_MIN _I64_MIN -# define PY_ULLONG_MAX _UI64_MAX -#endif - -/* For Windows the Python core is in a DLL by default. Test -Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ -#if !defined(MS_NO_COREDLL) && !defined(Py_NO_ENABLE_SHARED) -# define Py_ENABLE_SHARED 1 /* standard symbol for shared library */ -# define MS_COREDLL /* deprecated old symbol */ -#endif /* !MS_NO_COREDLL && ... */ - -/* All windows compilers that use this header support __declspec */ -#define HAVE_DECLSPEC_DLL - -/* For an MSVC DLL, we can nominate the .lib files used by extensions */ -#ifdef MS_COREDLL -# ifndef Py_BUILD_CORE /* not building the core - must be an ext */ -# if defined(_MSC_VER) - /* So MSVC users need not specify the .lib file in - their Makefile (other compilers are generally - taken care of by distutils.) */ -# ifdef _DEBUG -# pragma comment(lib,"python27_d.lib") -# else -# pragma comment(lib,"python27.lib") -# endif /* _DEBUG */ -# endif /* _MSC_VER */ -# endif /* Py_BUILD_CORE */ -#endif /* MS_COREDLL */ - -#if defined(MS_WIN64) -/* maintain "win32" sys.platform for backward compatibility of Python code, - the Win64 API should be close enough to the Win32 API to make this - preferable */ -# define PLATFORM "win32" -# define SIZEOF_VOID_P 8 -# define SIZEOF_TIME_T 8 -# define SIZEOF_OFF_T 4 -# define SIZEOF_FPOS_T 8 -# define SIZEOF_HKEY 8 -# define SIZEOF_SIZE_T 8 -/* configure.ac defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG, - sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t). - On Win64 the second condition is not true, but if fpos_t replaces off_t - then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 - should define this. */ -# define HAVE_LARGEFILE_SUPPORT -#elif defined(MS_WIN32) -# define PLATFORM "win32" -# define HAVE_LARGEFILE_SUPPORT -# define SIZEOF_VOID_P 4 -# define SIZEOF_OFF_T 4 -# define SIZEOF_FPOS_T 8 -# define SIZEOF_HKEY 4 -# define SIZEOF_SIZE_T 4 - /* MS VS2005 changes time_t to an 64-bit type on all platforms */ -# if defined(_MSC_VER) && _MSC_VER >= 1400 -# define SIZEOF_TIME_T 8 -# else -# define SIZEOF_TIME_T 4 -# endif -#endif - -#ifdef _DEBUG -# define Py_DEBUG -#endif - - -#ifdef MS_WIN32 - -#define SIZEOF_SHORT 2 -#define SIZEOF_INT 4 -#define SIZEOF_LONG 4 -#define SIZEOF_LONG_LONG 8 -#define SIZEOF_DOUBLE 8 -#define SIZEOF_FLOAT 4 - -/* VC 7.1 has them and VC 6.0 does not. VC 6.0 has a version number of 1200. - Microsoft eMbedded Visual C++ 4.0 has a version number of 1201 and doesn't - define these. - If some compiler does not provide them, modify the #if appropriately. */ -#if defined(_MSC_VER) -#if _MSC_VER > 1300 -#define HAVE_UINTPTR_T 1 -#define HAVE_INTPTR_T 1 -#else -/* VC6, VS 2002 and eVC4 don't support the C99 LL suffix for 64-bit integer literals */ -#define Py_LL(x) x##I64 -#endif /* _MSC_VER > 1200 */ -#endif /* _MSC_VER */ - -#endif - -/* define signed and unsigned exact-width 32-bit and 64-bit types, used in the - implementation of Python long integers. */ -#ifndef PY_UINT32_T -#if SIZEOF_INT == 4 -#define HAVE_UINT32_T 1 -#define PY_UINT32_T unsigned int -#elif SIZEOF_LONG == 4 -#define HAVE_UINT32_T 1 -#define PY_UINT32_T unsigned long -#endif -#endif - -#ifndef PY_UINT64_T -#if SIZEOF_LONG_LONG == 8 -#define HAVE_UINT64_T 1 -#define PY_UINT64_T unsigned PY_LONG_LONG -#endif -#endif - -#ifndef PY_INT32_T -#if SIZEOF_INT == 4 -#define HAVE_INT32_T 1 -#define PY_INT32_T int -#elif SIZEOF_LONG == 4 -#define HAVE_INT32_T 1 -#define PY_INT32_T long -#endif -#endif - -#ifndef PY_INT64_T -#if SIZEOF_LONG_LONG == 8 -#define HAVE_INT64_T 1 -#define PY_INT64_T PY_LONG_LONG -#endif -#endif - -/* Fairly standard from here! */ - -/* Define to 1 if you have the `copysign' function. */ -#define HAVE_COPYSIGN 1 - -/* Define to 1 if you have the `isinf' macro. */ -#define HAVE_DECL_ISINF 1 - -/* Define to 1 if you have the `isnan' function. */ -#define HAVE_DECL_ISNAN 1 - -/* Define if on AIX 3. - System headers sometimes define this. - We just want to avoid a redefinition error message. */ -#ifndef _ALL_SOURCE -/* #undef _ALL_SOURCE */ -#endif - -/* Define to empty if the keyword does not work. */ -/* #define const */ - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_CONIO_H 1 -#endif - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_DIRECT_H 1 -#endif - -/* Define if you have dirent.h. */ -/* #define DIRENT 1 */ - -/* Define to the type of elements in the array set by `getgroups'. - Usually this is either `int' or `gid_t'. */ -/* #undef GETGROUPS_T */ - -/* Define to `int' if doesn't define. */ -/* #undef gid_t */ - -/* Define if your struct tm has tm_zone. */ -/* #undef HAVE_TM_ZONE */ - -/* Define if you don't have tm_zone but do have the external array - tzname. */ -#define HAVE_TZNAME - -/* Define to `int' if doesn't define. */ -/* #undef mode_t */ - -/* Define if you don't have dirent.h, but have ndir.h. */ -/* #undef NDIR */ - -/* Define to `long' if doesn't define. */ -/* #undef off_t */ - -/* Define to `int' if doesn't define. */ -/* #undef pid_t */ - -/* Define if the system does not provide POSIX.1 features except - with this defined. */ -/* #undef _POSIX_1_SOURCE */ - -/* Define if you need to in order for stat and other things to work. */ -/* #undef _POSIX_SOURCE */ - -/* Define as the return type of signal handlers (int or void). */ -#define RETSIGTYPE void - -/* Define to `unsigned' if doesn't define. */ -/* #undef size_t */ - -/* Define if you have the ANSI C header files. */ -#define STDC_HEADERS 1 - -/* Define if you don't have dirent.h, but have sys/dir.h. */ -/* #undef SYSDIR */ - -/* Define if you don't have dirent.h, but have sys/ndir.h. */ -/* #undef SYSNDIR */ - -/* Define if you can safely include both and . */ -/* #undef TIME_WITH_SYS_TIME */ - -/* Define if your declares struct tm. */ -/* #define TM_IN_SYS_TIME 1 */ - -/* Define to `int' if doesn't define. */ -/* #undef uid_t */ - -/* Define if the closedir function returns void instead of int. */ -/* #undef VOID_CLOSEDIR */ - -/* Define if getpgrp() must be called as getpgrp(0) - and (consequently) setpgrp() as setpgrp(0, 0). */ -/* #undef GETPGRP_HAVE_ARGS */ - -/* Define this if your time.h defines altzone */ -/* #define HAVE_ALTZONE */ - -/* Define if you have the putenv function. */ -#ifndef MS_WINCE -#define HAVE_PUTENV -#endif - -/* Define if your compiler supports function prototypes */ -#define HAVE_PROTOTYPES - -/* Define if you can safely include both and - (which you can't on SCO ODT 3.0). */ -/* #undef SYS_SELECT_WITH_SYS_TIME */ - -/* Define if you want documentation strings in extension modules */ -#define WITH_DOC_STRINGS 1 - -/* Define if you want to compile in rudimentary thread support */ -/* #undef WITH_THREAD */ - -/* Define if you want to use the GNU readline library */ -/* #define WITH_READLINE 1 */ - -/* Define if you want to have a Unicode type. */ -#define Py_USING_UNICODE - -/* Define as the size of the unicode type. */ -/* This is enough for unicodeobject.h to do the "right thing" on Windows. */ -#define Py_UNICODE_SIZE 2 - -/* Use Python's own small-block memory-allocator. */ -#define WITH_PYMALLOC 1 - -/* Define if you have clock. */ -/* #define HAVE_CLOCK */ - -/* Define when any dynamic module loading is enabled */ -#define HAVE_DYNAMIC_LOADING - -/* Define if you have ftime. */ -#ifndef MS_WINCE -#define HAVE_FTIME -#endif - -/* Define if you have getpeername. */ -#define HAVE_GETPEERNAME - -/* Define if you have getpgrp. */ -/* #undef HAVE_GETPGRP */ - -/* Define if you have getpid. */ -#ifndef MS_WINCE -#define HAVE_GETPID -#endif - -/* Define if you have gettimeofday. */ -/* #undef HAVE_GETTIMEOFDAY */ - -/* Define if you have getwd. */ -/* #undef HAVE_GETWD */ - -/* Define if you have lstat. */ -/* #undef HAVE_LSTAT */ - -/* Define if you have the mktime function. */ -#define HAVE_MKTIME - -/* Define if you have nice. */ -/* #undef HAVE_NICE */ - -/* Define if you have readlink. */ -/* #undef HAVE_READLINK */ - -/* Define if you have select. */ -/* #undef HAVE_SELECT */ - -/* Define if you have setpgid. */ -/* #undef HAVE_SETPGID */ - -/* Define if you have setpgrp. */ -/* #undef HAVE_SETPGRP */ - -/* Define if you have setsid. */ -/* #undef HAVE_SETSID */ - -/* Define if you have setvbuf. */ -#define HAVE_SETVBUF - -/* Define if you have siginterrupt. */ -/* #undef HAVE_SIGINTERRUPT */ - -/* Define if you have symlink. */ -/* #undef HAVE_SYMLINK */ - -/* Define if you have tcgetpgrp. */ -/* #undef HAVE_TCGETPGRP */ - -/* Define if you have tcsetpgrp. */ -/* #undef HAVE_TCSETPGRP */ - -/* Define if you have times. */ -/* #undef HAVE_TIMES */ - -/* Define if you have uname. */ -/* #undef HAVE_UNAME */ - -/* Define if you have waitpid. */ -/* #undef HAVE_WAITPID */ - -/* Define to 1 if you have the `wcscoll' function. */ -#ifndef MS_WINCE -#define HAVE_WCSCOLL 1 -#endif - -/* Define if the zlib library has inflateCopy */ -#define HAVE_ZLIB_COPY 1 - -/* Define if you have the header file. */ -/* #undef HAVE_DLFCN_H */ - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_ERRNO_H 1 -#endif - -/* Define if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_FCNTL_H 1 -#endif - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_PROCESS_H 1 -#endif - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_SIGNAL_H 1 -#endif - -/* Define if you have the prototypes. */ -#define HAVE_STDARG_PROTOTYPES - -/* Define if you have the header file. */ -#define HAVE_STDDEF_H 1 - -/* Define if you have the header file. */ -/* #undef HAVE_SYS_AUDIOIO_H */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_PARAM_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_SELECT_H 1 */ - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_SYS_STAT_H 1 -#endif - -/* Define if you have the header file. */ -/* #define HAVE_SYS_TIME_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_TIMES_H 1 */ - -/* Define to 1 if you have the header file. */ -#ifndef MS_WINCE -#define HAVE_SYS_TYPES_H 1 -#endif - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UN_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UTIME_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_SYS_UTSNAME_H 1 */ - -/* Define if you have the header file. */ -/* #undef HAVE_THREAD_H */ - -/* Define if you have the header file. */ -/* #define HAVE_UNISTD_H 1 */ - -/* Define if you have the header file. */ -/* #define HAVE_UTIME_H 1 */ - -/* Define if the compiler provides a wchar.h header file. */ -#define HAVE_WCHAR_H 1 - -/* Define if you have the dl library (-ldl). */ -/* #undef HAVE_LIBDL */ - -/* Define if you have the mpc library (-lmpc). */ -/* #undef HAVE_LIBMPC */ - -/* Define if you have the nsl library (-lnsl). */ -#define HAVE_LIBNSL 1 - -/* Define if you have the seq library (-lseq). */ -/* #undef HAVE_LIBSEQ */ - -/* Define if you have the socket library (-lsocket). */ -#define HAVE_LIBSOCKET 1 - -/* Define if you have the sun library (-lsun). */ -/* #undef HAVE_LIBSUN */ - -/* Define if you have the termcap library (-ltermcap). */ -/* #undef HAVE_LIBTERMCAP */ - -/* Define if you have the termlib library (-ltermlib). */ -/* #undef HAVE_LIBTERMLIB */ - -/* Define if you have the thread library (-lthread). */ -/* #undef HAVE_LIBTHREAD */ - -/* WinSock does not use a bitmask in select, and uses - socket handles greater than FD_SETSIZE */ -#define Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE - -/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the - least significant byte first */ -#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754 1 - -#endif /* !Py_CONFIG_H */ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe deleted file mode 100644 index eb3d7a9..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/rng/iso-schematron.rng b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/rng/iso-schematron.rng deleted file mode 100644 index d822f0d..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/rng/iso-schematron.rng +++ /dev/null @@ -1,622 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ltr - rtl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - - - - - - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - preserve - default - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl deleted file mode 100644 index 21a5d2a..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl deleted file mode 100644 index 17f23de..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl deleted file mode 100644 index 057c7c1..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Suppressed abstract pattern was here - - - - - - - Start pattern based on abstract - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl deleted file mode 100644 index 44e5573..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl +++ /dev/null @@ -1,1160 +0,0 @@ - - - - - - - - - - true - true - true - true - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in RELAX NG extRef - include - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in Schematron include - - - - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - Schema error: Use include to - include fragments, not a whole - schema - - - - - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - Schema error: Use include to include - fragments, not a whole schema - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in Schematron include - - - - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in Schematron include - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - Schema error: Use include to include - fragments, not a whole schema - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - Schema error: Use include to include - fragments, not a whole schema - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in DTLL include - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in CRDL include - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Fatal error: Xinclude href contains fragment - identifier # - - - - - - - Fatal error: Sorry, this software only - supports simple ids in XInclude xpointers - - - - - - - Fatal Error: Impossible URL in XInclude - include - - - - - - - - - - - - - - - - - - - - - - - - - - - Unable to open referenced included file and fallback - file: - - - - - - - Unable to open referenced included file: - - - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Error: Impossible URL in XLink embedding - link - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - Unable to open referenced included file: - - - - - - - Unable to locate id attribute: - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl deleted file mode 100644 index d59b8f3..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - ( - / - ) - - - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl deleted file mode 100644 index b0e7175..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl +++ /dev/null @@ -1,1796 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #ALL - - - -false - -true - - - - - true - false - - - - - - - true - false - - - - - - - - - @*| - - * - node() - *|comment()|processing-instruction() - - - - - - - - - - - - -default - -false - - - -1 - - - - - Schema error: Schematron elements in old and new namespaces found - - - - - - - - - - - - - - - - - Schema error: in the queryBinding attribute, use 'xslt' - - - - - 1.0 - - - - - - - - - This XSLT was automatically generated from a Schematron schema. - - - - - 1.0 - - - - - - - - - - Fail: This implementation of ISO Schematron does not work with - schemas using the "" query language. - - - - - Implementers: please note that overriding process-prolog or process-root is - the preferred method for meta-stylesheets to use where possible. - - - - - - - - - - PHASES - - PROLOG - - KEYS - - DEFAULT RULES - - SCHEMA METADATA - - SCHEMATRON PATTERNS - - - - - - - - - - - - - - - - - - - - - - - Phase Error: no phase with name has been defined. - - - - - - - MODE: SCHEMATRON-SELECT-FULL-PATH - This mode can be used to generate an ugly though full XPath for locators - - - - - - - - - - - - - - - - - - - - - - - - - MODE: SCHEMATRON-FULL-PATH - This mode can be used to generate an ugly though full XPath for locators - - - - - - / - - - - - - [] - - - - *[local-name()=' - ' and namespace-uri()=' - - '] - - - [] - - - - - - - - - - / - - @ - - @*[local-name()=' - - ' and namespace-uri()=' - - '] - - - - - - - - - MODE: SCHEMATRON-FULL-PATH-2 - - This mode can be used to generate prefixed XPath for humans - - - - - - / - - - [ - - ] - - - - - /@ - - - - - MODE: GENERATE-ID-FROM-PATH - - - - - - - - - - - - - - - - - - - - - - . - - - - - - - MODE: SCHEMATRON-FULL-PATH-3 - - - This mode can be used to generate prefixed XPath for humans - (Top-level element has index) - - - - - - / - - - [ - - ] - - - - - /@ - - - - - MODE: GENERATE-ID-2 - - - U - - - U - - - - - U. - - n - - - - - U. - - _ - - _ - - - - - Strip characters - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no pattern attribute in <active> - - - - Reference Error: the pattern "" has been activated but is not declared - - - - - - - - Markup Error: no test attribute in <assert - - - ASSERT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no test attribute in <report> - - - - REPORT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no id attribute in <diagnostic> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no rule attribute in <extends> - - - Reference Error: the abstract rule "" has been referenced but is not declared - - - - - - - - - - - - - - Markup Error: no name attribute in <key> - - - Markup Error: no path or use attribute in <key> - - - - - - - - - - - - - - - - Markup Error: no path or use attribute in <key> - - - - - - - - - - - - Schema error: The key element is not in the ISO Schematron namespace. Use the XSLT namespace. - - - - - - - - Schema error: Empty href= attribute for include directive. - - - - - - - - - - - - - - Error: Impossible URL in Schematron include - - - - - - - Schema error: Use include to include fragments, not a whole schema - - - - - - - - - - Schema error: Use include to include fragments, not a whole schema - - - - - - - - - - - - - - - Error: Impossible URL in Schematron include - - - - - - - Schema error: Use include to include fragments, not a whole schema - - - - - - - - - - - Schema error: Use include to include fragments, not a whole schema - - - - - - - - - - Warning: Variables should not be used with the "xpath" query language binding. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no uri attribute in <ns> - - - Markup Error: no prefix attribute in <ns> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - //( - - ( - - ) - | - - ) - [not(self::text())] - - - - - - - - - - - - - Schema implementation error: This schema has abstract patterns, yet they are supposed to be preprocessed out already - - - - - - - - - - PATTERN - - - - - - - - - - - - - - - - - - - - Markup Error: no id attribute in <phase> - - - - - - - - Markup Error: no context attribute in <rule> - - - RULE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no id attribute on abstract <rule> - - - Markup Error: (2) context attribute on abstract <rule> - - - - - - Markup Error: context attribute on abstract <rule> - - - - - - - - - - - - - - - - - - - - - - - - - - - Markup Error: no select attribute in <value-of> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Warning: - - must not contain any child elements - - - - - - - - - - - - - - - - - - - - - - - - - Reference error: A diagnostic "" has been referenced but is not declared - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Using the XSLT namespace with a prefix other than "xsl" in - Schematron rules is not supported - in this processor: - - - - - - - - - - - - - - - - - - - - Error: unrecognized element in ISO Schematron namespace: check spelling - and capitalization - - - - - - - - - - - - - Warning: unrecognized element - - - - - - - - - - - - - - - Warning: unrecognized element - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - title - - - - - - - schema-title - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl deleted file mode 100644 index dae74ff..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl +++ /dev/null @@ -1,588 +0,0 @@ - - - - - - - - - - - - - - - - -true - - - - - - - - - - - #ALL - - -false -true -true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xslt1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -   -   -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt deleted file mode 100644 index d9f68c5..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe%3F175104/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt +++ /dev/null @@ -1,83 +0,0 @@ -ISO SCHEMATRON 2009 - -XSLT implementation by Rick Jelliffe with assistance from members of Schematron-love-in maillist. - -2009-03-18 - -Two distributions are available. One is for XSLT1 engines. -The other is for XSLT2 engines, such as SAXON 9. - - -This version of Schematron splits the process into a pipeline of several different XSLT stages. - -1) First, preprocess your Schematron schema with iso_dsdl_include.xsl. -This is a macro processor to assemble the schema from various parts. -If your schema is not in separate parts, you can skip this stage. - -2) Second, preprocess the output from stage 1 with iso_abstract_expand.xsl. -This is a macro processor to convert abstract patterns to real patterns. -If your schema does not use abstract patterns, you can skip this -stage. - -3) Third, compile the Schematron schema into an XSLT script. -This will typically use iso_svrl_for_xslt1.xsl or iso_svrl_for_xslt2.xsl -(which in turn invoke iso_schematron_skeleton_for_xslt1.xsl or iso_schematron_skeleton_for_saxon.xsl) -However, other "meta-styleseets" are also in common use; the principle of operation is the same. -If your schema uses Schematron phases, supply these as command line/invocation parameters -to this process. - -4) Fourth, run the script generated by stage 3 against the document being validated. -If you are using the SVRL script, then the output of validation will be an XML document. -If your schema uses Schematron parameters, supply these as command line/invocation parameters -to this process. - - -The XSLT2 distribution also features several next generation features, -such as validating multiple documents. See the source code for details. - -Schematron assertions can be written in any language, of course; the file -sch-messages-en.xhtml contains the diagnostics messages from the XSLT2 skeleton -in English, and this can be used as template to localize the skeleton's -error messages. Note that typically programming errors in Schematron are XPath -errors, which requires localized messages from the XSLT engine. - -ANT ---- -To give an example of how to process a document, here is a sample ANT task. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe.manifest b/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe.manifest deleted file mode 100644 index dd101a0..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/jprofile.exe.manifest +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/license/LICENSE.txt b/dist_win/jprofile_0.6.2_win/jprofile/license/LICENSE.txt deleted file mode 100644 index cade599..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/license/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -Copyright: - - KB / National Library of the Netherlands, Open Preservation Foundation - -License: - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . - - On Debian systems, the complete text of the GNU Lesser General Public License - version 3 can be found in "/usr/share/common-licenses/LGPL-3". \ No newline at end of file diff --git a/dist_win/jprofile_0.6.2_win/jprofile/lxml.etree.pyd b/dist_win/jprofile_0.6.2_win/jprofile/lxml.etree.pyd deleted file mode 100644 index b31f589..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/lxml.etree.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/msvcm90.dll b/dist_win/jprofile_0.6.2_win/jprofile/msvcm90.dll deleted file mode 100644 index b9cb123..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/msvcm90.dll and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/msvcp90.dll b/dist_win/jprofile_0.6.2_win/jprofile/msvcp90.dll deleted file mode 100644 index 6b07c75..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/msvcp90.dll and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/msvcr90.dll b/dist_win/jprofile_0.6.2_win/jprofile/msvcr90.dll deleted file mode 100644 index a68249a..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/msvcr90.dll and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Colour_2014.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Colour_2014.xml deleted file mode 100644 index 83708b5..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Colour_2014.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - -master300Colour_2014.sch -access300Colour_2014.sch -master300Colour_2014.sch -master300Gray_2014.sch -access300Colour_2014.sch -access300Gray_2014.sch - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Gray_2014.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Gray_2014.xml deleted file mode 100644 index 1968119..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_300Gray_2014.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - -master300Gray_2014.sch -access300Gray_2014.sch -master300Colour_2014.sch -master300Gray_2014.sch -access300Colour_2014.sch -access300Gray_2014.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Colour_2014.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Colour_2014.xml deleted file mode 100644 index c0ce0db..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Colour_2014.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - -master600Colour_2014.sch -access600Colour_2014.sch -master600Colour_2014.sch -master600Gray_2014.sch -access600Colour_2014.sch -access600Gray_2014.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Gray_2014.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Gray_2014.xml deleted file mode 100644 index d1581b3..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_600Gray_2014.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - -master600Gray_2014.sch -access600Gray_2014.sch -master600Colour_2014.sch -master600Gray_2014.sch -access600Colour_2014.sch -access600Gray_2014.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt300_2011.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt300_2011.xml deleted file mode 100644 index 2d3793f..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt300_2011.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - -master300Gray_2011.sch -access150Colour_2011.sch -master300Colour_2011.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt600_2011.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt600_2011.xml deleted file mode 100644 index 8050ff6..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_bt600_2011.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - -master600Gray_2011.sch -access150Colour_2011.sch -master600Colour_2011.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_generic_2014.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_generic_2014.xml deleted file mode 100644 index 9829af1..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_generic_2014.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - -kbMaster_2014.sch -kbAccess_2014.sch -kbMaster_2014.sch -kbAccess_2014.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_gvn.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_gvn.xml deleted file mode 100644 index 0ba9a19..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_gvn.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - -accessGvN_2016.sch -accessGvN_2016.sch -accessGvN_2016.sch -accessGvN_2016.sch -accessGvN_2016.sch -accessGvN_2016.sch - - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_kranten_2011.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_kranten_2011.xml deleted file mode 100644 index 6ac8466..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_kranten_2011.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - -master300Gray_2011.sch -access300Colour_2011.sch -master300Colour_2011.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_micro_2011.xml b/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_micro_2011.xml deleted file mode 100644 index 76873ae..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/profiles/kb_micro_2011.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - -master300Gray_2011.sch -access300Gray_2011.sch -master300Gray_2011.sch - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/pyexpat.pyd b/dist_win/jprofile_0.6.2_win/jprofile/pyexpat.pyd deleted file mode 100644 index d1d07ba..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/pyexpat.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/python27.dll b/dist_win/jprofile_0.6.2_win/jprofile/python27.dll deleted file mode 100644 index dd204d2..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/python27.dll and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/pywintypes27.dll b/dist_win/jprofile_0.6.2_win/jprofile/pywintypes27.dll deleted file mode 100644 index f71507a..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/pywintypes27.dll and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Colour_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Colour_2011.sch deleted file mode 100644 index 6282dc8..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Colour_2011.sch +++ /dev/null @@ -1,103 +0,0 @@ - - - - - KB access JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no precincts - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Gray_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Gray_2011.sch deleted file mode 100644 index 9459bd8..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access150Gray_2011.sch +++ /dev/null @@ -1,103 +0,0 @@ - - - - - KB access JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no precincts - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2011.sch deleted file mode 100644 index 664540f..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2011.sch +++ /dev/null @@ -1,103 +0,0 @@ - - - - - KB access JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no precincts - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2014.sch deleted file mode 100644 index 7dd99b8..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Colour_2014.sch +++ /dev/null @@ -1,88 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - compression ratio too low - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2011.sch deleted file mode 100644 index 85197c8..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2011.sch +++ /dev/null @@ -1,103 +0,0 @@ - - - - - KB access JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no precincts - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2014.sch deleted file mode 100644 index 5f519c3..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access300Gray_2014.sch +++ /dev/null @@ -1,88 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - compression ratio too low - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Colour_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Colour_2014.sch deleted file mode 100644 index d9f5879..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Colour_2014.sch +++ /dev/null @@ -1,88 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - compression ratio too low - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Gray_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Gray_2014.sch deleted file mode 100644 index 48f873d..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/access600Gray_2014.sch +++ /dev/null @@ -1,88 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - compression ratio too low - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/accessGvN_2016.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/accessGvN_2016.sch deleted file mode 100644 index 58cf898..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/accessGvN_2016.sch +++ /dev/null @@ -1,78 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2011.sch deleted file mode 100644 index 3a60e86..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2011.sch +++ /dev/null @@ -1,94 +0,0 @@ - - - - - KB access JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - - - no resolution box - - - - no capture resolution box - - - - METH not 'Restricted ICC' - - - - wrong X Tile size - wrong Y Tile size - - - - - no precincts - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2014.sch deleted file mode 100644 index b18f50a..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_2014.sch +++ /dev/null @@ -1,74 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - compression ratio too high - - compression ratio too low - - - - no resolution box - - - - no capture resolution box - - - - METH not 'Restricted ICC' - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_GvN_2015.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_GvN_2015.sch deleted file mode 100644 index 8ed3950..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbAccess_GvN_2015.sch +++ /dev/null @@ -1,72 +0,0 @@ - - - - - KB access JP2 check Geheugen van Nederland - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - - no resolution box - - - - no capture resolution box - - - - - METH not 'Restricted ICC' - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2011.sch deleted file mode 100644 index 7af873e..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2011.sch +++ /dev/null @@ -1,72 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - METH not 'Restricted ICC' - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2014.sch deleted file mode 100644 index dd71fa0..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/kbMaster_2014.sch +++ /dev/null @@ -1,82 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - METH not 'Restricted ICC' - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2011.sch deleted file mode 100644 index a8a5f8f..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2011.sch +++ /dev/null @@ -1,81 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2014.sch deleted file mode 100644 index 4fd1ce6..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Colour_2014.sch +++ /dev/null @@ -1,96 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2011.sch deleted file mode 100644 index 65e82dc..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2011.sch +++ /dev/null @@ -1,81 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2014.sch deleted file mode 100644 index f0fc09d..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master300Gray_2014.sch +++ /dev/null @@ -1,96 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2011.sch deleted file mode 100644 index 4a399d9..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2011.sch +++ /dev/null @@ -1,81 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2014.sch deleted file mode 100644 index 99c4f95..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Colour_2014.sch +++ /dev/null @@ -1,96 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2011.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2011.sch deleted file mode 100644 index 96d02ee..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2011.sch +++ /dev/null @@ -1,81 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - - - wrong codestream comment string - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2014.sch b/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2014.sch deleted file mode 100644 index 66e94c0..0000000 --- a/dist_win/jprofile_0.6.2_win/jprofile/schemas/master600Gray_2014.sch +++ /dev/null @@ -1,96 +0,0 @@ - - - - - KB master JP2 check - - - no jpylyzer element found - - - - no valid JP2 - - - - - no XML box - - - - no resolution box - - - - no capture resolution box - - - - wrong vertical capture resolution - wrong horizontal capture resolution - - - - wrong number of colour components - - - - METH not 'Restricted ICC' - - - - wrong colour space - - - - wrong X Tile size - wrong Y Tile size - - - - - no start-of-packet headers - no end-of-packet headers - no segmentation symbols - - wrong progression order - - wrong number of layers - - - no colour transformation - - wrong number of decomposition levels - - wrong codeblock width - wrong codeblock height - - wrong transformation - - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeX doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - precinctSizeY doesn't match profile - - - - - Expected codestream comment string missing - - - diff --git a/dist_win/jprofile_0.6.2_win/jprofile/select.pyd b/dist_win/jprofile_0.6.2_win/jprofile/select.pyd deleted file mode 100644 index 3073158..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/select.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/unicodedata.pyd b/dist_win/jprofile_0.6.2_win/jprofile/unicodedata.pyd deleted file mode 100644 index 81a687c..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/unicodedata.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/win32api.pyd b/dist_win/jprofile_0.6.2_win/jprofile/win32api.pyd deleted file mode 100644 index bd69d1d..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/win32api.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/win32pipe.pyd b/dist_win/jprofile_0.6.2_win/jprofile/win32pipe.pyd deleted file mode 100644 index fb1367f..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/win32pipe.pyd and /dev/null differ diff --git a/dist_win/jprofile_0.6.2_win/jprofile/win32wnet.pyd b/dist_win/jprofile_0.6.2_win/jprofile/win32wnet.pyd deleted file mode 100644 index 532758c..0000000 Binary files a/dist_win/jprofile_0.6.2_win/jprofile/win32wnet.pyd and /dev/null differ