mathlib-commitlog Mailing List for JMathLib - Octave, Matlab clone in java (Page 17)
Status: Beta
Brought to you by:
st_mueller
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(4) |
Aug
(150) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(233) |
Feb
(86) |
Mar
(32) |
Apr
(26) |
May
(73) |
Jun
(45) |
Jul
(23) |
Aug
(23) |
Sep
(5) |
Oct
(80) |
Nov
(11) |
Dec
(11) |
| 2008 |
Jan
|
Feb
|
Mar
(13) |
Apr
(3) |
May
(7) |
Jun
(30) |
Jul
(12) |
Aug
(12) |
Sep
|
Oct
|
Nov
(78) |
Dec
(78) |
| 2009 |
Jan
(214) |
Feb
(79) |
Mar
(20) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <st_...@us...> - 2008-11-30 16:24:20
|
Revision: 509
http://mathlib.svn.sourceforge.net/mathlib/?rev=509&view=rev
Author: st_mueller
Date: 2008-11-30 16:24:14 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java 2008-11-30 16:21:29 UTC (rev 508)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java 2008-11-30 16:24:14 UTC (rev 509)
@@ -334,9 +334,8 @@
(pToken instanceof PowerOperatorToken) )
Errors.throwParserException("multiple operators ^");
-
+ ErrorLogger.debugLine("PARSER op+op: "+nextToken);
ErrorLogger.debugLine("PARSER op+op: "+pToken);
- ErrorLogger.debugLine("PARSER op+op: "+nextToken);
if(nextToken instanceof AssignmentOperatorToken)
{
@@ -353,6 +352,15 @@
ErrorLogger.debugLine("Parser: dot-operator");
retToken = parseDotOperator(operandStack, deliTyp);
}
+ else if((nextToken instanceof AddSubOperatorToken) &&
+ (pToken instanceof AssignmentOperatorToken))
+ {
+ // += or -=
+ ErrorLogger.debugLine("Parser: += or -=");
+ nextToken = getNextToken(deliTyp);
+ retToken = parseAssignmentOperator(nextToken, operandStack);
+
+ }
else if( (nextToken instanceof AddSubOperatorToken)
|| (nextToken instanceof MulDivOperatorToken)
|| (nextToken instanceof PowerOperatorToken)
@@ -591,7 +599,7 @@
/* @return expression of assignment (e.g. a=3) */
private OperandToken parseAssignmentOperator(Token currentToken, Stack operandStack)
{
- // operator (this should be a "=")
+ // operator (this should be a "=" or ("+" for +=) or ("-" for -=))
OperatorToken operator = (OperatorToken)currentToken;
//parse right parameter
@@ -601,7 +609,19 @@
OperandToken leftSide = (OperandToken)operandStack.pop();
/* create new expression */
- Expression tree = new Expression(operator, leftSide, rightSide);
+ Expression tree = null;
+ if (currentToken instanceof AssignmentOperatorToken)
+ {
+ // e.g. a=8
+ tree = new Expression(operator, leftSide, rightSide);
+ }
+ else if (currentToken instanceof AddSubOperatorToken)
+ {
+ // e.g. a+=8
+ tree = new Expression(operator, rightSide, new DoubleNumberToken(1.0));
+ tree = new Expression(new AssignmentOperatorToken(), leftSide, tree);
+ // ???????
+ }
return tree;
} // end parseAssignmentOperator
@@ -1445,14 +1465,15 @@
boolean numberIndicatorB = false; //
boolean singleIndicatorB = false; //
boolean imagIndicatorB = false; //
-
+ System.out.println("*+*");
// remove spaces between "[" and first element (e.g. [ 2,3] -> [2,3]
while (isExpectedDelimiter(peekNextToken(MATRIX), ' '))
getNextToken();
-
+ System.out.println("*++*");
// parse code of matrices (e.g. [1,2,3;4,5,6] or [1 sin(2) 3; 4 5+1 a]
while(!endMatrix)
{
+ System.out.println("**");
// get next parameter (whitespaces are treated as delimiter, too)
OperandToken nextParameter = parseArithExpression(MATRIX);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 16:21:32
|
Revision: 508
http://mathlib.svn.sourceforge.net/mathlib/?rev=508&view=rev
Author: st_mueller
Date: 2008-11-30 16:21:29 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
better handling of updates
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-30 16:21:05 UTC (rev 507)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-30 16:21:29 UTC (rev 508)
@@ -63,6 +63,16 @@
getInterpreter().displayText("No update available available");
return null;
}
+
+ if (updateVersionS.equals("full_download_required"))
+ {
+ getInterpreter().displayText("\n");
+ getInterpreter().displayText("Full download required in order to update!");
+ getInterpreter().displayText("Please visit www.jmathlib.de for details.");
+ getInterpreter().displayText("\n");
+ return null;
+ }
+
getInterpreter().displayText("updating to version >"+updateVersionS+"< \n");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 16:21:07
|
Revision: 507
http://mathlib.svn.sourceforge.net/mathlib/?rev=507&view=rev
Author: st_mueller
Date: 2008-11-30 16:21:05 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
better handling for update information
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
Modified: JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
===================================================================
--- JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2008-11-30 16:18:59 UTC (rev 506)
+++ JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2008-11-30 16:21:05 UTC (rev 507)
@@ -238,7 +238,8 @@
this.setTitle(TITLE + " - Console Window");
// in case an update is available inform the user
- if (interpreter.prefs.getLocalProperty("update.newversionavailable").equals("yes"))
+ String u = interpreter.prefs.getLocalProperty("update.newversionavailable");
+ if ((u!=null) && u.equals("yes"))
{
this.setTitle(TITLE + " - (NEW version available: type update at prompt)");
String s = interpreter.prefs.getLocalProperty("update.newversionavailable.message01");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 16:19:02
|
Revision: 506
http://mathlib.svn.sourceforge.net/mathlib/?rev=506&view=rev
Author: st_mueller
Date: 2008-11-30 16:18:59 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/JMathLib.properties
Modified: JMathLib/trunk/JMathLib.properties
===================================================================
--- JMathLib/trunk/JMathLib.properties 2008-11-30 15:54:18 UTC (rev 505)
+++ JMathLib/trunk/JMathLib.properties 2008-11-30 16:18:59 UTC (rev 506)
@@ -20,8 +20,8 @@
update.site.primary=http://www.jmathlib.de/checkForUpdates/
update.site.backup=http://mathlib.sourceforge.net/checkForUpdates/
update.intervall=1
-update.date.last=2008/11/30
-update.date.next=2008/12/01
+update.date.last=2008/10/30
+update.date.next=2008/11/01
update.errors=0
update.message="welcome to the new version of JMathLib"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 15:54:23
|
Revision: 505
http://mathlib.svn.sourceforge.net/mathlib/?rev=505&view=rev
Author: st_mueller
Date: 2008-11-30 15:54:18 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
jmathlib.version should be in JMathLib.properties for first startup. It will be copied later on the JMathLib.local.properties.
Modified Paths:
--------------
JMathLib/trunk/JMathLib.local.properties
Modified: JMathLib/trunk/JMathLib.local.properties
===================================================================
--- JMathLib/trunk/JMathLib.local.properties 2008-11-30 15:39:23 UTC (rev 504)
+++ JMathLib/trunk/JMathLib.local.properties 2008-11-30 15:54:18 UTC (rev 505)
@@ -8,4 +8,3 @@
update.date.next=00.00.00
update.intervall=1
update.date.last=2008/06/06
-jmathlib.version=0/9/0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 15:39:27
|
Revision: 504
http://mathlib.svn.sourceforge.net/mathlib/?rev=504&view=rev
Author: st_mueller
Date: 2008-11-30 15:39:23 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
added message for update information
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
Modified: JMathLib/trunk/src/jmathlib/ui/awt/GUI.java
===================================================================
--- JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2008-11-30 15:38:51 UTC (rev 503)
+++ JMathLib/trunk/src/jmathlib/ui/awt/GUI.java 2008-11-30 15:39:23 UTC (rev 504)
@@ -226,16 +226,31 @@
interpreter = new Interpreter(runningStandalone);
interpreter.setOutputPanel(answer);
+
+ this.setTitle(TITLE + " - [4/4] running startup script");
+ interpreter.executeExpression("startup;");
+ //interpreter.executeExpression("messageoftheday");
+ answer.displayPrompt();
+
// silent check for updates
interpreter.executeExpression("checkForUpdates('-silent')");
+ this.setTitle(TITLE + " - Console Window");
+
+ // in case an update is available inform the user
+ if (interpreter.prefs.getLocalProperty("update.newversionavailable").equals("yes"))
+ {
+ this.setTitle(TITLE + " - (NEW version available: type update at prompt)");
+ String s = interpreter.prefs.getLocalProperty("update.newversionavailable.message01");
+ if (s==null)
+ answer.displayText("A NEW version of JMathLib is available\n type update or visit www.jmathlib.de");
+ else
+ answer.displayText(s);
+
+ answer.displayPrompt();
+ }
- this.setTitle(TITLE + " - [4/4] running startup script");
- interpreter.executeExpression("startup;");
- answer.displayPrompt();
-
- this.setTitle(TITLE + " - Console Window");
-
+
}
/**The main console initializer.*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 15:38:53
|
Revision: 503
http://mathlib.svn.sourceforge.net/mathlib/?rev=503&view=rev
Author: st_mueller
Date: 2008-11-30 15:38:51 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/build.xml
Modified: JMathLib/trunk/build.xml
===================================================================
--- JMathLib/trunk/build.xml 2008-11-30 15:37:41 UTC (rev 502)
+++ JMathLib/trunk/build.xml 2008-11-30 15:38:51 UTC (rev 503)
@@ -165,7 +165,7 @@
<!-- xml to html -->
<target name="xmltohtml" depends="">
- <java jar="./libs/saxon.jar" fork="true">
+ <java jar="libs/saxon.jar" fork="true">
<arg value='doc/src/doc.xml' />
<arg value='doc/DocBook/xsl/html/chunk2.xsl' />
<arg value="base.dir=${dist.dir}/handbook/" />
@@ -185,7 +185,7 @@
<!-- xml to fo -->
<target name="xmltofo" depends="">
- <java jar="./libs/saxon.jar" fork="true">
+ <java jar="libs/saxon.jar" fork="true">
<arg line="-o doc/src/doc.fo doc/src/doc.xml
doc/DocBook/xsl/fo/docbook2.xsl" />
<arg value='paper.type="A4"' />
@@ -197,19 +197,19 @@
<arg value='generate.index="1"' />
</java>
</target>
-
+
<!-- fo to pdf -->
<target name="fotopdf" depends="">
- <java classpath="avalon-framework.jar:batik" jar="libs/fop.jar" fork="true">
+ <java jar="libs/fop.jar" fork="true">
<arg value="doc/src/doc.fo" />
<arg value='-d' />
<arg value="upload/JMathLibManual_${version}.pdf" />
</java>
</target>
-
+
<!-- xml to help -->
<target name="xmltohelp" depends="">
- <java jar="./libs/saxon.jar" fork="true">
+ <java jar="libs/saxon.jar" fork="true">
<arg value='doc/src/doc.xml' />
<arg value='doc/DocBook/xsl/html/chunk.xsl' />
<arg value="base.dir=${upload.dir}/help/" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 15:37:50
|
Revision: 502
http://mathlib.svn.sourceforge.net/mathlib/?rev=502&view=rev
Author: st_mueller
Date: 2008-11-30 15:37:41 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/JMathLib.properties
Modified: JMathLib/trunk/JMathLib.properties
===================================================================
--- JMathLib/trunk/JMathLib.properties 2008-11-30 14:10:40 UTC (rev 501)
+++ JMathLib/trunk/JMathLib.properties 2008-11-30 15:37:41 UTC (rev 502)
@@ -6,8 +6,8 @@
# current version of JMathLib
jmathlib.version=0.9.2
-jmathlib.release.date=2008/06/07
-jmathlib.release.name=release V0.9.0
+jmathlib.release.date=2008/11/30
+jmathlib.release.name=release V0.9.2
jmathlib.release.description=mayer release
jmathlib.copyright=(c) 2007,2008 Stefan Mueller and others
@@ -20,8 +20,8 @@
update.site.primary=http://www.jmathlib.de/checkForUpdates/
update.site.backup=http://mathlib.sourceforge.net/checkForUpdates/
update.intervall=1
-update.date.last=2008/06/07
-update.date.next=2008/06/08
+update.date.last=2008/11/30
+update.date.next=2008/12/01
update.errors=0
update.message="welcome to the new version of JMathLib"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 14:10:43
|
Revision: 501
http://mathlib.svn.sourceforge.net/mathlib/?rev=501&view=rev
Author: st_mueller
Date: 2008-11-30 14:10:40 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/ChangeLog.txt
Modified: JMathLib/trunk/ChangeLog.txt
===================================================================
--- JMathLib/trunk/ChangeLog.txt 2008-11-30 14:09:16 UTC (rev 500)
+++ JMathLib/trunk/ChangeLog.txt 2008-11-30 14:10:40 UTC (rev 501)
@@ -16,6 +16,10 @@
2008/11/xx
stefan *
+2008/11/30
+stefan + jmathlib/system/getproperty.m is a wrapper for getenv which
+ returns a system property
+
2008/11/23
stefan * update.java added more exception handling
stefan * checkforupdates.java added more exception handling
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-30 14:09:26
|
Revision: 500
http://mathlib.svn.sourceforge.net/mathlib/?rev=500&view=rev
Author: st_mueller
Date: 2008-11-30 14:09:16 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
new function
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/getproperty.m
Added: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/getproperty.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/getproperty.m (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/getproperty.m 2008-11-30 14:09:16 UTC (rev 500)
@@ -0,0 +1,23 @@
+function getproptery(a)
+
+getenv(a);
+
+endfunction
+
+/*
+@GROUP
+system
+@SYNTAX
+getproperty(name)
+@DOC
+returns value of system property
+@EXAMPLES
+<programlisting>
+getproperty("os.name")
+
+ans="Windows XP"
+
+</programlisting>
+@SEE
+getenv
+*/
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-29 16:29:43
|
Revision: 499
http://mathlib.svn.sourceforge.net/mathlib/?rev=499&view=rev
Author: st_mueller
Date: 2008-11-29 16:29:33 +0000 (Sat, 29 Nov 2008)
Log Message:
-----------
bette update
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-23 19:09:59 UTC (rev 498)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-29 16:29:33 UTC (rev 499)
@@ -2,6 +2,7 @@
import java.io.*;
import java.net.*;
+import java.util.Properties;
import jmathlib.core.tokens.*;
import jmathlib.core.functions.ExternalFunction;
@@ -13,54 +14,60 @@
{
String lineFile = "";
- URL url = null;
getInterpreter().displayText("UPDATING JMathLib\n");
- // get update site and local version of jmathlib
+ // get update site of jmathlib
String updateSiteS = getInterpreter().prefs.getLocalProperty("update.site.primary");
+ getInterpreter().displayText("update site: "+updateSiteS);
+
+ // get local version of jmathlib
String localVersionS = getInterpreter().prefs.getLocalProperty("jmathlib.version");
localVersionS = localVersionS.replaceAll("/", ".");
- String updateVersionS = localVersionS;
- getInterpreter().displayText("update site: "+updateSiteS);
getInterpreter().displayText("current version: "+localVersionS);
// first check to which version an update is possible
getInterpreter().displayText("Checking to which version an update is possible");
- try {
+
+
+ // url of the update site including the request for the version
+ // to update to
+ URL url = null;
+ try
+ {
url = new URL(updateSiteS+"updates/?jmathlib_version="+localVersionS);
- BufferedReader inR = new BufferedReader(new InputStreamReader(url.openStream()));
- String s = "";
- while ((s = inR.readLine()) != null )
- {
- //getInterpreter().displayText("version"+s);
- if (s.startsWith("update.toversion="))
- {
- // read a file from the server and place it on the local disc
- updateVersionS = s.substring(17).trim();
-
- // maybe no update is available
- if (updateVersionS.equals("no_update_available"))
- {
- getInterpreter().displayText("No update available available");
- return null;
- }
-
- getInterpreter().displayText("updating to version >"+updateVersionS+"< \n");
- }
- }
}
- catch (Exception e) {
- throwMathLibException("update: could not receive version for update");
+ catch (Exception e)
+ {
+ throwMathLibException("update: malformed url for getting update version");
}
-
+ // load information from the update server
+ Properties props = new Properties();
+ try
+ {
+ props.load(url.openStream() );
+ }
+ catch (Exception e)
+ {
+ System.out.println("updates: Properties error");
+ }
+
+ // Check return properties for "update-to-version"
+ // Update site could send a lot of properties
+ String updateVersionS = props.getProperty("update.toversion");
+ if (updateVersionS.equals("no_update_available"))
+ {
+ getInterpreter().displayText("No update available available");
+ return null;
+ }
+ getInterpreter().displayText("updating to version >"+updateVersionS+"< \n");
+
+
// download new files from server
updateSiteS += "updates/jmathlib_" + updateVersionS + "/";
-
- //getInterpreter().displayText("updating path: "+updateSiteS);
try
{
url = new URL(updateSiteS);
@@ -70,12 +77,14 @@
throwMathLibException("update: malformed url");
}
- BufferedReader inR=null;
+ BufferedReader inR = null;
try
{
inR = new BufferedReader(new InputStreamReader(url.openStream()));
- String s = inR.readLine();
- while (s != null )
+ String s = null;
+
+ // read next line from server
+ while ((s = inR.readLine()) != null )
{
//getInterpreter().displayText("update "+s);
@@ -119,7 +128,7 @@
// delete a file/directory on the local disc
String delS = s.substring(4).trim();
getInterpreter().displayText("delete file/dir: >"+delS+"<");
- File file = new File(getWorkingDirectory(),delS);
+ File file = new File(getWorkingDirectory(),delS);
file.delete();
}
else if (s.startsWith("prop"))
@@ -127,7 +136,7 @@
// delete a file/directory on the local disc
String propS = s.substring(5).trim();
getInterpreter().displayText("new property: >"+propS+"<");
- String[] p = propS.split("=");
+ String[] p = propS.split("=");
getInterpreter().prefs.setLocalProperty(p[0],p[1]);
}
else
@@ -136,8 +145,6 @@
}
- // read next line from server
- s = inR.readLine();
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 19:10:03
|
Revision: 498
http://mathlib.svn.sourceforge.net/mathlib/?rev=498&view=rev
Author: st_mueller
Date: 2008-11-23 19:09:59 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
preparation for 0.9.2 release
Modified Paths:
--------------
JMathLib/trunk/build.properties
Modified: JMathLib/trunk/build.properties
===================================================================
--- JMathLib/trunk/build.properties 2008-11-23 19:09:29 UTC (rev 497)
+++ JMathLib/trunk/build.properties 2008-11-23 19:09:59 UTC (rev 498)
@@ -6,7 +6,7 @@
project=JMathLib
# Project version
-version=0.9.0
+version=0.9.2
# final project name
final.name=${project}_${version}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 19:09:32
|
Revision: 497
http://mathlib.svn.sourceforge.net/mathlib/?rev=497&view=rev
Author: st_mueller
Date: 2008-11-23 19:09:29 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/ChangeLog.txt
Modified: JMathLib/trunk/ChangeLog.txt
===================================================================
--- JMathLib/trunk/ChangeLog.txt 2008-11-23 19:08:41 UTC (rev 496)
+++ JMathLib/trunk/ChangeLog.txt 2008-11-23 19:09:29 UTC (rev 497)
@@ -17,6 +17,10 @@
stefan *
2008/11/23
+stefan * update.java added more exception handling
+stefan * checkforupdates.java added more exception handling
+
+2008/11/23
stefan + added four files to each toolbox directory to prepare toolboxes
for automated information handling
stefan * JMathLib.properties changed versioning from 0/x/0 to 0.x.0
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 19:08:51
|
Revision: 496
http://mathlib.svn.sourceforge.net/mathlib/?rev=496&view=rev
Author: st_mueller
Date: 2008-11-23 19:08:41 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-23 11:29:10 UTC (rev 495)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/update.java 2008-11-23 19:08:41 UTC (rev 496)
@@ -39,6 +39,14 @@
{
// read a file from the server and place it on the local disc
updateVersionS = s.substring(17).trim();
+
+ // maybe no update is available
+ if (updateVersionS.equals("no_update_available"))
+ {
+ getInterpreter().displayText("No update available available");
+ return null;
+ }
+
getInterpreter().displayText("updating to version >"+updateVersionS+"< \n");
}
}
@@ -49,7 +57,6 @@
-
// download new files from server
updateSiteS += "updates/jmathlib_" + updateVersionS + "/";
@@ -151,7 +158,7 @@
update
@DOC
updates JMathLib over the web
-@EXAMPLE
+@EXAMPLES
<programlisting>
update
</programlisting>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:29:20
|
Revision: 495
http://mathlib.svn.sourceforge.net/mathlib/?rev=495&view=rev
Author: st_mueller
Date: 2008-11-23 11:29:10 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/polynomial/polyvalm.m
Added: JMathLib/trunk/src/jmathlib/toolbox/polynomial/polyvalm.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/polynomial/polyvalm.m (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/polynomial/polyvalm.m 2008-11-23 11:29:10 UTC (rev 495)
@@ -0,0 +1,69 @@
+## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2004,
+## 2005, 2006, 2007 John W. Eaton
+##
+## This file is part of Octave.
+##
+## Octave is free software; you can redistribute it and/or modify it
+## under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 3 of the License, or (at
+## your option) any later version.
+##
+## Octave is distributed in the hope that it will be useful, but
+## WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+## General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with Octave; see the file COPYING. If not, see
+## <http://www.gnu.org/licenses/>.
+
+## -*- texinfo -*-
+## @deftypefn {Function File} {} polyvalm (@var{c}, @var{x})
+## Evaluate a polynomial in the matrix sense.
+##
+## @code{polyvalm (@var{c}, @var{x})} will evaluate the polynomial in the
+## matrix sense, i.e. matrix multiplication is used instead of element by
+## element multiplication as is used in polyval.
+##
+## The argument @var{x} must be a square matrix.
+## @seealso{polyval, poly, roots, conv, deconv, residue, filter,
+## polyderiv, polyinteg}
+## @end deftypefn
+
+## Author: Tony Richardson <ari...@st...>
+## Created: June 1994
+## Adapted-By: jwe
+
+function y = polyvalm (c, x)
+
+ if (nargin != 2)
+ print_usage ();
+ endif
+
+ if (! (isvector (c) || isempty (c)))
+ error ("polyvalm: first argument must be a vector");
+ endif
+
+ if (! issquare (x))
+ error ("polyvalm: second argument must be a square matrix");
+ endif
+
+ if (isempty (c))
+ y = [];
+ return;
+ endif
+
+ [v, d] = eig (x);
+
+ if (issymmetric (x))
+ y = v * diag (polyval (c, diag (d))) * v';
+ else
+ y = v * (diag (polyval (c, diag (d))) / v);
+ endif
+
+endfunction
+
+%!assert(isempty (polyvalm ([], [1, 2; 3, 4])));
+
+%!error polyvalm ([1, 1, 1], [1, 2; 3, 4; 5, 6]);
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:28:41
|
Revision: 494
http://mathlib.svn.sourceforge.net/mathlib/?rev=494&view=rev
Author: st_mueller
Date: 2008-11-23 11:28:39 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/ChangeLog.txt
Modified: JMathLib/trunk/ChangeLog.txt
===================================================================
--- JMathLib/trunk/ChangeLog.txt 2008-11-23 11:27:01 UTC (rev 493)
+++ JMathLib/trunk/ChangeLog.txt 2008-11-23 11:28:39 UTC (rev 494)
@@ -16,6 +16,11 @@
2008/11/xx
stefan *
+2008/11/23
+stefan + added four files to each toolbox directory to prepare toolboxes
+ for automated information handling
+stefan * JMathLib.properties changed versioning from 0/x/0 to 0.x.0
+
2008/11/17
stefan * UnaryOperatorToken added support for 5++ and 3--
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:27:06
|
Revision: 493
http://mathlib.svn.sourceforge.net/mathlib/?rev=493&view=rev
Author: st_mueller
Date: 2008-11-23 11:27:01 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
changed version info from 0/1/0 to 0.1.0
Modified Paths:
--------------
JMathLib/trunk/JMathLib.properties
Modified: JMathLib/trunk/JMathLib.properties
===================================================================
--- JMathLib/trunk/JMathLib.properties 2008-11-23 11:24:08 UTC (rev 492)
+++ JMathLib/trunk/JMathLib.properties 2008-11-23 11:27:01 UTC (rev 493)
@@ -5,7 +5,7 @@
# current version of JMathLib
-jmathlib.version=0/9/0
+jmathlib.version=0.9.2
jmathlib.release.date=2008/06/07
jmathlib.release.name=release V0.9.0
jmathlib.release.description=mayer release
@@ -33,187 +33,187 @@
# Toolboxes
jmathlib.toolboxes.core.name="core"
-jmathlib.toolboxes.core.version=0/9/0
+jmathlib.toolboxes.core.version=0.9.0
jmathlib.toolboxes.core.release=major 0.9.0
jmathlib.toolboxes.core.description="core toolboxes of JMathLib"
jmathlib.toolboxes.core.date=2008/06/07
jmathlib.toolboxes.audio.name="audio"
-jmathlib.toolboxes.audio.version=0/0/1
+jmathlib.toolboxes.audio.version=0.0.1
jmathlib.toolboxes.audio.release=major 0.0.1
jmathlib.toolboxes.audio.description=audio
jmathlib.toolboxes.audio.date=2008/01/01
jmathlib.toolboxes.control.name="control"
-jmathlib.toolboxes.control.version=0/0/1
+jmathlib.toolboxes.control.version=0.0.1
jmathlib.toolboxes.control.release=major 0.0.1
jmathlib.toolboxes.control.description=control
jmathlib.toolboxes.control.date=2008/01/01
jmathlib.toolboxes.cryto.name="cryto"
-jmathlib.toolboxes.cryto.version=0/0/1
+jmathlib.toolboxes.cryto.version=0.0.1
jmathlib.toolboxes.cryto.release=major 0.0.1
jmathlib.toolboxes.cryto.description=cryto
jmathlib.toolboxes.cryto.date=2008/01/01
jmathlib.toolboxes.demos.name="demos"
-jmathlib.toolboxes.demos.version=0/0/1
+jmathlib.toolboxes.demos.version=0.0.1
jmathlib.toolboxes.demos.release=major 0.0.1
jmathlib.toolboxes.demos.description=demos
jmathlib.toolboxes.demos.date=2008/01/01
jmathlib.toolboxes.engine.name="engine"
-jmathlib.toolboxes.engine.version=0/0/1
+jmathlib.toolboxes.engine.version=0.0.1
jmathlib.toolboxes.engine.release=major 0.0.1
jmathlib.toolboxes.engine.description=engine
jmathlib.toolboxes.engine.date=2008/01/01
jmathlib.toolboxes.finance.name="finance"
-jmathlib.toolboxes.finance.version=0/0/1
+jmathlib.toolboxes.finance.version=0.0.1
jmathlib.toolboxes.finance.release=major 0.0.1
jmathlib.toolboxes.finance.description=finance
jmathlib.toolboxes.finance.date=2008/01/01
jmathlib.toolboxes.funfun.name="funfun"
-jmathlib.toolboxes.funfun.version=0/0/1
+jmathlib.toolboxes.funfun.version=0.0.1
jmathlib.toolboxes.funfun.release=major 0.0.1
jmathlib.toolboxes.funfun.description=funfun
jmathlib.toolboxes.funfun.date=2008/01/01
jmathlib.toolboxes.general.name="general"
-jmathlib.toolboxes.general.version=0/1/0
+jmathlib.toolboxes.general.version=0.1.0
jmathlib.toolboxes.general.release=major 0.1.0
jmathlib.toolboxes.general.description=general
jmathlib.toolboxes.general.date=2008/06/06
jmathlib.toolboxes.image.name="image"
-jmathlib.toolboxes.image.version=0/0/1
+jmathlib.toolboxes.image.version=0.0.1
jmathlib.toolboxes.image.release=major 0.0.1
jmathlib.toolboxes.image.description=image
jmathlib.toolboxes.image.date=2008/01/01
jmathlib.toolboxes.integration.name="integration"
-jmathlib.toolboxes.integration.version=0/0/1
+jmathlib.toolboxes.integration.version=0.0.1
jmathlib.toolboxes.integration.release=major 0.0.1
jmathlib.toolboxes.integration.description=integration
jmathlib.toolboxes.integration.date=2008/01/01
jmathlib.toolboxes.io.name="io"
-jmathlib.toolboxes.io.version=0/1/0
+jmathlib.toolboxes.io.version=0.1.0
jmathlib.toolboxes.io.release=major 0.1.0
jmathlib.toolboxes.io.description=io
jmathlib.toolboxes.io.date=2008/06/06
jmathlib.toolboxes.linearalgebra.name="linearalgebra"
-jmathlib.toolboxes.linearalgebra.version=0/0/1
+jmathlib.toolboxes.linearalgebra.version=0.0.1
jmathlib.toolboxes.linearalgebra.release=major 0.0.1
jmathlib.toolboxes.linearalgebra.description=linearalgebra
jmathlib.toolboxes.linearalgebra.date=2008/01/01
jmathlib.toolboxes.miscelleanous.name="miscelleanous"
-jmathlib.toolboxes.miscelleanous.version=0/0/1
+jmathlib.toolboxes.miscelleanous.version=0.0.1
jmathlib.toolboxes.miscelleanous.release=major 0.0.1
jmathlib.toolboxes.miscelleanous.description=miscelleanous
jmathlib.toolboxes.miscelleanous.date=2008/01/01
jmathlib.toolboxes.net.name="net"
-jmathlib.toolboxes.net.version=0/0/1
+jmathlib.toolboxes.net.version=0.0.1
jmathlib.toolboxes.net.release=major 0.0.1
jmathlib.toolboxes.net.description=net
jmathlib.toolboxes.net.date=2008/01/01
jmathlib.toolboxes.ode.name="ode"
-jmathlib.toolboxes.ode.version=0/0/1
+jmathlib.toolboxes.ode.version=0.0.1
jmathlib.toolboxes.ode.release=major 0.0.1
jmathlib.toolboxes.ode.description=ode
jmathlib.toolboxes.ode.date=2008/01/01
jmathlib.toolboxes.optimization.name="optimization"
-jmathlib.toolboxes.optimization.version=0/0/1
+jmathlib.toolboxes.optimization.version=0.0.1
jmathlib.toolboxes.optimization.release=major 0.0.1
jmathlib.toolboxes.optimization.description=optimization
jmathlib.toolboxes.optimization.date=2008/01/01
jmathlib.toolboxes.physical_constants.name="physical_constants"
-jmathlib.toolboxes.physical_constants.version=0/0/1
+jmathlib.toolboxes.physical_constants.version=0.0.1
jmathlib.toolboxes.physical_constants.release=major 0.0.1
jmathlib.toolboxes.physical_constants.description=physical_constants
jmathlib.toolboxes.physical_constants.date=2008/01/01
jmathlib.toolboxes.polynomial.name="polynomial"
-jmathlib.toolboxes.polynomial.version=0/0/1
+jmathlib.toolboxes.polynomial.version=0.0.1
jmathlib.toolboxes.polynomial.release=major 0.0.1
jmathlib.toolboxes.polynomial.description=polynomial
jmathlib.toolboxes.polynomial.date=2008/01/01
jmathlib.toolboxes.quaternion.name="quaternion"
-jmathlib.toolboxes.quaternion.version=0/0/1
+jmathlib.toolboxes.quaternion.version=0.0.1
jmathlib.toolboxes.quaternion.release=major 0.0.1
jmathlib.toolboxes.quaternion.description=quaternion
jmathlib.toolboxes.quaternion.date=2008/01/01
jmathlib.toolboxes.set.name="set"
-jmathlib.toolboxes.set.version=0/0/1
+jmathlib.toolboxes.set.version=0.0.1
jmathlib.toolboxes.set.release=major 0.0.1
jmathlib.toolboxes.set.description=set
jmathlib.toolboxes.set.date=2008/01/01
jmathlib.toolboxes.signal.name="signal"
-jmathlib.toolboxes.signal.version=0/0/1
+jmathlib.toolboxes.signal.version=0.0.1
jmathlib.toolboxes.signal.release=major 0.0.1
jmathlib.toolboxes.signal.description=signal
jmathlib.toolboxes.signal.date=2008/01/01
jmathlib.toolboxes.sparse.name="sparse"
-jmathlib.toolboxes.sparse.version=0/0/1
+jmathlib.toolboxes.sparse.version=0.0.1
jmathlib.toolboxes.sparse.release=major 0.0.1
jmathlib.toolboxes.sparse.description=sparse
jmathlib.toolboxes.sparse.date=2008/01/01
jmathlib.toolboxes.specfunc.name="specfunc"
-jmathlib.toolboxes.specfunc.version=0/0/1
+jmathlib.toolboxes.specfunc.version=0.0.1
jmathlib.toolboxes.specfunc.release=major 0.0.1
jmathlib.toolboxes.specfunc.description=specfunc
jmathlib.toolboxes.specfunc.date=2008/01/01
jmathlib.toolboxes.specialmatrix.name="specialmatrix"
-jmathlib.toolboxes.specialmatrix.version=0/0/1
+jmathlib.toolboxes.specialmatrix.version=0.0.1
jmathlib.toolboxes.specialmatrix.release=major 0.0.1
jmathlib.toolboxes.specialmatrix.description=specialmatrix
jmathlib.toolboxes.specialmatrix.date=2008/01/01
jmathlib.toolboxes.splines.name="splines"
-jmathlib.toolboxes.splines.version=0/0/1
+jmathlib.toolboxes.splines.version=0.0.1
jmathlib.toolboxes.splines.release=major 0.0.1
jmathlib.toolboxes.splines.description=splines
jmathlib.toolboxes.splines.date=2008/01/01
jmathlib.toolboxes.statistics.name="statistics"
-jmathlib.toolboxes.statistics.version=0/0/1
+jmathlib.toolboxes.statistics.version=0.0.1
jmathlib.toolboxes.statistics.release=major 0.0.1
jmathlib.toolboxes.statistics.description=statistics
jmathlib.toolboxes.statistics.date=2008/01/01
jmathlib.toolboxes.string.name="string"
-jmathlib.toolboxes.string.version=0/0/1
+jmathlib.toolboxes.string.version=0.0.1
jmathlib.toolboxes.string.release=major 0.0.1
jmathlib.toolboxes.string.description=string
jmathlib.toolboxes.string.date=2008/01/01
jmathlib.toolboxes.test.name="test"
-jmathlib.toolboxes.test.version=0/0/1
+jmathlib.toolboxes.test.version=0.0.1
jmathlib.toolboxes.test.release=major 0.0.1
jmathlib.toolboxes.test.description=test
jmathlib.toolboxes.test.date=2008/01/01
jmathlib.toolboxes.time.name="time"
-jmathlib.toolboxes.time.version=0/0/1
+jmathlib.toolboxes.time.version=0.0.1
jmathlib.toolboxes.time.release=major 0.0.1
jmathlib.toolboxes.time.description=time
jmathlib.toolboxes.time.date=2008/01/01
jmathlib.toolboxes.trigonometric.name="trigonometric"
-jmathlib.toolboxes.trigonometric.version=0/1/0
+jmathlib.toolboxes.trigonometric.version=0.1.0
jmathlib.toolboxes.trigonometric.release=major 0.1.0
jmathlib.toolboxes.trigonometric.description=trigonometric
jmathlib.toolboxes.trigonometric.date=2008/06/06
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:24:11
|
Revision: 492
http://mathlib.svn.sourceforge.net/mathlib/?rev=492&view=rev
Author: st_mueller
Date: 2008-11-23 11:24:08 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/optimization/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/optimization/license.txt
JMathLib/trunk/src/jmathlib/toolbox/optimization/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/optimization/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/optimization/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/optimization/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/optimization/version_info.txt 2008-11-23 11:24:08 UTC (rev 492)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:23:54
|
Revision: 491
http://mathlib.svn.sourceforge.net/mathlib/?rev=491&view=rev
Author: st_mueller
Date: 2008-11-23 11:23:51 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/ode/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/ode/license.txt
JMathLib/trunk/src/jmathlib/toolbox/ode/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/ode/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/ode/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/ode/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/ode/version_info.txt 2008-11-23 11:23:51 UTC (rev 491)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:23:38
|
Revision: 490
http://mathlib.svn.sourceforge.net/mathlib/?rev=490&view=rev
Author: st_mueller
Date: 2008-11-23 11:23:35 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/license.txt
JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/miscellaneous/version_info.txt 2008-11-23 11:23:35 UTC (rev 490)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:23:22
|
Revision: 489
http://mathlib.svn.sourceforge.net/mathlib/?rev=489&view=rev
Author: st_mueller
Date: 2008-11-23 11:23:19 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/license.txt
JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/linearalgebra/version_info.txt 2008-11-23 11:23:19 UTC (rev 489)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:23:05
|
Revision: 488
http://mathlib.svn.sourceforge.net/mathlib/?rev=488&view=rev
Author: st_mueller
Date: 2008-11-23 11:23:02 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/io/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/io/license.txt
JMathLib/trunk/src/jmathlib/toolbox/io/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/io/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/io/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/io/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/io/version_info.txt 2008-11-23 11:23:02 UTC (rev 488)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:22:47
|
Revision: 487
http://mathlib.svn.sourceforge.net/mathlib/?rev=487&view=rev
Author: st_mueller
Date: 2008-11-23 11:22:44 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/integration/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/integration/license.txt
JMathLib/trunk/src/jmathlib/toolbox/integration/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/integration/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/integration/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/integration/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/integration/version_info.txt 2008-11-23 11:22:44 UTC (rev 487)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:22:28
|
Revision: 486
http://mathlib.svn.sourceforge.net/mathlib/?rev=486&view=rev
Author: st_mueller
Date: 2008-11-23 11:22:25 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/image/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/image/license.txt
JMathLib/trunk/src/jmathlib/toolbox/image/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/image/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/image/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/image/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/image/version_info.txt 2008-11-23 11:22:25 UTC (rev 486)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2008-11-23 11:22:16
|
Revision: 485
http://mathlib.svn.sourceforge.net/mathlib/?rev=485&view=rev
Author: st_mueller
Date: 2008-11-23 11:22:13 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/general/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/general/license.txt
JMathLib/trunk/src/jmathlib/toolbox/general/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/general/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/general/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/general/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/general/version_info.txt 2008-11-23 11:22:13 UTC (rev 485)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|