pkgsrc/lang/swi-prolog-packages/PLIST

1206 lines
87 KiB
Text
Raw Normal View History

Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
@comment $NetBSD: PLIST,v 1.9 2011/04/12 23:16:43 asau Exp $
bin/xpce-client
lib/swi-prolog-${PKGVERSION}/Makefile
lib/swi-prolog-${PKGVERSION}/bin/${MACHINE_GNU_PLATFORM}/xpce
lib/swi-prolog-${PKGVERSION}/include/SWI-cpp.h
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/cgi.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/crypt.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/double_metaphone.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/files.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/http_stream.so
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/isub.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/json.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/memfile.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/mime.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/porter_stem.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/process.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/protobufs.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/random.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/rdf_db.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/readutil.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/rlimit.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/sgml2pl.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/sha4pl.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/snowball.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/socket.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/ssl4pl.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/streaminfo.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/table.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/time.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/turtle.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/unix.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/uri.so
lib/swi-prolog-${PKGVERSION}/lib/${MACHINE_GNU_PLATFORM}/zlib4pl.so
lib/swi-prolog-${PKGVERSION}/library/DTD/HTML4.dcl
lib/swi-prolog-${PKGVERSION}/library/DTD/HTML4.dtd
lib/swi-prolog-${PKGVERSION}/library/DTD/HTML4.soc
lib/swi-prolog-${PKGVERSION}/library/DTD/HTMLlat1.ent
lib/swi-prolog-${PKGVERSION}/library/DTD/HTMLspec.ent
lib/swi-prolog-${PKGVERSION}/library/DTD/HTMLsym.ent
lib/swi-prolog-${PKGVERSION}/library/R.pl
lib/swi-prolog-${PKGVERSION}/library/cgi.pl
lib/swi-prolog-${PKGVERSION}/library/chr.pl
lib/swi-prolog-${PKGVERSION}/library/chr/README
lib/swi-prolog-${PKGVERSION}/library/chr/a_star.pl
lib/swi-prolog-${PKGVERSION}/library/chr/binomialheap.pl
lib/swi-prolog-${PKGVERSION}/library/chr/builtins.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_compiler_errors.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_compiler_options.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_compiler_utility.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_debug.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_hashtable_store.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_integertable_store.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_messages.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_op.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_runtime.pl
lib/swi-prolog-${PKGVERSION}/library/chr/chr_translate.pl
lib/swi-prolog-${PKGVERSION}/library/chr/clean_code.pl
lib/swi-prolog-${PKGVERSION}/library/chr/find.pl
lib/swi-prolog-${PKGVERSION}/library/chr/guard_entailment.pl
lib/swi-prolog-${PKGVERSION}/library/chr/listmap.pl
lib/swi-prolog-${PKGVERSION}/library/chr/pairlist.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/bb_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/bv_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/fourmotz_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/ineq_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/itf_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/nf_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpq/store_q.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/README
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/class.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/dump.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/geler.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/itf.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/ordering.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/project.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpqr/redund.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/bb_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/bv_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/fourmotz_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/ineq_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/itf_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/nf_r.pl
lib/swi-prolog-${PKGVERSION}/library/clp/clpr/store_r.pl
lib/swi-prolog-${PKGVERSION}/library/crypt.pl
lib/swi-prolog-${PKGVERSION}/library/doc_http.pl
lib/swi-prolog-${PKGVERSION}/library/doc_latex.pl
lib/swi-prolog-${PKGVERSION}/library/double_metaphone.pl
lib/swi-prolog-${PKGVERSION}/library/filesex.pl
lib/swi-prolog-${PKGVERSION}/library/http/README
lib/swi-prolog-${PKGVERSION}/library/http/dcg_basics.pl
lib/swi-prolog-${PKGVERSION}/library/http/html_head.pl
lib/swi-prolog-${PKGVERSION}/library/http/html_write.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_authenticate.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_client.pl
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/http_cookie.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_dirindex.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_dispatch.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_error.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_exception.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_header.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_hook.pl
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/http_host.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_json.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_log.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_mime_plugin.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_open.pl
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/http_openid.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_parameters.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_path.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_pwp.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_server_files.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_session.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_sgml_plugin.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_ssl_plugin.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_stream.pl
lib/swi-prolog-${PKGVERSION}/library/http/http_wrapper.pl
lib/swi-prolog-${PKGVERSION}/library/http/inetd_httpd.pl
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/js_write.pl
lib/swi-prolog-${PKGVERSION}/library/http/json.pl
lib/swi-prolog-${PKGVERSION}/library/http/json_convert.pl
lib/swi-prolog-${PKGVERSION}/library/http/mimepack.pl
lib/swi-prolog-${PKGVERSION}/library/http/mimetype.pl
lib/swi-prolog-${PKGVERSION}/library/http/thread_httpd.pl
lib/swi-prolog-${PKGVERSION}/library/http/web/css/dirindex.css
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/web/css/openid.css
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/back.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/c.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/compressed.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/folder.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/generic.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/layout.png
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/openid-logo-square.png
lib/swi-prolog-${PKGVERSION}/library/http/web/icons/openid-logo-tiny.png
lib/swi-prolog-${PKGVERSION}/library/http/xpce_httpd.pl
lib/swi-prolog-${PKGVERSION}/library/iso_639.pl
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/library/isub.pl
lib/swi-prolog-${PKGVERSION}/library/memfile.pl
lib/swi-prolog-${PKGVERSION}/library/mime.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_access.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_colour.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_html.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_htmlsrc.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_index.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_library.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_man.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_modes.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_process.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_register.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_search.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_util.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/doc_wiki.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/edit.gif
lib/swi-prolog-${PKGVERSION}/library/pldoc/favicon.ico
lib/swi-prolog-${PKGVERSION}/library/pldoc/h1-bg.png
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/library/pldoc/h2-bg.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/hooks.pl
lib/swi-prolog-${PKGVERSION}/library/pldoc/multi-bg.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/pldoc.css
lib/swi-prolog-${PKGVERSION}/library/pldoc/pldoc.js
lib/swi-prolog-${PKGVERSION}/library/pldoc/pldoc.sty
lib/swi-prolog-${PKGVERSION}/library/pldoc/pllisting.css
lib/swi-prolog-${PKGVERSION}/library/pldoc/priv-bg.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/private.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/pub-bg.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/public.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/reload.gif
lib/swi-prolog-${PKGVERSION}/library/pldoc/source.png
lib/swi-prolog-${PKGVERSION}/library/pldoc/up.gif
lib/swi-prolog-${PKGVERSION}/library/plunit.pl
lib/swi-prolog-${PKGVERSION}/library/porter_stem.pl
lib/swi-prolog-${PKGVERSION}/library/process.pl
lib/swi-prolog-${PKGVERSION}/library/prolog_server.pl
lib/swi-prolog-${PKGVERSION}/library/protobufs.pl
lib/swi-prolog-${PKGVERSION}/library/pwp.pl
lib/swi-prolog-${PKGVERSION}/library/random.pl
lib/swi-prolog-${PKGVERSION}/library/rdf.pl
lib/swi-prolog-${PKGVERSION}/library/rdf_ntriples.pl
lib/swi-prolog-${PKGVERSION}/library/rdf_parser.pl
lib/swi-prolog-${PKGVERSION}/library/rdf_triple.pl
lib/swi-prolog-${PKGVERSION}/library/rdf_write.pl
lib/swi-prolog-${PKGVERSION}/library/rewrite.pl
lib/swi-prolog-${PKGVERSION}/library/rlimit.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/README
lib/swi-prolog-${PKGVERSION}/library/semweb/dc.rdfs
lib/swi-prolog-${PKGVERSION}/library/semweb/eor.rdfs
lib/swi-prolog-${PKGVERSION}/library/semweb/owl.owl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_cache.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_compare.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_db.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_edit.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_http_plugin.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_library.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_library.ttl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_litindex.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_persistency.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_portray.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_turtle.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_turtle_write.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdf_zlib_plugin.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdfs.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/rdfs.rdfs
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
lib/swi-prolog-${PKGVERSION}/library/semweb/sparql_client.pl
lib/swi-prolog-${PKGVERSION}/library/semweb/turtle_base.pl
lib/swi-prolog-${PKGVERSION}/library/sgml.pl
lib/swi-prolog-${PKGVERSION}/library/sgml_write.pl
lib/swi-prolog-${PKGVERSION}/library/sha.pl
lib/swi-prolog-${PKGVERSION}/library/snowball.pl
lib/swi-prolog-${PKGVERSION}/library/socket.pl
lib/swi-prolog-${PKGVERSION}/library/ssl.pl
lib/swi-prolog-${PKGVERSION}/library/streaminfo.pl
lib/swi-prolog-${PKGVERSION}/library/streampool.pl
lib/swi-prolog-${PKGVERSION}/library/table.pl
lib/swi-prolog-${PKGVERSION}/library/table_util.pl
lib/swi-prolog-${PKGVERSION}/library/test_cover.pl
lib/swi-prolog-${PKGVERSION}/library/test_wizard.pl
lib/swi-prolog-${PKGVERSION}/library/time.pl
lib/swi-prolog-${PKGVERSION}/library/unix.pl
lib/swi-prolog-${PKGVERSION}/library/uri.pl
lib/swi-prolog-${PKGVERSION}/library/xpath.pl
lib/swi-prolog-${PKGVERSION}/library/xsdp_types.pl
lib/swi-prolog-${PKGVERSION}/library/zlib.pl
lib/swi-prolog-${PKGVERSION}/swi-prolog.rc
lib/swi-prolog-${PKGVERSION}/xpce
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/COPYING
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/ChangeLog
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/Defaults
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/Defaults.user
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/customise.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/dialog.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/emacs.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/event_monitor.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/help.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/pcedraw.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/pcefaq.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/appl-help/plprefs.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bin/${MACHINE_GNU_PLATFORM}/xpce-client
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/alert.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/arrow_length.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/arrow_wing.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/arrows.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/back.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/binocular.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/book2.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/bookmarks.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/builtin_class.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/builtin_classflash.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/closedir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/copy.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/cpalette1.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/cpalette2.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/cut.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/delete.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/distribute.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/doc.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/done.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/down.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/drawing.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/drive.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/duplicate.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/edit.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/error.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/exclamation.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/eye.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/false.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/fatleft_arrow.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/fatright_arrow.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/fillpattern.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/font.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/foot.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/forward.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/funcdoc.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/ghost.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/graph.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/handpoint.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/help.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/hierarchy.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/manual.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/new.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/newdir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/noimg.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/note.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/ok.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/open.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/opendir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/paste.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/pce.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/pen.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/preddoc.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/print.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/profiler.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/redo.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/refresh.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/save.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/saveall.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/stop.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/trashcan.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/undo.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/up.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/user.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/user_class.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/user_classflash.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/valign.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/vcr_fast_forward.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/vcr_forward.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/vga16.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/16x16/wipeall.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/books.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/buffers.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/dbgsettings.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/doc_pl.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/doc_x.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/drawing.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/help.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/pensil.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/viewer.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/32x32/vishier.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/bishop.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/box.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/bullet.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/bullseye.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/busy_bee.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/cassette.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/chessboard.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/chesssquare.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/close.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/closedir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/concept.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/conceptLink.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/confirm.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/confirm_name.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/console_tile.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/creating.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/cross.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/cycle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/desktop.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/dir.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/domain.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_cconnect.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_connect.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_edit.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_line.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_path.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_proto.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_resize.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/draw_text.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ellipse.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/fatleft_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/fatright_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/file.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/folder.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/fragment.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/globe.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/go.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/group.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hand.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/happy.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/help.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hierarchy.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl1.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl10.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl2.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl3.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl4.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl5.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl6.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl7.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl8.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/hourgl9.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/juggler1.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/juggler2.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/juggler3.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/juggler4.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/juggler5.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro1.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro10.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro11.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro2.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro3.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro4.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro5.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro6.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro7.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro8.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/kangro9.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/king.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/knight.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/left_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/line.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/link.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/linking.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/magnify.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/main_link.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/mark.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ms_down_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ms_left_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ms_right_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ms_up_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/nomark.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/nosticky.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/note.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/off_marked.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/off_toggle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ol_cycle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ol_pulldown.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/ol_pullright.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/on_marked.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/on_toggle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/opendir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/other_link.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/paste.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Arches.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Balls.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Bats.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Bumps.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Carpet.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Circle_hex.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Circle_tile.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Circles.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Crabcan.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Diamonds.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Fish_escher.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Fishes.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_00.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_01.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_02.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_03.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_04.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_05.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_06.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_07.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_08.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_09.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_10.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_11.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_12.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_13.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_14.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_15.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_16.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_17.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_18.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_19.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_20.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_21.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_22.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_23.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_24.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_25.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_26.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_27.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_28.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_29.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_30.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_31.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_32_32.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_0.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_5.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_6.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_7.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_8.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Grey_9_9.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Hearts.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Interferance.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Ironcoat.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Kapow.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Movietone.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Ovals.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Rain.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Scales.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Snake.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Spiral.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Spirals.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Squared.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Squares.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Squarez.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Stars.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Suntile.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Tellipse.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Tiles.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Trelis.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Tripoint.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Tyres.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Ubalu.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Ubalu2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Vertigo.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Vibration.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Wiggly.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/Zigzag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_block.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_cobble.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_diag_block.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_diag_hering.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_hering.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_overlap.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/brick_pat1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/bricks_weave.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/check.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/check_stag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/chev_box.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/chev_circle.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/chev_same.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/chev_stag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/chev_swap.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_big.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_big_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_diag_wide.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_hex.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_open_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_rand.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_rand2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_skew.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_skew2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_stag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/dots_wide.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_chain.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_chain_half.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_knitting.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_link1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_link2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/fence_sqknot.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid16.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid8.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid_diag2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid_diag4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/grid_diag8.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag3_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag3_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag4_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag4_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag4_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag8_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag8_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag8_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_diag8_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_hex.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_hex_small.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_horz2_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert2_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert3_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert3_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert4_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert4_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert4_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert5_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert5_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_vert8_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/line_wave.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/plaid.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/plaid4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/plaid8.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/random_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/random_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/random_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/random_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/stich_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/stich_diag2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/stich_horz.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/stich_vert.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed2_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed4_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed4_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed5_5.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed_crab.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweed_cross.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/tweeddish.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_crazy.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_crazy_long.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag_1.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag_2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag_3.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag_4.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_diag_root.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect_dbl.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect_long.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect_loose.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect_wide.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_rect_wide2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_tied_cross.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_wide.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/patterns/weave_wide2.xbm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/pawn.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/pce.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/pce16.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/pin.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/pinned.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/printer.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/queen.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/question.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/right_arrow.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/rook.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/rook_64.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/sad.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/select.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/selecting.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/slant_left.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/slant_right.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/sticky.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/support.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/text.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/textedit.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/thermo.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/toggle_off.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/toggle_on.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/transcript.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/trash.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/typing.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/bitmaps/web.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/lib/${MACHINE_GNU_PLATFORM}/pl2xpce.so
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/faq/faq.html
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/index.obj
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/bug_fixes.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/changes.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/@=.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/and.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/application.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/arc.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/area.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/arrow.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/assign.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/attribute.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/behaviour.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/bezier_curve.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/binary_condition.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/binary_expression.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/binding.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/bitmap.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/block.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/bool.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/box.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/browser.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/browser_select_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/button.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/c_pointer.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/chain.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/chain_hyper.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/chain_table.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/char_array.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/circle.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/class.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/class_variable.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/click_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/code.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/code_vector.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/colour.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/colour_map.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/connect_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/connection.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/constant.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/constraint.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/create.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/cursor.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/date.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/device.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/dialog.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/dialog_group.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/dialog_item.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/dict.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/dict_item.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/directory.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/display.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/display_manager.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/divide.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/editor.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/elevation.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/ellipse.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/eq.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/equal.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/error.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/event.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/event_node.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/event_tree.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/figure.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/file.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/font.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/format.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/fragment.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/frame.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/function.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/get_method.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/graphical.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/grbox.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/greateq.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/greater.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/handle.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/handler.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/handler_group.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/hash_table.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/hbox.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/host.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/host_data.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/hyper.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/identity.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/if.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/image.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/int_item.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/joint.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/key_binding.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/label.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/label_box.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/layout_manager.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/lbox.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/less.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/lesseq.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/line.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/link.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/list_browser.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/menu.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/menu_bar.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/menu_item.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/message.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/method.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/minus.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/modifier.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/monitor.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/move_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/move_outline_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/name.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/nameref.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/node.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/not.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/noteq.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/number.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/object.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/obtain.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/operator.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/or.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/parbox.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/parser.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/path.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/pce.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/picture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/pixmap.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/plus.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/point.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/popup.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/popup_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/process.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/progn.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/program_object.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/prolog_term.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/quote_function.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/real.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/recogniser.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/regex.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/region.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/relation.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/relation_table.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/resize_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/resize_outline_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/resize_table_slice_gesture.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/resource.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/rubber.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/scroll_bar.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/send_method.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/sheet.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/size.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/slider.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/socket.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/source_location.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/source_sink.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/spatial.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/stream.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/string.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/style.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/syntax_table.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tab.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tab_stack.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/table.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/table_cell.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/table_column.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/table_row.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/table_slice.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tbox.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text_buffer.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text_cursor.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text_image.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text_item.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/text_margin.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tile.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tile_adjuster.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/timer.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/times.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tokeniser.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tree.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/tuple.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/type.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/var.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/variable.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/vector.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/view.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/visual.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/vmi.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/when.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/while.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/win_metafile.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/win_printer.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/window.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/class/window_decorator.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/errors.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/examples.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/groups.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/objects.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/predicates.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/tools.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/reference/topics.doc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/man/xpce-client.1
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/pl/Makefile
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/pl/swipl.rc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/pl/xpce.rc
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_autoload.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_editor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_error.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_expand.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_expansion.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_global.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_goal_expansion.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_keybinding.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_pl.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_portray.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_principal.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/boot/pce_realise.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/contrib.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/rubik/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/rubik/maplist.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/rubik/rubik.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/contrib/rubik/rubikpce.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/chess.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/colour.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/constraint.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/cursor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/event_hierarchy.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/fontviewer.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/ftplog.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/graph.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/hsvcolour.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/imageviewer.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/ispell.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/juggler.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/kangaroo.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/demo/pce_demo.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/CLASSINDEX.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/INDEX.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/MKINDEX.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/Makefile
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/Overview
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/Xserver.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/area.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/autowin.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/bitmap.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/event_speak.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/frozen.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/global.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/resource.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/compatibility/send.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/attribute.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/behaviour.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/button.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/choice.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/cycle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/editor.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/image.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/label.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/list.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/reporter.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/slider.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/text_item.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/bitmaps/toggle.bm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/dialog.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/font.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/generate.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/image_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/label.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/layout.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/load.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/menuitem.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/meta.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/pretty_print.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/prompter.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/proto.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dialog/util.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/browser.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/emit.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/form.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/html.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/icons/back.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/icons/forward.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/icons/reload.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/icons/source.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/layout.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/load.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/objects.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/sp_errors.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/t2.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/table.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/test.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/url_fetch.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/util.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/vfont.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/window.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/xml_browse.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/doc/xml_hierarchy.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dragdict.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/dragdrop.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/align.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/attribute.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/canvas.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/config.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/draw.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/exportpl.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/gesture.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/importpl.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/menu.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/shapes.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw/undo.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/draw_extend.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/edit_dialog.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/annotate_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/application.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/bookmarks.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/buffer.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/buffer_menu.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/c_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/chr_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/cpp_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/dde_server.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/emacs.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/find.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/fundamental_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/gdb.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/help.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/hit_list.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/html_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/java_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/language_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/latex_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/man_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/outline_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/prolog_colour.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/prolog_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/prompt.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/rdf_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/script_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/server.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/sgml_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/shell.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/swi_prolog.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/text_mode.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs/window.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs_extend.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/emacs_tags.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/english/pce_messages.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/file_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/find_file.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/find_file_dialog.pl
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/getpass.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/gradient.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/gui_tracer.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/help_message.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/html_hierarchy.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/html_refman.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/html_write.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/http_image.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/http_man.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/httpd.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/run.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http/xref.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/http_client.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/hyper.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/imageops.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/isocomp.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/keybinding.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/make_dialog.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/behaviour_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/classification.dat
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/classmap.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/man_index.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/p_card.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/p_data.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/pce_op.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/showevent.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/util.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_card.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_class.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_editor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_error.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_global.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_group.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_hierarchy.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_inherit.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_inspector.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_instance.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_manual.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_module.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_search.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_select.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_statistics.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_summary.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_tile.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_topic.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/man/v_visual.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/math/expandmath.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/password_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_arm.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_arrow_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_class_index.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_colour_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_config.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_configeditor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_cxx_headers.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_debug.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_dispatch.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_drag_and_drop.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_drag_and_drop_dict_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_edit.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_editable_text.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_emacs.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_float_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_font_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_grapher.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_graphical_browser.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_help_file.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_helper.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_identifier_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_image.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_image_browser.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_image_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_loadcxx.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_main.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_manual.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_meta.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_objects.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_postscript.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_progress.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_prolog_xref.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_prompter.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_regex_compat.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_renew.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_report.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_require.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_select_set_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_selection.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_server.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_set_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_shell.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_style_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_tagged_connection.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_template.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_tick_box.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_toc.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_type.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_unclip.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_util.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pce_xref.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/pcedraw.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/persistent_frame.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/plot/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/plot/axis.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/plot/barchart.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/plot/demo.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/plot/plotter.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/portray_object.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/print_graphics.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/print_text.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/prolog_predicate.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/prolog_predicate_item.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/qrecompile.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/rdf_diagram.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/scaledbitmap.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/scan_arguments.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/sp_fcompile.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/splash_screen.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/stayup_popup.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi/pce_debug_monitor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi/pce_profile.pl
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi/swi_console.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi/thread_monitor.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_compatibility.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_edit.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_help.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_hooks.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_ide.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/swi_preferences.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/tabbed_window.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/tabular.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/toc_filesystem.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/toolbar.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/README
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/break.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/browse.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/browse_xref.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/clause.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/exceptions.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/gui.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/16x16/butterfly.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/16x16/dbgsettings.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/abort.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/break.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/breakpoint.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/bug.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/builtin.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/butterfly.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/call.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/class.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/classext.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/classvar.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/closedir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/creep.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/dbgsettings.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/debug.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/det.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/details.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/down.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/dyn.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/dynamic.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/edit.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/except.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/exit.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/export.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/eyes.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/fact.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/fail.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/finish.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/foreign.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/get.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/grammar.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/import.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/into.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/ivar.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/leap.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/list.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/loadfailed.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/loading.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/locate.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/meta.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/mini-globe.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/mini-run.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/module.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/ndet.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/nodebug.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/nospy.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/nostop.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/nostopspy.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/opendir.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/openmodule.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/plfile.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/plloadedfile.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/pred.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/redo.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/retry.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/send.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/skip.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/spy.xpm
Update to SWI-Prolog 5.11.18 Notable changes in 5.11.18 -------------------------- Experimental extension to run the development tools in a separate thread, so you can edit away while your program runs. Notable changes in 5.11.17 -------------------------- Fix error with quoted wide atoms. This causes write/read to fail for any term that contains an atom that needs quotes and has Unicode points >= 256. This also contains the copy_term/2 patch to exploit sharing ... Notable changes in 5.11.16 -------------------------- Unicode handling is certainly a step forward wrt. character classification. Unicode symbols have been modified to `glue' like ==, =<, etc. Finally, there is per-thread CPU statistics for MacOS Finally, selection handling in the Windows console is a bit better. Trail-stack usage is now significantly less. Notable changes in 5.11.15 -------------------------- Revert the change to write_canonical/1 Notable changes in 5.11.14 -------------------------- There is a lot of mostly small fixes. The most notably are changes to the ODBC interface, which now supports Unicode (at least for queries, not for all aspects). It's got a new option to ODBC connections: the encoding. The default should work fine on Windows and UTF-8 based Unix databases. Thanks to Matt Lilley and Carlo Capelli. There is quite some reorganisation in the sources due to work on sharing most of the OS interface and I/O between YAP and SWI and make the setup of packages such that the makefiles can be shared between SWI and YAP. Notable changes in 5.11.13 -------------------------- This version fixes some more issues in =@=/2, various minor issues and may have big impact on trail-stack usage of your program. It also fixes the reported socket issue with XPCE on Win64. Notable changes in 5.11.12 -------------------------- This contains some quite important fixes, avoiding simply wrong answers as well as some crashes. Besides the usual small stuff, it has two important rewrites: - Standard order comparison now avoids recursion using the C-stack. This is a bit of a trial. Timing shows that processing last-argument nested terms is about 10% slower and other nesting is about 50% faster and no longer causes uncrontrolled stack-overflows. This is promising, but the amount of work is considerable, notably for this case, where the possibility of comparison to raise an exception is new. - =@=/2 is completely rewritten. If you are looking for a challenge, there is one in the current version of =@=/2 (variant/2). The implementation is in src/pl-prims.c and the test cases in src/Tests/core/test_term.pl. =@=/2 has gone through some iterations. If all is right, the current version - Fails as soon as it finds a difference, without processing a whole term. - Handles rational trees (cyclic terms). - Deals with variables shared between the argument terms. Notable changes in 5.11.11 -------------------------- Top level now reveals the internal `sharing' of subterms in answer substitutions. This notably deals with cyclic terms. Notable changes in 5.11.10 -------------------------- Floats are no longer printed through the C-library printf using %g. Instead, Prolog write writes a float such that reading it back recontructs a float that is bitwise equivalent (==) to the input. This is based on a library by David M. Gay. The output routine uses the same rules on when to use exponential notation as the GNU C-library's %g format. It prints as few as possible digits to reach == equivalence, but this is typically more than it used to print. If you want fewer digits, use format/3 (e.g., ~6f) or round (A is round(F*10000)/10000, write(A)). rdf_reachable/2 now, like rdf_has/3, respects defined RDF predicate properties. In addition, it provides look-ahead which ensures deterministic success on the last answer. This means that rdf_reachable(A, owl:sameAs, B) (with either or both A and B instantiated) behaves as expected and much more efficiently. There are a lot of changes to quoted syntax, notably for 0'<char> and some for quoted atoms. Except for \e being read as 27 (esc), all sensible previously valid input is parsed consistently (I wouldn't be surprised if it is possible to construct cases where you get different output, but I would be surprised if any real program is affected). See mailinglist for details.
2011-04-13 01:16:42 +02:00
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/stack.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/stop.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/undefined.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/undefpred.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/unrefpred.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/up.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/user.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/icons/warnpred.xpm
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/pltracer.hlp
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/pprint.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/query.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/settings.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/source.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/stack.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/status.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/test.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/trace.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/util.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/trace/viewterm.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/url_image.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/xref/common.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/xref/mkcommon.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/xref/quintus.pl
lib/swi-prolog-${PKGVERSION}/xpce-${XPCE_VERSION}/prolog/lib/xref/sicstus.pl
Update to SWI-Prolog 5.11.4 Changes in 5.11.4: * ADDED: library coinduction.pl, after discussion with Gopal Gupta. * CLEANUP: Share more of the Makefiles between Windows and the rest * FIXED: destruction of a queue if a thread is waiting to write * FIXED: error by current_blob/2. * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3. The new version should now fully comply to ISO. As of now, - The predicate ^/2 no longer exists - ^ is only handled by bagof/setof if it appears directly at the toplevel of the 2nd argument. E.g., the following is NOT allowed: setof(X, (foo(X); Y^foo(Y)), L). Code must be rewritten. At runtime, problems are signalled by ^/2 being undefined. compile-time analysis can be achieved using gxref/0 (or check/0 for quick-and-dirty). * FIXED: GC error when nesting (if->then/*no-else*/) inside \+. Thanks to test-case by Keri Harris. * FIXED: retractall(x(X,X)). Roberto Tiella. Changes in 5.11.3: * FIXED: Top level now performs expand_goal/2 *after* correcting the goal. * MODIFIED: PL_CUTTED -> PL_PRUNED. Kept PL_CUTTED as a #define for compatibility. * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows. * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs * ENHANCED: Better sizing of the hash-tables. * CLEANUP: Use size_t in many places for RDF-DB * ADDED: RDF-DB index on +,+,+. This provides a significant speedup in loading databases with multiple objects on the same SP. * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true). See Prolog flag iso for a detailed description. * MAINT: Fix compilation under -DO_DEBUG. Andy Valencia. * FIXED: Syntax: proper bracketing of arguments * MODIFIED: Simpler syntax within { }. According to 6.3.6 the term within curly brackets is read with priority 1201, so no extra parentheses are needed. Changes in 5.11.2: * ADDED: lang_equal/2 to RDF library to test language equality. Jacco van Ossenbruggen * FIXED: Error from http_absolute_location/3 if an alias is not defined. * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined. * ADDED: Just-in-time creation of thread-pools for the HTTP server using the new hook http:create_pool/1. Cleanup of the code for faster spawning of worker-threads. * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2 seconds (was 5) and the worker-count is now 5 (was 2). Worker-count is increased because many servers need it as since version 5.9.x there is hardly a price for more workers. * ADDED: option hide_children(Bool) to make prefix handlers hide their children and allow http_delete_handler to delete a handler-by-id. * PORT: Realise set_end_of_file in Windows version * ENHANCED: Implement safe-locking of the RDF persistent database * ADDED: set_end_of_stream/1. * PORT: Fix for MS VS2010 compilation. Degski. * ADDED: lang_matches/2 to library(rdf_db) * FIXED: url_to_filename/2 in rdf_persistency was broken due to steadfastness fix in DCG (commit 1a1a5699). Jacco van Ossenbruggen. * FIXED: list_settings/0. Li Li. * FIXED: handling of = and contains in xpath. Carsten van Weelden. * ADDED: library(semweb/sparql_client) providing a SPARQL client API. * ENHANCED: Layout for listing where the body resides in another module. * ENHANCED: Provide style pldoc(Id) with each PlDoc handler * ADDED: reply_html_page/3: re-stylable HTML pages * FIXED: Possible crash in cleanup handlers. See comment above discardChoicesAfter() for more details. * ENHANCED: Make it possible to give syntax-warnings with exact positions. * ADDED: Warnings for missing quotes for , and | * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now illegal. In the unlikely case this was intended, the term after the bar (|) must be enclosed in brackets. I.e. [a,b|(c,d)] or [a|(b|c)]. * FIXED: Syntax: proper quoting of | and , * PORT: Improve behavioral consistency between 32-bit and 64-bit allocation * FIXED: Memory leak for threads allocating chunks of 512 bytes. Matt Lilley. * ADDED: computing SHA incrementally. Ivan Shmakov * INSTALL: Item#567: make check of xpce loading user's .plrc * FIXED: steadfastness in DCG translation. Item#379 * FIXED: Item#559: hanging system in GC. Only affects 32-bit platforms when doing GC on large stacks that have >8Mb chunks of continuous garbage. Ulrich Neumerkel. * DOC: errors for atom_length/2. Ulrich Neumerkel. * ADDED: Library(http/js_write) to embed JavaScript calls into HTML pages * FIXED: Processing of stack-limit options in thread_create/3. Jacco. * FIXED: Avoid direct access to private predicates of module error. * ADDED: rdf_reachable/5, providing a distance limit and returning the distance. * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness. * FIXED: Thread-creation if ulimit -s == infinite. * FIXED: Do not skip character after . in turtle parser. Lourens van der Meij. * PORT: Windows snprintf --> _snprintf * MODIFIED: On systems that provide getrlimit(), the default C-stack-size of created threads is the same as that of the main thread. This was already the default on Linux, but not on e.g. MacOS. * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack limit. For consistency, thread_create now also accepts c_stack as parameter. This patch also cleans some type-issues with regard to stack-size specification and removes 2Gb limit for Win64 due to the use of long. * ADDED: Skos prefix * ADDED: http_server_property/2. This patch also does some cleanup to the meta-predicate declarations for the multi-threaded HTTP server. * FIXED: Check for integer overflows in numeric-arguments for format-specifiers * FIXED: Possible buffer overflow on format('~200f', [1]). Mike Elston. * ADDED: library(http/http_openid), supporting OpenID consumers and a server. * ADDED: library(http/http_host) to obtain the public hostname of our HTTP service * CLEANUP: Stricter type-checking in load_files/2. Discussion on comp.lang.prolog. * FIXED: Old naming conventions. Julian Zubek. * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE. Samer Abdallah. * ADDED: Allow for selective importing of operators in use_module/2. After discussion with Vitor. * PORT: Do not use chrpath if the kernel is not a shared object * PORT: Some type-issues in socket libs (nonblockio.c) I do not think any of these could have been fatal. They just produce alarming messages from the compiler. Changes in 5.11.1: * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in VS2010 * PORT: Fix download of Windows prerequisites for Windows 7. Degski. * ADDED: Support for "406 Not Acceptable" responses in the HTTP server. * INSTALL: make prepare check all checked-out modules, regardless of -a. * FIXED: Cleanup after uncaught stack-overflow exceptions. Paul Singleton. * DOC: Fixed code for skeleton client. Mike Elston. * FIXED: ?= for cases where the arguments do not unify. Marco Montali. * FIXED: Possible crash on stack-shift in cleanup handler. Jochem Liem. * FIXED: Possibly wrong association of $and in frozen/2. Samer Abdallah. * FIXED: Handling option register_namespaces(true) in rdf_load/2. Vangelis Vassiliadis. * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl source). * PORT: Avoid including termios.h into pl-os.h to localise the dependencies and (hopefully) make the system compile on Solaris. * PORT: Get prototype for posix_openpt(), avoiding warning * PORT: Move time-dependencies where they are needed; use POSIX clock_gettime() if it is provided. * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4. * MODIFIED: Make rdf_meta/1 module-aware. This means that calls are only expanded if they resolve to the exact predicate that is declared using rdf_meta. This might break code relying on the old behaviour that expansion took place regardless of the module. It is possible to get a warning on calls that used to be expanded and are now not using this call before *loading* the program: ?- debug(rdf_meta). The new code also expands NS:Local appearing literally in the head of rdf_meta-declared clauses.
2010-08-19 00:32:00 +02:00
man/man1/xpce-client.1
man/man1/xpce.1