summaryrefslogtreecommitdiffstats
path: root/include
AgeCommit message (Collapse)AuthorFilesLines
2012-09-19replaces some more " with 'Arun Persaud1-4/+4
2012-09-19better message when working on the database or having edoko offline for ↵Arun Persaud1-2/+5
other reasons.
2012-09-19BUGFIX: css index prevented user from selecting a radio button and minor tweaksArun Persaud1-15/+15
* fixed in sickness screen * removed unnessecary questions * pre-selected yes for starting a game * some minor css tweaks
2012-09-17CLEANUP: replaced " with ' in lots of places'; added admin email to error ↵Arun Persaud1-130/+124
message
2012-09-17Mark the starting player until the game actually starts ;)Arun Persaud1-2/+8
just a small text above the player with some CSS
2012-09-17mark more strings for translationArun Persaud1-7/+7
2012-09-17BUGFIX: update status (healthy/sick) during pre-game phase right awayArun Persaud1-73/+71
before a reload was needed, no the information only gets displayed after the user data is being processed.
2012-09-17fixed typo and added a commentArun Persaud1-1/+4
2012-06-09Remove games from digest where the player already movedArun Persaud2-5/+8
2012-06-09CLEANUP: name variables in a more consistent wayArun Persaud1-22/+22
2012-06-09LAYOUT: fixed layout bugs due to newer version of jqueryArun Persaud1-8/+1
2012-05-12marked some more messages for translationArun Persaud1-10/+10
2012-05-09BUGFIX: gametype was displayed in pre-phase of the gameArun Persaud1-1/+1
This could give away the type of sickness a player has
2012-05-08BUGFIX: move some text into the message boxArun Persaud1-1/+1
2012-05-08BUGFIX: removed side effect from getting the user's preferences: the ↵Arun Persaud5-1/+10
language used could be overwritten by another user's choise the DB_get_Prefs($myid) functions used to set the _SESSION variable for the language, but was also called with ids that belonged to other players overwriting the language settings with that from another user
2012-05-08BUGFIX: a typo in the variable name card_status triggered some error messages.Arun Persaud1-21/+8
fixed the typo and cleaned up the code a bit with a better default for the variable
2012-05-08fixed typo in commentArun Persaud1-1/+1
2012-05-08moved js files into their own directoryArun Persaud5-286/+4
2012-05-08auto-versioning for js and css files. Needs .htaccess to be installedArun Persaud1-7/+22
The md5 of the file will be added to the filename of the .js or .css file. .htaccess will remove these again, but the browser will be able to cache correctly now.
2012-02-19BUGFIX: if you win a trick, you don't have to reload the page from now on.Arun Persaud1-1/+3
added a check if the player won the trick, if so, show radiobuttons next to cards to select new one. Also needed to unset firstcard when winning the trick, since without it follow suite was still working with regards to the first card in the last trick.
2012-02-18speed up get score tableArun Persaud2-51/+44
instead of looping over all games and have 3 database querries for each gameid, we now only do 5 querries: one for the gameids, scores and gametype and then one for each player to get his party
2012-02-10updated copyright notice for 2012Arun Persaud15-16/+16
2012-02-10fixed margin collapse in .main (gray bar below header)Arun Persaud1-1/+1
the h4 element has a default top margin, but the .user and .main diff didn't have any. Because of collapsing margins they were also assigned the same margin which then created the gray bar. This doesn't happen if the parent element has non-zero padding, so I added a 1px top and bottom padding to .main, which fixed the problem
2012-02-04fixed showing re/contra call at beginning of game; allowed pre-game ↵Arun Persaud3-66/+152
comments; DB upgrade the problem with re/contra at the beginning of a game was that no playid was set yet, so we couldn't record when the call was made. Added two special playid (-1 and -2), for pre-game comments and re/contra calls before the first card is played. For this we need to record the gameid in the comment table => DB update
2012-01-31fixed link to gravatar home pageArun Persaud1-1/+1
an extra slash made the link relative, which of cource didn't work
2011-11-22LAYOUT: fixed position of .joingame (had left:0;)Arun Persaud1-1/+1
2011-11-19BUGFIX: typo in javascriptArun Persaud1-2/+2
2011-11-19LAYOUT: fixed user home page a bitArun Persaud1-5/+5
2011-11-19LAYOUT: remove text "game" from "it's your turn" listArun Persaud1-1/+1
2011-11-19BUGFIX: added special section for vorbehalte (needs to be in div ↵Arun Persaud1-24/+65
class=middle in the new layout)
2011-11-19LAYOUT: fixed layout for new game pageArun Persaud1-32/+64
2011-11-19LAYOUT, BUGFIX: don't show current game in "it's your turn" list, also fix ↵Arun Persaud3-10/+19
layout for this on newgame.php
2011-11-19LAYOUT: fixed some css issues in the new layoutArun Persaud1-1/+1
* totals were displayed too low * personal notes were too low * text for points for person on the bottom was on top of the div for the card instead of at the bottom
2011-11-16BUGFIX: make "It's your turn in ..." a comma separated listArun Persaud1-1/+5
2011-11-16BUGFIX: fixed undefined variable when displaying tricks menuArun Persaud1-0/+1
2011-11-15LAYOUT: use html5 buttons for prev/next for the tricksArun Persaud2-3/+3
2011-11-15added viewport definition for mobile devicesArun Persaud1-0/+1
2011-11-15LAYOUT: redone layout of table and cardsArun Persaud3-105/+179
scales a lot better now and should be better for mobile devices
2011-11-14LAYOUT: moved game status to top; cleaned up some cssArun Persaud3-34/+29
2011-11-14CLEANUP: merged normal css file and the one for mobile phones into one fileArun Persaud1-2/+1
2011-11-13CLEANUP: moves javascript from header into game.jsArun Persaud2-44/+41
should make html output smaller, since game.js can be cached
2011-11-13CLEANUP: fixed html output a bitArun Persaud3-14/+12
added whitespaces and line breaks
2011-11-13LAYOUT: moved output of all game message after the tricks and tableArun Persaud2-42/+58
this should make the html layout more consistent and easier to manage for different screen sizes, e.g. for mobile phones
2011-11-13LAYOUT: move display of cards below switch for mystatusArun Persaud2-152/+169
This should make for a more consistent html layout and fix some issues that show up on different browsers and display sizes.
2011-11-13CLEANUP: added some comments, renamed some variables, moved a tiny bit of codeArun Persaud1-96/+97
2011-10-07fixed some html source code alignement and moved the games table, so it's ↵Arun Persaud2-19/+22
flush left with the rest of the test
2011-10-07moved players positinon around the table a bit to center them betterArun Persaud1-1/+1
2011-10-07move #tricks to new line and center itArun Persaud1-5/+6
2011-10-07updated copyright to 2011Arun Persaud1-1/+1
2011-10-07moved last login status to bottome for narrow displayArun Persaud1-1/+1