[Pydev-cvs] org.pydev.jython .classpath,NONE,1.1 .project,NONE,1.1 build.properties,NONE,1.1 jython.
Brought to you by:
fabioz
From: Dana M. <dan...@us...> - 2004-05-25 18:02:10
|
Update of /cvsroot/pydev/org.pydev.jython In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21621 Added Files: .classpath .project build.properties jython.jar plugin.xml Log Message: support for Jython to laaunch an introspect of the content of the file currnetly being edited --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>org.pydev.jython</name> <comment></comment> <projects> <project>org.eclipse.core.boot</project> <project>org.eclipse.core.runtime</project> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.ManifestBuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.pde.SchemaBuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.pde.PluginNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src/"/> <classpathentry kind="src" path="/org.eclipse.core.boot"/> <classpathentry kind="src" path="/org.eclipse.core.runtime"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> </classpath> --- NEW FILE: build.properties --- source.jython.jar = src/ bin.includes = plugin.xml,\ *.jar,\ jython.jar --- NEW FILE: plugin.xml --- <?xml version="1.0" encoding="UTF-8"?> <plugin id="org.pydev.jython" name="org.pydev.jython" version="1.0.0"> <runtime> <library name="jython.jar"> <export name="*"/> <packages prefixes="org.python"/> </library> </runtime> </plugin> --- NEW FILE: jython.jar --- (This appears to be a binary file; contents omitted.) |