You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(57) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(151) |
Mar
(131) |
Apr
(171) |
May
(125) |
Jun
(43) |
Jul
(26) |
Aug
(19) |
Sep
(10) |
Oct
|
Nov
(4) |
Dec
(28) |
| 2004 |
Jan
(134) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ki...@us...> - 2003-03-15 00:16:36
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2
In directory sc8-pr-cvs1:/tmp/cvs-serv7564
Added Files:
createpytkdbwidgets.py
Log Message:
widgets
--- NEW FILE: createpytkdbwidgets.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreatePyTkDBWidgets
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./widgets")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreatePyTkDBWidgets)
|
|
From: <ki...@us...> - 2003-03-15 00:16:15
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2
In directory sc8-pr-cvs1:/tmp/cvs-serv7436
Added Files:
creategraphvizuml.py
Log Message:
graphviz uml
--- NEW FILE: creategraphvizuml.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateGraphvizUML
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./manyToMany.dot")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateGraphvizUML)
|
|
From: <ki...@us...> - 2003-03-15 00:15:58
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2
In directory sc8-pr-cvs1:/tmp/cvs-serv7366
Added Files:
createapi.py
Log Message:
dbapi
--- NEW FILE: createapi.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreateDBAPI
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./m2mAPI")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateDBAPI)
|
|
From: <ki...@us...> - 2003-03-15 00:15:45
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2 In directory sc8-pr-cvs1:/tmp/cvs-serv7313 Added Files: Makefile Log Message: extract .xmi --- NEW FILE: Makefile --- manyToMany.xmi: manyToMany.zargo unzip manyToMany.zargo manyToMany_.xmi mv manyToMany_.xmi manyToMany.xmi |
|
From: <ki...@us...> - 2003-03-15 00:15:31
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2 In directory sc8-pr-cvs1:/tmp/cvs-serv7224 Added Files: manyToMany.zargo Log Message: schema with linking table --- NEW FILE: manyToMany.zargo --- (This appears to be a binary file; contents omitted.) |
|
From: <ki...@us...> - 2003-03-15 00:14:08
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany2 In directory sc8-pr-cvs1:/tmp/cvs-serv6825/manyToMany2 Log Message: Directory /cvsroot/pymerase/pymerase/examples/manyToMany2 added to the repository |
|
From: <ki...@us...> - 2003-03-14 23:35:11
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany In directory sc8-pr-cvs1:/tmp/cvs-serv25203 Added Files: manyToMany.zargo Log Message: example --- NEW FILE: manyToMany.zargo --- (This appears to be a binary file; contents omitted.) |
|
From: <ki...@us...> - 2003-03-14 23:34:56
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv25021
Added Files:
createsql.py
Log Message:
sql
--- NEW FILE: createsql.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateSQL
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./manyToMany.sql")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateSQL)
|
|
From: <ki...@us...> - 2003-03-14 23:34:24
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24938
Added Files:
createreport.py
Log Message:
get report
--- NEW FILE: createreport.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateReport
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./report.txt")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateReport)
|
|
From: <ki...@us...> - 2003-03-14 23:34:07
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24734
Added Files:
createpytkwidgets.py
Log Message:
widgets
--- NEW FILE: createpytkwidgets.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreatePyTkWidgets
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./widgets")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreatePyTkWidgets)
|
|
From: <ki...@us...> - 2003-03-14 23:33:46
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24664
Added Files:
createpytkdbwidgets.py
Log Message:
db widgets
--- NEW FILE: createpytkdbwidgets.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreatePyTkDBWidgets
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./widgets")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreatePyTkDBWidgets)
|
|
From: <ki...@us...> - 2003-03-14 23:33:27
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24558
Added Files:
creategraphvizuml.py
Log Message:
graphviz uml
--- NEW FILE: creategraphvizuml.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateGraphvizUML
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./manyToMany.dot")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateGraphvizUML)
|
|
From: <ki...@us...> - 2003-03-14 23:33:07
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany
In directory sc8-pr-cvs1:/tmp/cvs-serv24468
Added Files:
createapi.py
Log Message:
dbapi
--- NEW FILE: createapi.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreateDBAPI
if __name__ == "__main__":
schema = os.path.abspath("./manyToMany.xmi")
outputPath = os.path.abspath("./m2mAPI")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateDBAPI)
|
|
From: <ki...@us...> - 2003-03-14 23:32:55
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany In directory sc8-pr-cvs1:/tmp/cvs-serv24359 Added Files: Makefile Log Message: extract .xmi --- NEW FILE: Makefile --- manyToMany.xmi: manyToMany.zargo unzip manyToMany.zargo manyToMany_.xmi mv manyToMany_.xmi manyToMany.xmi |
|
From: <ki...@us...> - 2003-03-14 23:32:33
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany In directory sc8-pr-cvs1:/tmp/cvs-serv24234 Added Files: README Log Message: a note about this example --- NEW FILE: README --- Please note that this example will be used in implementing many-to-many relationships in the future. To see how to implement many-to many relationship in Pymerases current state, please see the example 'manyToMany2'. |
|
From: <ki...@us...> - 2003-03-14 23:06:30
|
Update of /cvsroot/pymerase/pymerase/examples/manyToMany In directory sc8-pr-cvs1:/tmp/cvs-serv15126a/manyToMany Log Message: Directory /cvsroot/pymerase/pymerase/examples/manyToMany added to the repository |
|
From: <ki...@us...> - 2003-03-14 23:03:34
|
Update of /cvsroot/pymerase/pymerase/pymerase/input
In directory sc8-pr-cvs1:/tmp/cvs-serv13922
Modified Files:
parseXMI.py
Log Message:
spelling eror ;)
Index: parseXMI.py
===================================================================
RCS file: /cvsroot/pymerase/pymerase/pymerase/input/parseXMI.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** parseXMI.py 5 Feb 2003 23:04:15 -0000 1.13
--- parseXMI.py 14 Mar 2003 23:03:30 -0000 1.14
***************
*** 364,368 ****
print "Mult: ", thisEnd.getMultiplicity(), otherEnd.getMultiplicity()
if thisEnd.getMultiplicity() != fkeyTypes.OneToOne and otherEnd.getMultiplicity() != fkeyTypes.OneToOne:
! err = "Pymerae doesn't support Many To Many relationships"+ os.linesep
err += "please add a linking table"
print err
--- 364,368 ----
print "Mult: ", thisEnd.getMultiplicity(), otherEnd.getMultiplicity()
if thisEnd.getMultiplicity() != fkeyTypes.OneToOne and otherEnd.getMultiplicity() != fkeyTypes.OneToOne:
! err = "Pymerase doesn't support Many To Many relationships"+ os.linesep
err += "please add a linking table"
print err
|
|
From: <ki...@us...> - 2003-03-14 22:56:01
|
Update of /cvsroot/pymerase/pymerase/examples/linkDB In directory sc8-pr-cvs1:/tmp/cvs-serv11174 Modified Files: Makefile Log Message: updated dependancies Index: Makefile =================================================================== RCS file: /cvsroot/pymerase/pymerase/examples/linkDB/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 5 Mar 2003 00:51:46 -0000 1.1 --- Makefile 14 Mar 2003 22:55:58 -0000 1.2 *************** *** 1,3 **** ! linkDB.xmi: unzip linkDB.zargo linkDB_.xmi mv linkDB_.xmi linkDB.xmi --- 1,3 ---- ! linkDB.xmi: linkDB.zargo unzip linkDB.zargo linkDB_.xmi mv linkDB_.xmi linkDB.xmi |
|
From: <ki...@us...> - 2003-03-14 22:51:35
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj In directory sc8-pr-cvs1:/tmp/cvs-serv9281 Modified Files: selfRefObj.zargo Log Message: changed NameSpace to SelfRefAPI Index: selfRefObj.zargo =================================================================== RCS file: /cvsroot/pymerase/pymerase/examples/selfRefObj/selfRefObj.zargo,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvsi17tmq and /tmp/cvse4EnuG differ |
|
From: <ki...@us...> - 2003-03-14 22:50:43
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj In directory sc8-pr-cvs1:/tmp/cvs-serv9115 Modified Files: Makefile Log Message: updated dependancies Index: Makefile =================================================================== RCS file: /cvsroot/pymerase/pymerase/examples/selfRefObj/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 14 Mar 2003 22:30:22 -0000 1.1 --- Makefile 14 Mar 2003 22:50:38 -0000 1.2 *************** *** 1,3 **** ! selfRefObj.xmi: unzip selfRefObj.zargo selfRefObj_.xmi mv selfRefObj_.xmi selfRefObj.xmi --- 1,3 ---- ! selfRefObj.xmi: selfRefObj.zargo unzip selfRefObj.zargo selfRefObj_.xmi mv selfRefObj_.xmi selfRefObj.xmi |
|
From: <ki...@us...> - 2003-03-14 22:32:23
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj
In directory sc8-pr-cvs1:/tmp/cvs-serv32676
Added Files:
createsql.py
Log Message:
SQL
--- NEW FILE: createsql.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateSQL
if __name__ == "__main__":
schema = os.path.abspath("./selfRefObj.xmi")
outputPath = os.path.abspath("./selfRefObj.sql")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateSQL)
|
|
From: <ki...@us...> - 2003-03-14 22:32:06
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj
In directory sc8-pr-cvs1:/tmp/cvs-serv32535
Added Files:
createreport.py
Log Message:
get report
--- NEW FILE: createreport.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateReport
if __name__ == "__main__":
schema = os.path.abspath("./selfRefObj.xmi")
outputPath = os.path.abspath("./report.txt")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateReport)
|
|
From: <ki...@us...> - 2003-03-14 22:31:48
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj
In directory sc8-pr-cvs1:/tmp/cvs-serv32370
Added Files:
createpytkwidgets.py
Log Message:
tkinter widgets
--- NEW FILE: createpytkwidgets.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreatePyTkWidgets
if __name__ == "__main__":
schema = os.path.abspath("./selfRefObj.xmi")
outputPath = os.path.abspath("./widgets")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreatePyTkWidgets)
|
|
From: <ki...@us...> - 2003-03-14 22:31:24
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj
In directory sc8-pr-cvs1:/tmp/cvs-serv32243
Added Files:
createpytkdbwidgets.py
Log Message:
tkinter db widgets
--- NEW FILE: createpytkdbwidgets.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
# NOTE: Jython can't use the python way to load modules based on their name
# NOTE: so we have to manually import the modules we're using
# NOTE: and pass them to pymerase.run
import pymerase.input.parseXMI
import pymerase.output.CreatePyTkDBWidgets
if __name__ == "__main__":
schema = os.path.abspath("./selfRefObj.xmi")
outputPath = os.path.abspath("./widgets")
#pymerase.run(schema, 'parseXMI', output, 'CreateDBAPI')
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreatePyTkDBWidgets)
|
|
From: <ki...@us...> - 2003-03-14 22:30:59
|
Update of /cvsroot/pymerase/pymerase/examples/selfRefObj
In directory sc8-pr-cvs1:/tmp/cvs-serv32031
Added Files:
creategraphvizuml.py
Log Message:
graphviz uml
--- NEW FILE: creategraphvizuml.py ---
#!/usr/bin/env python
import sys
import os
import pymerase
import pymerase.input.parseXMI
import pymerase.output.CreateGraphvizUML
if __name__ == "__main__":
schema = os.path.abspath("./selfRefObj.xmi")
outputPath = os.path.abspath("./selfRefObj.dot")
pymerase.run(schema, pymerase.input.parseXMI, outputPath, pymerase.output.CreateGraphvizUML)
|