initial check-in
This commit is contained in:
parent
27b20500c7
commit
358872a361
15 changed files with 50 additions and 73 deletions
|
@ -1,9 +1,9 @@
|
|||
This is the first release of Hop.
|
||||
This is the first release of Helma Object Publisher.
|
||||
|
||||
If you manage to get it running you should be able to connect your browser to
|
||||
http://127.0.0.1:8080/ (port 8080, that is). There is not much in terms of documentation
|
||||
at this point, please look at http://helma.org and have a look at the sample application
|
||||
in the apps/base directory.
|
||||
in the apps/hopblog directory.
|
||||
|
||||
This version is set up to use its own embedded Web server and a very basic
|
||||
embedded object database. For this reason it is able to run virtually without installation
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
This is the first release of Hop.
|
||||
This is the first release of Helma Object Publisher.
|
||||
|
||||
If you manage to get it running you should be able to connect your browser to
|
||||
http://127.0.0.1:8080/ (port 8080, that is). There is not much in terms of documentation
|
||||
at this point, please look at http://helma.org and have a look at the sample application
|
||||
in the apps/base directory.
|
||||
in the apps/hopblog directory.
|
||||
|
||||
This version is set up to use its own embedded Web server and a very basic
|
||||
embedded object database. For this reason it is able to run virtually without installation
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
# This is where you specify relational data sources to
|
||||
# map Hop types to an external database
|
||||
# map Helma types to an external database
|
||||
|
||||
# Comma-separated list of data source names
|
||||
sources=myDataSource
|
||||
sources = myDataSource
|
||||
|
||||
# Properties of data sources
|
||||
myDataSource.url=jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver=org.gjt.mm.mysql.Driver
|
||||
myDataSource.user=username
|
||||
myDataSource.password=xyz
|
||||
myDataSource.url = jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver = org.gjt.mm.mysql.Driver
|
||||
myDataSource.user = username
|
||||
myDataSource.password = xyz
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 1999-2000 Helma.org. All rights reserved.
|
||||
Copyright (c) 1999-2001 Helma.org. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
|
@ -12,9 +12,9 @@
|
|||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
3. Attribution must be given to Hop in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Hop".
|
||||
3. Attribution must be given to Helma in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Helma".
|
||||
|
||||
4. All advertising materials mentioning features or use of this
|
||||
software must display the following acknowledgment:
|
||||
|
@ -42,6 +42,3 @@
|
|||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
country = AT
|
||||
language = de
|
|
@ -1,11 +1,11 @@
|
|||
# This is where you specify relational data sources to
|
||||
# map Hop types to an external database
|
||||
# map Helma types to an external database
|
||||
|
||||
# Comma-separated list of data source names
|
||||
sources=myDataSource
|
||||
sources = myDataSource
|
||||
|
||||
# Properties of data sources
|
||||
myDataSource.url=jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver=org.gjt.mm.mysql.Driver
|
||||
myDataSource.user=username
|
||||
myDataSource.password=xyz
|
||||
myDataSource.url = jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver = org.gjt.mm.mysql.Driver
|
||||
myDataSource.user = username
|
||||
myDataSource.password = xyz
|
||||
|
|
|
@ -2,15 +2,12 @@
|
|||
|
||||
rem Batch file for starting Hop with a JDK-like virtual machine.
|
||||
|
||||
set JARS=lib\helma.jar;lib\berkeley.jar;lib\village.jar;lib\jsdk.jar;lib\openxml.jar
|
||||
set JARS=%JARS%;lib\sax.jar;lib\regexp.jar;lib\netcomponents.jar;lib\jimi.jar
|
||||
set JARS=%JARS%;lib\mail.jar;lib\activation.jar;lib\mysql.jar
|
||||
set JARS = lib\helma.jar;lib\berkeley.jar;lib\village.jar;lib\jsdk.jar;lib\openxml.jar
|
||||
set JARS = %JARS%;lib\sax.jar;lib\regexp.jar;lib\netcomponents.jar;lib\jimi.jar
|
||||
set JARS = %JARS%;lib\mail.jar;lib\activation.jar;lib\mysql.jar
|
||||
|
||||
set HOP_PORT=8080
|
||||
set HOP_PORT = 8080
|
||||
|
||||
echo Starting Web server on port %HOP_PORT%
|
||||
|
||||
java -classpath c:\winnt\java\packages\rmi.zip;%JARS% helma.objectmodel.db.Server -w %HOP_PORT%
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -2,11 +2,10 @@
|
|||
# Stupid shell script for starting Hop with a JDK-like virtual machine.
|
||||
# Presumes that you have your classpath set.
|
||||
|
||||
export HOP_PORT=8080
|
||||
export HOP_PORT = 8080
|
||||
|
||||
export JARS=lib/helma.jar:lib/berkeley.jar:lib/village.jar:lib/jsdk.jar:lib/openxml.jar
|
||||
export JARS=$JARS:lib/sax.jar:lib/regexp.jar:lib/netcomponents.jar:lib/jimi.jar
|
||||
export JARS=$JARS:lib/mail.jar:lib/activation.jar:lib/mysql.jar
|
||||
export JARS = lib/helma.jar:lib/berkeley.jar:lib/village.jar:lib/jsdk.jar:lib/openxml.jar
|
||||
export JARS = $JARS:lib/sax.jar:lib/regexp.jar:lib/netcomponents.jar:lib/jimi.jar
|
||||
export JARS = $JARS:lib/mail.jar:lib/activation.jar:lib/mysql.jar
|
||||
|
||||
java -classpath $CLASSPATH:$JARS helma.objectmodel.db.Server -w $HOP_PORT
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 1999-2000 Helma.org. All rights reserved.
|
||||
Copyright (c) 1999-2001 Helma.org. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
|
@ -12,9 +12,9 @@
|
|||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
3. Attribution must be given to Hop in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Hop".
|
||||
3. Attribution must be given to Helma in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Helma".
|
||||
|
||||
4. All advertising materials mentioning features or use of this
|
||||
software must display the following acknowledgment:
|
||||
|
@ -42,6 +42,3 @@
|
|||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
country = AT
|
||||
language = de
|
|
@ -1,11 +1,11 @@
|
|||
# This is where you specify relational data sources to
|
||||
# map Hop types to an external database
|
||||
# map Helma types to an external database
|
||||
|
||||
# Comma-separated list of data source names
|
||||
sources=myDataSource
|
||||
sources = myDataSource
|
||||
|
||||
# Properties of data sources
|
||||
myDataSource.url=jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver=org.gjt.mm.mysql.Driver
|
||||
myDataSource.user=username
|
||||
myDataSource.password=xyz
|
||||
myDataSource.url = jdbc:mysql://db.domain.com/space
|
||||
myDataSource.driver = org.gjt.mm.mysql.Driver
|
||||
myDataSource.user = username
|
||||
myDataSource.password = xyz
|
||||
|
|
11
hop.bat
11
hop.bat
|
@ -2,15 +2,12 @@
|
|||
|
||||
rem Batch file for starting Hop with a JDK-like virtual machine.
|
||||
|
||||
set JARS=lib\helma.jar;lib\berkeley.jar;lib\village.jar;lib\jsdk.jar;lib\openxml.jar
|
||||
set JARS=%JARS%;lib\sax.jar;lib\regexp.jar;lib\netcomponents.jar;lib\jimi.jar
|
||||
set JARS=%JARS%;lib\mail.jar;lib\activation.jar;lib\mysql.jar
|
||||
set JARS = lib\helma.jar;lib\berkeley.jar;lib\village.jar;lib\jsdk.jar;lib\openxml.jar
|
||||
set JARS = %JARS%;lib\sax.jar;lib\regexp.jar;lib\netcomponents.jar;lib\jimi.jar
|
||||
set JARS = %JARS%;lib\mail.jar;lib\activation.jar;lib\mysql.jar
|
||||
|
||||
set HOP_PORT=8080
|
||||
set HOP_PORT = 8080
|
||||
|
||||
echo Starting Web server on port %HOP_PORT%
|
||||
|
||||
java -classpath c:\winnt\java\packages\rmi.zip;%JARS% helma.objectmodel.db.Server -w %HOP_PORT%
|
||||
|
||||
|
||||
|
||||
|
|
9
hop.sh
9
hop.sh
|
@ -2,11 +2,10 @@
|
|||
# Stupid shell script for starting Hop with a JDK-like virtual machine.
|
||||
# Presumes that you have your classpath set.
|
||||
|
||||
export HOP_PORT=8080
|
||||
export HOP_PORT = 8080
|
||||
|
||||
export JARS=lib/helma.jar:lib/berkeley.jar:lib/village.jar:lib/jsdk.jar:lib/openxml.jar
|
||||
export JARS=$JARS:lib/sax.jar:lib/regexp.jar:lib/netcomponents.jar:lib/jimi.jar
|
||||
export JARS=$JARS:lib/mail.jar:lib/activation.jar:lib/mysql.jar
|
||||
export JARS = lib/helma.jar:lib/berkeley.jar:lib/village.jar:lib/jsdk.jar:lib/openxml.jar
|
||||
export JARS = $JARS:lib/sax.jar:lib/regexp.jar:lib/netcomponents.jar:lib/jimi.jar
|
||||
export JARS = $JARS:lib/mail.jar:lib/activation.jar:lib/mysql.jar
|
||||
|
||||
java -classpath $CLASSPATH:$JARS helma.objectmodel.db.Server -w $HOP_PORT
|
||||
|
||||
|
|
11
license.txt
11
license.txt
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 1999-2000 Helma.org. All rights reserved.
|
||||
Copyright (c) 1999-2001 Helma.org. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
|
@ -12,9 +12,9 @@
|
|||
the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
|
||||
3. Attribution must be given to Hop in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Hop".
|
||||
3. Attribution must be given to Helma in a way that is appropriate to how
|
||||
it is being used. For a website this attribution will normally consist
|
||||
of a link to http://helma.org/ with the line "Powered by Helma".
|
||||
|
||||
4. All advertising materials mentioning features or use of this
|
||||
software must display the following acknowledgment:
|
||||
|
@ -42,6 +42,3 @@
|
|||
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
country = AT
|
||||
language = de
|
Loading…
Add table
Reference in a new issue