<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/km-qa</id>
  <title type="text">km-qa Google Group</title>
  <subtitle type="text">
  Discuss and ask for help with KM knowledge base. See http://www.cs.utexas.edu/users/mfkb/RKF/km.html.
  </subtitle>
  <link href="/group/km-qa/feed/atom_v1_0_msgs.xml" rel="self" title="km-qa feed"/>
  <updated>2008-08-07T23:48:56Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <email>dmi...@users.sourceforge.net</email>
  </author>
  <updated>2008-08-07T23:48:56Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/503e534845e5043f?show_docid=503e534845e5043f</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/503e534845e5043f?show_docid=503e534845e5043f"/>
  <title type="text">Does anyone know if there is a Java JVM version of lisp that can run KM?</title>
  <summary type="html" xml:space="preserve">
  [16:11] &amp;lt;dmiles_afk&amp;gt; in ABCL has anyone experienced problems that multiple &lt;br&gt; values get returned due to they are buffered from inner calls? &lt;br&gt; [16:13] &amp;lt;dmiles_afk&amp;gt; i am trying to figure out why i am having issues with &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.cs.utexas.edu/users/mfkb/km/km-2-2-10.lisp&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; Does anyone know if there is a Java JVM version of lisp that can run KM?
  </summary>
  </entry>
  <entry>
  <author>
  <name>michael bobak</name>
  <email>mike.bo...@gmail.com</email>
  </author>
  <updated>2008-07-22T06:56:41Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/d0e03e53ba73e186/c8fce2154c733a90?show_docid=c8fce2154c733a90</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/d0e03e53ba73e186/c8fce2154c733a90?show_docid=c8fce2154c733a90"/>
  <title type="text">interaction w/protege?</title>
  <summary type="html" xml:space="preserve">
  Has anyone tried having KM interact with &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://protege.stanford.edu/&quot;&gt;[link]&lt;/a&gt; ?
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-07-10T16:56:39Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/54f04ad7dc4609a7?show_docid=54f04ad7dc4609a7</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/54f04ad7dc4609a7?show_docid=54f04ad7dc4609a7"/>
  <title type="text">Re: pairp function</title>
  <summary type="html" xml:space="preserve">
  Oops you&#39;re right! My two versions have different functionality for &lt;br&gt; dotted pairs (should return NIL, not error). Thanks for the updated &lt;br&gt; version of your pairp, that works as intended now, it will be in the &lt;br&gt; next KM release in the next day or so. &lt;br&gt; &lt;p&gt;Best wishes! Pete
  </summary>
  </entry>
  <entry>
  <author>
  <name>Francis Leboutte</name>
  <email>f.lebou...@algo.be</email>
  </author>
  <updated>2008-07-09T06:46:45Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/1a995d3f448169ff?show_docid=1a995d3f448169ff</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/1a995d3f448169ff?show_docid=1a995d3f448169ff"/>
  <title type="text">Re: pairp function</title>
  <summary type="html" xml:space="preserve">
  No, the original function (which is also the one currently used in SBCL) generates an error: &lt;br&gt; KM 4 &amp;gt; (defun pairp (list)(and (listp list) (eq (length list) 2))) &lt;br&gt; pairp &lt;br&gt; KM 5 &amp;gt; (pairp &#39;(1 . 2)) &lt;br&gt; Error: In a call to length of (1 . 2), tail 2 is not a LIST. &lt;br&gt; This should be what you want: &lt;br&gt; ;;; return T if thing is 2 elements proper list
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-07-08T16:05:06Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/d05e9d1a8e8774a4?show_docid=d05e9d1a8e8774a4</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/d05e9d1a8e8774a4?show_docid=d05e9d1a8e8774a4"/>
  <title type="text">Re: pairp function</title>
  <summary type="html" xml:space="preserve">
  Actually, Francis, the behavior isn&#39;t quite correct - unlike the &lt;br&gt; original, it (undesirably) generates an error (rather than NIL) when &lt;br&gt; the argument is a dotted pair: &lt;br&gt; &lt;p&gt;CL-USER(4): (pairp &#39;(a . b)) &lt;br&gt; Error: Attempt to take the cdr of B which is not listp. &lt;br&gt; [condition type: TYPE-ERROR] &lt;br&gt; &lt;p&gt;So I&#39;ll leave the original in place for now. Pete
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-07-08T16:01:56Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/8d31a27b63210921?show_docid=8d31a27b63210921</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/8d31a27b63210921?show_docid=8d31a27b63210921"/>
  <title type="text">Re: pairp function</title>
  <summary type="html" xml:space="preserve">
  Thanks, Francis, it will be in the next KM release. Best wishes! Pete
  </summary>
  </entry>
  <entry>
  <author>
  <name>Francis Leboutte</name>
  <email>f.lebou...@algo.be</email>
  </author>
  <updated>2008-06-26T15:41:11Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/876e3e50e0316660?show_docid=876e3e50e0316660</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/b8a70f0b144ed928/876e3e50e0316660?show_docid=876e3e50e0316660"/>
  <title type="text">pairp function</title>
  <summary type="html" xml:space="preserve">
  Hello, &lt;br&gt; Here is a version of the optimized pairp function that should work for any Lisp (I also get a bug with LispWorks 5.1): &lt;br&gt; - the declaration is now correct. &lt;br&gt; - the function works exactly like the original one. &lt;br&gt; ;;; thing: should be anything but a dotted list &lt;br&gt; (defun pairp (thing) &lt;br&gt; (declare (optimize (speed 3) (safety 0)))
  </summary>
  </entry>
  <entry>
  <author>
  <name>shak</name>
  <email>cirrus.shak...@gmail.com</email>
  </author>
  <updated>2008-05-01T17:38:04Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/f971cc976e8d8e52/ed144fb600df2378?show_docid=ed144fb600df2378</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/f971cc976e8d8e52/ed144fb600df2378?show_docid=ed144fb600df2378"/>
  <title type="text">internship opportunity</title>
  <summary type="html" xml:space="preserve">
  Hello All, &lt;br&gt; &lt;p&gt;I’m looking for a graduate student, preferably at the PhD level, who &lt;br&gt; would be interested in conducting research/development on &amp;quot;situation &lt;br&gt; sensemaking&amp;quot; for a period of 6 month at a well know software company &lt;br&gt; in Palo Alto, California. The starting date can range from mid May to &lt;br&gt; mid June this Summer. Please respond privately to cys...@gmail.com
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-05-01T02:44:12Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/cf9a01e4fb3cd974/fb892b5ea59015bc?show_docid=fb892b5ea59015bc</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/cf9a01e4fb3cd974/fb892b5ea59015bc?show_docid=fb892b5ea59015bc"/>
  <title type="text">KM 2.2.0 - rationalizing behavior on errors</title>
  <summary type="html" xml:space="preserve">
  I&#39;ve just uploaded KM 2.2.0. This rationalizes the parameters &lt;br&gt; controlling KM&#39;s behavior on error into a single variable, as &lt;br&gt; described below from the RELEASE-NOTES.txt: &lt;br&gt; &lt;p&gt;2.2.0 - **NOTE** &lt;br&gt; The parameters controlling behavior on errors have been &lt;br&gt; rationalized &lt;br&gt; to a single parameter. *abort-on-error-report*, *error-report-
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-02-26T04:58:31Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/f78bb19b34a58361?show_docid=f78bb19b34a58361</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/f78bb19b34a58361?show_docid=f78bb19b34a58361"/>
  <title type="text">Re: KM patch</title>
  <summary type="html" xml:space="preserve">
  Reini - &lt;br&gt; &lt;p&gt;Thanks for the info. I&#39;ve reinstated the old (space-inefficient) &lt;br&gt; version of &lt;br&gt; xmlify in KM 2.1.19 as you suggested, so macrolet is no longer needed &lt;br&gt; and KM &lt;br&gt; should again be compatible with clisp. &lt;br&gt; &lt;p&gt;Thanks! Pete
  </summary>
  </entry>
  <entry>
  <author>
  <name>rurban</name>
  <email>reini.ur...@gmail.com</email>
  </author>
  <updated>2008-02-06T10:17:23Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/129d4969b67602ba?show_docid=129d4969b67602ba</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/129d4969b67602ba?show_docid=129d4969b67602ba"/>
  <title type="text">Re: KM patch</title>
  <summary type="html" xml:space="preserve">
  Even Francis Leboutte&#39;s improved xmlify macrolet doesn&#39;t work for &lt;br&gt; clisp, it still creates &lt;br&gt; a cyclic structure. &lt;br&gt; I fixed it by enabling the old space-intensive version for clisp and &lt;br&gt; forget about Carl Shapiro&#39;s version. &lt;br&gt; &lt;p&gt;$ ln -s km-2-1-18-packaged.lisp km.lisp &lt;br&gt; $ clisp -c km.lisp &lt;br&gt; WARNING in IMMEDIATE-CLASSES in lines 6663..6734 :
  </summary>
  </entry>
  <entry>
  <author>
  <name>Sam Steingold</name>
  <email>s...@gnu.org</email>
  </author>
  <updated>2008-02-04T14:43:55Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/732a55dae82adac4?show_docid=732a55dae82adac4</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/c53ae2e1797dd6d2/732a55dae82adac4?show_docid=732a55dae82adac4"/>
  <title type="text">Re: KM patch</title>
  <summary type="html" xml:space="preserve">
  -----BEGIN PGP SIGNED MESSAGE----- &lt;br&gt; Hash: SHA1 &lt;br&gt; see also &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://groups.google.com/group/km-qa/browse_thread/thread/af3f5cd92e3854cc#bd801eae6f77be13&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; -----BEGIN PGP SIGNATURE----- &lt;br&gt; Version: GnuPG v1.4.6 (GNU/Linux) &lt;br&gt; Comment: Using GnuPG with Mozilla - &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://enigmail.mozdev.org&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; iD8DBQFHpySrPp1Qsf2qnMcRAjABAJ 9xFXjrrpFqFI95GrO7/LkrKF62gACf VaEg
  </summary>
  </entry>
  <entry>
  <author>
  <name>Pete</name>
  <email>peter.e.cl...@boeing.com</email>
  </author>
  <updated>2008-01-15T20:44:15Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/dd88fd72581c379f/fc5d54d9699b8e84?show_docid=fc5d54d9699b8e84</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/dd88fd72581c379f/fc5d54d9699b8e84?show_docid=fc5d54d9699b8e84"/>
  <title type="text">Re: spurious blanks in km-2-1-11.lisp</title>
  <summary type="html" xml:space="preserve">
  Oops, you&#39;re right! Fixed in KM 2.1.12 on the Web site (no other &lt;br&gt; changes). Thanks for pointing this out! Pete &lt;br&gt; &lt;p&gt;On Jan 15, 8:58 am, Raphael Van Dyck &amp;lt;raphael.vand...@labage.be&amp;gt; &lt;br&gt; wrote:
  </summary>
  </entry>
  <entry>
  <author>
  <name>Raphael Van Dyck</name>
  <email>raphael.vand...@labage.be</email>
  </author>
  <updated>2008-01-15T16:58:26Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/dd88fd72581c379f/b981cfac2292f7e0?show_docid=b981cfac2292f7e0</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/dd88fd72581c379f/b981cfac2292f7e0?show_docid=b981cfac2292f7e0"/>
  <title type="text">spurious blanks in km-2-1-11.lisp</title>
  <summary type="html" xml:space="preserve">
  Hello. &lt;br&gt; I just wanted to tell that there are some spurious blanks in the files km-2-1-11.lisp and &lt;br&gt; km-2-1-11-packaged.lisp. &lt;br&gt; Those blanks are located at the top of the included sadl.lisp file: &lt;br&gt; ;;; FILE: sadl.lisp &lt;br&gt; ^^^^^^^^^^^^^^^ &lt;br&gt; spurious blanks &lt;br&gt; Because of those blanks the extraction of the file sadl.lisp fails:
  </summary>
  </entry>
  <entry>
  <author>
  <name>twinwascrystal@gmail.com</name>
  <email>twinwascrys...@gmail.com</email>
  </author>
  <updated>2007-06-11T11:07:44Z</updated>
  <id>http://groups.google.com/group/km-qa/browse_thread/thread/ac176d0a04fb3464/28df555038517900?show_docid=28df555038517900</id>
  <link href="http://groups.google.com/group/km-qa/browse_thread/thread/ac176d0a04fb3464/28df555038517900?show_docid=28df555038517900"/>
  <title type="text">Must Read</title>
  <summary type="html" xml:space="preserve">
  New article has been added on the Measurement and Analysis section as &lt;br&gt; defined by the CMMI standards. Worth Reading!!! &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://testingmechanism.blogspot.com/&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
</feed>
