<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-32974</id>
	<title>Nabble - ActiveMath Users</title>
	<updated>2009-12-08T09:25:21Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/ActiveMath-Users-f32974.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ActiveMath-Users-f32974.html" />
	<subtitle type="html">This mailing list is the general mailing of users of ActiveMath, be them authors, teachers, enjoyers, questionners, publishers or...</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26697428</id>
	<title>Re: Metadata inheritance by reference: frequently used? For what?</title>
	<published>2009-12-08T09:25:21Z</published>
	<updated>2009-12-08T09:25:21Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Hi Paul,
&lt;br&gt;&lt;br&gt;2009-12-04 00:53 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26697428&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; No, the inherit element is only allowed as a child of the metadata
&lt;br&gt;&amp;gt; element to indicate that this metadata inherits from this other item's
&lt;br&gt;&amp;gt; metadata.
&lt;br&gt;&amp;gt; ...
&lt;br&gt;&amp;gt; As a rule of the thumb:
&lt;br&gt;&amp;gt; - the inherit element actually invokes inheritance
&lt;br&gt;&amp;gt; - the inherit attribute defines the inheritance policy
&lt;br&gt;&amp;gt; maybe we could be more explicit with the names.
&lt;br&gt;&lt;br&gt;Good, that makes a lot of sense to me and keeps everything safe. &amp;nbsp;Also I agree
&lt;br&gt;that the preview is a good feature. &amp;nbsp;I can't imagine a better name than
&lt;br&gt;inherit/@from, but maybe you could rename the attribute into
&lt;br&gt;field/@inherit-policy or @inheritance-policy.
&lt;br&gt;&lt;br&gt;The question what RDF semantics such imports should have, or whether they
&lt;br&gt;should be resolved before even trying to interpret metadata as RDF, is still a
&lt;br&gt;separate one.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; Right, it's not yet in those DTDs. &amp;nbsp;Instead there is metadata/ @inherits,
&lt;br&gt;&amp;gt; &amp;gt; something that we also have in &amp;quot;our&amp;quot; OMDoc 1.2 spec, but it is not really
&lt;br&gt;&amp;gt; &amp;gt; documented there, that's why I only discovered it recently.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Same for me. I never considered or used the inherit attribute of
&lt;br&gt;&amp;gt; metadata, you taught me about its existance.
&lt;br&gt;&lt;br&gt;So maybe you would also like to remove it from the DTD at that occasion ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; That could be a pragmatic approach to giving inheritance an RDF semantics:
&lt;br&gt;&amp;gt; &amp;gt; not explicitly representing the fact that the metadatum is inherited in
&lt;br&gt;&amp;gt; &amp;gt; RDF, but first applying inheritance and then extracting the metadata to
&lt;br&gt;&amp;gt; &amp;gt; RDF, where they would appear as if they had not been inherited.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That'd be certainly the first way we'd implement it. &amp;nbsp;Especially since we do
&lt;br&gt;&amp;gt; not plan an RDF realization where a reasoner has everything in memory, at
&lt;br&gt;&amp;gt; least I don't since it's dangerous for speed.
&lt;br&gt;&lt;br&gt;I made a similar experience before, when implementing an OMDoc→OWL
&lt;br&gt;translation. &amp;nbsp;I hard-coded the translation, but then additionally formalized
&lt;br&gt;parts of it in OMDoc. &amp;nbsp;The implementation does not currently make use of that
&lt;br&gt;formalization, but still it was helpful to do the formalization, as it gave me
&lt;br&gt;a better understanding of the translation. &amp;nbsp;And a future implementation might
&lt;br&gt;actually use it.
&lt;br&gt;&lt;br&gt;&amp;gt; We're back on that: good validation.
&lt;br&gt;&amp;gt; Are you not rather aiming at OWL, at least?
&lt;br&gt;&lt;br&gt;I wonder how OWL would be useful for validation. &amp;nbsp;So what is it that we would
&lt;br&gt;like to validate? &amp;nbsp;Suppose we wanted to make certain metadata mandatory and
&lt;br&gt;wanted to check whether they have been given for all elements. &amp;nbsp;We could say
&lt;br&gt;something like
&lt;br&gt;&lt;br&gt;(\exists nameOfMetadataField) \sqsubseteq WellFormedElement
&lt;br&gt;&lt;br&gt;and then check whether all elements are instances of WellFormedElement. &amp;nbsp;But
&lt;br&gt;that could also be checked with a DTD.
&lt;br&gt;&lt;br&gt;Or suppose we wanted to check whether no inappropriate metadata fields are
&lt;br&gt;given. &amp;nbsp;For example, in the 2004 deliverable &amp;quot;LeActiveMath Structure and
&lt;br&gt;Metadata Model&amp;quot; (still up to date?) I see that the &amp;quot;interactivitytype&amp;quot; field
&lt;br&gt;only applies to exercises. &amp;nbsp;So suppose we had in our ontology
&lt;br&gt;&lt;br&gt;lom:interactivitytype rdfs:domain am:Exercise . # (1)
&lt;br&gt;am:Exercise owl:disjointWith am:Proof . &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # (2)
&lt;br&gt;&lt;br&gt;and then in a document an element
&lt;br&gt;&lt;br&gt;&amp;lt;proof xml:id=&amp;quot;p&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;interactivitytype&amp;gt;T&amp;lt;/interactivitytype&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;lt;/proof&amp;gt;
&lt;br&gt;&lt;br&gt;This might give us the following RDF:
&lt;br&gt;&lt;br&gt;&amp;lt;#p&amp;gt; a am:Proof ; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# (3)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;lom:interactivitytype &amp;quot;T&amp;quot; . # (4)
&lt;br&gt;&lt;br&gt;Due to the open world reasoning of RDFS and OWL, we'd obtain from (2) that
&lt;br&gt;&lt;br&gt;&amp;lt;#p&amp;gt; a am:Exercise .
&lt;br&gt;&lt;br&gt;However, exercise and proof are disjoint =&amp;gt; the reasoner would report a
&lt;br&gt;conflict. &amp;nbsp;But what RDF triple out of (1) to (4) is causing the conflict?
&lt;br&gt;From a metadata authoring point of view, it is clearly (4), but a reasoner
&lt;br&gt;wouldn't be able to tell. &amp;nbsp;So therefore I think that OWL is not the best
&lt;br&gt;choice for _this_ kind of validation.
&lt;br&gt;&lt;br&gt;What else would you like to validate?
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; My plan for OMDoc 1.3 is having RDFa-compatible syntax for full
&lt;br&gt;&amp;gt; &amp;gt; expressivity and extensibility, e.g. &amp;lt;meta
&lt;br&gt;&amp;gt; &amp;gt; property=&amp;quot;dc:date&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/meta&amp;gt;, or &amp;lt;meta
&lt;br&gt;&amp;gt; &amp;gt; property=&amp;quot;anyOtherOntology:field&amp;quot;&amp;gt;value&amp;lt;/meta&amp;gt;, but the old syntax would
&lt;br&gt;&amp;gt; &amp;gt; still be allowed, and some translation to the RDFa syntax would be
&lt;br&gt;&amp;gt; &amp;gt; specified.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Extensibility and validatability can be ennemies or?
&lt;br&gt;&lt;br&gt;Well, that case would no longer be validatable with a DTD, but with the OWL
&lt;br&gt;method mentioned above it would work. &amp;nbsp;That is an advantage of working on the
&lt;br&gt;RDF level, that you can abstract from the syntax.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; The goal for the RDFa syntax is that any RDFa parser can process it, so
&lt;br&gt;&amp;gt; &amp;gt; there should not be any OMDoc-specific assumptions in it. &amp;nbsp;The backwards-
&lt;br&gt;&amp;gt; &amp;gt; compatible syntax, on the other hand, can be as OMDoc-specific or as
&lt;br&gt;&amp;gt; &amp;gt; ActiveMath- specific as we like it to be. &amp;nbsp;So I think inheritance would
&lt;br&gt;&amp;gt; &amp;gt; best be handled at that level. &amp;nbsp;The way you do it, by default attribute
&lt;br&gt;&amp;gt; &amp;gt; values, wouldn't work with the RDFa-like syntax anyway, as AFAIK in a DTD
&lt;br&gt;&amp;gt; &amp;gt; you can only have default values depending on a certain element (as, e.g.,
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;Date/&amp;gt;), but not depending on an attribute value (as, e.g.,
&lt;br&gt;&amp;gt; &amp;gt; property=&amp;quot;dc:date&amp;quot;).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But that is the question: is there an RDF infrastructure to replace
&lt;br&gt;&amp;gt; that?
&lt;/div&gt;&lt;/div&gt;Good question. &amp;nbsp;However, as we discussed before, both of us are still
&lt;br&gt;considering to hard-code part of the inheritance manually. &amp;nbsp;With your DTD
&lt;br&gt;approach, you can only automate part of it, i.e. you can model the default
&lt;br&gt;inheritance policies. &amp;nbsp;Default inheritance policies could also be modeled in
&lt;br&gt;an ontology, e.g. by saying
&lt;br&gt;&lt;br&gt;dc:date am:inheritancePolicy am:InheritIfMissing .
&lt;br&gt;&lt;br&gt;The other aspect is that by the &amp;lt;inherit/&amp;gt; element you can locally override
&lt;br&gt;this policy. &amp;nbsp;That could work in RDFa as follows:
&lt;br&gt;&lt;br&gt;&amp;lt;whatever xml:id=&amp;quot;w&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;meta property=&amp;quot;dc:date&amp;quot;&amp;gt; &amp;lt;!-- no string value here, but an 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;inheritance pointer&amp;quot; --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;resource typeof=&amp;quot;am:InheritedField&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;link rel=&amp;quot;am:inheritsFrom&amp;quot; resource=&amp;quot;#otherElement&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;link rel=&amp;quot;am:inheritancePolicy&amp;quot; resource=&amp;quot;[am:InheritIfMissing]&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/resource&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/meta&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;lt;/whatever&amp;gt;
&lt;br&gt;&lt;br&gt;... leading to the RDF
&lt;br&gt;&lt;br&gt;&amp;lt;#w&amp;gt; dc:date [ a am:InheritedField ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;am:inheritsFrom &amp;lt;#otherElement&amp;gt; ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;am:inheritancePolicy am:InheritIfMissing . ] .
&lt;br&gt;&lt;br&gt;In that step of processing the reasoner must not be too aggressive, i.e. not
&lt;br&gt;complain about the value of dc:date not being a string (or xsd:date), but a
&lt;br&gt;resource -- but that is feasible. &amp;nbsp;Suppose we have
&lt;br&gt;&lt;br&gt;&amp;lt;#otherElement&amp;gt; dc:date D .
&lt;br&gt;&lt;br&gt;then the application of imports should yield
&lt;br&gt;&lt;br&gt;&amp;lt;#w&amp;gt; dc:date D .
&lt;br&gt;&lt;br&gt;This step can be hard-coded, or implemented as a rule. &amp;nbsp;SWRL's rules are
&lt;br&gt;Datalog with unary and binary predicates. &amp;nbsp;So it could be done like this:
&lt;br&gt;&lt;br&gt;dc:date(Element, D) :- dc:date(Element, I),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;am:InheritedField(I),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;am:inheritsFrom(I, OtherElement),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;am:inheritancePolicy(I, am:InheritIfMissing),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;dc:date(OtherElement, D).
&lt;br&gt;&lt;br&gt;This would leave us with one or more triples where the dc:date is an
&lt;br&gt;InheritedField, but we could hard-code an additional step that discards them.
&lt;br&gt;&lt;br&gt;After the application of imports, we can set the reasoner to a more aggressive
&lt;br&gt;mode, e.g. assuming that now the range of dc:date must be xsd:date.
&lt;br&gt;&lt;br&gt;&amp;gt; So RDF is export only?
&lt;br&gt;&lt;br&gt;So far, yes. &amp;nbsp;Of course it is being used for certain things. &amp;nbsp;E.g. the
&lt;br&gt;navigation links in SWiM are created from the RDF exported from OMDoc, and now
&lt;br&gt;we're also putting the exported RDF back as RDFa into the rendered XHTML+PMML
&lt;br&gt;documents, so that e.g. web crawlers or JavaScripts can use it (will be online
&lt;br&gt;before Christmas).
&lt;br&gt;&lt;br&gt;&amp;gt; At least validation!
&lt;br&gt;&lt;br&gt;I agree, it would be good to have that, and therefore one should pay attention
&lt;br&gt;to getting the RDF representation of metadata and inheritance right, but from
&lt;br&gt;our side it won't be done before I got my Ph.D. -- There will only be some
&lt;br&gt;general considerations on validation of metadata in my thesis :-/
&lt;br&gt;&lt;br&gt;&amp;gt; And indeed in all metadata specs of ActiveMath, the attributes of the
&lt;br&gt;&amp;gt; item are part of metadata.
&lt;br&gt;&lt;br&gt;Ah, you mean things like proof/@for? &amp;nbsp;Sure. &amp;nbsp;I don't call it &amp;quot;metadata&amp;quot;
&lt;br&gt;because I believe it's rather primary data in our documents, as opposed to
&lt;br&gt;&amp;quot;metadata = data about data&amp;quot; -- but, as you see in the examples above, I also
&lt;br&gt;extract this information to RDF, so in the end it is a similar approach as in
&lt;br&gt;ActiveMath.
&lt;br&gt;&lt;br&gt;&amp;gt; Amazing, I never thought temporal was needed.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Can you not say, instead, that it's the property Creator of the &amp;quot;first
&lt;br&gt;&amp;gt; enclosing&amp;quot; ? &amp;nbsp;(or is that already temporal).
&lt;br&gt;&lt;br&gt;Hmm, maybe internally maintain two copies of the metadata vocabulary? &amp;nbsp;One
&lt;br&gt;before applying inheritance, one after applying inheritance? &amp;nbsp;Then it would
&lt;br&gt;work as follows:
&lt;br&gt;&lt;br&gt;# the simple case (not sure how negation really works in SWRL, I'll write
&lt;br&gt;# Prolog here)
&lt;br&gt;dc:dateAfterInheritance(Element, D) :-
&lt;br&gt;&amp;nbsp; dc:date(Element, D),
&lt;br&gt;&amp;nbsp; \+ am:InheritedField(D).
&lt;br&gt;&lt;br&gt;dc:dateAfterInheritance(Element, D) :-
&lt;br&gt;&amp;nbsp; dc:date(Element, I),
&lt;br&gt;&amp;nbsp; am:InheritedField(I),
&lt;br&gt;&amp;nbsp; \+ am:inheritsFrom(I, _), &amp;nbsp;# I assume: if no &amp;lt;inherits from=&amp;quot;...&amp;quot;/&amp;gt; is
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;# given, the default is the enclosing element
&lt;br&gt;&amp;nbsp; am:inheritancePolicy(I, am:InheritIfMissing),
&lt;br&gt;&amp;nbsp; am:parentElement(I, P),
&lt;br&gt;&amp;nbsp; dc:dateAfterInheritance(P, D). &amp;nbsp;# not dc:date here, as we only want real 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # date values here; the other rule accounts
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; # for getting them.
&lt;br&gt;&lt;br&gt;Still, validators and other tools would not understand the &amp;quot;after inheritance&amp;quot;
&lt;br&gt;properties, so they would have to be renamed back.
&lt;br&gt;&lt;br&gt;&amp;gt; The below tastes like a jess or prolog rule... too algorithmic!
&lt;br&gt;&lt;br&gt;As this is basically a join of two relations (the metadata field, and
&lt;br&gt;inheritsFrom or parentElement), I suppose that with a bit of brain-twisting
&lt;br&gt;this could also be achieved with OWL 2 property chain inclusions.
&lt;br&gt;&lt;br&gt;&amp;gt; I would even be tempted to say that XPath is almost able to say it in
&lt;br&gt;&amp;gt; a far less algorithmic way (which might be better to understand for a
&lt;br&gt;&amp;gt; human though).
&lt;br&gt;&lt;br&gt;BTW, OWL is certainly less algorithmic than a rule language, but emulating
&lt;br&gt;rules in OWL IMHO leads to things that are even harder to understand for
&lt;br&gt;humans.
&lt;br&gt;&lt;br&gt;&amp;gt; If you had some free properties available, couldn't you define the
&lt;br&gt;&amp;gt; Creator-if-missing, Creator-merge, and and Creator-none properties
&lt;br&gt;&amp;gt; then merge them by, again, a first choice?
&lt;br&gt;&lt;br&gt;That seems related to my above-mentioned set of &amp;quot;after inheritance&amp;quot;
&lt;br&gt;properties. &amp;nbsp;Seems intuitively feasible to me. &amp;nbsp;Again it would require a
&lt;br&gt;hard-coded step of renaming properties.
&lt;br&gt;&lt;br&gt;&amp;gt; I'm impressed by you saying we should stay on OMDoc-based
&lt;br&gt;&amp;gt; infrastucture ;-)
&lt;br&gt;&lt;br&gt;Well, in learning a lot about the advantages of semantic web technologies, I
&lt;br&gt;also learned about their limitations. &amp;nbsp;So I ended up with the rule of thumb:
&lt;br&gt;Use RDF and friends whenever it (and its tools) give you something for free
&lt;br&gt;(e.g. integration with other semantic web applications); otherwise be
&lt;br&gt;pragmatic and hard-code something.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26697428&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26697428&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26697428/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-inheritance-by-reference%3A-frequently-used--For-what--tp26618181p26697428.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26635420</id>
	<title>Re: Metadata inheritance by reference: frequently used? For what?</title>
	<published>2009-12-03T15:53:08Z</published>
	<updated>2009-12-03T15:53:08Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;&lt;br&gt;Le 03-déc.-09 à 12:32, Christoph LANGE a écrit :
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; It's defined as being the same effect as the inheritance of the
&lt;br&gt;&amp;gt;&amp;gt; &amp;quot;closest enclosing&amp;quot; element meaning that the inheritance policy &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; should
&lt;br&gt;&amp;gt;&amp;gt; follow that model. The policy is defined by attribute values, the
&lt;br&gt;&amp;gt;&amp;gt; inherit attribute, which can be inside your current metadata or in an
&lt;br&gt;&amp;gt;&amp;gt; enclosing element.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hmm, maybe I got it wrong where the inherits element has to be put. &amp;nbsp; 
&lt;br&gt;&amp;gt; (Is there
&lt;br&gt;&amp;gt; an exact specification, besides your paper?)
&lt;/div&gt;&lt;br&gt;The DTD. that's all.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp;So do you mean something like
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;exercise id=&amp;quot;exercise&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;Date&amp;gt;&amp;lt;inherit from=&amp;quot;#other-exercise&amp;quot;/&amp;gt;&amp;lt;/Date&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/exercise&amp;gt;
&lt;br&gt;&lt;br&gt;No, the inherit element is only allowed as a child of the metadata &amp;nbsp;
&lt;br&gt;element to indicate that this metadata inherits from this other item's &amp;nbsp;
&lt;br&gt;metadata.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Now that there is also an inherit _attribute_, which defines the &amp;nbsp;
&lt;br&gt;&amp;gt; mode of
&lt;br&gt;&amp;gt; inheritance, I'm a bit confused. &amp;nbsp;In the video I see that the &amp;nbsp;
&lt;br&gt;&amp;gt; attribute would
&lt;br&gt;&amp;gt; be attached, e.g., to the &amp;lt;Date/&amp;gt; element. &amp;nbsp;But where is the &amp;nbsp;
&lt;br&gt;&amp;gt; _element_ placed?
&lt;br&gt;&amp;gt; Like this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;exercise id=&amp;quot;exercise&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;inherit from=&amp;quot;#other-exercise&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/exercise&amp;gt;
&lt;/div&gt;&lt;br&gt;Right. This basically says: add all the (policy-allowing) elements &amp;nbsp;
&lt;br&gt;from this other metadata into here.
&lt;br&gt;&lt;br&gt;&amp;gt; Anyway, I realize that inconsistencies can potentially only be &amp;nbsp;
&lt;br&gt;&amp;gt; caused by wrong
&lt;br&gt;&amp;gt; inheritance mode values for the Field/@inherit attribute.
&lt;br&gt;&lt;br&gt;Right.
&lt;br&gt;So, I think that if a user is:
&lt;br&gt;- able to understand how it goes
&lt;br&gt;- can test it (use the preview)
&lt;br&gt;then it should be acceptable.
&lt;br&gt;&lt;br&gt;As a rule of the thumb:
&lt;br&gt;- the inherit element actually invokes inheritance
&lt;br&gt;- the inherit attribute defines the inheritance policy
&lt;br&gt;maybe we could be more explicit with the names.
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; With all defaults applied (they're all in the DTD), it means that &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; some
&lt;br&gt;&amp;gt;&amp;gt; fields have inherit if missing, others have inherit merge...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; What experiences do you (= the ActiveMath community) have with that?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It's quite new to gather experience. It hasn't reached the authoring
&lt;br&gt;&amp;gt;&amp;gt; ActiveMath for example.
&lt;br&gt;&amp;gt;&amp;gt; (&lt;a href=&quot;http://eds.activemath.org/en/AMinstallation/svn-stable&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/AMinstallation/svn-stable&lt;/a&gt;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Right, it's not yet in those DTDs. &amp;nbsp;Instead there is metadata/ 
&lt;br&gt;&amp;gt; @inherits,
&lt;br&gt;&amp;gt; something that we also have in &amp;quot;our&amp;quot; OMDoc 1.2 spec, but it is not &amp;nbsp;
&lt;br&gt;&amp;gt; really
&lt;br&gt;&amp;gt; documented there, that's why I only discovered it recently.
&lt;/div&gt;&lt;br&gt;Same for me. I never considered or used the inherit attribute of &amp;nbsp;
&lt;br&gt;metadata, you taught me about its existance.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; I also note that the inherit by reference element is not yet &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; implemented but
&lt;br&gt;&amp;gt;&amp;gt; that's just an inch away. It will require to re-parse the given &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; element when
&lt;br&gt;&amp;gt;&amp;gt; an inherit element will be &amp;quot;applied&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That could be a pragmatic approach to giving inheritance an RDF &amp;nbsp;
&lt;br&gt;&amp;gt; semantics:
&lt;br&gt;&amp;gt; not explicitly representing the fact that the metadatum is inherited &amp;nbsp;
&lt;br&gt;&amp;gt; in RDF,
&lt;br&gt;&amp;gt; but first applying inheritance and then extracting the metadata to &amp;nbsp;
&lt;br&gt;&amp;gt; RDF, where
&lt;br&gt;&amp;gt; they would appear as if they had not been inherited.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;That'd be certainly the first way we'd implement it.
&lt;br&gt;Especially since we do not plan an RDF realization where a reasoner &amp;nbsp;
&lt;br&gt;has everything in memory, at least I don't since it's dangerous for &amp;nbsp;
&lt;br&gt;speed.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;nbsp;Modeling the process of
&lt;br&gt;&amp;gt; inheritance completely in RDF, with rules or ontologies, seems &amp;nbsp;
&lt;br&gt;&amp;gt; impossible to
&lt;br&gt;&amp;gt; me, but I think it would not be necessary. &amp;nbsp;So the only remaining &amp;nbsp;
&lt;br&gt;&amp;gt; challenge is
&lt;br&gt;&amp;gt; to prevent documents to which metadata inheritance has not yet been &amp;nbsp;
&lt;br&gt;&amp;gt; applied
&lt;br&gt;&amp;gt; from generating inconsistent RDF.
&lt;br&gt;&lt;br&gt;We're back on that: good validation.
&lt;br&gt;Are you not rather aiming at OWL, at least?
&lt;br&gt;&lt;br&gt;&amp;gt; My plan for OMDoc 1.3 is having RDFa-compatible syntax for full &amp;nbsp;
&lt;br&gt;&amp;gt; expressivity
&lt;br&gt;&amp;gt; and extensibility, e.g. &amp;lt;meta property=&amp;quot;dc:date&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/meta&amp;gt;, &amp;nbsp;
&lt;br&gt;&amp;gt; or &amp;lt;meta
&lt;br&gt;&amp;gt; property=&amp;quot;anyOtherOntology:field&amp;quot;&amp;gt;value&amp;lt;/meta&amp;gt;, but the old syntax &amp;nbsp;
&lt;br&gt;&amp;gt; would still
&lt;br&gt;&amp;gt; be allowed, and some translation to the RDFa syntax would be &amp;nbsp;
&lt;br&gt;&amp;gt; specified.
&lt;br&gt;&lt;br&gt;Extensibility and validatability can be ennemies or?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The
&lt;br&gt;&amp;gt; goal for the RDFa syntax is that any RDFa parser can process it, so &amp;nbsp;
&lt;br&gt;&amp;gt; there
&lt;br&gt;&amp;gt; should not be any OMDoc-specific assumptions in it. &amp;nbsp;The backwards- 
&lt;br&gt;&amp;gt; compatible
&lt;br&gt;&amp;gt; syntax, on the other hand, can be as OMDoc-specific or as ActiveMath- 
&lt;br&gt;&amp;gt; specific
&lt;br&gt;&amp;gt; as we like it to be. &amp;nbsp;So I think inheritance would best be handled &amp;nbsp;
&lt;br&gt;&amp;gt; at that
&lt;br&gt;&amp;gt; level. &amp;nbsp;The way you do it, by default attribute values, wouldn't &amp;nbsp;
&lt;br&gt;&amp;gt; work with the
&lt;br&gt;&amp;gt; RDFa-like syntax anyway, as AFAIK in a DTD you can only have default &amp;nbsp;
&lt;br&gt;&amp;gt; values
&lt;br&gt;&amp;gt; depending on a certain element (as, e.g., &amp;lt;Date/&amp;gt;), but not &amp;nbsp;
&lt;br&gt;&amp;gt; depending on an
&lt;br&gt;&amp;gt; attribute value (as, e.g., property=&amp;quot;dc:date&amp;quot;).
&lt;/div&gt;&lt;br&gt;But that is the question: is there an RDF infrastructure to replace &amp;nbsp;
&lt;br&gt;that?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Does incorrect use lead to conflicts?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; everything is made to avoid them, in particular the inheritance &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; policy.
&lt;br&gt;&amp;gt;&amp;gt; I would claim there's none... but I'd have to prove it (may be a fun
&lt;br&gt;&amp;gt;&amp;gt; exercise ;-)).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The way you did it, it seems to me that the author can only break it &amp;nbsp;
&lt;br&gt;&amp;gt; by
&lt;br&gt;&amp;gt; defining wrong defaults for the inherit
&lt;/div&gt;&lt;br&gt;A conflict could only be detected with a good validator.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;https://trac.omdoc.org/OMDoc/ticket/1566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://trac.omdoc.org/OMDoc/ticket/1566&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So you'd solve this as SWRL rules?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Maybe. &amp;nbsp;To also answer your question about &amp;quot;rules vs. ontology&amp;quot;: &amp;nbsp;I &amp;nbsp;
&lt;br&gt;&amp;gt; have not
&lt;br&gt;&amp;gt; yet implemented any of these rules. &amp;nbsp;Secondly, in this context I &amp;nbsp;
&lt;br&gt;&amp;gt; have a quite
&lt;br&gt;&amp;gt; general understanding of &amp;quot;ontology&amp;quot;. &amp;nbsp;On the one hand, I'd like to &amp;nbsp;
&lt;br&gt;&amp;gt; reuse
&lt;br&gt;&amp;gt; existing ontologies, such as DC, as metadata vocabularies. &amp;nbsp;They are &amp;nbsp;
&lt;br&gt;&amp;gt; mostly
&lt;br&gt;&amp;gt; implemented in RDFS or OWL, i.e. description logic, which means &amp;quot;no &amp;nbsp;
&lt;br&gt;&amp;gt; rules&amp;quot;.
&lt;br&gt;&amp;gt; Well, mostly. &amp;nbsp;The property chain inclusions of OWL 2 already &amp;nbsp;
&lt;br&gt;&amp;gt; emulate certain
&lt;br&gt;&amp;gt; rules with description logic means, consider the following rule for
&lt;br&gt;&amp;gt; inheritance (given in a Prolog-like syntax):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; contributor(Section, Person) :-
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;partOf(Section, Subsection),
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;creator(Subsection, Person).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But it can also modeled in OWL 2 as
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; partOf \circ creator \sqsubseteq contributor
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And then, by what I presented at MKM 2009, we can consider any OMDoc &amp;nbsp;
&lt;br&gt;&amp;gt; theory an
&lt;br&gt;&amp;gt; ontology (and thus a potential metadata vocabulary), so ultimately I &amp;nbsp;
&lt;br&gt;&amp;gt; would
&lt;br&gt;&amp;gt; implement any inheritance rules that should be too complex for RDFS, &amp;nbsp;
&lt;br&gt;&amp;gt; OWL,
&lt;br&gt;&amp;gt; etc., as &amp;quot;something that can be expressed in OMDoc and that some &amp;nbsp;
&lt;br&gt;&amp;gt; OMDoc-aware
&lt;br&gt;&amp;gt; software can make sense of&amp;quot; ;-)
&lt;/div&gt;&lt;br&gt;So RDF is export only?
&lt;br&gt;At least validation!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I like your statement that &amp;quot;metadata does not exist&amp;quot;...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Well, we decided to make it optional in OMDoc 1.3. &amp;nbsp;I believe that &amp;nbsp;
&lt;br&gt;&amp;gt; it gives
&lt;br&gt;&amp;gt; the document more structure when you read or edit it, but from a &amp;nbsp;
&lt;br&gt;&amp;gt; _semantic_
&lt;br&gt;&amp;gt; point of view it is not required.
&lt;br&gt;&lt;br&gt;sure.
&lt;br&gt;And indeed in all metadata specs of ActiveMath, the attributes of the &amp;nbsp;
&lt;br&gt;item are part of metadata.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; Can you encode if-missing in SWRL ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm not an expert in SWRL but somewhat superficially familiar with &amp;nbsp;
&lt;br&gt;&amp;gt; RDF-based
&lt;br&gt;&amp;gt; rule languages. &amp;nbsp;It is certainly not possible in a straightforward &amp;nbsp;
&lt;br&gt;&amp;gt; way, as
&lt;br&gt;&amp;gt; these languages do not have any notion of temporal aspects.
&lt;br&gt;&lt;br&gt;Amazing, I never thought temporal was needed.
&lt;br&gt;&lt;br&gt;Can you not say, instead, that it's the property Creator of the &amp;quot;first &amp;nbsp;
&lt;br&gt;enclosing&amp;quot; ?
&lt;br&gt;(or is that already temporal).
&lt;br&gt;&lt;br&gt;The below tastes like a jess or prolog rule... too algorithmic!
&lt;br&gt;I would even be tempted to say that XPath is almost able to say it in &amp;nbsp;
&lt;br&gt;a far less algorithmic way (which might be better to understand for a &amp;nbsp;
&lt;br&gt;human though).
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Either some
&lt;br&gt;&amp;gt; metadata field is there or not, but there is no reasoning like &amp;quot;if &amp;nbsp;
&lt;br&gt;&amp;gt; it has not
&lt;br&gt;&amp;gt; been there before, then put it there&amp;quot;. &amp;nbsp;Thanks, BTW, for making me &amp;nbsp;
&lt;br&gt;&amp;gt; think about
&lt;br&gt;&amp;gt; that, I hadn't considered that problem in detail before.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; However, it might work as follows, e.g. for dc:creator (in pseudo- 
&lt;br&gt;&amp;gt; code):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; IF Container dc:creator C
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;&amp; (
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; NOT( Child dc:creator _ )
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; || Child dc:creator C
&lt;br&gt;&amp;gt; &amp;nbsp; )
&lt;br&gt;&amp;gt; THEN
&lt;br&gt;&amp;gt; &amp;nbsp; Child dc:creator C
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Suppose that initially the child does not have a dc:creator set. &amp;nbsp; 
&lt;br&gt;&amp;gt; The first
&lt;br&gt;&amp;gt; application of the rule would inherit it from the container. &amp;nbsp;The &amp;nbsp;
&lt;br&gt;&amp;gt; reasoner
&lt;br&gt;&amp;gt; would continue its work until no more rule can be applied. &amp;nbsp;So it &amp;nbsp;
&lt;br&gt;&amp;gt; would try to
&lt;br&gt;&amp;gt; apply this rule once more, then seeing that container and child have &amp;nbsp;
&lt;br&gt;&amp;gt; equal
&lt;br&gt;&amp;gt; dc:creator properties. &amp;nbsp;&amp;quot;Application&amp;quot; of the rule would then leave &amp;nbsp;
&lt;br&gt;&amp;gt; dc:creator
&lt;br&gt;&amp;gt; as it is, so we would have reached a fixed point.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What I said applies to the dc:creator attribute _in general_. &amp;nbsp;Locally
&lt;br&gt;&amp;gt; modifying the inheritance policy for concrete metadata fields of &amp;nbsp;
&lt;br&gt;&amp;gt; concrete
&lt;br&gt;&amp;gt; OMDoc elements seems impossible to me in normal RDF, unless you &amp;nbsp;
&lt;br&gt;&amp;gt; introduce
&lt;br&gt;&amp;gt; mechanisms to talk about RDF triples, e.g. reification or named &amp;nbsp;
&lt;br&gt;&amp;gt; graphs, but
&lt;br&gt;&amp;gt; that is no longer easy to handle.
&lt;/div&gt;&lt;br&gt;If you had some free properties available, couldn't you define the &amp;nbsp;
&lt;br&gt;Creator-if-missing, Creator-merge, and and Creator-none properties &amp;nbsp;
&lt;br&gt;then merge them by, again, a first choice?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; and will do further investigations. &amp;nbsp;However, I'm interested in how
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; important explicit inheritance actually is.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; This is good news because Sergey Sosnovsky, in Cc, will be OWLifying
&lt;br&gt;&amp;gt;&amp;gt; metadata of ActiveMath. &amp;nbsp;There probably is an overlap. Our intent &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; is mostly
&lt;br&gt;&amp;gt;&amp;gt; validation at this stage.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That definitely sounds interesting. &amp;nbsp;@Sergey: &amp;nbsp;Hi, tell me more! &amp;nbsp;I &amp;nbsp;
&lt;br&gt;&amp;gt; have some
&lt;br&gt;&amp;gt; fuzzy ideas about validation in my mind, but I have not yet really &amp;nbsp;
&lt;br&gt;&amp;gt; dealt with
&lt;br&gt;&amp;gt; it. &amp;nbsp;Not sure, though, if OWL is the right language for validation. &amp;nbsp; 
&lt;br&gt;&amp;gt; If you
&lt;br&gt;&amp;gt; want to check constraints, such as, e.g. &amp;quot;report an error if the &amp;nbsp;
&lt;br&gt;&amp;gt; metadata
&lt;br&gt;&amp;gt; field F is missing, or if there is a metadata field that does not &amp;nbsp;
&lt;br&gt;&amp;gt; belong
&lt;br&gt;&amp;gt; there&amp;quot;, that might be hard to emulate given OWL's open world &amp;nbsp;
&lt;br&gt;&amp;gt; assumption.
&lt;/div&gt;&lt;br&gt;It'll have to be cut at some point... I see no other way.
&lt;br&gt;&lt;br&gt;I'm impressed by you saying we should stay on OMDoc-based &amp;nbsp;
&lt;br&gt;infrastucture ;-)
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; I believe the inheritance can be specified as axioms in OWL but had &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; no
&lt;br&gt;&amp;gt;&amp;gt; time to look at it and I preferred to implement it in simple java
&lt;br&gt;&amp;gt;&amp;gt; based on the existing content-storage implementation which still only
&lt;br&gt;&amp;gt;&amp;gt; loads one file at a time.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As said above, this would be the pragmatic approach. &amp;nbsp;My current &amp;nbsp;
&lt;br&gt;&amp;gt; objective is
&lt;br&gt;&amp;gt; introducing RDF for the metadata to make them extensible and &amp;nbsp;
&lt;br&gt;&amp;gt; exchangeable. &amp;nbsp;If
&lt;br&gt;&amp;gt; RDF and RDF-based rule/ontology languages give us some reasoning for &amp;nbsp;
&lt;br&gt;&amp;gt; free, use
&lt;br&gt;&amp;gt; it, e.g. for inheritance. &amp;nbsp;If it is painful, don't use it, but &amp;nbsp;
&lt;br&gt;&amp;gt; assume some
&lt;br&gt;&amp;gt; pre-processing and only extract RDF after that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Christoph
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, &amp;nbsp;
&lt;br&gt;&amp;gt; Skype duke4701
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26635420&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26635420&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-inheritance-by-reference%3A-frequently-used--For-what--tp26618181p26635420.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26624557</id>
	<title>Re: Metadata inheritance by reference: frequently used? For what?</title>
	<published>2009-12-03T03:32:19Z</published>
	<updated>2009-12-03T03:32:19Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Hi Paul,
&lt;br&gt;&lt;br&gt;2009-12-03 00:57 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26624557&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; Sorry Christoph, I was not paying attention... I could move back to
&lt;br&gt;&amp;gt; there if you wish.
&lt;br&gt;&lt;br&gt;thanks for your reply! &amp;nbsp;No, actually I think this is the better place for
&lt;br&gt;discussing it, I just hadn't thought of posting it here initially.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; But what kind of inheritance is that? &amp;nbsp;inherit-if-missing, or
&lt;br&gt;&amp;gt; &amp;gt; inherit-merge?
&lt;br&gt;&amp;gt; &amp;gt; Or can you control which kind to use, e.g. by an additional attribute?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's defined as being the same effect as the inheritance of the
&lt;br&gt;&amp;gt; &amp;quot;closest enclosing&amp;quot; element meaning that the inheritance policy should
&lt;br&gt;&amp;gt; follow that model. The policy is defined by attribute values, the
&lt;br&gt;&amp;gt; inherit attribute, which can be inside your current metadata or in an
&lt;br&gt;&amp;gt; enclosing element.
&lt;br&gt;&lt;br&gt;Hmm, maybe I got it wrong where the inherits element has to be put. &amp;nbsp;(Is there
&lt;br&gt;an exact specification, besides your paper?) &amp;nbsp;So do you mean something like
&lt;br&gt;&lt;br&gt;&amp;lt;exercise id=&amp;quot;exercise&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;Date&amp;gt;&amp;lt;inherit from=&amp;quot;#other-exercise&amp;quot;/&amp;gt;&amp;lt;/Date&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;lt;/exercise&amp;gt;
&lt;br&gt;&lt;br&gt;Now that there is also an inherit _attribute_, which defines the mode of
&lt;br&gt;inheritance, I'm a bit confused. &amp;nbsp;In the video I see that the attribute would
&lt;br&gt;be attached, e.g., to the &amp;lt;Date/&amp;gt; element. &amp;nbsp;But where is the _element_ placed?
&lt;br&gt;Like this?
&lt;br&gt;&lt;br&gt;&amp;lt;exercise id=&amp;quot;exercise&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;metadata&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;inherit from=&amp;quot;#other-exercise&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;lt;/metadata&amp;gt;
&lt;br&gt;&amp;lt;/exercise&amp;gt;
&lt;br&gt;&lt;br&gt;Anyway, I realize that inconsistencies can potentially only be caused by wrong
&lt;br&gt;inheritance mode values for the Field/@inherit attribute.
&lt;br&gt;&lt;br&gt;&amp;gt; With all defaults applied (they're all in the DTD), it means that some
&lt;br&gt;&amp;gt; fields have inherit if missing, others have inherit merge...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; What experiences do you (= the ActiveMath community) have with that?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; It's quite new to gather experience. It hasn't reached the authoring
&lt;br&gt;&amp;gt; ActiveMath for example.
&lt;br&gt;&amp;gt; (&lt;a href=&quot;http://eds.activemath.org/en/AMinstallation/svn-stable&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/AMinstallation/svn-stable&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;Right, it's not yet in those DTDs. &amp;nbsp;Instead there is metadata/@inherits,
&lt;br&gt;something that we also have in &amp;quot;our&amp;quot; OMDoc 1.2 spec, but it is not really
&lt;br&gt;documented there, that's why I only discovered it recently.
&lt;br&gt;&lt;br&gt;&amp;gt; I also note that the inherit by reference element is not yet implemented but
&lt;br&gt;&amp;gt; that's just an inch away. It will require to re-parse the given element when
&lt;br&gt;&amp;gt; an inherit element will be &amp;quot;applied&amp;quot;.
&lt;br&gt;&lt;br&gt;That could be a pragmatic approach to giving inheritance an RDF semantics:
&lt;br&gt;not explicitly representing the fact that the metadatum is inherited in RDF,
&lt;br&gt;but first applying inheritance and then extracting the metadata to RDF, where
&lt;br&gt;they would appear as if they had not been inherited. &amp;nbsp;Modeling the process of
&lt;br&gt;inheritance completely in RDF, with rules or ontologies, seems impossible to
&lt;br&gt;me, but I think it would not be necessary. &amp;nbsp;So the only remaining challenge is
&lt;br&gt;to prevent documents to which metadata inheritance has not yet been applied
&lt;br&gt;from generating inconsistent RDF.
&lt;br&gt;&lt;br&gt;My plan for OMDoc 1.3 is having RDFa-compatible syntax for full expressivity
&lt;br&gt;and extensibility, e.g. &amp;lt;meta property=&amp;quot;dc:date&amp;quot;&amp;gt;YYYY-MM-DD&amp;lt;/meta&amp;gt;, or &amp;lt;meta
&lt;br&gt;property=&amp;quot;anyOtherOntology:field&amp;quot;&amp;gt;value&amp;lt;/meta&amp;gt;, but the old syntax would still
&lt;br&gt;be allowed, and some translation to the RDFa syntax would be specified. &amp;nbsp;The
&lt;br&gt;goal for the RDFa syntax is that any RDFa parser can process it, so there
&lt;br&gt;should not be any OMDoc-specific assumptions in it. &amp;nbsp;The backwards-compatible
&lt;br&gt;syntax, on the other hand, can be as OMDoc-specific or as ActiveMath-specific
&lt;br&gt;as we like it to be. &amp;nbsp;So I think inheritance would best be handled at that
&lt;br&gt;level. &amp;nbsp;The way you do it, by default attribute values, wouldn't work with the
&lt;br&gt;RDFa-like syntax anyway, as AFAIK in a DTD you can only have default values
&lt;br&gt;depending on a certain element (as, e.g., &amp;lt;Date/&amp;gt;), but not depending on an
&lt;br&gt;attribute value (as, e.g., property=&amp;quot;dc:date&amp;quot;).
&lt;br&gt;&lt;br&gt;&amp;gt; The metadata inheritance preview is there, yes, this blog entry shows
&lt;br&gt;&amp;gt; a video of it:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://eds.activemath.org/en/node/237&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/node/237&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks for pointing me there again. &amp;nbsp;Before, I had just _read_ the blog post.
&lt;br&gt;I tend to ignore videos ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; Does incorrect use lead to conflicts?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; everything is made to avoid them, in particular the inheritance policy.
&lt;br&gt;&amp;gt; I would claim there's none... but I'd have to prove it (may be a fun
&lt;br&gt;&amp;gt; exercise ;-)).
&lt;br&gt;&lt;br&gt;The way you did it, it seems to me that the author can only break it by
&lt;br&gt;defining wrong defaults for the inherit
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://trac.omdoc.org/OMDoc/ticket/1566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://trac.omdoc.org/OMDoc/ticket/1566&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So you'd solve this as SWRL rules?
&lt;br&gt;&lt;br&gt;Maybe. &amp;nbsp;To also answer your question about &amp;quot;rules vs. ontology&amp;quot;: &amp;nbsp;I have not
&lt;br&gt;yet implemented any of these rules. &amp;nbsp;Secondly, in this context I have a quite
&lt;br&gt;general understanding of &amp;quot;ontology&amp;quot;. &amp;nbsp;On the one hand, I'd like to reuse
&lt;br&gt;existing ontologies, such as DC, as metadata vocabularies. &amp;nbsp;They are mostly
&lt;br&gt;implemented in RDFS or OWL, i.e. description logic, which means &amp;quot;no rules&amp;quot;.
&lt;br&gt;Well, mostly. &amp;nbsp;The property chain inclusions of OWL 2 already emulate certain
&lt;br&gt;rules with description logic means, consider the following rule for
&lt;br&gt;inheritance (given in a Prolog-like syntax):
&lt;br&gt;&lt;br&gt;contributor(Section, Person) :-
&lt;br&gt;&amp;nbsp; &amp;nbsp; partOf(Section, Subsection),
&lt;br&gt;&amp;nbsp; &amp;nbsp; creator(Subsection, Person).
&lt;br&gt;&lt;br&gt;But it can also modeled in OWL 2 as
&lt;br&gt;&lt;br&gt;partOf \circ creator \sqsubseteq contributor
&lt;br&gt;&lt;br&gt;And then, by what I presented at MKM 2009, we can consider any OMDoc theory an
&lt;br&gt;ontology (and thus a potential metadata vocabulary), so ultimately I would
&lt;br&gt;implement any inheritance rules that should be too complex for RDFS, OWL,
&lt;br&gt;etc., as &amp;quot;something that can be expressed in OMDoc and that some OMDoc-aware
&lt;br&gt;software can make sense of&amp;quot; ;-)
&lt;br&gt;&lt;br&gt;&amp;gt; I like your statement that &amp;quot;metadata does not exist&amp;quot;...
&lt;br&gt;&lt;br&gt;Well, we decided to make it optional in OMDoc 1.3. &amp;nbsp;I believe that it gives
&lt;br&gt;the document more structure when you read or edit it, but from a _semantic_
&lt;br&gt;point of view it is not required.
&lt;br&gt;&lt;br&gt;&amp;gt; I think any formalization should consider the three inheritance
&lt;br&gt;&amp;gt; policies and should allow each to be authored.
&lt;br&gt;&lt;br&gt;Indeed my plan is to model the inheritance policies that you have defined for
&lt;br&gt;those metadata fields that are supported by ActiveMath (which is a finite set)
&lt;br&gt;as rules in some ontology. &amp;nbsp;That would cover the semantics of everything from
&lt;br&gt;an RDF point of view. &amp;nbsp;(I'm not talking about a backwards-compatible _syntax_
&lt;br&gt;here.) &amp;nbsp;if-missing might be an exception; see below.
&lt;br&gt;&lt;br&gt;&amp;gt; Even though this was a big debate, I tend to believe that authors have
&lt;br&gt;&amp;gt; a chance to even wish metadata inheritance on &amp;quot;typical learning time&amp;quot;,
&lt;br&gt;&amp;gt; simply deciding to package &amp;quot;collection of 3-minutes exercises&amp;quot;, one
&lt;br&gt;&amp;gt; day in a file. By default it is, of course, disabled, but &amp;nbsp;authors are
&lt;br&gt;&amp;gt; still free to change that policy.
&lt;br&gt;&lt;br&gt;That sounds reasonable to me.
&lt;br&gt;&lt;br&gt;&amp;gt; Can you encode if-missing in SWRL ?
&lt;br&gt;&lt;br&gt;I'm not an expert in SWRL but somewhat superficially familiar with RDF-based
&lt;br&gt;rule languages. &amp;nbsp;It is certainly not possible in a straightforward way, as
&lt;br&gt;these languages do not have any notion of temporal aspects. &amp;nbsp;Either some
&lt;br&gt;metadata field is there or not, but there is no reasoning like &amp;quot;if it has not
&lt;br&gt;been there before, then put it there&amp;quot;. &amp;nbsp;Thanks, BTW, for making me think about
&lt;br&gt;that, I hadn't considered that problem in detail before.
&lt;br&gt;&lt;br&gt;However, it might work as follows, e.g. for dc:creator (in pseudo-code):
&lt;br&gt;&lt;br&gt;IF Container dc:creator C
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;&amp; (
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;NOT( Child dc:creator _ )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;|| Child dc:creator C
&lt;br&gt;&amp;nbsp; &amp;nbsp;)
&lt;br&gt;THEN
&lt;br&gt;&amp;nbsp; &amp;nbsp;Child dc:creator C
&lt;br&gt;&lt;br&gt;Suppose that initially the child does not have a dc:creator set. &amp;nbsp;The first
&lt;br&gt;application of the rule would inherit it from the container. &amp;nbsp;The reasoner
&lt;br&gt;would continue its work until no more rule can be applied. &amp;nbsp;So it would try to
&lt;br&gt;apply this rule once more, then seeing that container and child have equal
&lt;br&gt;dc:creator properties. &amp;nbsp;&amp;quot;Application&amp;quot; of the rule would then leave dc:creator
&lt;br&gt;as it is, so we would have reached a fixed point.
&lt;br&gt;&lt;br&gt;What I said applies to the dc:creator attribute _in general_. &amp;nbsp;Locally
&lt;br&gt;modifying the inheritance policy for concrete metadata fields of concrete
&lt;br&gt;OMDoc elements seems impossible to me in normal RDF, unless you introduce
&lt;br&gt;mechanisms to talk about RDF triples, e.g. reification or named graphs, but
&lt;br&gt;that is no longer easy to handle.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; and will do further investigations. &amp;nbsp;However, I'm interested in how
&lt;br&gt;&amp;gt; &amp;gt; important explicit inheritance actually is.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is good news because Sergey Sosnovsky, in Cc, will be OWLifying
&lt;br&gt;&amp;gt; metadata of ActiveMath. &amp;nbsp;There probably is an overlap. Our intent is mostly
&lt;br&gt;&amp;gt; validation at this stage.
&lt;br&gt;&lt;br&gt;That definitely sounds interesting. &amp;nbsp;@Sergey: &amp;nbsp;Hi, tell me more! &amp;nbsp;I have some
&lt;br&gt;fuzzy ideas about validation in my mind, but I have not yet really dealt with
&lt;br&gt;it. &amp;nbsp;Not sure, though, if OWL is the right language for validation. &amp;nbsp;If you
&lt;br&gt;want to check constraints, such as, e.g. &amp;quot;report an error if the metadata
&lt;br&gt;field F is missing, or if there is a metadata field that does not belong
&lt;br&gt;there&amp;quot;, that might be hard to emulate given OWL's open world assumption.
&lt;br&gt;&lt;br&gt;&amp;gt; I believe the inheritance can be specified as axioms in OWL but had no
&lt;br&gt;&amp;gt; time to look at it and I preferred to implement it in simple java
&lt;br&gt;&amp;gt; based on the existing content-storage implementation which still only
&lt;br&gt;&amp;gt; loads one file at a time.
&lt;br&gt;&lt;br&gt;As said above, this would be the pragmatic approach. &amp;nbsp;My current objective is
&lt;br&gt;introducing RDF for the metadata to make them extensible and exchangeable. &amp;nbsp;If
&lt;br&gt;RDF and RDF-based rule/ontology languages give us some reasoning for free, use
&lt;br&gt;it, e.g. for inheritance. &amp;nbsp;If it is painful, don't use it, but assume some
&lt;br&gt;pre-processing and only extract RDF after that.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26624557&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26624557&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26624557/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-inheritance-by-reference%3A-frequently-used--For-what--tp26618181p26624557.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26618837</id>
	<title>Re: Metadata inheritance by reference: frequently used? For what?</title>
	<published>2009-12-02T15:57:42Z</published>
	<updated>2009-12-02T15:57:42Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;Le 03-déc.-09 à 00:04, Christoph LANGE a écrit :
&lt;br&gt;&amp;gt; &amp;nbsp;last week I asked a question on metadata inheritance in the &amp;nbsp;
&lt;br&gt;&amp;gt; ActiveMath
&lt;br&gt;&amp;gt; variant of the OMDoc language on the OMDoc developers' list, but it is
&lt;br&gt;&amp;gt; probably more appropriate to ask it here.
&lt;br&gt;&lt;br&gt;Sorry Christoph, I was not paying attention... I could move back to &amp;nbsp;
&lt;br&gt;there if you wish.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; In Paul's 2009 paper on collection
&lt;br&gt;&amp;gt; management, explicit metadata inheritance by reference is explained as
&lt;br&gt;&amp;gt; follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ActiveMath’s metadata inheritance […] oﬀers metadata &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; inheritance by
&lt;br&gt;&amp;gt;&amp;gt; reference to indicate the intent of inheriting metadata from an &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; item at a
&lt;br&gt;&amp;gt;&amp;gt; fully diﬀerent location. A potential usage may be the sharing of &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; meta- data
&lt;br&gt;&amp;gt;&amp;gt; proﬁles which gather all the information pertinent to the typical &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; users in
&lt;br&gt;&amp;gt;&amp;gt; an educational context. It is expressed with a child such as a &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; child of the
&lt;br&gt;&amp;gt;&amp;gt; metadata element &amp;lt;inherit from=&amp;quot;pointer&amp;quot;/&amp;gt; and should be &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; interpreted as the
&lt;br&gt;&amp;gt;&amp;gt; meta- data of the closest enclosing element (ignoring enclosing &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; metadata of
&lt;br&gt;&amp;gt;&amp;gt; enclosing elements of the referenced item).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But what kind of inheritance is that? &amp;nbsp;inherit-if-missing, or &amp;nbsp;
&lt;br&gt;&amp;gt; inherit-merge?
&lt;br&gt;&amp;gt; Or can you control which kind to use, e.g. by an additional attribute?
&lt;/div&gt;&lt;/div&gt;It's defined as being the same effect as the inheritance of the &amp;nbsp;
&lt;br&gt;&amp;quot;closest enclosing&amp;quot; element meaning that the inheritance policy should &amp;nbsp;
&lt;br&gt;follow that model. The policy is defined by attribute values, the &amp;nbsp;
&lt;br&gt;inherit attribute, which can be inside your current metadata or in an &amp;nbsp;
&lt;br&gt;enclosing element.
&lt;br&gt;&lt;br&gt;With all defaults applied (they're all in the DTD), it means that some &amp;nbsp;
&lt;br&gt;fields have inherit if missing, others have inherit merge...
&lt;br&gt;&lt;br&gt;&amp;gt; What experiences do you (= the ActiveMath community) have with that?
&lt;br&gt;&lt;br&gt;It's quite new to gather experience. It hasn't reached the authoring &amp;nbsp;
&lt;br&gt;ActiveMath for example.
&lt;br&gt;(&lt;a href=&quot;http://eds.activemath.org/en/AMinstallation/svn-stable&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/AMinstallation/svn-stable&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;I also note that the inherit by reference element is not yet &amp;nbsp;
&lt;br&gt;implemented but that's just an inch away. It will require to re-parse &amp;nbsp;
&lt;br&gt;the given element when an inherit element will be &amp;quot;applied&amp;quot;.
&lt;br&gt;&lt;br&gt;&amp;gt; Is it frequently used in documents? &amp;nbsp;Do people use it correctly? &amp;nbsp; 
&lt;br&gt;&amp;gt; Does jEditOQMath
&lt;br&gt;&amp;gt; or any other tool have particular support for it?
&lt;br&gt;&lt;br&gt;The metadata inheritance preview is there, yes, this blog entry shows &amp;nbsp;
&lt;br&gt;a video of it:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://eds.activemath.org/en/node/237&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/node/237&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; Does incorrect use lead to conflicts?
&lt;br&gt;&lt;br&gt;everything is made to avoid them, in particular the inheritance policy.
&lt;br&gt;I would claim there's none... but I'd have to prove it (may be a fun &amp;nbsp;
&lt;br&gt;exercise ;-)).
&lt;br&gt;&lt;br&gt;&amp;gt; How about, e.g. one resource having an educational metadatum
&lt;br&gt;&amp;gt; difficulty=hard, but inheriting metadata from a resource having
&lt;br&gt;&amp;gt; difficulty=easy?
&lt;br&gt;&lt;br&gt;the DTD says the policy is if-missing so no conflicts here.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am currently specifying metadata for OMDoc 1.3. &amp;nbsp;As a short &amp;nbsp;
&lt;br&gt;&amp;gt; summary, I want
&lt;br&gt;&amp;gt; to make metadata extensible, semantic web compatible, but also &amp;nbsp;
&lt;br&gt;&amp;gt; backwards
&lt;br&gt;&amp;gt; compatible with the state of ActiveMath as well as OMDoc 1.2. &amp;nbsp;The &amp;nbsp;
&lt;br&gt;&amp;gt; idea is to
&lt;br&gt;&amp;gt; use RDFa as a syntax, at least for all new features, so that the &amp;nbsp;
&lt;br&gt;&amp;gt; metadata have
&lt;br&gt;&amp;gt; a straightforward RDF semantics. &amp;nbsp;While this will allow us to model &amp;nbsp;
&lt;br&gt;&amp;gt; implicit
&lt;br&gt;&amp;gt; inheritance in an elegant way using ontologies (I will write &amp;nbsp;
&lt;br&gt;&amp;gt; something about
&lt;br&gt;&amp;gt; that), it may get us into trouble w.r.t. explicit inheritance. &amp;nbsp;I &amp;nbsp;
&lt;br&gt;&amp;gt; outlined the
&lt;br&gt;&amp;gt; problem in &lt;a href=&quot;https://trac.omdoc.org/OMDoc/ticket/1566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://trac.omdoc.org/OMDoc/ticket/1566&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;So you'd solve this as SWRL rules?
&lt;br&gt;I like your statement that &amp;quot;metadata does not exist&amp;quot;...
&lt;br&gt;&lt;br&gt;I think any formalization should consider the three inheritance &amp;nbsp;
&lt;br&gt;policies and should allow each to be authored.
&lt;br&gt;Even though this was a big debate, I tend to believe that authors have &amp;nbsp;
&lt;br&gt;a chance to even wish metadata inheritance on &amp;quot;typical learning time&amp;quot;, &amp;nbsp;
&lt;br&gt;simply deciding to package &amp;quot;collection of 3-minutes exercises&amp;quot;, one &amp;nbsp;
&lt;br&gt;day in a file. By default it is, of course, disabled, but &amp;nbsp;authors are &amp;nbsp;
&lt;br&gt;still free to change that policy.
&lt;br&gt;&lt;br&gt;Can you encode if-missing in SWRL ?
&lt;br&gt;&lt;br&gt;&amp;gt; and will do further investigations. &amp;nbsp;However, I'm interested in how &amp;nbsp;
&lt;br&gt;&amp;gt; important explicit inheritance
&lt;br&gt;&amp;gt; actually is.
&lt;br&gt;&lt;br&gt;This is good news because Sergey Sosnovsky, in Cc, will be OWLifying &amp;nbsp;
&lt;br&gt;metadata of ActiveMath.
&lt;br&gt;There probably is an overlap. Our intent is mostly validation at this &amp;nbsp;
&lt;br&gt;stage.
&lt;br&gt;&lt;br&gt;I believe the inheritance can be specified as axioms in OWL but had no &amp;nbsp;
&lt;br&gt;time to look at it and I preferred to implement it in simple java &amp;nbsp;
&lt;br&gt;based on the existing content-storage implementation which still only &amp;nbsp;
&lt;br&gt;loads one file at a time.
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br&gt;PS: are *rules* part of an ontology? This surprises me.&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26618837&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26618837&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/26618837/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-inheritance-by-reference%3A-frequently-used--For-what--tp26618181p26618837.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26618181</id>
	<title>Metadata inheritance by reference: frequently used? For what?</title>
	<published>2009-12-02T15:04:07Z</published>
	<updated>2009-12-02T15:04:07Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Dear ActiveMath users,
&lt;br&gt;&lt;br&gt;&amp;nbsp; last week I asked a question on metadata inheritance in the ActiveMath
&lt;br&gt;variant of the OMDoc language on the OMDoc developers' list, but it is
&lt;br&gt;probably more appropriate to ask it here. &amp;nbsp;In Paul's 2009 paper on collection
&lt;br&gt;management, explicit metadata inheritance by reference is explained as
&lt;br&gt;follows:
&lt;br&gt;&lt;br&gt;&amp;gt; ActiveMath’s metadata inheritance […] oﬀers metadata inheritance by
&lt;br&gt;&amp;gt; reference to indicate the intent of inheriting metadata from an item at a
&lt;br&gt;&amp;gt; fully diﬀerent location. A potential usage may be the sharing of meta- data
&lt;br&gt;&amp;gt; proﬁles which gather all the information pertinent to the typical users in
&lt;br&gt;&amp;gt; an educational context. It is expressed with a child such as a child of the
&lt;br&gt;&amp;gt; metadata element &amp;lt;inherit from=&amp;quot;pointer&amp;quot;/&amp;gt; and should be interpreted as the
&lt;br&gt;&amp;gt; meta- data of the closest enclosing element (ignoring enclosing metadata of
&lt;br&gt;&amp;gt; enclosing elements of the referenced item).
&lt;br&gt;&lt;br&gt;But what kind of inheritance is that? &amp;nbsp;inherit-if-missing, or inherit-merge?
&lt;br&gt;Or can you control which kind to use, e.g. by an additional attribute?
&lt;br&gt;&lt;br&gt;What experiences do you (= the ActiveMath community) have with that? &amp;nbsp;Is it
&lt;br&gt;frequently used in documents? &amp;nbsp;Do people use it correctly? &amp;nbsp;Does jEditOQMath
&lt;br&gt;or any other tool have particular support for it? &amp;nbsp;Does incorrect use lead to
&lt;br&gt;conflicts? &amp;nbsp;How about, e.g. one resource having an educational metadatum
&lt;br&gt;difficulty=hard, but inheriting metadata from a resource having
&lt;br&gt;difficulty=easy?
&lt;br&gt;&lt;br&gt;I am currently specifying metadata for OMDoc 1.3. &amp;nbsp;As a short summary, I want
&lt;br&gt;to make metadata extensible, semantic web compatible, but also backwards
&lt;br&gt;compatible with the state of ActiveMath as well as OMDoc 1.2. &amp;nbsp;The idea is to
&lt;br&gt;use RDFa as a syntax, at least for all new features, so that the metadata have
&lt;br&gt;a straightforward RDF semantics. &amp;nbsp;While this will allow us to model implicit
&lt;br&gt;inheritance in an elegant way using ontologies (I will write something about
&lt;br&gt;that), it may get us into trouble w.r.t. explicit inheritance. &amp;nbsp;I outlined the
&lt;br&gt;problem in &lt;a href=&quot;https://trac.omdoc.org/OMDoc/ticket/1566&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://trac.omdoc.org/OMDoc/ticket/1566&lt;/a&gt;&amp;nbsp;and will do further
&lt;br&gt;investigations. &amp;nbsp;However, I'm interested in how important explicit inheritance
&lt;br&gt;actually is.
&lt;br&gt;&lt;br&gt;Looking forward to your comments -- thanks in advance,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26618181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26618181&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (205 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26618181/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-inheritance-by-reference%3A-frequently-used--For-what--tp26618181p26618181.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26315542</id>
	<title>Fwd: How do you divide?</title>
	<published>2009-11-12T01:09:30Z</published>
	<updated>2009-11-12T01:09:30Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;Début du message réexpédié :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Réenvoyé-De : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315542&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www-math@...&lt;/a&gt;
&lt;br&gt;&amp;gt; De : Stephen Watt &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315542&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;smwatt@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Date : 11 novembre 2009 18:47:15 GMT+01:00
&lt;br&gt;&amp;gt; À : &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315542&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www-math@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Objet : How do you divide?
&lt;br&gt;&amp;gt; Archived-At: &amp;lt;&lt;a href=&quot;http://www.w3.org/mid/a207b5150911110947t4c490bccra09cc6b1fb0c06e3@mail.gmail.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/mid/a207b5150911110947t4c490bccra09cc6b1fb0c06e3@...&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dear www-math participants:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can I ask you to please spend about 30 seconds participating in a
&lt;br&gt;&amp;gt; mathematical survey? &amp;nbsp;It might even be interesting to you.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The 3rd edition of MathML will include elements to portray certain
&lt;br&gt;&amp;gt; elementary arithmetic operations. &amp;nbsp; In this case we want to make sure
&lt;br&gt;&amp;gt; that the main variants for long division are covered.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Could you please visit the link
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://www.doodle.com/ibre4qknzy2bbt99&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.doodle.com/ibre4qknzy2bbt99&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and select which method(s) you learned for long division? &amp;nbsp; It would
&lt;br&gt;&amp;gt; be helpful if you indicated which country you were living in at the
&lt;br&gt;&amp;gt; time.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Stephen
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315542&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26315542&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/26315542/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-How-do-you-divide--tp26315542p26315542.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25403386</id>
	<title>generalized metadata inheritance</title>
	<published>2009-09-11T08:43:26Z</published>
	<updated>2009-09-11T08:43:26Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;... is now up and running in ActiveMath and jEditOQMath:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://eds.activemath.org/en/node/237&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/node/237&lt;/a&gt;&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25403386&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25403386&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/generalized-metadata-inheritance-tp25403386p25403386.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25204100</id>
	<title>Re: Metadata for ActiveMath</title>
	<published>2009-08-29T09:06:36Z</published>
	<updated>2009-08-29T09:06:36Z</updated>
	<author>
		<name>ChristophLange</name>
	</author>
	<content type="html">Dear Ili Farhana Md Mahtar,
&lt;br&gt;&lt;br&gt;&amp;nbsp; unfortunately I cannot answer your question for ActiveMath. &amp;nbsp;I am one of the
&lt;br&gt;developers of OMDoc, but our version of OMDoc and the version used by
&lt;br&gt;ActiveMath have diverged years ago, also in terms of their metadata support.
&lt;br&gt;Until recently, &amp;quot;our&amp;quot; OMDoc (version 1.2) did not have extensible metadata
&lt;br&gt;either. &amp;nbsp;However, we developed a solution that will be incorporated into the
&lt;br&gt;upcoming version 1.3. &amp;nbsp;Tool support in terms of editors is not yet there, but
&lt;br&gt;in terms of extracting these extended metadata to an RDF representation for
&lt;br&gt;easier querying.
&lt;br&gt;&lt;br&gt;See &lt;a href=&quot;https://svn.omdoc.org/repos/omdoc/trunk/doc/blue/foaf/mkm09.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://svn.omdoc.org/repos/omdoc/trunk/doc/blue/foaf/mkm09.pdf&lt;/a&gt;&amp;nbsp;for
&lt;br&gt;background. &amp;nbsp;We basically integrated RDFa into OMDoc. &amp;nbsp;RDFa allows for
&lt;br&gt;adding arbitrary metadata to any XML language -- originally XHTML, but more
&lt;br&gt;are coming; see &lt;a href=&quot;http://rdfa.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rdfa.info&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;Thus, if you already have an ontology for the metadata you need, you could
&lt;br&gt;simply reference it from such RDFa markup. &amp;nbsp;Otherwise, there is also the
&lt;br&gt;possibility of writing your own ontology -- either in one of the ontology
&lt;br&gt;languages known from the semantic web (RDFS or OWL), or in OMDoc itself.
&lt;br&gt;&lt;br&gt;If you are planning to process your additional metadata not within ActiveMath,
&lt;br&gt;but with your own application/library, it might be possible to simply add them
&lt;br&gt;to your OMDoc documents in an RDFa style, and hoping that ActiveMath will
&lt;br&gt;gracefully ignore them.
&lt;br&gt;&lt;br&gt;Hope that helps,
&lt;br&gt;&lt;br&gt;Christoph
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christoph Lange, Jacobs Univ. Bremen, &lt;a href=&quot;http://kwarc.info/clange&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/clange&lt;/a&gt;, Skype duke4701
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25204100&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25204100&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-for-ActiveMath-tp25133660p25204100.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25133660</id>
	<title>Metadata for ActiveMath</title>
	<published>2009-08-25T05:50:55Z</published>
	<updated>2009-08-25T05:50:55Z</updated>
	<author>
		<name>Ili Farhana Md Mahtar</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
Dear ActiveMath users,&lt;br&gt;&lt;br&gt;I’ve read a paper titled 'Metadata for ActiveMath'.&amp;nbsp; What I’m interested with is the specific metadata in the &amp;lt;extradata&amp;gt; tag. The paper described about difficulty, abstractness, learningcontext, field and verbosity elements. I think none of the elements above is suitable for my web, because I will develop a web that will adapt with the student learning style (whether the student prefers animated image+less text or plain image+more text). My question is, should I create my own metadata (learning style)? What tool do ActiveMath team used to create metadata?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br /&gt;&lt;hr /&gt;Share your memories online with anyone you want &lt;a href='http://www.microsoft.com/malaysia/windows/windowslive/products/photos-share.aspx?tab=1' target='_new' rel=&quot;nofollow&quot;&gt;anyone you want.&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25133660&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25133660&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@activemath.org
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/cgi-bin/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Metadata-for-ActiveMath-tp25133660p25133660.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19063411</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-19T23:09:19Z</published>
	<updated>2008-08-19T23:09:19Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;Le 20-août-08 à 01:05, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&amp;gt; I now have a directory called ActiveMath on my MacBook that mounts
&lt;br&gt;&amp;gt; /usr/local/activemath-1.0.1
&lt;br&gt;&amp;gt; I am now reading the jEdit help page &amp;quot;Creating a collection about &amp;nbsp;
&lt;br&gt;&amp;gt; free groups&amp;quot;
&lt;br&gt;&lt;br&gt;You could comment on the following pages:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://eds.activemath.org/en/node/80&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/en/node/80&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; I created the collection called free_groups
&lt;br&gt;&amp;gt; I do not understand the tree of this collection. &amp;nbsp;Where is it? &amp;nbsp;It &amp;nbsp;
&lt;br&gt;&amp;gt; is not under /usr/local/activemath-1.0.1
&lt;br&gt;&lt;br&gt;Well, it will create it under &amp;lt;activemath-home&amp;gt;/content/ (with the &amp;nbsp;
&lt;br&gt;name of the directory be the name of the collection), maybe creating &amp;nbsp;
&lt;br&gt;content. are you sure you configured activemath-home to be the &amp;nbsp;
&lt;br&gt;directory containing conf? The directory content should be aside of &amp;nbsp;
&lt;br&gt;conf.
&lt;br&gt;&lt;br&gt;&amp;gt; there is no /usr/local/activemath-1.0.1/content directory. &amp;nbsp; Maybe &amp;nbsp;
&lt;br&gt;&amp;gt; it is somewhere else?
&lt;br&gt;&amp;gt; Do I need to create it manually?
&lt;br&gt;&lt;br&gt;You may need to do so.
&lt;br&gt;&lt;br&gt;paul&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19063411&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19063411&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/19063411/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p19063411.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19060377</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-19T16:05:36Z</published>
	<updated>2008-08-19T16:05:36Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Paul:
&lt;br&gt;&lt;br&gt;I now have a directory called ActiveMath on my MacBook that mounts
&lt;br&gt;/usr/local/activemath-1.0.1
&lt;br&gt;&lt;br&gt;I am now reading the jEdit help page &amp;quot;Creating a collection about free groups&amp;quot;
&lt;br&gt;&lt;br&gt;I created the collection called free_groups
&lt;br&gt;&lt;br&gt;I do not understand the tree of this collection. &amp;nbsp;Where is it? &amp;nbsp;It is
&lt;br&gt;not under /usr/local/activemath-1.0.1
&lt;br&gt;&lt;br&gt;there is no /usr/local/activemath-1.0.1/content directory. &amp;nbsp; Maybe it
&lt;br&gt;is somewhere else? &amp;nbsp;Do I need to create it manually?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060377&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060377&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060377&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p19060377.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19060127</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-19T15:44:31Z</published>
	<updated>2008-08-19T15:44:31Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Paul:
&lt;br&gt;&lt;br&gt;2008/8/19 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060127&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; I have ActiveMath installed on a Linux (Ubuntu) server on my home LAN.
&lt;br&gt;&amp;gt;&amp;gt; I have jEdit running from Java webstart on my MacBook OSX 10.4. &amp;nbsp; So
&lt;br&gt;&amp;gt;&amp;gt; far so good.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That's a nice idea, it requires a bit of tweaks but has chances.
&lt;br&gt;&lt;br&gt;I was forced to so since I can not run jEditOQMath on my Linux
&lt;br&gt;machine. &amp;nbsp;Anyway, it makes sense, run ActiveMath on a Linux server and
&lt;br&gt;jEditOQMath on a client computer where the coding is done.
&lt;br&gt;&lt;br&gt;&amp;gt; why /conf ? It should just be /usr/local/activemath-1.0.1/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; However, when I check &amp;quot;Apply&amp;quot; I get the following message:
&lt;br&gt;&amp;gt;&amp;gt; This directory cannot be an activemath-home directory!
&lt;br&gt;&amp;gt;&amp;gt; I guess I am doing something wrong here.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The test there just checks for a lib folder with a file called
&lt;br&gt;&amp;gt; activemath.jar, so changing the path should set it.
&lt;br&gt;&lt;br&gt;Yes, that works.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060127&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060127&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19060127&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p19060127.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19059779</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-19T15:15:03Z</published>
	<updated>2008-08-19T15:15:03Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Hello Salvatore,
&lt;br&gt;&lt;br&gt;&lt;br&gt;Le 19-août-08 à 23:53, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&amp;gt; I have ActiveMath installed on a Linux (Ubuntu) server on my home LAN.
&lt;br&gt;&amp;gt; I have jEdit running from Java webstart on my MacBook OSX 10.4. &amp;nbsp; So
&lt;br&gt;&amp;gt; far so good.
&lt;br&gt;&lt;br&gt;That's a nice idea, it requires a bit of tweaks but has chances.
&lt;br&gt;&lt;br&gt;&amp;gt; In jEdit:
&lt;br&gt;&amp;gt; Options: Plugins: OQMath JEdit
&lt;br&gt;&amp;gt; - URL of your ActiveMath:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://192.168.1.1:8080/ActiveMath2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://192.168.1.1:8080/ActiveMath2/&lt;/a&gt;&amp;nbsp; &amp;nbsp;&amp;lt;- this works over the network
&lt;br&gt;&lt;br&gt;(to the Linux box I suppose, yes, that's good).
&lt;br&gt;&lt;br&gt;&amp;gt; Check Activate LibreSource update on Build &amp;nbsp;&amp;lt;- do I need to check &amp;nbsp;
&lt;br&gt;&amp;gt; this?
&lt;br&gt;&lt;br&gt;No.
&lt;br&gt;&lt;br&gt;&amp;gt; Choose the directory containing ActiveMath (local run).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Users/salvatoreenricoindiogine/AMconf
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; AMconf is an NFS export of /usr/local/activemath-1.0.1/conf directory
&lt;br&gt;&amp;gt; on the Linux server that is mounted on the MacBook. &amp;nbsp;The NFS mount
&lt;br&gt;&amp;gt; works.
&lt;br&gt;&lt;br&gt;why /conf ? It should just be /usr/local/activemath-1.0.1/
&lt;br&gt;&lt;br&gt;&amp;gt; However, when I check &amp;quot;Apply&amp;quot; I get the following message:
&lt;br&gt;&amp;gt; This directory cannot be an activemath-home directory!
&lt;br&gt;&amp;gt; I guess I am doing something wrong here.
&lt;br&gt;&lt;br&gt;The test there just checks for a lib folder with a file called &amp;nbsp;
&lt;br&gt;activemath.jar, so changing the path should set it.
&lt;br&gt;&lt;br&gt;Since you're working over a shared server, there's no other work to do.
&lt;br&gt;But if you want a looser coupling, you can use rsync scripts at upload &amp;nbsp;
&lt;br&gt;time, this is done in LeAM_calculus (if you have a special property).
&lt;br&gt;&lt;br&gt;paul&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19059779&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19059779&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/19059779/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p19059779.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-19059452</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-19T14:53:15Z</published>
	<updated>2008-08-19T14:53:15Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Greetings!
&lt;br&gt;&lt;br&gt;I have ActiveMath installed on a Linux (Ubuntu) server on my home LAN.
&lt;br&gt;&amp;nbsp;I have jEdit running from Java webstart on my MacBook OSX 10.4. &amp;nbsp; So
&lt;br&gt;far so good.
&lt;br&gt;&lt;br&gt;&lt;br&gt;In jEdit:
&lt;br&gt;&lt;br&gt;Options: Plugins: OQMath JEdit
&lt;br&gt;&lt;br&gt;URL of your ActiveMath:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://192.168.1.1:8080/ActiveMath2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://192.168.1.1:8080/ActiveMath2/&lt;/a&gt;&amp;nbsp; &amp;nbsp;&amp;lt;- this works over the network
&lt;br&gt;&lt;br&gt;Check Activate LibreSource update on Build &amp;nbsp;&amp;lt;- do I need to check this?
&lt;br&gt;&lt;br&gt;Choose the directory containing ActiveMath (local run).
&lt;br&gt;&lt;br&gt;/Users/salvatoreenricoindiogine/AMconf
&lt;br&gt;&lt;br&gt;AMconf is an NFS export of /usr/local/activemath-1.0.1/conf directory
&lt;br&gt;on the Linux server that is mounted on the MacBook. &amp;nbsp;The NFS mount
&lt;br&gt;works.
&lt;br&gt;&lt;br&gt;However, when I check &amp;quot;Apply&amp;quot; I get the following message:
&lt;br&gt;&lt;br&gt;This directory cannot be an activemath-home directory!
&lt;br&gt;&lt;br&gt;&lt;br&gt;I guess I am doing something wrong here.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19059452&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19059452&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=19059452&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p19059452.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18972165</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-13T15:11:40Z</published>
	<updated>2008-08-13T15:11:40Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Enrico,
&lt;br&gt;&lt;br&gt;this seems to be, again, a bug in the java web-start installation &amp;nbsp;
&lt;br&gt;which does not seem to be the sun one:
&lt;br&gt;&amp;nbsp; 	at &amp;nbsp;
&lt;br&gt;net 
&lt;br&gt;.sourceforge 
&lt;br&gt;.jnlp.services.XFileContents.getInputStream(XFileContents.java:68)
&lt;br&gt;can it be the javaws command in the path is still the old one?
&lt;br&gt;&lt;br&gt;thanks
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;Le 13-août-08 à 23:45, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Paul:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be interesting to debug that but I acknowledge that Java &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; web start
&lt;br&gt;&amp;gt;&amp;gt; on Linux tends to be picky. Try
&lt;br&gt;&amp;gt;&amp;gt; javaws
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I replaced OpenJDK with Sun JDK and ran the above command. &amp;nbsp;Here is
&lt;br&gt;&amp;gt; the error message:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; henk@bahji:~$ javaws
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&amp;gt; Now launching WebstartJEditLauncher
&lt;br&gt;&amp;gt; Trouble at single-instance-service:
&lt;br&gt;&amp;gt; javax.jnlp.UnavailableServiceException:
&lt;br&gt;&amp;gt; javax.jnlp.SingleInstanceService
&lt;br&gt;&amp;gt; org.activemath.author.webstart.simpleinstaller.JNLPUtil 
&lt;br&gt;&amp;gt; $JNLPUtilException:
&lt;br&gt;&amp;gt; Can't read muffin of path
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jedit-home-install-witness&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jedit-home-install-witness&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstart.simpleinstaller.JNLPUtil.getMuffinValue(JNLPUtil.java:122)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstart 
&lt;br&gt;&amp;gt; .simpleinstaller.JNLPUtil.getInstalledDirectory(JNLPUtil.java:167)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstartjedit 
&lt;br&gt;&amp;gt; .WebstartJEditLauncher 
&lt;br&gt;&amp;gt; .findjEditHomeFromJNLPUtil(WebstartJEditLauncher.java:223)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstartjedit 
&lt;br&gt;&amp;gt; .WebstartJEditLauncher.ensureJEditHome(WebstartJEditLauncher.java:207)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstartjedit.WebstartJEditLauncher.main(WebstartJEditLauncher.java: 
&lt;br&gt;&amp;gt; 91)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .DelegatingMethodAccessorImpl 
&lt;br&gt;&amp;gt; .invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;at &amp;nbsp;
&lt;br&gt;&amp;gt; net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:328)
&lt;br&gt;&amp;gt; 	at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:561)
&lt;br&gt;&amp;gt; Caused by: java.lang.reflect.UndeclaredThrowableException
&lt;br&gt;&amp;gt; 	at $Proxy8.getInputStream(Unknown Source)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstart.simpleinstaller.JNLPUtil.getMuffinValue(JNLPUtil.java:109)
&lt;br&gt;&amp;gt; 	... 10 more
&lt;br&gt;&amp;gt; Caused by: java.security.PrivilegedActionException:
&lt;br&gt;&amp;gt; java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;gt; 	at java.security.AccessController.doPrivileged(Native Method)
&lt;br&gt;&amp;gt; 	at net.sourceforge.jnlp.services.ServiceUtil 
&lt;br&gt;&amp;gt; $PrivilegedHandler.invoke(ServiceUtil.java:162)
&lt;br&gt;&amp;gt; 	... 12 more
&lt;br&gt;&amp;gt; Caused by: java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .DelegatingMethodAccessorImpl 
&lt;br&gt;&amp;gt; .invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;gt; 	at net.sourceforge.jnlp.services.ServiceUtil$PrivilegedHandler 
&lt;br&gt;&amp;gt; $1.run(ServiceUtil.java:158)
&lt;br&gt;&amp;gt; 	... 14 more
&lt;br&gt;&amp;gt; Caused by: java.io.FileNotFoundException:
&lt;br&gt;&amp;gt; /tmp/pcache/http/dave.activemath.org/~ilo/jnlpDev/jedit-home-install- 
&lt;br&gt;&amp;gt; witness
&lt;br&gt;&amp;gt; (No such file or directory)
&lt;br&gt;&amp;gt; 	at java.io.FileInputStream.open(Native Method)
&lt;br&gt;&amp;gt; 	at java.io.FileInputStream.&amp;lt;init&amp;gt;(FileInputStream.java:137)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; net 
&lt;br&gt;&amp;gt; .sourceforge 
&lt;br&gt;&amp;gt; .jnlp.services.XFileContents.getInputStream(XFileContents.java:68)
&lt;br&gt;&amp;gt; 	... 19 more
&lt;br&gt;&amp;gt; Can't find jEdit-home from JNLP.
&lt;br&gt;&amp;gt; jEdit home found: &amp;quot;null&amp;quot;
&lt;br&gt;&amp;gt; java.lang.IllegalStateException: The jEdit-home found doesn't seem to
&lt;br&gt;&amp;gt; match. Found at &amp;quot;null&amp;quot;.
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstartjedit 
&lt;br&gt;&amp;gt; .WebstartJEditLauncher.ensureJEditHome(WebstartJEditLauncher.java:211)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; org 
&lt;br&gt;&amp;gt; .activemath 
&lt;br&gt;&amp;gt; .author 
&lt;br&gt;&amp;gt; .webstartjedit.WebstartJEditLauncher.main(WebstartJEditLauncher.java: 
&lt;br&gt;&amp;gt; 91)
&lt;br&gt;&amp;gt; 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;gt; 	at &amp;nbsp;
&lt;br&gt;&amp;gt; sun 
&lt;br&gt;&amp;gt; .reflect 
&lt;br&gt;&amp;gt; .DelegatingMethodAccessorImpl 
&lt;br&gt;&amp;gt; .invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;gt; 	at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;gt; 	at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:328)
&lt;br&gt;&amp;gt; 	at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:561)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Enrico Indiogine
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mathematics Education
&lt;br&gt;&amp;gt; Texas A&amp;M University
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18972165&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/18972165/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18972165.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18971815</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-13T14:45:27Z</published>
	<updated>2008-08-13T14:45:27Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Paul:
&lt;br&gt;&lt;br&gt;2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18971815&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It would be interesting to debug that but I acknowledge that Java web start
&lt;br&gt;&amp;gt; on Linux tends to be picky. Try
&lt;br&gt;&amp;gt; &amp;nbsp;javaws
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&lt;br&gt;I replaced OpenJDK with Sun JDK and ran the above command. &amp;nbsp;Here is
&lt;br&gt;the error message:
&lt;br&gt;&lt;br&gt;henk@bahji:~$ javaws
&lt;br&gt;&lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;Now launching WebstartJEditLauncher
&lt;br&gt;Trouble at single-instance-service:
&lt;br&gt;javax.jnlp.UnavailableServiceException:
&lt;br&gt;javax.jnlp.SingleInstanceService
&lt;br&gt;org.activemath.author.webstart.simpleinstaller.JNLPUtil$JNLPUtilException:
&lt;br&gt;Can't read muffin of path
&lt;br&gt;&lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jedit-home-install-witness&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jedit-home-install-witness&lt;/a&gt;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstart.simpleinstaller.JNLPUtil.getMuffinValue(JNLPUtil.java:122)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstart.simpleinstaller.JNLPUtil.getInstalledDirectory(JNLPUtil.java:167)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstartjedit.WebstartJEditLauncher.findjEditHomeFromJNLPUtil(WebstartJEditLauncher.java:223)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstartjedit.WebstartJEditLauncher.ensureJEditHome(WebstartJEditLauncher.java:207)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstartjedit.WebstartJEditLauncher.main(WebstartJEditLauncher.java:91)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:328)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:561)
&lt;br&gt;Caused by: java.lang.reflect.UndeclaredThrowableException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at $Proxy8.getInputStream(Unknown Source)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstart.simpleinstaller.JNLPUtil.getMuffinValue(JNLPUtil.java:109)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 10 more
&lt;br&gt;Caused by: java.security.PrivilegedActionException:
&lt;br&gt;java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.security.AccessController.doPrivileged(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.services.ServiceUtil$PrivilegedHandler.invoke(ServiceUtil.java:162)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 12 more
&lt;br&gt;Caused by: java.lang.reflect.InvocationTargetException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.services.ServiceUtil$PrivilegedHandler$1.run(ServiceUtil.java:158)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 14 more
&lt;br&gt;Caused by: java.io.FileNotFoundException:
&lt;br&gt;/tmp/pcache/http/dave.activemath.org/~ilo/jnlpDev/jedit-home-install-witness
&lt;br&gt;(No such file or directory)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.io.FileInputStream.open(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.io.FileInputStream.&amp;lt;init&amp;gt;(FileInputStream.java:137)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.services.XFileContents.getInputStream(XFileContents.java:68)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ... 19 more
&lt;br&gt;Can't find jEdit-home from JNLP.
&lt;br&gt;jEdit home found: &amp;quot;null&amp;quot;
&lt;br&gt;java.lang.IllegalStateException: The jEdit-home found doesn't seem to
&lt;br&gt;match. Found at &amp;quot;null&amp;quot;.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstartjedit.WebstartJEditLauncher.ensureJEditHome(WebstartJEditLauncher.java:211)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.activemath.author.webstartjedit.WebstartJEditLauncher.main(WebstartJEditLauncher.java:91)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.reflect.Method.invoke(Method.java:616)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.Launcher.launchApplication(Launcher.java:328)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sourceforge.jnlp.Launcher$TgThread.run(Launcher.java:561)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18971815&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18971815&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18971815&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18971815.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18970356</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-13T13:09:10Z</published>
	<updated>2008-08-13T13:09:10Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Enrico,
&lt;br&gt;&lt;br&gt;believe me
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/&lt;/a&gt;&lt;br&gt;(with the trailing slash) does respond a directory list with the &amp;nbsp;
&lt;br&gt;following content:
&lt;br&gt;Index of /projects/downloads/jEditOQMath
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; • Parent Directory
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; • jEditOQMath-0.4-SNAPSHOT.tar.gz
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; • jEditOQMath-0.4-SNAPSHOT.zip
&lt;br&gt;where the two links are:
&lt;br&gt;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/jEditOQMath-0.4-SNAPSHOT.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/jEditOQMath-0.4-SNAPSHOT.tar.gz&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/jEditOQMath-0.4-SNAPSHOT.zip&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/jEditOQMath-0.4-SNAPSHOT.zip&lt;/a&gt;&lt;br&gt;&lt;br&gt;It's just the front proxy which does not relay to the right place if a &amp;nbsp;
&lt;br&gt;directory and not with slash.
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br&gt;Le 13-août-08 à 18:22, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Paul:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Sorry, it should go to:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; (note the trailing slash)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry, but this does not work. &amp;nbsp; &lt;a href=&quot;http://www.activemath.org/projects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects&lt;/a&gt;&lt;br&gt;&amp;gt; exists, but not
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Enrico
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Enrico Indiogine
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mathematics Education
&lt;br&gt;&amp;gt; Texas A&amp;M University
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18970356&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/18970356/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18970356.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18966516</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-13T09:22:39Z</published>
	<updated>2008-08-13T09:22:39Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Paul:
&lt;br&gt;&lt;br&gt;2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18966516&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry, it should go to:
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/&lt;/a&gt;&lt;br&gt;&amp;gt; (note the trailing slash)
&lt;br&gt;&lt;br&gt;Sorry, but this does not work. &amp;nbsp; &lt;a href=&quot;http://www.activemath.org/projects&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects&lt;/a&gt;&lt;br&gt;exists, but not
&lt;br&gt;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath&lt;/a&gt;&lt;br&gt;&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18966516&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18966516&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18966516&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18966516.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18963136</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-13T06:32:18Z</published>
	<updated>2008-08-13T06:32:18Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Paul:
&lt;br&gt;&lt;br&gt;2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18963136&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; netx:
&lt;br&gt;&amp;gt;&amp;gt; /tmp/cache/http/dave.activemath.org/~ilo/jnlpDev/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnkp
&lt;br&gt;&amp;gt;&amp;gt; (No such file or directory)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That tastes likes the worst javaws I've ever heard, is it java-web-start of
&lt;br&gt;&amp;gt; sun?
&lt;br&gt;&amp;gt; You can download the file then javaws &amp;lt;thei-file&amp;gt;.
&lt;br&gt;&lt;br&gt;It is actually the openjdk. &amp;nbsp; I could install the Sun JDK and see it
&lt;br&gt;that works better. &amp;nbsp; I will let you know.
&lt;br&gt;&lt;br&gt;Danke,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18963136&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18963136&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18963136&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18963136.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18957884</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-12T12:36:42Z</published>
	<updated>2008-08-12T12:36:42Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;Le 12-août-08 à 18:08, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi Paul!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18957884&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; It would be interesting to debug that but I acknowledge that Java &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; web start
&lt;br&gt;&amp;gt;&amp;gt; on Linux tends to be picky. Try
&lt;br&gt;&amp;gt;&amp;gt; javaws
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Did not work. &amp;nbsp;The error message is:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; netx: /tmp/cache/http/dave.activemath.org/~ilo/jnlpDev/jEditOQMath- 
&lt;br&gt;&amp;gt; over-jnlp-0.4-SNAPSHOT.jnkp
&lt;br&gt;&amp;gt; (No such file or directory)
&lt;/div&gt;&lt;/div&gt;That tastes likes the worst javaws I've ever heard, is it java-web- 
&lt;br&gt;start of sun?
&lt;br&gt;You can download the file then javaws &amp;lt;thei-file&amp;gt;.
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; On the jEditOQMath page, there's a download link which gives you a &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; zip with
&lt;br&gt;&amp;gt;&amp;gt; all the jars. Please note that jEditOQMath (as also included there) &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; contains
&lt;br&gt;&amp;gt;&amp;gt; a few more tweaks than just he plugins, in particular wrt copy-and- 
&lt;br&gt;&amp;gt;&amp;gt; paste and
&lt;br&gt;&amp;gt;&amp;gt; the jE button.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The dowload link does not work. &amp;nbsp;Firefox times out.
&lt;br&gt;&lt;br&gt;Sorry, it should go to:
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/projects/downloads/jEditOQMath/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/downloads/jEditOQMath/&lt;/a&gt;&lt;br&gt;(note the trailing slash)
&lt;br&gt;We had several such issues since the move to a CMS.
&lt;br&gt;&lt;br&gt;I'll fix this for next site-upload.
&lt;br&gt;&lt;br&gt;paul&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18957884&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18957884&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/18957884/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18957884.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18951075</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-12T09:08:07Z</published>
	<updated>2008-08-12T09:08:07Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Hi Paul!
&lt;br&gt;&lt;br&gt;2008/8/12 Paul Libbrecht &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18951075&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; It would be interesting to debug that but I acknowledge that Java web start
&lt;br&gt;&amp;gt; on Linux tends to be picky. Try
&lt;br&gt;&amp;gt; &amp;nbsp;javaws
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&lt;br&gt;Did not work. &amp;nbsp;The error message is:
&lt;br&gt;&lt;br&gt;netx: /tmp/cache/http/dave.activemath.org/~ilo/jnlpDev/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnkp
&lt;br&gt;(No such file or directory)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; On the jEditOQMath page, there's a download link which gives you a zip with
&lt;br&gt;&amp;gt; all the jars. Please note that jEditOQMath (as also included there) contains
&lt;br&gt;&amp;gt; a few more tweaks than just he plugins, in particular wrt copy-and-paste and
&lt;br&gt;&amp;gt; the jE button.
&lt;br&gt;&lt;br&gt;The dowload link does not work. &amp;nbsp;Firefox times out.
&lt;br&gt;&lt;br&gt;Gruessen und danke,
&lt;br&gt;&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18951075&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18951075&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18951075&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18951075.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18938604</id>
	<title>Re: jEditOQMath</title>
	<published>2008-08-11T22:53:02Z</published>
	<updated>2008-08-11T22:53:02Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Hello Enrico,
&lt;br&gt;&lt;br&gt;beware that using a different email address triggers moderation... so &amp;nbsp;
&lt;br&gt;it took me till this morning to allow yout mail.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Le 12-août-08 à 05:53, Salvatore Enrico Indiogine a écrit :
&lt;br&gt;&amp;gt; I have installed ActiveMath on a Ubuntu PC. &amp;nbsp; I have jEdit-OQMath
&lt;br&gt;&amp;gt; running on a Mac using Java Webstart.
&lt;br&gt;&lt;br&gt;&amp;gt; I am not able to run
&lt;br&gt;&amp;gt; jEdit-OQMath from Java Webstart on he Ubuntu PC. &amp;nbsp; I receive an
&lt;br&gt;&amp;gt; UnavailableServiceException error when I start jEdit-OQMath using
&lt;br&gt;&amp;gt; webstart on Ubuntu.
&lt;br&gt;&lt;br&gt;It would be interesting to debug that but I acknowledge that Java web &amp;nbsp;
&lt;br&gt;start on Linux tends to be picky. Try
&lt;br&gt;&amp;nbsp; javaws &amp;nbsp;&lt;a href=&quot;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dave.activemath.org/~ilo/jnlpDev/jEditOQMath/jnlps/jEditOQMath-over-jnlp-0.4-SNAPSHOT.jnlp&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; However, I am able to install jEdit on Ubuntu and have installed all
&lt;br&gt;&amp;gt; the plugins that jEdit-OQMath has except the following:
&lt;br&gt;&amp;gt; &amp;nbsp; OQMath, Templates, Jelly Plugin, and OMPEditor.
&lt;br&gt;&amp;gt; Is it possible to obtain these plugins and install them on my Ubuntu &amp;nbsp;
&lt;br&gt;&amp;gt; PC?
&lt;br&gt;&lt;br&gt;On the jEditOQMath page, there's a download link which gives you a zip &amp;nbsp;
&lt;br&gt;with all the jars. Please note that jEditOQMath (as also included &amp;nbsp;
&lt;br&gt;there) contains a few more tweaks than just he plugins, in particular &amp;nbsp;
&lt;br&gt;wrt copy-and-paste and the jE button.
&lt;br&gt;&lt;br&gt;hope it helps
&lt;br&gt;&lt;br&gt;paul&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18938604&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18938604&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/18938604/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18938604.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18938419</id>
	<title>jEditOQMath</title>
	<published>2008-08-11T20:53:04Z</published>
	<updated>2008-08-11T20:53:04Z</updated>
	<author>
		<name>Salvatore Enrico Indiogine</name>
	</author>
	<content type="html">Greetings!
&lt;br&gt;&lt;br&gt;I have installed ActiveMath on a Ubuntu PC. &amp;nbsp; I have jEdit-OQMath
&lt;br&gt;running on a Mac using Java Webstart. &amp;nbsp;I am not able to run
&lt;br&gt;jEdit-OQMath from Java Webstart on he Ubuntu PC. &amp;nbsp; I receive an
&lt;br&gt;UnavailableServiceException error when I start jEdit-OQMath using
&lt;br&gt;webstart on Ubuntu.
&lt;br&gt;&lt;br&gt;However, I am able to install jEdit on Ubuntu and have installed all
&lt;br&gt;the plugins that jEdit-OQMath has except the following:
&lt;br&gt;&lt;br&gt;OQMath, Templates, Jelly Plugin, and OMPEditor.
&lt;br&gt;&lt;br&gt;Is it possible to obtain these plugins and install them on my Ubuntu PC?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Enrico
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Enrico Indiogine
&lt;br&gt;&lt;br&gt;Mathematics Education
&lt;br&gt;Texas A&amp;M University
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18938419&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;hindiogine@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18938419&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18938419&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jEditOQMath-tp18938419p18938419.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18189688</id>
	<title>Re: Annoucement: LaTeX2OQMath</title>
	<published>2008-06-27T06:24:30Z</published>
	<updated>2008-06-27T06:24:30Z</updated>
	<author>
		<name>Michael Kohlhase-2</name>
	</author>
	<content type="html">Dear Eric,
&lt;br&gt;&lt;br&gt;this is nice to see such an announcement. Could you also post an OQMath
&lt;br&gt;and OMDoc version of your test data on the web site?
&lt;br&gt;&lt;br&gt;&amp;nbsp;From the code I could not really see how the system works. But there is
&lt;br&gt;one way, where we can help you; we have a LaTeXML web service running at
&lt;br&gt;&lt;a href=&quot;http://tex2xml.kwarc.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tex2xml.kwarc.info&lt;/a&gt;&amp;nbsp;(well actually, it seems to be down just now,
&lt;br&gt;but we will restart it soon :-)). You could just integrate the curl
&lt;br&gt;expression in the docu into your web script.
&lt;br&gt;&lt;br&gt;The background for this web service is the arXMLiv project, which
&lt;br&gt;extends the set of LaTeXML bindings (and thus the packages you can use
&lt;br&gt;in your LaTeX sources. On &lt;a href=&quot;http://arXMLiv.kwarc.info&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://arXMLiv.kwarc.info&lt;/a&gt;, you can find the
&lt;br&gt;project and over 200000 &amp;nbsp;LaTeX papers and their xhtml+mathml form you
&lt;br&gt;could test your conversion.
&lt;br&gt;&lt;br&gt;Michael
&lt;br&gt;&lt;br&gt;Eric Andres wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear ActiveMath users,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We have implemented a working prototype of a conversion tool 
&lt;br&gt;&amp;gt; transforming LaTeX to OQMath.
&lt;br&gt;&amp;gt; For more information and downloads, please visit &amp;nbsp;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.activemath.org/~eandres/l2o.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/~eandres/l2o.php&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Eric Andrès
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18189688&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18189688&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;-- 
&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;Prof. Dr. Michael Kohlhase, &amp;nbsp; &amp;nbsp; &amp;nbsp; Office: Research 1, Room 62
&lt;br&gt;Professor of Computer Science &amp;nbsp; &amp;nbsp; Campus Ring 12,
&lt;br&gt;School of Engineering &amp; Science &amp;nbsp; D-28759 Bremen, Germany
&lt;br&gt;Jacobs University Bremen* &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; tel/fax: +49 421 200-3140/-493140
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18189688&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;m.kohlhase@...&lt;/a&gt; &lt;a href=&quot;http://kwarc.info/kohlhase&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://kwarc.info/kohlhase&lt;/a&gt;&lt;br&gt;skype: m.kohlhase &amp;nbsp; * International University Bremen until Feb. 2007
&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18189688&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18189688&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Annoucement%3A-LaTeX2OQMath-tp18153789p18189688.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-18153789</id>
	<title>Annoucement: LaTeX2OQMath</title>
	<published>2008-06-27T05:07:16Z</published>
	<updated>2008-06-27T05:07:16Z</updated>
	<author>
		<name>Eric Andres-2</name>
	</author>
	<content type="html">Dear ActiveMath users,
&lt;br&gt;&lt;br&gt;We have implemented a working prototype of a conversion tool &amp;nbsp;
&lt;br&gt;transforming LaTeX to OQMath.
&lt;br&gt;For more information and downloads, please visit &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/~eandres/l2o.php&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/~eandres/l2o.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Eric Andrès
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18153789&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=18153789&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Annoucement%3A-LaTeX2OQMath-tp18153789p18153789.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16896199</id>
	<title>Re: enhanced access to users@activemath.org</title>
	<published>2008-04-25T04:58:36Z</published>
	<updated>2008-04-25T04:58:36Z</updated>
	<author>
		<name>Martin Homik</name>
	</author>
	<content type="html">Oh, I should have invested a few more minutes. You can also access the forum
&lt;br&gt;via Nabble's web site at:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.nabble.com/ActiveMath-Users-f32974.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/ActiveMath-Users-f32974.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;It's advantage is that the forum uses the full window width.
&lt;br&gt;&lt;br&gt;Happy discussion!
&lt;br&gt;MH
&lt;br&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dear Members of the ActiveMath Users mailing-list,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am happy to announce a slightly enhanced version of our mailing-list 
&lt;br&gt;&amp;gt; archive thanks to the usage of the Nabble Forum service.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/projects/maillists/users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/maillists/users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; you now find a browsable archive of our mailing-list.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This mail is also to invite you to raise the usage of this list for 
&lt;br&gt;&amp;gt; any technical question, also authoring questions instead of direct 
&lt;br&gt;&amp;gt; mailing to individual developers of ActiveMath.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks in advance
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; paul
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896199&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896199&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/enhanced-access-to-users%40activemath.org-tp16895372p16896199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16896197</id>
	<title>Re: enhanced access to users@activemath.org</title>
	<published>2008-04-25T04:50:38Z</published>
	<updated>2008-04-25T04:50:38Z</updated>
	<author>
		<name>Martin Homik</name>
	</author>
	<content type="html">Is there a link to the Nabbles Discussion Forum? Or is the forum completely
&lt;br&gt;hosted at activemath.org?
&lt;br&gt;&lt;br&gt;MH
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear Members of the ActiveMath Users mailing-list,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am happy to announce a slightly enhanced version of our mailing-list 
&lt;br&gt;&amp;gt; archive thanks to the usage of the Nabble Forum service.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.activemath.org/projects/maillists/users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/maillists/users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; you now find a browsable archive of our mailing-list.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This mail is also to invite you to raise the usage of this list for 
&lt;br&gt;&amp;gt; any technical question, also authoring questions instead of direct 
&lt;br&gt;&amp;gt; mailing to individual developers of ActiveMath.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thanks in advance
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; paul
&lt;br&gt;&amp;gt; ------------------------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896197&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896197&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896197&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16896197&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/enhanced-access-to-users%40activemath.org-tp16895372p16896197.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16895372</id>
	<title>enhanced access to users@activemath.org</title>
	<published>2008-04-25T04:11:55Z</published>
	<updated>2008-04-25T04:11:55Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;br&gt;Dear Members of the ActiveMath Users mailing-list,
&lt;br&gt;&lt;br&gt;I am happy to announce a slightly enhanced version of our mailing- 
&lt;br&gt;list archive thanks to the usage of the Nabble Forum service.
&lt;br&gt;&lt;br&gt;On:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.activemath.org/projects/maillists/users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/projects/maillists/users&lt;/a&gt;&lt;br&gt;&lt;br&gt;you now find a browsable archive of our mailing-list.
&lt;br&gt;&lt;br&gt;This mail is also to invite you to raise the usage of this list for &amp;nbsp;
&lt;br&gt;any technical question, also authoring questions instead of direct &amp;nbsp;
&lt;br&gt;mailing to individual developers of ActiveMath.
&lt;br&gt;&lt;br&gt;thanks in advance
&lt;br&gt;&lt;br&gt;paul&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16895372&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16895372&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Users@...&lt;/a&gt;@dfki.de
&lt;br&gt;&lt;a href=&quot;http://www.dfki.de/mailman/listinfo/users.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.dfki.de/mailman/listinfo/users.activemath.org&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/16895372/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/enhanced-access-to-users%40activemath.org-tp16895372p16895372.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467840</id>
	<title>ActiveMath Release 1.0 available</title>
	<published>2008-02-01T05:21:55Z</published>
	<updated>2008-02-01T05:21:55Z</updated>
	<author>
		<name>Stefan Winterstein</name>
	</author>
	<content type="html">&lt;br&gt;We are pleased to announce that release 1.0 of ActiveMath is finally
&lt;br&gt;available.
&lt;br&gt;&lt;br&gt;ActiveMath 1.0 is a stabilization of years of ActiveMath development and
&lt;br&gt;a polish of most of its features. The highlights of this release are:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; * New learner model SLM (Simple Learner Model)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Slumb is now the default MBase
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o supports content reloading
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o improved error reporting for authors
&lt;br&gt;&amp;nbsp; &amp;nbsp; * New languages for the user interface:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Français (French)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Magyar (Hungarian)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Čeština (Czech)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; o Nederlands (Dutch)
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Extended user help system
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Improved overall performance and stabilty
&lt;br&gt;&amp;nbsp; &amp;nbsp; * Now licencsed under the d-fsl (German Free Software License)
&lt;br&gt;&lt;br&gt;ActiveMath is a web-based platform for creation of Mathematics learning
&lt;br&gt;environments. It supports the user by integrated semantic mathematical
&lt;br&gt;input and output, by interactive exercises, by learner-modelling and
&lt;br&gt;course generation. More information about ActiveMath can be found at
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;ActiveMath 1.0 is licensed under the d-fsl (German Free Software
&lt;br&gt;License). You can download and install the server application from
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.activemath.org/downloads&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/downloads&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;An installation of ActiveMath 1.0 is currently running under the
&lt;br&gt;preliminary address &amp;lt;&lt;a href=&quot;http://am-preview.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://am-preview.activemath.org&lt;/a&gt;&amp;gt;, and will soon
&lt;br&gt;be installed on our regular demo server &amp;lt;&lt;a href=&quot;http://demo.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://demo.activemath.org&lt;/a&gt;&amp;gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Enjoy!
&lt;br&gt;&lt;br&gt;Paul, Stefan and the whole ActiveMath group
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ActiveMath-Release-1.0-available-tp16467840p16467840.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467839</id>
	<title>ActiveMath 1.0 release candidate 1</title>
	<published>2007-12-21T02:26:52Z</published>
	<updated>2007-12-21T02:26:52Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;&lt;base href=&quot;http://eds.activemath.org/?q=en/node/196&quot;&gt;
&lt;div style=&quot;font-family: 'Lucida Grande'; font-size: 12px; color: black; text-align: left; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; &quot;&gt;&lt;h2&gt;&lt;p style=&quot;margin: 0.0px 0.0px 14.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;5&quot; style=&quot;font: 18.0px Lucida Grande&quot;&gt;&lt;b&gt;ActiveMath 1.0 release candidate 1&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;ActiveMath 1.0 is nearing completion and we are happy to announce the availability of the release candidate 1. It can be seen at: &lt;a href=&quot;http://am-preview.activemath.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#2500ed&quot; style=&quot;color: #2500ed&quot;&gt;&lt;u&gt;http://am-preview.activemath.org/&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;.&lt;/font&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;ActiveMath is a web-based platform for creation Mathematics learning environments. It supports the user by integrated semantic mathematical input and output, by interactive exercises, by learner-modelling and course generation. More information about ActiveMath can be read at &lt;a href=&quot;http://www.activemath.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#2500ed&quot; style=&quot;color: #2500ed&quot;&gt;&lt;u&gt;http://www.activemath.org&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;ActiveMath 1.0 is a stabilization of the ActiveMath development and a polish of most of its features. We would be looking forward to all interested parties to ActiveMath to actually give a spin at testing this installation and tracking any issue encountered.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;What has changed ? Lots since the LeActiveMath releases… among others the addition of languages (now ActiveMath speaks 9 languages), the support for several computer-algebra-systems, and the maturation of most components. Detailed changes can be seen on the &lt;a href=&quot;http://jira.activemath.org/browse/AMATH?report=com.atlassian.jira.plugin.system.project:roadmap-panel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;font color=&quot;#2500ed&quot; style=&quot;color: #2500ed&quot;&gt;&lt;u&gt;jira detailed release notes&lt;/u&gt;&lt;/font&gt;&lt;/a&gt;.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;If all goes well, the release 1.0 should happen early in January.&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;Enjoy!&lt;/font&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0.0px 0.0px 12.0px 0.0px&quot;&gt;&lt;font face=&quot;Lucida Grande&quot; size=&quot;3&quot; style=&quot;font: 12.0px Lucida Grande&quot;&gt;Stefan, Paul, and the whole ActiveMath Group&lt;/font&gt;&lt;/p&gt;&lt;/h2&gt;&lt;/span&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (2K) &lt;a href=&quot;http://old.nabble.com/attachment/16467839/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ActiveMath-1.0-release-candidate-1-tp16467839p16467839.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467838</id>
	<title>Announce: ActiveMath Authoring Online Tutorial | eds.activemath.org</title>
	<published>2007-03-30T14:12:46Z</published>
	<updated>2007-03-30T14:12:46Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">&lt;HTML xmlns=&quot;http://www.w3.org/1999/xhtml&quot; lang=&quot;en&quot; xml:lang=&quot;en&quot;&gt;&lt;BODY style=&quot;word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; &quot;&gt;&lt;BASE href=&quot;http://eds.activemath.org/?q=en/online-tutorial-0/announce&quot;&gt;&lt;H2 style=&quot;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;Announce: First ActiveMath Authoring Online Tutorial&lt;/H2&gt;&lt;DIV class=&quot;node&quot;&gt;&lt;DIV class=&quot;content&quot;&gt;&lt;P style=&quot;text-align: justify;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;We are starting a series of online tutorials for authoring ActiveMath content. The first series will be on April 20th and May 4th, 11th, 18th, and 25th. The goal of these tutorials is to introduce practically to the current concepts and tools to create content for the ActiveMath learning environment using a computer that authors are familiar with.&lt;/P&gt;&lt;P style=&quot;text-align: justify;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;Participants are expected to attend using a computer with at least 1Gb of RAM and 1GHz of CPU as well as a high-speed internet connection (at least 512kb/s).&lt;/P&gt;&lt;P style=&quot;text-align: justify;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;A familiarity with web-browsing and source-authoring is exptected. Participants’ visions for the usage of the ActiveMath server will be requested to be presented.&lt;/P&gt;&lt;P style=&quot;text-align: justify;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;Registrations should be done to Paul Libbrecht &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16467838&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt; providing details of their machines’ environment. They will be requested to install all needed components as a first shot and we shall verify this installation the week before the first tutorial using remote computer control methods. Participants will be expected to experiment the authoring activities in the weeks between the tutorials.&lt;/P&gt;&lt;P style=&quot;border-spacing: 2px 2px; &quot;&gt;We look forward to your participation. &lt;/P&gt;&lt;P style=&quot;border-spacing: 2px 2px; &quot;&gt;Note that the number of participants is limited to 8.&lt;/P&gt;&lt;P style=&quot;text-align: right;-khtml-border-horizontal-spacing: 2px; -khtml-border-vertical-spacing: 2px; &quot;&gt;paul (and the other trainers)&lt;/P&gt;&lt;P style=&quot;border-spacing: 2px 2px; &quot;&gt;(&lt;A href=&quot;http://eds.activemath.org/?q=en/online-tutorial-0/announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&lt;SPAN class=&quot;Apple-style-span&quot; style=&quot;border-spacing: 0px 0px;&quot;&gt;this announce&lt;/SPAN&gt;&lt;/A&gt; is on the web and more details will be posted there).&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Announce%3A-ActiveMath-Authoring-Online-Tutorial-%7C-eds.activemath.org-tp16467838p16467838.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467837</id>
	<title>ActiveMath Authoring and Discovery Tutorial Jan 30th - Feb 1st 2007</title>
	<published>2006-12-19T20:57:52Z</published>
	<updated>2006-12-19T20:57:52Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Dear ActiveMath interested,
&lt;br&gt;&lt;br&gt;our group will be organizing an ActiveMath authoring and discovery
&lt;br&gt;tutorial on January 30th and Feb 1st 2007 at DFKI &amp;nbsp;in Saarbrücken, Germany.
&lt;br&gt;&lt;br&gt;This workshop will feature a strong authoring tutorial but will be based
&lt;br&gt;on an active dialogue: expectations of each participants about the
&lt;br&gt;ActiveMath learning environment will be discussed and approaches to
&lt;br&gt;realize them in ActiveMath will be introduced and realized concretely.
&lt;br&gt;&lt;br&gt;It will provide participants with strong insights on the
&lt;br&gt;usage and capabilities of ActiveMath as well as the authoring tools that
&lt;br&gt;exist for it.
&lt;br&gt;&lt;br&gt;It is aimed at persons comfortable with the usage of web-browsers and
&lt;br&gt;text-editors.
&lt;br&gt;&lt;br&gt;The workshop will start at 10:00AM on January 30th (with preliminary
&lt;br&gt;set-ups) and end on Feb 1st at 15:00 after a presentation of the results.
&lt;br&gt;&lt;br&gt;It will be lead by members of the ActiveMath group with an
&lt;br&gt;active involvement of each participant. The participation is free of
&lt;br&gt;charge, in exchange, we expect this participation to be logged and
&lt;br&gt;analyzed for evaluation purposes.
&lt;br&gt;&lt;br&gt;The participants are expected to:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; 1. send us a mail of pre-registration until Jan 10th indicating their
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;names and relevant capabilities (please include experience and
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;names of relevant XML, text, html, TeX, Wikis, word-processing,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;RDF, concept-mapping, adaptive hypermedia, LMS, CMS tools)
&lt;br&gt;&amp;nbsp; &amp;nbsp; 2. send us until Jan 15th about a page describing the content they
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;wish be realized in ActiveMath, with the most amount of references
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;and URLs, along with pointers to two e-learning environment demoes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;they find good.
&lt;br&gt;&amp;nbsp; &amp;nbsp; 3. participate to the tutorial actively with concrete realizations
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;and critiques of others' projects
&lt;br&gt;&amp;nbsp; &amp;nbsp; 4. bring a laptop which is capable of running ActiveMath server (min.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1GHz, and 512 Mb of RAM) with wifi card, having Mozilla 1.5 or
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;later and a java development environment version 1.4 or later
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;pre-installed
&lt;br&gt;&lt;br&gt;Linux desktops, with KDE environment, can be arranged to accomodate for
&lt;br&gt;expectation 4).
&lt;br&gt;&lt;br&gt;Registration will only be accepted after the expectations 1) and 2) are
&lt;br&gt;met. Doing this enables us to make sure that the system is ready to
&lt;br&gt;accomodate such wishes. It has been our training experience that caring
&lt;br&gt;for such in advance guarantees that small glitches are ironned out,
&lt;br&gt;permitting, e.g., a new file-type to be properly served.
&lt;br&gt;&lt;br&gt;More details about the tutorial will be posted on:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://eds.activemath.org/?q=en/AuthTrain-Jan2007&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org/?q=en/AuthTrain-Jan2007&lt;/a&gt;&lt;br&gt;Questions can be addressed to Paul Libbrecht, by email at
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16467837&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul@...&lt;/a&gt;.
&lt;br&gt;Please contact our secretaries, Irmtraud Stein or Astrid Thönes, for
&lt;br&gt;help in finding accomodations in Saabruecken: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16467837&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stein@...&lt;/a&gt; or
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=16467837&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Sek-DMAS@...&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/16467837/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ActiveMath-Authoring-and-Discovery-Tutorial-Jan-30th---Feb-1st-2007-tp16467837p16467837.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467836</id>
	<title>announcing eds.activemath.org</title>
	<published>2006-10-17T07:08:35Z</published>
	<updated>2006-10-17T07:08:35Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I wanted to drop a line about the ongoing construction of
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://eds.activemath.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://eds.activemath.org&lt;/a&gt;&lt;br&gt;meant to become the online community of ActiveMath authors, users, and 
&lt;br&gt;other enjoyers.
&lt;br&gt;&lt;br&gt;As a wiki, this content-management-system is open for everyone to 
&lt;br&gt;register and may be used with a plain-text input syntax (called textile).
&lt;br&gt;This system does a bit more though and allows the input for complete 
&lt;br&gt;HTML if wished, or using a visual html editor, it supports various forms 
&lt;br&gt;and provides forum and chat communication channels.
&lt;br&gt;Many actions will be, in the future, doable by mail even, thus making it 
&lt;br&gt;possible to have the comfort of a &amp;nbsp;(well archived) mailing-list.
&lt;br&gt;By doing this, I hope to bring to a more visible space the very many 
&lt;br&gt;fruitful exchanges I had with many authors and lead them faster to 
&lt;br&gt;tangible results.
&lt;br&gt;Get there, have a look, play around, ask questions, make blog or a 
&lt;br&gt;profile...
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;smime.p7s&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/16467836/0/smime.p7s&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/announcing-eds.activemath.org-tp16467836p16467836.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467835</id>
	<title>Re: AM-use workshop on usages of ActiveMath</title>
	<published>2006-04-05T05:50:22Z</published>
	<updated>2006-04-05T05:50:22Z</updated>
	<author>
		<name>polx</name>
	</author>
	<content type="html">Unfortunately, we shall not make this workshop happen this year.
&lt;br&gt;Better chances for next year.
&lt;br&gt;&lt;br&gt;paul
&lt;br&gt;&lt;br&gt;Paul Libbrecht wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The ActiveMath Group is currently planning a workshop to discuss the 
&lt;br&gt;&amp;gt; many facets of using the ActiveMath environment.
&lt;br&gt;&amp;gt; It would happen in Saarbrücken either the 6-7th of July or 24-25th of 
&lt;br&gt;&amp;gt; August of this year.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Would you consider taking part ?
&lt;br&gt;&amp;gt; Would you present a vision or experience ?
&lt;br&gt;&amp;gt; Which dates would suit you ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; thank you in advance
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Paul Libbrecht, George Goguadze, and the ActiveMath Group
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AM-use-workshop-on-usages-of-ActiveMath-tp16467832p16467835.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-16467834</id>
	<title>Re: AM-use workshop on usages of ActiveMath</title>
	<published>2006-03-08T00:11:20Z</published>
	<updated>2006-03-08T00:11:20Z</updated>
	<author>
		<name>Carsten Ullrich</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;Paul Libbrecht wrote:
&lt;br&gt;&amp;gt; It would happen in Saarbrücken either the 6-7th of July or 24-25th of 
&lt;br&gt;&amp;gt; August of this year.
&lt;br&gt;&lt;br&gt;am 6-7 Juli soll auch das LeAM Projektmeeting stattfinden (wurde so in 
&lt;br&gt;Malaga beschlossen), oder?
&lt;br&gt;&lt;br&gt;Carsten
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Carsten Ullrich
&lt;br&gt;Deutsches Forschungszentrum für Künstliche Intelligenz/
&lt;br&gt;German Research Center for Artificial Intelligence
&lt;br&gt;Stuhlsatzenhausweg 3
&lt;br&gt;D-66123 Saarbrücken
&lt;br&gt;Germany
&lt;br&gt;Tel: +49-(0)681-302-5370
&lt;br&gt;Fax: +49-(0)681-302-2235
&lt;br&gt;&lt;a href=&quot;http://www.activemath.org/~cullrich&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/~cullrich&lt;/a&gt;&lt;br&gt;vcard: &lt;a href=&quot;http://www.activemath.org/~cullrich/cullrich.vcf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.activemath.org/~cullrich/cullrich.vcf&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/AM-use-workshop-on-usages-of-ActiveMath-tp16467832p16467834.html" />
</entry>

</feed>
