{"commit":"b903910134576eef2bdcf5a670255c4e7520dd16","old_file":"tools\/debugger\/tester.lgt","new_file":"tools\/debugger\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 2016 Paulo Moura \n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([debuggerp, debugger, debugger_messages], [source_data(on)]),\n\tlogtalk_load(types(loader)),\n\tlogtalk_load(tests, [hook(lgtunit), optimize(on)]),\n\ttests::run\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 2016 Paulo Moura \n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([debuggerp, debugger, debugger_messages], [source_data(on)]),\n\tlogtalk_load(basic_types(loader)),\n\tlogtalk_load(sets(loader)),\n\tlogtalk_load(tests, [hook(lgtunit), optimize(on)]),\n\ttests::run\n)).\n","subject":"Fix missing `sets` library load for the `debugger` tool tests","message":"Fix missing `sets` library load for the `debugger` tool tests\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"d4dc3b4577c19119be4e4e75935fa25db28f00e1","old_file":"examples\/birds\/loader.lgt","new_file":"examples\/birds\/loader.lgt","old_contents":"\n:- initialization(\n\tlogtalk_load([\n\t\tdescriptors,\n\t\texpert,\n\t\tbirds])).\n\n\/*\nIf you intend to use the FOP XSL:FO processor for generating PDF documenting\nfiles, comment the directive above and uncomment the directive below\n\n:- initialization(\n\tlogtalk_load(\n\t\t[birds], [xmlsref(standalone)])).\n*\/\n","new_contents":"\n:- initialization(\n\tlogtalk_load([\n\t\tdescriptors,\n\t\tbirds,\n\t\texpert])).\n\n\/*\nIf you intend to use the FOP XSL:FO processor for generating PDF documenting\nfiles, comment the directive above and uncomment the directive below\n\n:- initialization(\n\tlogtalk_load(\n\t\t[birds], [xmlsref(standalone)])).\n*\/\n","subject":"Change load error to avoid a compiler warning.","message":"Change load error to avoid a compiler warning.\n\n\ngit-svn-id: 4c7b768bc2e2a56aa1c56b1b5a9454ba68342430@2995 ac9c905b-388a-4ddf-9b6a-4063a022bc57\n","lang":"Logtalk","license":"artistic-2.0","repos":"LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2"}
{"commit":"c12fdeac6c741f5c9e6a5ccc9f9ca6410cb7748c","old_file":"examples\/errors\/errors_loader.lgt","new_file":"examples\/errors\/errors_loader.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tignore(logtalk_load(lgtmthdredef, [report(on)])),\n\tignore(logtalk_load(invclause, [report(on)])),\n\tignore(logtalk_load(unknowndir, [report(on)])),\n\tignore(logtalk_load(noninstdir, [report(on)])),\n\tignore(logtalk_load(invargdir, [report(on)])),\n\tignore(logtalk_load(unmatchdir, [report(on)])),\n\tignore(logtalk_load(catdynpred, [report(on)])),\n\tignore(logtalk_load(ccredef, [report(on)])),\n\tignore(logtalk_load(usesrepeated, [report(on)])),\n\tignore(logtalk_load(usesconflict, [report(on)]))\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\t(logtalk_load(lgtmthdredef, [report(on)]) -> true; true),\n\t(logtalk_load(invclause, [report(on)]) -> true; true),\n\t(logtalk_load(unknowndir, [report(on)]) -> true; true),\n\t(logtalk_load(noninstdir, [report(on)]) -> true; true),\n\t(logtalk_load(invargdir, [report(on)]) -> true; true),\n\t(logtalk_load(unmatchdir, [report(on)]) -> true; true),\n\t(logtalk_load(catdynpred, [report(on)]) -> true; true),\n\t(logtalk_load(ccredef, [report(on)]) -> true; true),\n\t(logtalk_load(usesrepeated, [report(on)]) -> true; true),\n\t(logtalk_load(usesconflict, [report(on)]) -> true; true)\n)).\n","subject":"Fix previous commit: `ignore\/1` is not a built-in in all supported back-end Prolog compilers","message":"Fix previous commit: `ignore\/1` is not a built-in in all supported back-end Prolog compilers\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"eed2f9d397cc8b541d80e17cf0435d157a0c2a12","old_file":"library\/integer.lgt","new_file":"library\/integer.lgt","old_contents":"\n:- object(integer,\n\textends(number)).\n\n\n\t:- info([\n\t\tversion is 1.0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2000\/7\/24,\n\t\tcomment is 'Integer data type predicates.']).\n\n\n\t:- public(between\/3).\n\n\t:- mode(between(+integer, +integer, ?integer), zero_or_more).\n\n\t:- info(between\/3, [\n\t\tcomment is 'Returns integers in the interval defined by the two first arguments.',\n\t\targnames is ['Lower', 'Upper', 'Integer']]).\n\n\n\tbetween(Lower, Upper, Integer) :-\n\t\tinteger(Lower),\n\t\tinteger(Upper),\n\t\t(var(Integer) ->\n\t\t\tLower =< Upper,\n\t\t\tgenerate(Lower, Upper, Integer)\n\t\t\t;\n\t\t\tinteger(Integer),\n\t\t\tLower =< Integer,\n\t\t\tInteger =< Upper).\n\n\n\tgenerate(Lower, _, Lower).\n\n\tgenerate(Lower, Upper, Integer) :-\n\t\tLower < Upper,\n\t\tNext is Lower + 1,\n\t\tgenerate(Next, Upper, Integer).\n\n\n\tvalid(Integer) :-\n\t\tinteger(Integer).\n\n\n:- end_object.\n","new_contents":"\n:- object(integer,\n\textends(number)).\n\n\t:- info([\n\t\tversion is 1.1,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2007\/4\/20,\n\t\tcomment is 'Integer data type predicates.']).\n\n\t:- public(between\/3).\n\t:- mode(between(+integer, +integer, +integer), zero_or_one).\n\t:- mode(between(+integer, +integer, -integer), zero_or_more).\n\t:- info(between\/3, [\n\t\tcomment is 'Returns integers in the interval defined by the two first arguments.',\n\t\targnames is ['Lower', 'Upper', 'Integer']]).\n\n\tbetween(Lower, Upper, Integer) :-\n\t\tinteger(Lower),\n\t\tinteger(Upper),\n\t\t(\tvar(Integer) ->\n\t\t\tLower =< Upper,\n\t\t\tgenerate(Lower, Upper, Integer)\n\t\t;\tinteger(Integer),\n\t\t\tLower =< Integer,\n\t\t\tInteger =< Upper\n\t\t).\n\n\tgenerate(Lower, _, Lower).\n\tgenerate(Lower, Upper, Integer) :-\n\t\tLower < Upper,\n\t\tNext is Lower + 1,\n\t\tgenerate(Next, Upper, Integer).\n\n\tvalid(Integer) :-\n\t\tinteger(Integer).\n\n:- end_object.\n","subject":"Split mode directive of between\/3 in two more specific ones.","message":"Split mode directive of between\/3 in two more specific ones.\n\n\ngit-svn-id: 4c7b768bc2e2a56aa1c56b1b5a9454ba68342430@3565 ac9c905b-388a-4ddf-9b6a-4063a022bc57\n","lang":"Logtalk","license":"artistic-2.0","repos":"LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2"}
{"commit":"9a60f785924126247d9e632365f97fc545d9fa06","old_file":"tools\/diagrams\/loader.lgt","new_file":"tools\/diagrams\/loader.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright (c) 1998-2013 Paulo Moura \n%\n% This program is free software: you can redistribute it and\/or modify\n% it under the terms of the GNU General Public License as published by\n% the Free Software Foundation, either version 3 of the License, or\n% (at your option) any later version.\n% \n% This program is distributed in the hope that it will be useful,\n% but WITHOUT ANY WARRANTY; without even the implied warranty of\n% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n% GNU General Public License for more details.\n% \n% You should have received a copy of the GNU General Public License\n% along with this program. If not, see .\n% \n% Additional licensing terms apply per Section 7 of the GNU General\n% Public License 3. Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tlogtalk_load([cc(osp), cc(os)], [optimize(on)]),\n\tlogtalk_load([diagram, entity_diagram, file_diagram], [optimize(on)]),\n\tlogtalk_load([graphp, dot_graph], [optimize(on)])\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright (c) 1998-2013 Paulo Moura \n%\n% This program is free software: you can redistribute it and\/or modify\n% it under the terms of the GNU General Public License as published by\n% the Free Software Foundation, either version 3 of the License, or\n% (at your option) any later version.\n% \n% This program is distributed in the hope that it will be useful,\n% but WITHOUT ANY WARRANTY; without even the implied warranty of\n% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n% GNU General Public License for more details.\n% \n% You should have received a copy of the GNU General Public License\n% along with this program. If not, see .\n% \n% Additional licensing terms apply per Section 7 of the GNU General\n% Public License 3. Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tlogtalk_load(library(pairs), [optimize(on)]),\n\tlogtalk_load([cc(osp), cc(os)], [optimize(on)]),\n\tlogtalk_load([diagram, entity_diagram, file_diagram], [optimize(on)]),\n\tlogtalk_load([graphp, dot_graph], [optimize(on)])\n)).\n","subject":"Update the `diagrams` tool fixing missing dependency on the `pairs` library object","message":"Update the `diagrams` tool fixing missing dependency on the `pairs` library object\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"796653ccd6d934159fcabe801def888192ac6da4","old_file":"tests\/prolog\/functions\/unbounded\/tester.lgt","new_file":"tests\/prolog\/functions\/unbounded\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2021 Paulo Moura \n% SPDX-License-Identifier: Apache-2.0\n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- if(current_prolog_flag(bounded, false)).\n\n\t:- initialization((\n\t\tset_logtalk_flag(report, warnings),\n\t\tlogtalk_load(lgtunit(loader)),\n\t\tlogtalk_load(tests, [hook(lgtunit), optimize(on)]),\n\t\ttests::run\n\t)).\n\n:- endif.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2021 Paulo Moura \n% SPDX-License-Identifier: Apache-2.0\n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- if(current_prolog_flag(bounded, false)).\n\n\t:- initialization((\n\t\tset_logtalk_flag(report, warnings),\n\t\tlogtalk_load(lgtunit(loader)),\n\t\tlogtalk_load(tests, [hook(lgtunit), optimize(on)]),\n\t\ttests::run\n\t)).\n\n:- else.\n\n\t:- initialization((\n\t\twrite('(not applicable)'), nl\n\t)).\n\n:- endif.\n","subject":"Fix unbound integer arithmetic test set skipping when not applicable","message":"Fix unbound integer arithmetic test set skipping when not applicable\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"4905e44fdbfd2e671ed64ac696c149cc2bc0b8fb","old_file":"examples\/benchmarks\/loader.lgt","new_file":"examples\/benchmarks\/loader.lgt","old_contents":"\n:- [benchmark, plain, module].\n\n:- initialization(logtalk_load(object)). \n","new_contents":"\n% if your Prolog compiler does not support the ensure_loaded\/1 directive\n% then simply consult the files\n\n:- ensure_loaded(benchmark).\n\n:- ensure_loaded(plain).\n\n% comment the next line if your Prolog compiler does not support modules\n:- ensure_loaded(module).\n\n:- initialization(logtalk_load(object)). \n","subject":"Use the ISO ensure_loaded\/1 directive for loading the Prolog files.","message":"Use the ISO ensure_loaded\/1 directive for loading the Prolog files.\n\n\ngit-svn-id: 4c7b768bc2e2a56aa1c56b1b5a9454ba68342430@1619 ac9c905b-388a-4ddf-9b6a-4063a022bc57\n","lang":"Logtalk","license":"artistic-2.0","repos":"LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2"}
{"commit":"0bae7bdd795959dcfee2a43787c6a9ab0f2ef032","old_file":"examples\/threads\/sync\/slow_print.lgt","new_file":"examples\/threads\/sync\/slow_print.lgt","old_contents":":- object(slow_print).\n\n\t:- threaded.\n\n\t:- public(start\/0).\n\n\t:- private([slow_print_abc\/0, slow_print_123\/0]).\n\t:- synchronized([slow_print_abc\/0, slow_print_123\/0]).\n\n\tstart :-\n\t\t% launch two threads, running never ending goals\n\t\tthreaded((\n\t\t\trepeat_abc,\n\t\t\trepeat_123\n\t\t)).\n\n\trepeat_abc :-\n\t\trepeat, slow_print_abc, fail.\n\n\trepeat_123 :-\n\t\trepeat, slow_print_123, fail.\n\n\tslow_print_abc :-\n\t\twrite(a), thread_sleep(0.2),\n\t\twrite(b), thread_sleep(0.2),\n\t\twrite(c), nl.\n\n\tslow_print_123 :-\n\t\twrite(1), thread_sleep(0.2),\n\t\twrite(2), thread_sleep(0.2),\n\t\twrite(3), nl.\n\n:- end_object.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- object(slow_print).\n\n\t:- info([\n\t\tversion is 1.0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2013\/10\/18,\n\t\tcomment is 'Simple example for using the synchronized\/1 predicate directive.'\n\t]).\n\n\t:- threaded.\n\n\t:- public(start\/0).\n\n\t:- private([slow_print_abc\/0, slow_print_123\/0]).\n\t:- synchronized([slow_print_abc\/0, slow_print_123\/0]).\n\n\tstart :-\n\t\t% launch two threads, running never ending goals\n\t\tthreaded((\n\t\t\trepeat_abc,\n\t\t\trepeat_123\n\t\t)).\n\n\trepeat_abc :-\n\t\trepeat, slow_print_abc, fail.\n\n\trepeat_123 :-\n\t\trepeat, slow_print_123, fail.\n\n\tslow_print_abc :-\n\t\twrite(a), thread_sleep(0.2),\n\t\twrite(b), thread_sleep(0.2),\n\t\twrite(c), nl.\n\n\tslow_print_123 :-\n\t\twrite(1), thread_sleep(0.2),\n\t\twrite(2), thread_sleep(0.2),\n\t\twrite(3), nl.\n\n:- end_object.\n","subject":"Add missing copyright and author information for the new example","message":"Add missing copyright and author information for the new example\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"84f0d11f78b3e9fb696436d83a8436f8c3a6fd1d","old_file":"tools\/lgtdoc\/sample_doclet.lgt","new_file":"tools\/lgtdoc\/sample_doclet.lgt","old_contents":"\n:- object(sample_doclet,\n\textends(doclet)).\n\n\t:- info([\n\t\tversion is 1.0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2016\/07\/29,\n\t\tcomment is 'Sample doclet object for the \"lgtdoc\" tool.'\n\t]).\n\n\tdoc_goal(lgtdoc::library(lgtdoc, [xml_docs_directory(sample_docs)])).\n\n\tshell_command('cd sample_docs && lgt2html -t \"Sample API docs for the lgtdoc tool\" && cd ..').\n\n:- end_object.\n","new_contents":"\n:- object(sample_doclet,\n\textends(doclet)).\n\n\t:- info([\n\t\tversion is 1.0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2016\/07\/29,\n\t\tcomment is 'Example of a doclet object.'\n\t]).\n\n\t% in this example doclet, we automate (re)generating API documentation\n\t% for the \"lgtdoc\" tool; usage is simple: just send the message update\/0\n\t% to this object (after loading the \"lgtdoc\" tool of course)\n\n\t% define one clause per goal required to generate the documentation\n\t% this goal will be called in the context of \"user\"\n\tdoc_goal(lgtdoc::library(lgtdoc, [xml_docs_directory(docs)])).\n\n\t% define one clause per shell command to be executed\n\tshell_command('cd docs && lgt2html -t \"API documentation for the lgtdoc tool\"').\n\n:- end_object.\n","subject":"Improve documentation of the sample doclet","message":"Improve documentation of the sample doclet\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"75ecb39395a60bc5817f0dc8a17e9d939186cadb","old_file":"library\/lgtunit_loader.lgt","new_file":"library\/lgtunit_loader.lgt","old_contents":"\n:- initialization((\n\tlogtalk_load([termp, term], [reload(skip)]),\t% allow for static binding\n\tlogtalk_load(lgtunit))).\n","new_contents":"\n:- initialization((\n\tlogtalk_load([termp, term], [reload(skip)]),\t% allow for static binding\n\tlogtalk_load(lgtunit, [reload(skip)]))).\n","subject":"Use static binding when using the \"lgtunit\" library object.","message":"Use static binding when using the \"lgtunit\" library object.\n\ngit-svn-id: 4c7b768bc2e2a56aa1c56b1b5a9454ba68342430@4523 ac9c905b-388a-4ddf-9b6a-4063a022bc57\n","lang":"Logtalk","license":"artistic-2.0","repos":"LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2"}
{"commit":"8431ae4d04ebeca7d62c223d7af2f9cba0f5df37","old_file":"examples\/errors\/warnings.lgt","new_file":"examples\/errors\/warnings.lgt","old_contents":"\n:- object(misspell).\n\n\t% misspelt call to Prolog built-in predicate\n\toutput(A) :-\n\t\twritr(A).\n\n:- end_object.\n\n\n\n% singleton variables in opening object directive\n:- object(singletons(L)).\n\n\t% singleton variables in predicate clause\n\tpredicate(A) :-\n\t\twrite(C).\n\t\n:- end_object.\n\n\n\n:- object(plredef).\n\n\t% redefinition of a Prolog built-in predicate\n\twrite(_).\n\n:- end_object.\n\n\n\n:- object(lgtredef).\n\n\t% redefinition of Logtalk built-in predicate\n\tcurrent_object(_).\n\n:- end_object.\n\n\n\n% references to unknown entities in object opening directive\n\n:- object(unknownrefs,\n\timplements(protocol),\n\timports(category),\n\textends(object)).\n\n\t\n:- end_object.\n\n\n\n:- object(portability).\n\n\t:- public(predicate\/0).\n\n\t% clause with calls to non-ISO Prolog standard predicates\n\tpredicate :-\n\t\tcompare(Result, first, second),\n\t\tretractall(result(Result, _)),\n\t\tsort([], []),\n\t\tconsult(file).\n\n:- end_object.\n","new_contents":"\n:- object(misspell).\n\n\t% call to an undefined but declared predicate\n\t:- public(foo\/0).\n\n\toutput :-\n\t\tfoo.\n\n\t% call to an undefined local predicate\n\toutput(A) :-\n\t\tbar(A).\n\n\t% misspelt call to Prolog built-in predicate\n\toutput(A) :-\n\t\twritr(A).\n\n:- end_object.\n\n\n\n% singleton variables in opening object directive\n:- object(singletons(L)).\n\n\t% singleton variables in predicate clause\n\tpredicate(A) :-\n\t\twrite(C).\n\t\n:- end_object.\n\n\n\n:- object(plredef).\n\n\t% redefinition of a Prolog built-in predicate\n\twrite(_).\n\n:- end_object.\n\n\n\n:- object(lgtredef).\n\n\t% redefinition of Logtalk built-in predicate\n\tcurrent_object(_).\n\n:- end_object.\n\n\n\n% references to unknown entities in object opening directive\n\n:- object(unknownrefs,\n\timplements(protocol),\n\timports(category),\n\textends(object)).\n\n\t\n:- end_object.\n\n\n\n:- object(portability).\n\n\t:- public(predicate\/0).\n\n\t% clause with calls to non-ISO Prolog standard predicates\n\tpredicate :-\n\t\tcompare(Result, first, second),\n\t\tretractall(result(Result, _)),\n\t\tsort([], []),\n\t\tconsult(file).\n\n:- end_object.\n","subject":"Add a few more warning cases regarding misspelt predicate calls.","message":"Add a few more warning cases regarding misspelt predicate calls.\n\n\ngit-svn-id: 4c7b768bc2e2a56aa1c56b1b5a9454ba68342430@2988 ac9c905b-388a-4ddf-9b6a-4063a022bc57\n","lang":"Logtalk","license":"artistic-2.0","repos":"LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2,LogtalkDotOrg\/logtalk2"}
{"commit":"245df8666af91f13259d8886a92ef3aac770e0aa","old_file":"examples\/ncl\/backtracking_nodes\/tests.lgt","new_file":"examples\/ncl\/backtracking_nodes\/tests.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2022 Paulo Moura \n% SPDX-License-Identifier: Apache-2.0\n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- object(tests,\n\textends(lgtunit)).\n\n\t:- info([\n\t\tversion is 1:0:0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2022-08-19,\n\t\tcomment is 'Unit tests for the NCL \"backtracking_nodes\" example.'\n\t]).\n\n\ttest(backtracking_01, true(L == [3,2,1])) :-\n\t\t% events triggered by messages sent from \"user\"\n\t\t{backtracking(X,Y,Z)::(n(2), n(1), n(3)), bagof(E, backtracking(X,Y,Z)::n(E), L)}.\n\n:- end_object.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2022 Paulo Moura \n% SPDX-License-Identifier: Apache-2.0\n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- object(tests,\n\textends(lgtunit)).\n\n\t:- info([\n\t\tversion is 1:0:0,\n\t\tauthor is 'Paulo Moura',\n\t\tdate is 2022-08-19,\n\t\tcomment is 'Unit tests for the NCL \"backtracking_nodes\" example.'\n\t]).\n\n\ttest(backtracking_nodes_01, true(L == [3,2,1])) :-\n\t\t% events triggered by messages sent from \"user\"\n\t\t{backtracking(X,Y,Z)::(n(2), n(1), n(3)), bagof(E, backtracking(X,Y,Z)::n(E), L)}.\n\n:- end_object.\n","subject":"Fix NCL `backtracking_nodes` example test identifier","message":"Fix NCL `backtracking_nodes` example test identifier\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"68a113afed9f3b1ddebf37bf41e2bd3ddc19f157","old_file":"examples\/errors\/errors_loader.lgt","new_file":"examples\/errors\/errors_loader.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tcatch(logtalk_load(lgtmthdredef, [report(on)]), _, true),\n\tcatch(logtalk_load(invclause, [report(on)]), _, true),\n\tcatch(logtalk_load(unknowndir, [report(on)]), _, true),\n\tcatch(logtalk_load(noninstdir, [report(on)]), _, true),\n\tcatch(logtalk_load(invargdir, [report(on)]), _, true),\n\tcatch(logtalk_load(unmatchdir, [report(on)]), _, true),\n\tcatch(logtalk_load(catdynpred, [report(on)]), _, true),\n\tcatch(logtalk_load(ccredef, [report(on)]), _, true),\n\tcatch(logtalk_load(usesrepeated, [report(on)]), _, true),\n\tcatch(logtalk_load(usesconflict, [report(on)]), _, true)\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tignore(logtalk_load(lgtmthdredef, [report(on)])),\n\tignore(logtalk_load(invclause, [report(on)])),\n\tignore(logtalk_load(unknowndir, [report(on)])),\n\tignore(logtalk_load(noninstdir, [report(on)])),\n\tignore(logtalk_load(invargdir, [report(on)])),\n\tignore(logtalk_load(unmatchdir, [report(on)])),\n\tignore(logtalk_load(catdynpred, [report(on)])),\n\tignore(logtalk_load(ccredef, [report(on)])),\n\tignore(logtalk_load(usesrepeated, [report(on)])),\n\tignore(logtalk_load(usesconflict, [report(on)]))\n)).\n","subject":"Update the loader file for the `errors` example as the compiling and loading predicates now fail in case of compilation error instead of throwing an exception","message":"Update the loader file for the `errors` example as the compiling and loading predicates now fail in case of compilation error instead of throwing an exception\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"899f758cd4ed5c709365358e2de2fef459a5a8d1","old_file":"tools\/lgtunit\/tester.lgt","new_file":"tools\/lgtunit\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2020 Paulo Moura \n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tset_logtalk_flag(optimize, on),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([\n\t\ttests_parametric,\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t], [\n\t\thook(lgtunit)\n\t]),\n\tlgtunit::run_test_sets([\n\t\ttests_parametric(1),\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t])\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n%\n% This file is part of Logtalk \n% Copyright 1998-2020 Paulo Moura \n%\n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n%\n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n%\n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tset_logtalk_flag(optimize, on),\n\tlogtalk_load(loader),\n\tlogtalk_load([\n\t\ttests_parametric,\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t], [\n\t\thook(lgtunit)\n\t]),\n\tlgtunit::run_test_sets([\n\t\ttests_parametric(1),\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t])\n)).\n","subject":"Fix tests driver file for the `lgtunit` tool to use the local files","message":"Fix tests driver file for the `lgtunit` tool to use the local files\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"c35662ef66071597a916f9c1328aaaee4d320c9d","old_file":"tools\/lgtunit\/tester.lgt","new_file":"tools\/lgtunit\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2017 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([tests_parametric, tests_dialects, tests_utils], [hook(lgtunit)]),\n\ttests_parametric(1)::run,\n\ttests_dialects::run,\n\ttests_utils::run\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2017 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([tests_parametric, tests_dialects, tests_utils], [hook(lgtunit)]),\n\tlgtunit::run_test_sets([\n\t\ttests_parametric(1),\n\t\ttests_dialects,\n\t\ttests_utils\n\t])\n)).\n","subject":"Use new `lgtunit::run_test_sets\/1` predicate to test `lgtunit` itself","message":"Use new `lgtunit::run_test_sets\/1` predicate to test `lgtunit` itself\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"54f5158d17ff132491e394141cb8d827e996b85c","old_file":"examples\/threads\/birthdays\/tests.lgt","new_file":"examples\/threads\/birthdays\/tests.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- object(tests,\n\textends(lgtunit)).\n\n\t:- info([\n\t\tversion is 1.0,\n\t\tauthor is 'Parker Jones and Paulo Moura',\n\t\tdate is 2010\/03\/16,\n\t\tcomment is 'Unit tests for the \"threads\/birthdays\" example.'\n\t]).\n\n\t:- set_logtalk_flag(unknown_entities, silent).\n\n\ttest(birthdays_1) :-\n\t\tagent::(new(paul, 40, male), new(nathalie, 32, female)).\n\n\ttest(birthdays_2) :-\n\t\tpaul::new_friend(nathalie).\n\n\ttest(birthdays_3) :-\n\t\tset_logtalk_flag(events, allow),\n\t\t{nathalie::birthday}.\n\n\ttest(birthdays_4) :-\n\t\tnathalie::age(Age),\n\t\tAge == 33.\n\n\ttest(birthdays_5) :-\n\t\t{nathalie::birthday}.\n\n\tcleanup :-\n\t\tset_logtalk_flag(events, deny).\n\n:- end_object.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- object(tests,\n\textends(lgtunit)).\n\n\t:- info([\n\t\tversion is 1.1,\n\t\tauthor is 'Parker Jones and Paulo Moura',\n\t\tdate is 2013\/05\/27,\n\t\tcomment is 'Unit tests for the \"threads\/birthdays\" example.'\n\t]).\n\n\t:- set_logtalk_flag(unknown_entities, silent).\n\n\tsetup :-\n\t\tset_logtalk_flag(events, allow).\t\t\n\n\ttest(birthdays_1) :-\n\t\tagent::new(paul, 40, male),\n\t\tagent::new(nathalie, 32, female).\n\n\ttest(birthdays_2) :-\n\t\tpaul::new_friend(nathalie).\n\n\ttest(birthdays_3) :-\n\t\t{nathalie::birthday}.\n\n\ttest(birthdays_4) :-\n\t\tnathalie::age(Age),\n\t\tAge == 33.\n\n\tcleanup :-\n\t\tset_logtalk_flag(events, deny).\n\n:- end_object.\n","subject":"Delete a redundant unit test for the `threads\/birthdays` example","message":"Delete a redundant unit test for the `threads\/birthdays` example\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"249c12c94a6fe7d5fb6f6a7ee8bee353d707fe67","old_file":"examples\/constraints\/yap\/loader.lgt","new_file":"examples\/constraints\/yap\/loader.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- ensure_loaded(library(clpfd)).\n\n%:- initialization((\n%\tlogtalk_load(library(basic_types_loader)),\n%\tlogtalk_load(library(metapredicates_loader)),\n%\tlogtalk_load([hexagon, queens, puzzle, sudoku, oneground])\n%)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- ensure_loaded(library(clpfd)).\n\n:- initialization((\n\tlogtalk_load(library(basic_types_loader)),\n\tlogtalk_load(library(metapredicates_loader)),\n\tlogtalk_load([hexagon, queens, puzzle, sudoku, oneground])\n)).\n","subject":"Revert accidentally committed test changes for the `constraints\/yap`example","message":"Revert accidentally committed test changes for the `constraints\/yap`example\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"22baa9bd6b3bfbabbe340768b5d3b7af5ce790c5","old_file":"tools\/lgtunit\/tester.lgt","new_file":"tools\/lgtunit\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2018 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([\n\t\ttests_parametric,\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t], [\n\t\thook(lgtunit), optimize(on)\n\t]),\n\tlgtunit::run_test_sets([\n\t\ttests_parametric(1),\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t])\n)).\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2018 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization((\n\tset_logtalk_flag(report, warnings),\n\tset_logtalk_flag(optimize, on),\n\tlogtalk_load(lgtunit(loader)),\n\tlogtalk_load([\n\t\ttests_parametric,\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t], [\n\t\thook(lgtunit)\n\t]),\n\tlgtunit::run_test_sets([\n\t\ttests_parametric(1),\n\t\ttests_dialects,\n\t\ttests_utils,\n\t\ttests_io_predicates\n\t])\n)).\n","subject":"Fix compiling `lgtunit` tests in optimize mode","message":"Fix compiling `lgtunit` tests in optimize mode\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"e1a1e25ee015f3e69a6905358afbea62b4c80a52","old_file":"examples\/errors\/usesconflict.lgt","new_file":"examples\/errors\/usesconflict.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2015 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n% conflict between uses\/2 directive and a predicate definition\n\n:-object(usesconflict).\n\n\t:- uses(list, [member\/2]).\n\n\tmember(H, [H| _]).\t\t% an object (or category) cannot define a\n\tmember(H, [_| T]) :-\t% predicate referenced on a uses\/2 directive\n\t\tmember(H, T).\n\n:- end_object.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% Copyright 1998-2015 Paulo Moura \n% \n% Licensed under the Apache License, Version 2.0 (the \"License\");\n% you may not use this file except in compliance with the License.\n% You may obtain a copy of the License at\n% \n% http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n% \n% Unless required by applicable law or agreed to in writing, software\n% distributed under the License is distributed on an \"AS IS\" BASIS,\n% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n% See the License for the specific language governing permissions and\n% limitations under the License.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n% conflict between uses\/2 directive and a predicate definition\n\n:- object(usesconflict).\n\n\t:- uses(list, [member\/2]).\n\n\t% an object (or category) cannot define a\n\t% predicate referenced on a uses\/2 directive\n\tmember(H, [H| _]).\n\tmember(H, [_| T]) :-\n\t\tmember(H, T).\n\n:- end_object.\n","subject":"Fix some code layout issues in example source file","message":"Fix some code layout issues in example source file\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"24b6f717a852afdc190b08ede8744dd0736aa2e8","old_file":"examples\/jpl\/tester.lgt","new_file":"examples\/jpl\/tester.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- if((current_logtalk_flag(prolog_dialect, Dialect), (Dialect == swi; Dialect == yap))).\n\n\t:- initialization((\n\t\tset_logtalk_flag(report, warnings),\n\t\tlogtalk_load(lgtunit(loader)),\n\t\tlogtalk_load(jpl, [source_data(on), debug(on)]),\n\t\tlogtalk_load(tests, [hook(lgtunit)]),\n\t\ttests::run\n\t)).\n\n:- else.\n\n\t:- initialization((\n\t\twrite('(not applicable)'), nl\n\t)).\n\n:- endif.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- if((current_logtalk_flag(prolog_dialect, Dialect), (Dialect == swi; Dialect == yap))).\n\n\t:- use_module(library(jpl), []).\n\n\t:- initialization((\n\t\tset_logtalk_flag(report, warnings),\n\t\tlogtalk_load(lgtunit(loader)),\n\t\tlogtalk_load(jpl, [source_data(on), debug(on)]),\n\t\tlogtalk_load(tests, [hook(lgtunit)]),\n\t\ttests::run\n\t)).\n\n:- else.\n\n\t:- initialization((\n\t\twrite('(not applicable)'), nl\n\t)).\n\n:- endif.\n","subject":"Fix unit tests for the `jpl` example when using YAP as the back-end Prolog compiler","message":"Fix unit tests for the `jpl` example when using YAP as the back-end Prolog compiler\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}
{"commit":"e8cb027a07ac2fc1059acd9e6d547b69e2183937","old_file":"examples\/securemp\/rule_b_3_variant.lgt","new_file":"examples\/securemp\/rule_b_3_variant.lgt","old_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization(catch(client_b_3_variant::test(_), Error, w(riteq(Error), nl))).\n\n\n:- object(library_b_3_variant).\n\n\t:- public(m\/2).\n\t:- meta_predicate(m(2, *)).\n\tm(Closure, Arg) :-\n\t\tcall(Closure, Arg, _).\n\n:- end_object.\n\n\n:- object(client_b_3_variant).\n\n\t:- public(test\/1).\n\ttest(X) :-\n\t\tlibrary_b_3_variant::m(a, X).\n\n\ta(1). a(2).\n\n\ta(3, one). a(4, two).\n\n:- end_object.\n","new_contents":"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n% \n% This file is part of Logtalk \n% \n% Logtalk is free software. You can redistribute it and\/or modify it under\n% the terms of the FSF GNU General Public License 3 (plus some additional\n% terms per section 7). Consult the `LICENSE.txt` file for details.\n%\n%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n\n\n:- initialization(catch(client_b_3_variant::test(_), Error, (writeq(Error), nl))).\n\n\n:- object(library_b_3_variant).\n\n\t:- public(m\/2).\n\t:- meta_predicate(m(2, *)).\n\tm(Closure, Arg) :-\n\t\tcall(Closure, Arg, _).\n\n:- end_object.\n\n\n:- object(client_b_3_variant).\n\n\t:- public(test\/1).\n\ttest(X) :-\n\t\tlibrary_b_3_variant::m(a, X).\n\n\ta(1). a(2).\n\n\ta(3, one). a(4, two).\n\n:- end_object.\n","subject":"Fix syntax error in the `securemp` example","message":"Fix syntax error in the `securemp` example\n","lang":"Logtalk","license":"apache-2.0","repos":"LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3,LogtalkDotOrg\/logtalk3"}