summaryrefslogtreecommitdiff
path: root/data/global.pl
AgeCommit message (Collapse)AuthorFilesLines
2010-11-02Prefix all cookies with a configurable cookie_prefixYorhel1-1/+1
This replaces the "cookie_auth" setting, and applies to all cookies in use by VNDB.
2010-11-02Multi::Image: Moved image size configuration to global.plYorhel1-0/+2
As those may also be useful for other scripts.
2010-11-02Removed XML sitemapYorhel1-1/+0
Was growing too large and isn't really necessary anymore, now that VNDB is indexed quite well in most search engines.
2010-11-01Properly order the relations listed on producer pagesYorhel1-6/+6
And changed the order a bit, as suggested by ImmLff.
2010-11-01Added Apple iProduct platformYorhel1-1/+1
2010-10-31Added 1024x576 and 1280x800 screen resolutionsYorhel1-0/+2
2010-03-14Made name of the auth cookie configurableYorhel1-0/+1
Now it's finally possible to run multiple VNDB's with different databases on the same domain without constantly getting logged out.
2010-02-02Differentiate between pt-PT and pt-BR in the languagesYorhel1-1/+1
As requested, http://vndb.org/t423
2010-01-11Added Slovak to the list of languagesYorhel1-1/+1
2009-12-28L10N-EN: Renamed the "Custom" screen resolution to "Non-standard"Yorhel1-1/+2
...and added note that it should be translatable
2009-11-14SQL/L10N: Allow NULL for releases_rev.minage and make the values translatableYorhel1-17/+1
2009-11-04API: Initial commit of the W.I.P. public APIYorhel1-0/+1
d11 does not fully reflect what has been implemented, and things are likely to change.
2009-10-24Added Spawned <> Originated from producer relationYorhel1-2/+4
2009-10-21Started on the producer relationsYorhel1-0/+8
The current list of relations isn't final yet, may be changed later on. Quite a bit of this code has been copied from the VN relations... need to find a way to use prober code reuse here. TODO: - Nice relation editor interface - Display relations in revision browser - Display relations on producer pages - Generate relation graphs - Sync update_2.8.sql into dump.sql
2009-10-17SQL: Converted releases_rev.type to an ENUM data typeYorhel1-1/+1
2009-10-07L10N: Extracted release media and the media selectorYorhel1-12/+12
2009-10-07L10N: Extracted strings for and improved release list selector on VN pagesYorhel1-1/+0
2009-10-07L10N: Extracted release list statusesYorhel1-14/+2
Should be converted to enums at some point... integers don't do the trick here.
2009-09-30Added Hungarian to the list of languagesYorhel1-1/+1
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 translatableYorhel1-11/+1
Again, two separate but related things.
2009-09-26Converted VN relations to ENUM data type and made them translatableYorhel1-13/+13
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-10L10N: Extracted VN lenghtsYorhel1-8/+1
2009-09-07Added three new platforms (DOS, PC-98, Sega Saturn)Yorhel1-1/+1
Had to increase the size of icons.png a bit...
2009-09-06L10N: Converted wishlist_status in global.plYorhel1-6/+1
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 'voiced', 'animated' and 'votes' in global.plYorhel1-26/+2
2009-08-17L10N: Converted Handler::Discussions and the discussion_boards listYorhel1-7/+1
2009-08-17L10N: Converted producer and release typesYorhel1-10/+2
And replaced the ugly release type cssicon class hack. The class is now 'tr'.$type_numer, instead of the first three characters of their English representation in lowercase. No idea why I haven't done it this way in the first place...
2009-08-17L10N: Converted platform namesYorhel1-19/+1
2009-08-17L10N: Converted user ranks and language namesYorhel1-28/+8
User ranks are easy... but the language names are used everywhere!
2009-08-17L10N: Russian TL for site title and main menuYorhel1-1/+0
Things are looking good so far.
2009-08-16Removed sharedmem_key from global.plYorhel1-1/+0
Not used anymore.
2009-08-15Improved VN relationsYorhel1-5/+4
2009-08-08Removed last traces of the category systemYorhel1-51/+0
2009-08-01Added Vietnamese to the language listYorhel1-0/+1
Now the last unused space in icons.png is used as well. Another icon and we'll need to enlarge it a bit.
2009-07-30Merge branch 'auth' of git://3decibels.net/vndb into betaYorhel1-1/+1
Conflicts: util/dump.sql util/updates/update_2.6.sql Also updated ChangeLog and made some tiny style changes.
2009-07-28Removed Crypt::Lite dependency3dB1-2/+1
-- Changed the way cookie data is handled and removed the need for Crypt::Lite -- Removed "cookie_key" configuration setting for Crypt::Lite
2009-07-24Checkin of auth rewrite progress.3dB1-0/+1
Added a new DB library for handling sessions. New update SQL file for database changes. Added a line to the global config file to set a global salt. It is separate from the cookie_key because it is much more important that it not be changed.
2009-07-19Added 1024x600 and 1600x1200 screen resolutionsYorhel1-0/+2
2009-07-18Modified definition of the anime tableYorhel1-9/+9
Removed most NOT NULL constraints, and converted lastfetch to a timestamp data type. The site has been updated to handle this, but Multi::Anime won't work.
2009-07-16Made a start on the Multi-rewriteYorhel1-1/+0
Started on multi.pl and Multi::Core, the main differences: - Uses POE::Component::Pg now (get it from http://g.blicky.net/poco-pg.git/) - Doesn't use shared memory anymore - No 'commands' anymore, every session has to handle its own events (communication goes either through POE itself, or the PostgreSQL DB) - No weird Cron stuff anymore All other Multi modules will have to be updated/rewritten to reflect these changes. None of them will work at the moment.
2009-07-04Removed \x{200B} hacks from platforms and categoriesYorhel1-4/+4
That hack has been obsoleted now they aren't used in the VN search box anymore.
2009-06-06Improved in the release resolution options + typo fix: unkown -> unknownYorhel1-14/+12
2009-05-23Animation fields for releasesYorhel1-0/+7
2009-05-22Changed order of voiced optionsYorhel1-1/+1
<ImmLff> It's better to switch order of "Partially voiced" and "Only Eroscenes voiced", as "Partially voiced" is closer to "Fully voiced" - None|Only ero|Partially|Full
2009-05-22Show comparable CERO ratings on /r+/edit input fieldYorhel1-3/+15
2009-05-22Custom resolution optionYorhel1-3/+4
2009-05-22Voiced field for releasesYorhel1-0/+7
TODO: filter on /r
2009-05-22Added resolution field to release entriesYorhel1-0/+12
TODO: - Update d3 - Add filter to /r
2009-03-21Replacing all occurences of 'discussion tags' with 'discussion boards'Yorhel1-1/+1
Which is a more accurate description, and doesn't confuse with the tagging system. Note than even all internal uses of the word 'tag' have been replaced, as I'm not a huge fan of different terminology in the code and UI. This update might break some things related to the discussion board.
2009-03-14Added tag states for pending/deleted/acceptedYorhel1-1/+1