Fork of Troggle for complete overhaul of front-end code: Troggle Unchained
Go to file
2015-05-25 21:55:54 +01:00
core Fix up obvious URLs containing subarea names (smkridge) 2015-04-08 03:40:57 +01:00
docsEtc rename troggle paper.odt to troggle_paper.odt as space in repo are a 2015-04-08 03:24:00 +01:00
export no need to export cavetab2 anymore 2012-06-10 17:20:57 +01:00
flatpages allow extensions to be capatalised 2012-08-14 15:05:15 +02:00
helper decorator to check if user is logged in if settings.PUBLIC_SITE 2011-05-02 02:13:27 +01:00
imagekit [svn] Switch from photologue to imagekit. Less bloat. 2009-05-13 06:24:52 +01:00
media remove internal copies of jquery, jquiery-forms, jquery-ui+themes, 2014-09-11 07:40:58 +01:00
parsers Add in balkon hoehle QM list 2015-05-25 21:55:54 +01:00
profiles [svn] Brief code cleanup. 2009-07-03 05:31:49 +01:00
registration Document 'cavesnew' option in databasereset.py - which just reads in 2013-10-07 23:45:59 +01:00
templates Merge in Sam's parser debugging 2015-04-08 03:27:48 +01:00
wiki Note that the instructions for adding a survey are all wrong. 2012-08-05 00:35:02 +02:00
__init__.py [svn] Initial troggle checkin 2009-05-13 05:13:38 +01:00
.hgignore Prospecting guide and images and few minor other things. 2013-08-01 17:00:01 +02:00
databaseReset.py Change password of 'expo' user created by databasereset script to match that used elsewhere 2015-05-25 21:26:26 +01:00
localsettingspotatohut.py Use REPOS_ROOT_PATH so there is just one place to change paths 2014-09-11 06:33:34 +01:00
localsettingsserver.py Fix templates to use system javascript for jquery, jquery-ui and 2014-09-11 07:38:45 +01:00
localsettingsubuntu.py Use REPOS_ROOT_PATH so there is just one place to change paths 2014-09-11 06:33:34 +01:00
localsettingswindows.py Change database syntax to modern format as old style no longer 2013-07-02 18:13:27 +01:00
manage.py remove all the DOS linefeeds 2011-07-11 02:10:22 +01:00
middleware.py remove all the DOS linefeeds 2011-07-11 02:10:22 +01:00
modelviz.py modelviz added 2009-09-11 09:04:59 +01:00
README.txt Update the README file a bit - still needs work. 2014-09-10 23:46:05 +01:00
settings.py Prospecting guide and images and few minor other things. 2013-08-01 17:00:01 +02:00
urls.py Tidy up urls file a little 2014-05-14 20:46:59 +01:00
utils.py undosify lineends 2011-07-11 01:49:03 +01:00

Troggle is an application for caving expedition data management, originally created for use on Cambridge University Caving Club (CUCC)expeditions and licensed under the GNU Lesser General Public License.

Troggle has been forked into two projects. The original one is maintained by Aron Curtis and is used for Erebus caves. The CUCC variant uses files as the definitive data, not the database and lives at expo.sruvex.com/troggle.

Troggle setup
==========

Python, Django, and Database setup
-----------------------------------
Troggle requires Django 1.4 or greater, and any version of Python that works with it.
Install Django with the following command:

apt-get install python-django  (on debian/ubuntu)

If you want to use MySQL or Postgresql, download and install them. However, you can also use Django with Sqlite3, which is included in Python and thus requires no extra installation.



Troggle itself
-------------
Choose a directory where you will keep troggle, and svn check out Troggle into it using the following command:

svn co http://troggle.googlecode.com/svn/


If you want to work on the source code and be able to commit, you will need to use https instead of http, and your google account will need to be added to the troggle project members list. Contact aaron dot curtis at cantab dot net to get this set up.

Next, you need to fill in your local settings. Copy either localsettingsubuntu.py or localsettingsserver.py to a new file called localsettings.py. Follow the instructions contained in the file to fill out your settings.


Setting up tables and importing legacy data
------------------------------------------
Run "python databaseReset.py reset" from the troggle directory.

Once troggle is running, you can also log in and then go to "Import / export" data under "admin" on the menu.

Adding a new year/expedition requires adding a column to the
noinfo/folk.csv table - a year doesn't exist until that is done.


Running a Troggle server
------------------------
For high volume use, Troggle should be run using a web server like apache. However, a quick way to get started is to use the development server built into Django.

To do this, run "python manage.py runserver" from the troggle directory.