pajp/weblatte
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
** Weblatte README
** -*- Mode: auto-fill -*-
* Brief description:
This is a WWW-based LysKOM client written in Java using JSP.
* How to set up our own Weblatte instance:
Clone the Weblatte repository and set up its submodule:
$ git clone git://github.com/pajp/weblatte.git
$ cd weblatte/
$ git submodule init
$ git submodule update
Install a JSP-capable application server such as Resin:
$ cd
$ tar xf Downloads/resin-3.1.12.tar
$ cd resin-3.1.12/
$ vi conf/resin.conf
Configure a Resin web app to point to Weblatte, for example the root web app
by changing this:
<web-app id="/" root-directory="webapps/ROOT"/>
into this:
<web-app id="/" root-directory="../weblatte"/>
Start Resin:
$ bin/httpd.sh
Browse to http://localhost:8080/ and enjoy!
If you do not wish to install Weblatte in the web server root, you
need to set the system property "weblatte.basepath" to the path of the
Weblatte application. In Resin that can be done using the
"system-property" directive like this:
<system-property weblatte.basepath="/dev/"/>
You can also set system properties for example using the -D command
line argument to the Java interpreter.
* License
The license of this the "MIT License". Put shortly, you can do
anything you want with this code, but don't blame its authors. See the
file "LICENSE".