summaryrefslogtreecommitdiffstats
path: root/parsers/people.py
Commit message (Collapse)AuthorAgeFilesLines
...
* extra error printout and remove old codePhilip Sargent2020-07-061-22/+0
|
* fix schema and try cache caves importPhilip Sargent2020-07-061-20/+1
|
* person attribution of surveyed length workingPhilip Sargent2020-07-061-3/+1
|
* Fully working dj 1.11.29Philip Sargent2020-06-191-1/+6
|
* Convert codebase for python3 usagePhilip Sargent2020-05-241-5/+5
|
* Remove PHOTOS_ROOT and DPhoto classPhilip Sargent2020-05-151-21/+22
|
* add mysql startup documentationPhilip Sargent2020-05-141-1/+1
|
* Thorough spring clean and profilingPhilip Sargent2020-04-271-2/+2
|
* Validation of mugshot or blrub file addedPhilip Sargent2020-04-011-1/+7
|
* Allow comments against names in logbooks in bracketsSam Wenham2019-07-111-3/+8
| | | | Convert accent chars in names into simple chars as this is what people enter in the logbook
* Updating caves and entrances is no longer nuclear!Sam Wenham2019-04-191-5/+31
| | | | | | | | Big overhaul of people processing, fullname added to the model lastname is now names -1 unless you only have one (yes you Wookey) this allows for Jon Arne Toft and Wookey to live it the same DB names can now have html chars in them, this should be real unicode but that can only happen when we go to Python 3!
* Merge lots of troggle fixesWookey2019-04-021-19/+6
|\
| * Support html and wiki logbook entrysSam Wenham2019-03-311-17/+4
| | | | | | | | | | | | Move nearest_station to nearest_station_name and make nearest_station a foreign key to SurvexStation Lots of tidying
| * Update new management command for DB resetSam Wenham2019-03-301-2/+2
| | | | | | | | | | | | Switch to content_type from mimetype Make DB reset not nuke so much Tidy logbook parser
* | folk.csv has moved into 'folk' dir out of 'noinfo'Wookey2019-04-021-1/+1
|/
* Make the logbook parser a little more saneSam Wenham2019-03-061-3/+3
| | | | | | Move the parser to expo mapping to settings Set a default parser Iterate over the expo years rather than the mapping list!
* Django 1.7 mostly working. Big refactor so probably bugsSam Wenham2018-04-151-1/+1
|
* get rid of photoexpo2009-08-291-2/+2
|
* [svn] Brief code cleanup.substantialnoninfringinguser2009-07-031-13/+2
|
* [svn] Fix leftover from expo -> core rename, and add databaseReset.py to ↵substantialnoninfringinguser2009-07-021-7/+3
| | | | README.txt
* [svn]substantialnoninfringinguser2009-05-191-22/+27
|
* [svn] fix it for real this timesubstantialnoninfringinguser2009-05-131-1/+1
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8327 by cucc @ 5/3/2009 6:18 AM
* [svn] fix import naming mistakesubstantialnoninfringinguser2009-05-131-1/+1
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8326 by cucc @ 5/3/2009 6:17 AM
* [svn] Weeks of local changes.substantialnoninfringinguser2009-05-131-25/+24
| | | | | | | | | | | - Import is now non-destructive - Parsers write output to a log file (path be specified in settings) - databaseReset.py content been divided into separate functions which can be called for varying levels of deletion and importing - control panel (view, template, urlpattern) added for deleting and importing - Logins and signup fixed - CaveArea model updated, view, hierarchical url patterns, and beginning of template added - New site style Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8324 by cucc @ 5/3/2009 5:56 AM
* [svn] Reverted the reverts from 8267. Fixed the next / previous trip in ↵substantialnoninfringinguser2009-05-131-3/+3
| | | | | | | | personexpedition on the LogbookEntry template -- I had misunderstood what this was supposed to do last time I messed with it. This involved adding the methods PersonTrip.get_persons_next_trip and persons_previous_trip. Couldn't find any other broken things. Kept the productive changes in 8267: extending the logbook parsing back to 1993, changing index page, changes to view_surveys.py Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8274 by aaron @ 3/14/2009 8:38 AM
* [svn] revert some of the changes (href element) so that the links worksubstantialnoninfringinguser2009-05-131-3/+3
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8267 by julian @ 3/11/2009 10:44 AM
* [svn]substantialnoninfringinguser2009-05-131-1/+1
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8255 by aaron @ 2/23/2009 4:16 AM
* [svn] Photo file handling and mugshots parsing sorted.substantialnoninfringinguser2009-05-131-50/+57
| | | | | Made URL settings more relative, less redundant. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8246 by aaron @ 2/18/2009 6:45 AM
* [svn]substantialnoninfringinguser2009-05-131-26/+26
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8245 by aaron @ 2/17/2009 1:09 AM
* [svn] My crusade to make our project more Djangoic.substantialnoninfringinguser2009-05-131-1/+1
| | | | | | | | | Got rid of the url tags in template, replaced them with get_absolute_url method calls where possible. Adding get_absolute_url in models enables direct link to the public model views in admin. The use of get_absolute_url, which is the correct Django way of doing things, eliminates any need for the redundant "href" fields we were using. Those fields now need to be deleted from the models and from the parsers. Made the context processor to pass settings to all templates actually work, although this was a little uglier than expected. I had to put in a new render_response to replace render_to_response. This is because Django uses Context, not RequestContext by default. I wish they would change this, it's annoying. Anyway, I deleted all the manual settings passing in the views. I also eliminated a couple of unnecessary methods and stuff like that. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8244 by aaron @ 2/16/2009 8:31 AM
* [svn] yorkshire work with tunnel integrationsubstantialnoninfringinguser2009-05-131-50/+44
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8232 by julian @ 1/29/2009 11:40 PM
* [svn] made index of peoplesubstantialnoninfringinguser2009-05-131-6/+13
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8224 by julian @ 1/24/2009 6:26 PM
* [svn] survey block objectsubstantialnoninfringinguser2009-05-131-0/+37
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8199 by julian @ 1/19/2009 12:22 AM
* [svn] new person expeditionsubstantialnoninfringinguser2009-05-131-1/+4
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8189 by julian @ 1/18/2009 7:50 PM
* [svn] changed import to work one level lowersubstantialnoninfringinguser2009-05-131-2/+2
| | | | Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8185 by julian @ 1/18/2009 5:20 PM
* [svn] Julian playing with the logbooks and expoyearssubstantialnoninfringinguser2009-05-131-0/+119
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8180 by julian @ 1/18/2009 3:59 PM