A web-based user interface for visualizing liblouis translation tables, for making it easier to write, understand and debug complex tables. The application is using the Play! Framework.
- Download the source code:
git clone https://github.com/bertfrees/liblouis-inspector.git
- Download and install the Play! Framework 2.0.2
- Download and install liblouis. You need a specific version:
git clone https://github.com/bertfrees/liblouis.git
cd liblouis
git checkout introspection
./autogen.sh
./configure
make
sudo make install
- Create a new mySQL database:
mysqladmin create liblouis-inspector -u <your_username> -p
- Configure the database connection in
conf/application.conf
:- db.default.driver="com.mysql.jdbc.Driver"
- db.default.url="jdbc:mysql://127.0.0.1/liblouis-inspector"
- db.default.user="your_username"
- db.default.password="your_password"
cd liblouis-inspector
/path/to/play-2.0.2/play start
- By default the application will run on http://localhost:9000/
Copyright 2012 Bert Frees
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program 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 Lesser General Public License for more details.