summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)AuthorFilesLines
2009-10-07JS: Moved script.js to data/ and added jsgen.pl to process itYorhel1-0/+1758
While this 'processing' is currently limited to minifying the file if JavaScript::Minifier::XS is available, this change would make it a lot easier to make the strings in the JS code translatable.
2009-10-07L10N: Generalized age() for all languages by using maketext() internallyYorhel1-0/+31
This way the translators can TL/improve their own translation of the age display, instead of asking me to fix it.
2009-10-05JS: Moved, split and rewrote release <-> VN & producer linkingYorhel1-7/+5
+ removed last traces of forms.js + converted code to use tables, as that is easier to expand more accurate for this purpose. The reason I probably didn't use tables before was that the innerHTML property doesn't work on tr elements. The split was mainly because the producer linking is going to be expanded with an additional field later on.
2009-10-05JS: Moved, rewrote and improved VN tag linkingYorhel1-12/+9
- You can now click the spoiler column to scroll through the options - Or mouse-over the spoiler column to see a JS dropdown with the options (no more select box, which introduces several more clicks to do the same)
2009-10-05L10N-EN: Minor typo fix in "about us" linkYorhel1-1/+1
2009-10-04JS: Moved and rewrote VN screenshot uploaderYorhel1-0/+1
Works pretty much the same as the old version.
2009-10-04JS: Moved and rewrote VN relations editorYorhel1-6/+6
+ Some fixes and improvements in the dropdown search + Renamed 'relations' field to 'vnrelations', as other relations are going to be implemented as well New relation editor code is somewhat smaller than the old, mostly thanks to the tag() function. Also tried to make things less error-prone and easier to maintain by referencing things using self-explainable class names instead of the ordering of the HTML tags.
2009-10-03JS: Rewrote and generalized row group expand codeYorhel1-3/+3
2009-10-03JS: Updated and generalized list expand/collapse functionsYorhel1-3/+3
2009-10-02JS: Rewrote release list dropdownYorhel1-8/+10
Abstacted a simple set of reusable functions for generating dropdown lists, as I'm likely going to need that more often.
2009-09-30Added Hungarian to the list of languagesYorhel3-1/+6
Mainly because someone offered to translate the interface into Hungarian, and interface languages are directly linked with database languages.
2009-09-27Converted anime.type to ENUM and made them translatableYorhel2-11/+32
Again, two separate but related things.
2009-09-26Use more readable font for the relation titles in the VN relgraphYorhel1-0/+1
I would also change the font of the VN titles + info, but those boxes are fixed width and changing the font isn't guaranteed to keep the text within the boxes. This problem doesn't exist with the relation titles.
2009-09-26Converted VN relations to ENUM data type and made them translatableYorhel2-13/+56
OK, these are actually two separate things: to make the relations translatable they didn't necessarily have to be stored as enum, and I could've also converted them to enum but not have it translatable. Nevertheless, it was easier to just do both at the same time. Also note how I used the string "$____vnrel_<rel>____$" as identifier in the relation graphs while I could have used something a lot shorter ("$<rel>$" would have been fine, for example). This is done so that graphviz can make some space for those relations - the long identifier gives a slightly more realistic representation of the actual length of the relation titles.
2009-09-26homepage: Minor typo fix + link to /v/randYorhel1-1/+1
2009-09-25Handler::VNPage: Added simple browser detection for XHTMLYorhel1-0/+8
If a browser does support the application/xhtml+xml mime, let's assume it also supports SVG (to my knowledge, this is the case in any recent browser). OTOH, browsers not supporting that mime type are sure to not support SVG, either.
2009-09-25Use inline SVG for relation graphsYorhel1-0/+7
The graphs are now stored in the DB in SVG format, the static/rg/ directory can be removed (not used anymore). SVG data is stored using the xml data type, so now I can say for sure you'd need at least PostgreSQL 8.3. This feature still needs some tweaking, though. Current state isn't perfect.
2009-09-24Fixed display bug in VN vote averageYorhel1-2/+2
2009-09-24Merge branch 'beta'2.7Yorhel6-358/+3387
+ updated changelog
2009-09-24d2: Updated VN inclusion guidelineYorhel1-5/+18
2009-09-24L10N: Translated the 'ALL' char and fixed footer TL bugYorhel1-0/+6
2009-09-20L10N: Improvements for Russian lang.txtDmitri Poguliayev1-10/+10
2009-09-13L10N: Synchronised Russian translation of lang.txtDmitri Poguliayev1-26/+25
2009-09-12Handler::Discussions: Full reply button + larger textareaYorhel2-1/+5
2009-09-12homepage: Removed 'and eroge' from the introduction textYorhel1-2/+2
2009-09-12Added reminders to write English to several form fieldsYorhel2-1/+8
2009-09-10L10N: Extracted VN lenghtsYorhel2-8/+28
2009-09-10L10N: Converted Util::CommonHTML::htmlVoteStatsYorhel1-0/+22
2009-09-08Added random VN link in menuYorhel1-0/+4
2009-09-07Handler::Misc: Made box titles on the homepage click-ableYorhel2-4/+3
2009-09-07Added three new platforms (DOS, PC-98, Sega Saturn)Yorhel3-3/+17
Had to increase the size of icons.png a bit...
2009-09-07L10N: More Russian TL and improvements of lang.txtDmitri Poguliayev1-260/+297
2009-09-06L10N: Updated some things in the header description in lang.txtYorhel1-19/+13
2009-09-06L10N: Converted wishlist_status in global.plYorhel2-6/+20
This is one of the last easy-to-extract unextracted texts... the rest is slightly harder to extract. Either because it's in JS, used in Multi, or used in some creative way that doesn't work well together with extraction... :/
2009-09-06L10N: Converted Util::FormHTMLYorhel1-0/+107
Removed the idea mapping field names to readable strings, it was never really a clean solution. The messages did become less readable now, but oh well...
2009-09-06L10N: Converted 'voiced', 'animated' and 'votes' in global.plYorhel2-27/+92
2009-09-06L10N: Converted Handler::VNPageYorhel1-0/+269
This is the last Handler module. There are still some other things left in Util:: and global.pl, though. But at least we're nearing the end!
2009-09-05L10N: Converted Handler::VNBrowse and Handler::VNEditYorhel1-0/+219
2009-09-04L10N: Converted Handler::UsersYorhel1-0/+322
2009-09-04L10N: Russian lang.txt improvements and additionsDmitri Poguliayev1-106/+114
2009-09-04L10N: Converted Handler::UListsYorhel1-0/+106
2009-09-03L10N: Russian translation for current lang.txtDmitri Poguliayev1-334/+348
2009-09-03L10N: Converted Handler::TagsYorhel1-0/+378
2009-08-19L10N: Converted Handler::Releases::browseYorhel1-0/+125
This finishes Handler::Releases
2009-08-18L10N: Converted Handler::Releases::editYorhel1-0/+144
2009-08-18L10N: Converted Handler::Releases::pageYorhel1-0/+210
2009-08-18htmlForm(): Don't generate subform id from the titleYorhel1-22/+22
The subform id is now passed to htmlForm() as first formpart item. This way the id won't change even if the title does, which will be the case with the interface translation.
2009-08-17L10N: Converted Handler::ProducersYorhel1-0/+129
Hmmm, I think I'll need to update some of the utility functions to take more functionality from the Handler pages in regard to getting text strings. Using mt() on everything that is essentially already passed to other functions with a unique string for identification is a bit double. So far I've updated htmlRevision to do this. (The name argument is still present but currently ignored, to preserve backwards compatility, the rest of the code will be updated soon.) Other utility functions like htmlForm should probably do something like that as well.
2009-08-17L10N: Converted Handler::Discussions and the discussion_boards listYorhel2-7/+180
2009-08-17L10N: Converted Handler::Misc::nospamYorhel1-0/+17
This finishes Handler::Misc.