Commit graph

207 commits

Author SHA1 Message Date
3f69a2c240 Cleanup: Replace "objectid" with "object_id" in the Python portions. 2017-11-11 22:38:51 -08:00
a4b875b9ff Fix config file not being updated when the default updates.
The len check was incorrect ever since I started nesting keys.
Now we measure all of the keys recursively.
2017-10-05 18:39:34 -07:00
0849796986 Make build_query params all optional, more kwargy. 2017-09-23 11:22:05 -07:00
163e960bfa Fix unrecognized orderby not using the warning bag. 2017-09-23 11:08:19 -07:00
557f78eb02 Integrate author search into the query instead of postprocessing.
Much faster this way.
2017-09-23 11:04:26 -07:00
38e72c0c3a Make notnulls set instead of list. 2017-09-23 11:00:37 -07:00
89d9c1d893 Move the new photo creation out of the exception handler.
I don't like the "during the handling of the above exception" because
it's misleading as to the source of the problem.
2017-08-01 18:13:54 -07:00
bd847159fa Organize config by nesting related stuff.
I thought about switching to .ini files but that's even less desirable.
2017-07-29 16:23:15 -07:00
4fc203634c Add new config "enable_login". 2017-07-20 23:25:23 -07:00
fcd507e337 Add new_photo_kwargs param to digest_directory. 2017-06-16 02:23:48 -07:00
ac2b820a30 Add PDBTagMixin.get_root_tags 2017-06-11 22:57:08 -07:00
821a5f3371 Move export functions to their own module. 2017-06-11 22:55:45 -07:00
4928095abb Minor commentary and cleanup 2017-05-13 15:27:08 -07:00
a4a278c173 Give Tags a description field. 2017-05-12 17:31:17 -07:00
091dc82f1e Catch expressionmatch.NoTokens for filename search 2017-05-06 18:37:02 -07:00
5b7c05c39d Improve MMF search speed by pre-filtering photo IDs
Not perfected yet but it's an improvement.
Waste less time checking all photos, presearch for matching photos via photo_tag_rel table.
2017-05-01 21:27:54 -07:00
fbf73ac515 Since @transaction rolls back exceptions, don't use exception-based inserts. 2017-05-01 21:26:07 -07:00
8080d92f8d add_associated_directory checks for dupe, so remove old check 2017-05-01 20:50:52 -07:00
06522ee372 Minor cleanup 2017-05-01 20:49:59 -07:00
09f209719b Add decorators.@required_feature to centralize FeatureDisabled exc. 2017-05-01 20:41:56 -07:00
af6785cead Add decorators.@transaction to rollback sql upon exception 2017-05-01 20:23:58 -07:00
e3610eef2b Standardize NotExclusive exception usage. 2017-04-20 18:29:30 -07:00
cc0c847eb5 Make sure easybake uses the normalized name in return notes. 2017-04-20 18:28:11 -07:00
24b6970617 Move default DB filename etc. to constants 2017-04-20 18:26:15 -07:00
241d1466eb Fix tag expression bugs, move work to searchhelpers
Fix handling of bad tags, bad syntax, empty expression. Remove unnecessary warning_bag from matcher builder
2017-03-31 21:52:49 -07:00
791172e073 Support extension=* search, to filter extensionless files 2017-03-23 15:49:55 -07:00
5ee6062cad Use None check instead of general falsey for minmax 2017-03-23 15:17:19 -07:00
b69ef8ea00 Cleanup some pylint 2017-03-23 15:11:28 -07:00
dcb946f3df Add _uncache to objects 2017-03-23 00:04:44 -07:00
0bfbc789ca Use more pathclass.Path 2017-03-22 23:35:14 -07:00
13040d559b Cache objects for faster re-access; Cache album.sum_bytes result 2017-03-22 22:54:17 -07:00
55ed6a6d28 Give each PDBMixin an init and a cache. Not used yet 2017-03-22 21:24:53 -07:00
fd1673328f Add PDBAlbumMixin.get_root_albums to simplify elsewhere 2017-03-19 18:48:41 -07:00
8793d9ff41 Fix docstrings over 80 characters 2017-03-19 17:34:19 -07:00
df32b0c11d Fix NameError during forbids 2017-03-17 14:02:03 -07:00
85d91310bc When new options are added, save them to user config file 2017-03-17 01:28:29 -07:00
efa930f4a8 Make associated_directory its own table so albums can have multiple
Also renamed a bunch of indices
2017-03-16 23:57:31 -07:00
440941077f Replace more direct sql commits with PhotoDB commits 2017-03-16 21:44:49 -07:00
8692d826c5 Add 'enable_new_...' config options. Decent until actual permission system 2017-03-16 19:54:12 -07:00
db628d158e Shorten lines longer than 100 characters 2017-03-14 21:18:42 -07:00
d7cd1e9748 Add more docstrings; Remove unused code 2017-03-10 15:01:12 -08:00
70f284d413 Fix album_group indices being added to the wrong table. 2017-03-10 05:49:18 -08:00
072e9a7430 Fix NoSuchUser being raised with None due to username/id 2017-03-09 23:54:45 -08:00
b3da21bf33 Small cleanups
Comment and sql linewrapping; move Add Tag box to top of ul instead of bottom to stay in view better
2017-03-07 20:20:12 -08:00
2deff86e13 Fix broken registration: missing cur and wronge exc 2017-03-05 05:00:57 -08:00
c04b5a6db0 Remove unnecessary warning_bag code from normalize_tagname 2017-03-05 04:54:58 -08:00
e413e996d9 Fix appearance of easybake errors; more exception improvements
New class EasyBakeException helps distinguish whether or not it should be displayed to the user; Exception class `error_type` attributes are now applied to the class via decorator instead of to the instance via init; Fixed easybake errors looking for the old json response format; Fixed incorrect error bubble when deleting a synonym after the tag has already been deleted
2017-03-04 22:27:24 -08:00
888c3b48cd Completely revise exception message formatting technique 2017-03-04 21:56:23 -08:00
83408aca4a Give Albums their own ID counter, own group rel table 2017-03-04 01:13:22 -08:00
415d858e20 Fix toplevel albums not getting digest children; prefix album zips with 'album ' 2017-03-03 23:44:43 -08:00
c3a4fa443b Rename variable 'row_tuple' to 'db_row'; Improve some docstrings 2017-03-03 21:15:31 -08:00
75ee476abf minor visual fixes 2017-03-02 16:56:18 -08:00
9ba1a88174 Fix bug in which only the last photo of a digest was added; Improve mimetype usage by not deleting the subtype 2017-02-27 23:39:06 -08:00
fcc671a617 Move many errors + warnings to properties of Exception classes 2017-02-26 01:04:07 -08:00
5404a1d411 checkpoint
fix bug in which renaming photo causes os.remove even when it's an in-place rename on case-insensitive systems; incorporate expressionmatch for filename search; minor comment cleanup
2017-02-25 22:47:20 -08:00
c80e2003ff checkpoint
add photo and search css for narrow screens; incorporate new expressionmatch kit; entry_with_history cursor moves to end; albums indicate total filesize; etc
2017-02-24 22:07:59 -08:00
80cb66b825 Rename phototagger.py to photodb.py 2017-02-04 20:01:03 -08:00
Renamed from etiquette/phototagger.py (Browse further)