summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-02-16chardb: Added image to character entriesYorhel11-21/+205
2011-02-16chardb: Added character add/edit form + misc. fixesYorhel7-7/+182
2011-02-15chardb: Added char entry tables and updated the basic revision frameworkYorhel11-25/+256
The Perl code and SQL-revisioning code only handles the name, original, alias and desc fields at the moment. There is a basic /i+ and /i+.+ page for testing, which should have all the functionality required for the revisioning framework.
2011-02-14chardb: Made Multi aware of traitsYorhel3-8/+24
Added new trait notify and i+ id-matching
2011-02-14chardb: Added trait index and searchYorhel7-15/+330
2011-02-13chardb: Added trait add/edit formYorhel6-20/+257
2011-02-13chardb: Added notes file and started implementing the traitsYorhel9-68/+972
2011-02-08L10N-HU: Translation update + fixesBikfalvi Máté1-56/+56
2011-02-08Merge branch 'beta'2.18Yorhel23-75/+880
+ ChangeLog update for 2.18
2011-02-08Uploaded some design/implementation notes I had lying aroundYorhel8-0/+505
Used to be private, with the sole purpose of getting a good overview of things for myself, but I guess these may also be useful to others.
2011-02-07d2: Guideline change as discussed in t1153Yorhel1-10/+11
2011-02-07Added tooltip to the overruled-exclamation-markYorhel3-1/+9
2011-02-07Bugfix: don't generate listdel notify for the user who deletedYorhel3-1/+6
2011-02-06Added new VN filter: on user VN list or notYorhel5-3/+27
2011-02-06Added new VN filter: voted on or notYorhel5-3/+27
2011-02-06Added new VN filters: wish/blacklistYorhel5-3/+57
2011-02-06Display message on the tags tab on filter selector on tag pagesYorhel2-1/+10
More intuitive than leaving the tab out altogether.
2011-02-06Added filter selector to tag pages (excl. tags tab)Yorhel4-14/+32
2011-02-06Added tag visibility options by category on /v+Yorhel3-17/+36
The JS code is a bit messy, though...
2011-02-05Group tags on /v+/tagmod by their categoryYorhel6-26/+59
2011-02-05Properly save tag category when adding a new tagYorhel1-2/+2
2011-02-04Allow setting tag category for all child tags recursivelyYorhel3-6/+52
Takes the burden out of our dear tag moderators to edit *all* tags manually on the next update.
2011-02-04Added category field to tags (content/ero/technical)Yorhel9-6/+66
Not very useful at the moment, but will be used to improve several other things.
2011-02-04L10N-RU: Synchronised lang.txtSilverDragon1-5/+5
2011-02-04Fixed two perl warning related to reqCookie() returning undefYorhel2-2/+2
A TUWF change I forgot to check.
2011-02-04jsgen.pl: Fixed bug with referencing to the wrong cookie_defaultsYorhel1-2/+2
2011-02-04Merge branch 'beta'2.17Yorhel40-1098/+1173
Conflicts: ChangeLog
2011-02-04Don't save uploaded image to a temporary location before checksYorhel2-37/+20
This takes less code and may (or may not) be more efficient since it does not require any HDD I/O while performing some checks.
2011-02-03TUWF: Replaced reqParam() with reqGet() or reqPost() where applicableYorhel6-26/+15
Cleaner this way. Also found two occurences of manually HTML-escaping text for textareas, which isn't necessary anymore.
2011-02-03Cleaner and more efficient method of checking for the &fil= paramYorhel2-4/+4
With the new TUWF, kv_validate() returns undef when the param isn't present and an empty string if it is, but left empty. This is a more efficient way to differentiate between empty and nonexistent than the previous YAWF-method of grepping all param names.
2011-02-02Log user ID in the TUWF logYorhel1-0/+10
2011-02-02Display warning for non-standard resolutions of uploaded screenshotsYorhel3-1/+24
2011-02-02Added error message when selected meta tags on VN filtersYorhel3-10/+15
2011-02-02Added /t/all - a listing of all recently replied to threadsYorhel4-7/+17
2011-01-27Order "all notifications" with new notifications firstYorhel3-3/+5
That's more what you'd expect from a list that functions somewhat as a short-lived FIFO "archive".
2011-01-27L10N: Renamed _rbrowse_filters to _js_fil_filtersYorhel3-9/+9
2011-01-27Multi::RG: Use TUWF::XML instead of XML::WriterYorhel2-9/+5
This removes the last dependency on XML::Writer.
2011-01-27Multi::Feed: Use TUWF::XML instead of XML::WriterYorhel2-24/+22
2011-01-27TUWF: Added tag name to several end() callsYorhel15-107/+107
Haven't found any bugs this way, yet. I doubt there'll be any problems, but it's a nice new feature that could help quite a bit. :-D
2011-01-27TUWF: No need for manual XML-escaping in textareas anymoreYorhel1-12/+2
TUWF::XML does not automatically convert '\n' to '<br />' anymore, so it's now safe to pass the contents of the textarea to its HTML function.
2011-01-27TUWF: Cleanup IE check code using pre_request_handler return valueYorhel3-51/+51
No more ugly hacks in my code thanks to TUWF! (a browser check in itself is already ugly enough for my tastes...)
2011-01-27TUWF: Replaced ugly html() redefine hack with the new html() optionsYorhel2-18/+7
2011-01-27TUWF: Use the uri_escape() provided by TUWFYorhel6-15/+7
2011-01-27TUWF: Replaced resHeader('Set-Cookie', ..) with resCookie()Yorhel4-21/+13
Way more convenient. This also fixes several bugs with the previous commit, since the cookie_prefix wasn't used for *all* cookies. Since it is now, the 'l10n' cookie now also respects the configured prefix, which means some people will have to set their default language again. Configuration changes: 'cookie_domain' option has been removed, the 'cookie_defaults' option of TUWF should now be used.
2011-01-27TUWF: Made use of the new cookie_prefix featureYorhel4-5/+5
Configuration change: Make sure you more the cookie_prefix option from %S to %O. (It's now a TUWF option rather than a VNDB one)
2011-01-25TUWF: Initial convert from YAWF to TUWFYorhel26-327/+347
There may still be some bugs present and I've only converted the points where TUWF is incompatible with YAWF. The new TUWF features are not in use yet, I'll do that later on. Note that, in order to run the new code, TUWF must be installed on your system. The configuration for the TransAdmin plugin has also changed. Other than that there shouldn't be any issues.
2011-01-25d6: Fixing incorrect stuff in FAQYorhel1-6/+4
2011-01-08Slightly re-organized lang.txt and renamed some filter stringsYorhel3-347/+356
2011-01-08Changed order of the filter action buttonsYorhel2-4/+6
And slightly changed how the 'loading...' thing is displayed.
2011-01-07Added 'released' release filterYorhel5-5/+28
Just an alias for the correct date_before or date_after filter. Allows bookmarking 'just released' or 'to be released' listings since the URL doesn't change now. Same for saved filters - it's now possible to permanently exclude future releases without having to change the filter each day.