From fijal at codespeak.net Wed May 9 11:11:24 2007 From: fijal at codespeak.net (fijal at codespeak.net) Date: Wed, 9 May 2007 11:11:24 +0200 (CEST) Subject: [py-svn] r42899 - py/branch/session-merge Message-ID: <20070509091124.730E88076@code0.codespeak.net> Author: fijal Date: Wed May 9 11:11:24 2007 New Revision: 42899 Added: py/branch/session-merge/ - copied from r42898, py/trunk/ Log: A branch for experiments with session merging From fijal at codespeak.net Sat May 12 16:53:26 2007 From: fijal at codespeak.net (fijal at codespeak.net) Date: Sat, 12 May 2007 16:53:26 +0200 (CEST) Subject: [py-svn] r43299 - py/trunk/py Message-ID: <20070512145326.B069B807F@code0.codespeak.net> Author: fijal Date: Sat May 12 16:53:25 2007 New Revision: 43299 Modified: py/trunk/py/__init__.py Log: Be more keyword-friendly for cheesshop Modified: py/trunk/py/__init__.py ============================================================================== --- py/trunk/py/__init__.py (original) +++ py/trunk/py/__init__.py Sat May 12 16:53:25 2007 @@ -10,7 +10,7 @@ version = "0.9.1-alpha" initpkg(__name__, - description = "py lib: agile development and test support library", + description = "pylib and py.test: agile development and test support library", revision = int('$LastChangedRevision$'.split(':')[1][:-1]), lastchangedate = '$LastChangedDate$', version = version, @@ -31,6 +31,7 @@ 'test.skip' : ('./test/item.py', 'skip'), 'test.fail' : ('./test/item.py', 'fail'), 'test.exit' : ('./test/session.py', 'exit'), + 'test.pdb' : ('./test/pdbplus.py', 'start_pdb'), # configuration/initialization related test api 'test.config' : ('./test/config.py', 'config_per_process'), From fijal at codespeak.net Wed May 23 17:03:47 2007 From: fijal at codespeak.net (fijal at codespeak.net) Date: Wed, 23 May 2007 17:03:47 +0200 (CEST) Subject: [py-svn] r43575 - in py/trunk/py/test/rsession: . webdata Message-ID: <20070523150347.02A8D806E@code0.codespeak.net> Author: fijal Date: Wed May 23 17:03:46 2007 New Revision: 43575 Modified: py/trunk/py/test/rsession/webdata/index.html py/trunk/py/test/rsession/webdata/source.js py/trunk/py/test/rsession/webjs.py Log: Whack CSS a bit to have dots which does not go under the navbar Modified: py/trunk/py/test/rsession/webdata/index.html ============================================================================== --- py/trunk/py/test/rsession/webdata/index.html (original) +++ py/trunk/py/test/rsession/webdata/index.html Wed May 23 17:03:46 2007 @@ -20,6 +20,10 @@ z-index: 2; } + div.main { + margin-right: 170px; + } + .error { color: #F00; font-weight: bold; @@ -32,6 +36,7 @@ background-color: #ffd; border: 1px solid #003; z-index: 1; + width: 160px; } #navbar tr, #navbar td { @@ -106,13 +111,15 @@ - -
+
+ +
Data [hide]:
+
Modified: py/trunk/py/test/rsession/webdata/source.js ============================================================================== Binary files. No diff available. Modified: py/trunk/py/test/rsession/webjs.py ============================================================================== --- py/trunk/py/test/rsession/webjs.py (original) +++ py/trunk/py/test/rsession/webjs.py Wed May 23 17:03:46 2007 @@ -156,7 +156,7 @@ td.appendChild(link) exported_methods.show_fail(item_name, fail_come_back) - if counters[msg['fullmodulename']] % MAX_COUNTER == 0: + if counters[msg['fullmodulename']] == 0: tr = create_elem("tr") module_part.appendChild(tr)