2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00
Mirror of Troggle Repo but with issue tracking etc. https://expo.survex.com
Go to file
2013-07-02 21:12:59 +01:00
core Don't explode if a master survex file is not found for a directory - 2013-07-02 00:47:42 +01:00
docsEtc [svn] Draft of paper for ICS. 2009-05-13 05:51:21 +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 Added redmund style for jquery-ui 2011-07-10 23:40:52 +01:00
parsers Add a function for running people parser 2013-06-25 15:59:19 +01:00
profiles [svn] Brief code cleanup. 2009-07-03 05:31:49 +01:00
registration 3rd attempt at getting the right syntax for the CSRF protection in 2013-07-02 21:11:07 +01:00
templates merged in proper CSRF changes from server 2013-07-02 20:23:55 +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 parsing_log should not be saved in the vcs 2013-07-02 00:49:07 +01:00
databaseReset.py merged in proper CSRF changes from server 2013-07-02 20:23:55 +01:00
localsettingsserver.py Change database syntax to modern format as old style no longer 2013-07-02 18:13:27 +01:00
localsettingsubuntu.py Change database syntax to modern format as old style no longer 2013-07-02 18:13:27 +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 Add note on how to create a new year in troggle. 2013-06-25 15:56:19 +01:00
settings.py update location of auth module for django 1.4 2013-07-02 21:10:30 +01:00
troggle_log.txt Add empty troggle_log.txt file to save doing it by hand 2011-07-12 00:02:01 +01:00
urls.py Remove jgtfile URLs (presumably no longer needed) 2012-09-08 01:12:17 +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 expeditions and licensed under the GNU Lesser General Public License.

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

Python, Django, and Database setup
-----------------------------------
Troggle requires Django 1.1 or greater, and any version of Python that works with it. As of writing this readme, there was no actual Django 1.1 release, so Troggle required the SVN version of Django. Check Django out to somewhere on your PYTHONPATH with the following command:

svn co http://code.djangoproject.com/svn/django/trunk/

If you have an older installation of Django installed on your system, the easiest way to make sure troggle is using the newest version of Django is to simply checkout into your top troggle directory, into a folder called django.

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.