August 21, 2008 Pokersource
Commit by loic :: r4314 /trunk/poker-network/tests/test-proxyfilter.py.in:test connection refusedtest connection refused
August 21, 2008 05:02 PM
Commit by loic :: r4313 /trunk/poker-network/pokernetwork/proxyfilter.py:. use dedicated request methods instead of direct transport.write. use dedicated request methods instead of direct transport.write . discard...
. discard ConnectionDone error
August 21, 2008 05:01 PM
Commit by loic :: r4310 /trunk/poker-network/tests/test-proxyfilter.py.in:TableJoin thru proxyTableJoin thru proxy
August 21, 2008 12:03 AM
Commit by loic :: r4311 /trunk/poker-network/tests/test-proxyfilter.py.in:use the proxy on 19480use the proxy on 19480
August 21, 2008 12:03 AM
Commit by loic :: r4312 /trunk/poker-network/pokernetwork/proxyfilter.py:avoid calling the client deferred twiceavoid calling the client deferred twice do not return on error if a...
do not return on error if a ConnectionDone is sent to ConnectionLost
rewind the request to the beginning before feeding it to the ClientFactory
August 21, 2008 12:03 AMAugust 20, 2008 jpoker software
split jpoker_chat dealer messagesplit jpoker_chat dealer message
by root@kun at August 20, 2008 02:30 PMCommit by loic :: r4308 /trunk/poker-network/pokernetwork/pokerpackets.py:PokerPoll for REST polling purposes (sort of Ping with a game_id and tourney_serial)PokerPoll for REST polling purposes (sort of Ping with a game_id and...
August 20, 2008 12:29 PM
Commit by loic :: r4309 /trunk/poker-network/pokernetwork/pokerpackets.py:s/currency/currency_serial/s/currency/currency_serial/
August 20, 2008 12:29 PMadd jpoker_53_timeout to skinadd jpoker_53_timeout to skin
by root@kun at August 20, 2008 11:22 AM
add tourneyDetails to skinadd tourneyDetails to skin
by root@kun at August 20, 2008 10:02 AMCommit by loic :: r4307 /trunk/poker-network/pokernetwork/proxyfilter.py:ProxyClientFactor is local (not from the twisted proxy sample implementation because error handling is inapropriate)ProxyClientFactor is local (not from the twisted proxy sample implementation...
August 20, 2008 09:48 AM
Commit by loic :: r4306 /trunk/poker-network/tests/test-proxyfilter.py.in:finalize proper conditions to run the proxyfilter codefinalize proper conditions to run the proxyfilter code
August 20, 2008 09:48 AMadd jpoker_53_userInfo to skinadd jpoker_53_userInfo to skin
by root@kun at August 20, 2008 09:40 AMCommit by loic :: r4305 /trunk/poker-network/pokernetwork/proxyfilter.py:poker reverse proxypoker reverse proxy
August 20, 2008 09:13 AM
Commit by loic :: r4304 /trunk/poker-network/tests/test-proxyfilter.py.in:test stub for proxyfilter, involving a server and a proxy running on 127.0.0.1:19480 and 127.0.0.1:19481 respectivelytest stub for proxyfilter, involving a server and a proxy running on...
August 20, 2008 09:05 AMAugust 19, 2008 Pokersource
Commit by loic :: r4303 /trunk/poker-network/tests/test-pokerservice.py.in:test00_config : do not call stopService from within the teststest00_config : do not call stopService from within the tests test01_auth :...
test01_auth : restore database for the benefit of the shutdown process
August 19, 2008 05:38 PMjpoker.preferencesjpoker.preferences
by root@kun at August 19, 2008 03:17 PM
jpoker.plugins.tourneyDetails templates registerjpoker.plugins.tourneyDetails templates register
by root@kun at August 19, 2008 02:45 PMhousekeepinghousekeeping
by root@pokersource.info at August 19, 2008 02:43 PMjpoker.plugins.tourneyDetails templates ranks shown when running or completedjpoker.plugins.tourneyDetails templates ranks shown when running or completed
by root@kun at August 19, 2008 02:29 PM
add tournament state column to sitngoadd tournament state column to sitngo
by root@kun at August 19, 2008 01:48 PM
add tournament state columnadd tournament state column
by root@kun at August 19, 2008 01:43 PMAugust 18, 2008 jpoker software
add jpoker.servers.urls to fix testsuite over file://add jpoker.servers.urls to fix testsuite over file://
by root@kun at August 18, 2008 02:55 PMCommit by bkuhn :: r4300 /trunk/ (6 files in 4 dirs):r1018@hughes: bkuhn | 2008-08-17 22:14:32 -0400 Various changes to handle...r1018@hughes: bkuhn | 2008-08-17 22:14:32 -0400 Various changes to handle counting of missed blinds In pokergame.py: * Added field missed_big_blind_count * Added it to __str__ formatter * Wrote method resetMissedBlinds(), which clears missed_blind and resets above counter. * Replaced occurrences of "player.missed_blind = None" with call to that method. * Added increment of that in updateMissed(), but only if it is the big blind being missed. In blinds.py.in: * Added test of the missed blind count to the check_blinds() method * Added additional checks for where the button is and confirming that various things happen in the hand history. These are unrelated to the changes I've made, but generally improve the tests and add double-checks. In test-pokerplayer.py.in: * Added missed_blind_count to string formatter test. # testmessages.py is collateral damage. I started getting it ready but decided not to use it.
August 18, 2008 02:16 AMAugust 17, 2008 Pokersource
Commit by bkuhn :: r4299 /trunk/poker-engine/tests/testmessages.py:* Copied over testmessages.py to be used in poker-engine tests as well as...
- Copied over testmessages.py to be used in poker-engine tests as well as poker-network
August 17, 2008 08:25 PM
Commit by bkuhn :: r4298 /trunk/ (3 files in 3 dirs):r1012@hughes: bkuhn | 2008-08-17 15:12:44 -0400 * Player counts in pokerservice...r1012@hughes: bkuhn | 2008-08-17 15:12:44 -0400 * Player counts in pokerservice are generally updated by the PokerTable object, since that is the only object in the system constantly aware of who is observing and playing. This is done through the PokerTable.joinPlayer() method. However, there is one case, in which players bypass the joinPlayer() method. Specifically, when they are (a) already logged in and (b) a tourney starts while they are logged in. In this case, the method PokerService.tourneyGameFilled() then seats them at the table, and they never go through the usual join process. This commit adds the joinedCountIncrease() call needed in PokerService.tourneyGameFilled().
August 17, 2008 07:26 PM
Commit by bkuhn :: r4297 /trunk/ (. poker-network/ChangeLog):No log messageNone
August 17, 2008 07:26 PM
Commit by bkuhn :: r4296 /trunk/ (3 files in 3 dirs):r1009@hughes: bkuhn | 2008-08-17 11:53:49 -0400 * Improved ClientMockups in two...r1009@hughes: bkuhn | 2008-08-17 11:53:49 -0400 * Improved ClientMockups in two test classes * Added a number of message checks and a packet check to no_rank and renamed test.
August 17, 2008 07:26 PM
Commit by loic :: r4295 /tags/poker_network_1_7_0_1/poker-network/:poker_network_1_7_0_1poker_network_1_7_0_1
August 17, 2008 03:43 PM
Commit by loic :: r4294 /tags/poker_network_1_7_0_1/:poker_network_1_7_0_1poker_network_1_7_0_1
August 17, 2008 03:43 PM
Commit by loic :: r4291 /trunk/poker-network/conf/poker.server.xml.in:max default is 1000max default is 1000
August 17, 2008 03:43 PM
Commit by loic :: r4292 /trunk/poker-network/ChangeLog:*** empty log message ****** empty log message ***
August 17, 2008 03:43 PM
Commit by loic :: r4293 /tags/poker_network_1_7_0_1/:invalid poker_network_1_7_0_1invalid poker_network_1_7_0_1
August 17, 2008 03:43 PM
Commit by loic :: r4290 /trunk/poker-network/pokernetwork/pokerservice.py:table serial is extracted from the MySQL database instead of the in-core countertable serial is extracted from the MySQL database instead of the in-core counter
August 17, 2008 02:33 PM
Commit by loic :: r4289 /trunk/poker-network/tests/test-pokerservice.py.in:Table numbers changed from 100 to 1, 101 to 2 etcTable numbers changed from 100 to 1, 101 to 2 etc
August 17, 2008 02:31 PM
Commit by loic :: r4288 /trunk/poker-network/tests/test-pokerclient.py.in:Table numbers changed from 100 to 1, 101 to 2 etcTable numbers changed from 100 to 1, 101 to 2 etc
August 17, 2008 02:31 PM
Commit by loic :: r4287 /trunk/poker-network/tests/test-pokeravatar.py.in:Table numbers changed from 100 to 1, 101 to 2 etcTable numbers changed from 100 to 1, 101 to 2 etc
August 17, 2008 02:30 PM
Commit by loic :: r4286 /trunk/poker-network/database/schema.sql.in:Larger field for table name and unique constraintLarger field for table name and unique constraint
August 17, 2008 02:30 PM
Commit by loic :: r4285 /trunk/poker-network/database/1.6.0-1.7.0.sql:Larger field for table name and unique constraintLarger field for table name and unique constraint
August 17, 2008 02:29 PM
Commit by loic :: r4284 /trunk/poker-network/pokernetwork/pokerservice.py:Larger field for table name and unique constraintLarger field for table name and unique constraint
August 17, 2008 02:29 PM
Commit by bkuhn :: r4283 /trunk/ (2 files in 2 dirs):r996@hughes: bkuhn | 2008-08-17 10:25:28 -0400 # added note to remember to check...r996@hughes: bkuhn | 2008-08-17 10:25:28 -0400 # added note to remember to check db
August 17, 2008 02:26 PM
Commit by bkuhn :: r4282 /trunk/ (3 files in 3 dirs):r995@hughes: bkuhn | 2008-08-17 10:24:53 -0400 * Added test to cover user not...r995@hughes: bkuhn | 2008-08-17 10:24:53 -0400 * Added test to cover user not found with autocreate off
August 17, 2008 02:26 PM
Commit by bkuhn :: r4281 /trunk/ (3 files in 3 dirs):r993@hughes: bkuhn | 2008-08-17 09:12:50 -0400 * Added simple test for internal...r993@hughes: bkuhn | 2008-08-17 09:12:50 -0400 * Added simple test for internal auth fallback with auto-auth
August 17, 2008 01:30 PM
Commit by bkuhn :: r4280 /trunk/ (2 files in 2 dirs):r990@hughes: bkuhn | 2008-08-16 22:18:24 -0400 # Forgot to add copyright notice...r990@hughes: bkuhn | 2008-08-16 22:18:24 -0400 # Forgot to add copyright notice in last commit
August 17, 2008 02:19 AM
Commit by bkuhn :: r4279 /trunk/ (3 files in 3 dirs):r989@hughes: bkuhn | 2008-08-16 21:46:26 -0400 # Added small test for error...r989@hughes: bkuhn | 2008-08-16 21:46:26 -0400 # Added small test for error output after update on test16
August 17, 2008 02:19 AM
Commit by bkuhn :: r4278 /trunk/ (5 files in 4 dirs):r986@hughes: bkuhn | 2008-08-16 21:27:02 -0400 * Various changes to implement...r986@hughes: bkuhn | 2008-08-16 21:27:02 -0400 * Various changes to implement the maximum observers/players server-wide. The primary counter is kept in pokerservice.py. We have added calls to increment and decrement the counter and test its value. The calls are made now from joinPlayer() and destroyPlayer(). A note is worth making about transient tables. I am unclear if transient table joins should ever be refused. IIRC, transient tables are used only for tournaments. If someone has a seat at a tournament, should we not always let them sit down? And, what about observers of tournaments? It is also not clear to me that transient tables can be observed?
August 17, 2008 01:28 AM
Commit by bkuhn :: r4277 /trunk/ (2 files in 2 dirs):r985@hughes: bkuhn | 2008-08-16 19:07:38 -0400 # Added copyright notice.r985@hughes: bkuhn | 2008-08-16 19:07:38 -0400 # Added copyright notice.
August 17, 2008 01:27 AMAugust 16, 2008 Pokersource
Commit by bkuhn :: r4276 /trunk/ (4 files in 4 dirs):r983@hughes: bkuhn | 2008-08-16 16:16:12 -0400 * Changed max_joined =>...r983@hughes: bkuhn | 2008-08-16 16:16:12 -0400 * Changed max_joined => joined_max instance variable in PokerService * For PokerService, added methods joinedCountDecrease, joinedCountIncrease and joinedCountReachedMax and tests therefore * Added a few tests for various instance variables.
August 16, 2008 08:16 PM
Commit by bkuhn :: r4275 /trunk/ (5 files in 5 dirs):r981@hughes: bkuhn | 2008-08-16 15:18:22 -0400 * Added setting, max_joined, to...r981@hughes: bkuhn | 2008-08-16 15:18:22 -0400 * Added setting, max_joined, to the service settings in poker.server.xml. * Implemented read of those settings in pokerservice.py, including a new instance variable, max_joined * Test coverage added to make sure setting is loaded into the service object configuration.
August 16, 2008 07:19 PMconfigure /POKER_RESTconfigure /POKER_REST
by root@proxy.bayou.tld at August 16, 2008 10:40 AMbug tracker archivingbug tracker archiving
by root@jspoker.pokersource.info at August 16, 2008 10:30 AMCommit by loic :: r4274 /tags/poker_network_1_7_0_1/poker-network/:poker_network_1_7_0_1poker_network_1_7_0_1
August 16, 2008 03:44 AMpublished jpokerpublished jpoker
by root@jspoker.pokersource.info at August 16, 2008 03:33 AMCommit by loic :: r4273 /tags/poker_network_1_7_0_1/:poker_network_1_7_0_1poker_network_1_7_0_1
August 16, 2008 03:09 AM
Commit by loic :: r4272 /tags/poker_network_1_7_0_1/:invalid poker_network_1_7_0_1invalid poker_network_1_7_0_1
August 16, 2008 03:09 AMremove client session control and leave it to the serverremove client session control and leave it to the server
by loic@pokerdev.call.tld at August 16, 2008 02:57 AMCommit by loic :: r4271 /trunk/poker-network/ChangeLog:*** empty log message ****** empty log message ***
August 16, 2008 02:54 AM
Commit by loic :: r4270 /trunk/poker-network/tests/test-pokerservice.py.in:get rid of extra verbosityget rid of extra verbosity
August 16, 2008 02:52 AM
Commit by loic :: r4269 /trunk/poker-network/pokernetwork/ (pokeravatar.py pokersite.py):The role is set when creating the avatar, always. Not just when reloginThe role is set when creating the avatar, always. Not just when relogin
August 16, 2008 02:51 AMpublished jpokerpublished jpoker
by root@jspoker.pokersource.info at August 16, 2008 01:35 AM