1 2011-08-22T00:00:44  <ThomasWaldmann> also, shouldn't some of the new urls you have introduced by also in that robots.txt string?
   2 2011-08-22T00:00:51  <ThomasWaldmann> be*
   3 2011-08-22T00:01:13  <CIA-114> Akash Sinha <akash2607@gmail.com> * 9d26ad52a720 r533 default/MoinMoin/apps/frontend/views.py: generator removed from views.py
   4 2011-08-22T00:02:31  <sinha1> ThomasWaldmann: i have introduced 3 ajax urls
   5 2011-08-22T00:03:05  <ThomasWaldmann> hmm, could a robot know there urls?
   6 2011-08-22T00:03:15  <ThomasWaldmann> or find them somehow?
   7 2011-08-22T00:04:17  <sinha1> unless you do a POST request it will return a 404,
   8 2011-08-22T00:05:15  <sinha1> so should i add them there ?
   9 2011-08-22T00:05:40  <ThomasWaldmann> answer my question?
  10 2011-08-22T00:07:42  <sinha1> ThomasWaldmann: i said if POST request is made then one can find, otherwise it will show that "+url does not exist. Create it?"
  11 2011-08-22T00:08:01  <sinha1> so i guess robots wont get any 200 header
  12 2011-08-22T00:08:41  <sinha1> because in those urls only POST method is defined
  13 2011-08-22T00:08:43  <ThomasWaldmann> i didn't ask what happens if something uses that url
  14 2011-08-22T00:09:00  <ThomasWaldmann> i asked whether something can find those urls
  15 2011-08-22T00:09:17  <sinha1> find how ?
  16 2011-08-22T00:09:32  <ThomasWaldmann> because they appear somewhere else?
  17 2011-08-22T00:10:02  <sinha1> yes, there links are present on index page
  18 2011-08-22T00:10:19  <ThomasWaldmann> ok, then you need to add it to robots.txt contents
  19 2011-08-22T00:10:45  <ThomasWaldmann> btw, i just found another unclean merge
  20 2011-08-22T00:11:15  <ThomasWaldmann> of very recent stuff. that means that you are still doing it very wrong.
  21 2011-08-22T00:15:06  <sinha1> please tell me which one
  22 2011-08-22T00:15:27  <sinha1> it may be before the time, i really got idea how to do it
  23 2011-08-22T00:16:06  <ThomasWaldmann> https://bitbucket.org/sinha/moin-2.0/changeset/77f05fbc7d7e < insanity
  24 2011-08-22T00:17:26  <ThomasWaldmann> if you'ld carefully read hg diff before you commit (as I am saying to all students since months), such stuff would not happen
  25 2011-08-22T00:19:44  <ThomasWaldmann> (because then you'ld have seen that you just reverted most of the changes you just had merge a while ago)
  26 2011-08-22T00:26:15  <sinha1> ThomasWaldmann: what is wrong in that, i have again did hg diff, it is only showing the which i have added extra, rest there is no difference, between them and those in main repo
  27 2011-08-22T00:26:26  <sinha1> s/did/donw
  28 2011-08-22T00:26:30  <sinha1> *done
  29 2011-08-22T00:27:15  <sinha1> s/hg diff/simple diff
  30 2011-08-22T00:28:00  <ThomasWaldmann> is your main repo copy current?
  31 2011-08-22T00:30:38  <sinha1> ThomasWaldmann: i guess so, i did hg pull -u just now and got no changes found
  32 2011-08-22T00:35:09  <ThomasWaldmann> https://bitbucket.org/sinha/moin-2.0/changeset/f4c0d55a932f here you merged main repo
  33 2011-08-22T00:35:28  <ThomasWaldmann> https://bitbucket.org/sinha/moin-2.0/changeset/77f05fbc7d7e there you killed a lot of that stuff again
  34 2011-08-22T00:37:37  <ThomasWaldmann> https://bitbucket.org/sinha/moin-2.0/changeset/77f05fbc7d7e afaics, this one is completely wrong. undo it.
  35 2011-08-22T00:38:18  <ThomasWaldmann> and in your commit comment, you write "revert cs 77f05fbc7d7e"
  36 2011-08-22T00:40:22  <ThomasWaldmann> and before you commit anything, you read hg diff and make sure it is correct
  37 2011-08-22T00:40:45  <sinha1> ThomasWaldmann:  i have no idea, why in the world i did that, those two are exactly opposite
  38 2011-08-22T00:47:55  <sinha1> i did hg revert -r 77f05fbc7d7e but the changes what i did just now, also get removed
  39 2011-08-22T00:51:31  <ThomasWaldmann> there are 2 ways to undo (revert) a bad changeset
  40 2011-08-22T00:52:11  <ThomasWaldmann> you can either use hg backout (that'll create an inverse changeset as a child of the bad changeset), you'll have to merge afterwards
  41 2011-08-22T00:52:32  <ThomasWaldmann> or you can apply a reverse patch to tip and commit it
  42 2011-08-22T00:53:46  <ThomasWaldmann> the command you use turned your workdir to that revision
  43 2011-08-22T00:54:24  <ThomasWaldmann> as you didn't want that, use hg up -C to bring your workdir back to the tip of the repo state
  44 2011-08-22T00:55:11  <sinha1> well the changes were less, so i did it again, now again merging those wrong one
  45 2011-08-22T00:56:15  <ThomasWaldmann> http://hgbook.red-bean.com/ < nice free book about mercurial
  46 2011-08-22T01:16:29  <CIA-114> Akash Sinha <akash2607@gmail.com> * da01d505e210 r534 default/MoinMoin/apps/frontend/views.py: some more urls are disallowed now
  47 2011-08-22T01:16:30  <CIA-114> Akash Sinha <akash2607@gmail.com> * 99426ee77abb r535 default/ (6 files in 6 dirs): revert cs 77f05fbc7d7e
  48 2011-08-22T01:18:57  <sinha1> ThomasWaldmann: reverted ^
  49 2011-08-22T01:22:20  <sinha1> ThomasWaldmann: do i need to take care of some more things ?
  50 2011-08-22T01:22:29  * sinha1 felling very much sleepy now
  51 2011-08-22T01:22:43  <sinha1> *feeling
  52 2011-08-22T01:26:30  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> default * 453:96b47416eb21 2.0/ (quickinstall quickinstall.bat): quickinstall: use --download-cache option of pip to avoid downloading the same stuff repeatedly
  53 2011-08-22T01:26:54  <ThomasWaldmann> sinha1: maybe have some sleep first
  54 2011-08-22T01:32:30  <sinha1> ThomasWaldmann; so you will try merging tomorrow then ?
  55 2011-08-22T01:37:54  <ThomasWaldmann> I'll merge as soon as i don't find blockers any more.
  56 2011-08-22T01:44:39  <sinha1> okay, gn
  57 2011-08-22T01:44:42  *** sinha1 has quit IRC
  58 2011-08-22T01:58:56  <dreimark> re
  59 2011-08-22T02:03:32  <ThomasWaldmann> dreimark: you made it back home? :)
  60 2011-08-22T02:07:58  <dreimark> yeah
  61 2011-08-22T02:09:46  <dreimark> ThomasWaldmann: temperature is higher at home as in the north but humidity too. I prefere how it was there. Only increased humidity when it rains
  62 2011-08-22T02:12:26  <ThomasWaldmann> more wind maybe?
  63 2011-08-22T02:15:10  <dreimark> definitly, there you feel the difference if you open a window
  64 2011-08-22T02:18:49  * ThomasWaldmann runs final tests on sinha's stuff, hopefully
  65 2011-08-22T02:23:01  <dreimark> :)
  66 2011-08-22T02:28:11  <ThomasWaldmann> duck!
  67 2011-08-22T02:28:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 454:b07dfe4ceb8d 2.0/MoinMoin/ (3 files in 3 dirs): Grouping of global history done on the date basis.
  68 2011-08-22T02:28:26  * dreimark hides
  69 2011-08-22T02:28:26  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 455:3ab8882c6da1 2.0/MoinMoin/ (15 files in 8 dirs): branch merged with main repo.
  70 2011-08-22T02:28:27  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 456:6177be92aa33 2.0/MoinMoin/apps/frontend/views.py: format_date now formatting the timestamp based on user's time zone when he is logged in otherwise showing the utc datetime
  71 2011-08-22T02:28:28  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 457:f1f88b7b17fa 2.0/MoinMoin/templates/global_history.html: some variable names modified.
  72 2011-08-22T02:28:28  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 458:f04fafdd629f 2.0/MoinMoin/converter/html_out.py: branch merged with main repo
  73 2011-08-22T02:28:29  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 459:a4afec9ff526 2.0/MoinMoin/util/monkeypatch.py: "patch for collections module added, for the python versions < 2.7 "
  74 2011-08-22T02:28:30  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 460:72dbe801338e 2.0/MoinMoin/ (3 files in 3 dirs): Grouping of global history results on item name basis and after that on the date basis done. Also added features like diff links and editor grouping.
  75 2011-08-22T02:28:30  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 461:be9511c527b0 2.0/MoinMoin/util/monkeypatch.py: removed trailing spaces, caught in pep8 checker
  76 2011-08-22T02:28:33  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 462:8c22eeb5c407 2.0/MoinMoin/util/monkeypatch.py: added new line at end
  77 2011-08-22T02:28:33  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 463:08e3faf4c020 2.0/MoinMoin/templates/utils.html: new separate macro added to display the editor info, which could be helpful when one just wants to display editor info.
  78 2011-08-22T02:28:33  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 464:58a29a7fd016 2.0/MoinMoin/ (apps/frontend/views.py templates/global_history.html): grouping of the global history results on item name and date basis (code cleaned)
  79 2011-08-22T02:28:33  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 465:3076415fdaba 2.0/MoinMoin/ (3 files in 3 dirs): Bookmark functionality added for the global history results
  80 2011-08-22T02:28:34  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 466:7754844a1dbe 2.0/MoinMoin/ (10 files in 9 dirs): branch merged with main repo
  81 2011-08-22T02:28:39  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 467:71988ea0f53e 2.0/MoinMoin/apps/frontend/views.py: minor edition in grouping of results, now changes done on the same day for a item is only shown in that item group
  82 2011-08-22T02:28:39  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 468:511a2a2e9950 2.0/MoinMoin/ (3 files in 3 dirs): paging of history results, currently without the option of setting count per page
  83 2011-08-22T02:28:39  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 469:82261b274b68 2.0/MoinMoin/ (4 files in 4 dirs): Option to configure result count per page for pagination of history results, added in usersettings.
  84 2011-08-22T02:28:39  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 470:bba40d458d9e 2.0/MoinMoin/templates/global_history.html: minor change, a closing div tag corrected
  85 2011-08-22T02:28:40  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 471:17ee0418e93c 2.0/MoinMoin/ (apps/frontend/views.py user.py): function to get the count for results per page has been modified, and minor modification(based upon previous) in global_history function
  86 2011-08-22T02:28:44  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 472:c04d1ca903c7 2.0/MoinMoin/ (apps/frontend/views.py templates/history.html): paging for item history results added
  87 2011-08-22T02:28:44  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 473:b33a2dca5e8f 2.0/MoinMoin/ (2 files in 2 dirs): diff link added on global history page, to view diff between latest revision and first revision
  88 2011-08-22T02:28:44  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 474:b32034020a58 2.0/MoinMoin/ (apps/frontend/views.py config/default.py user.py): change in action in case of user's default value for results_per_page, now on '0' NO PAGINATION.
  89 2011-08-22T02:28:44  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 475:630c21e18398 2.0/ (18 files in 8 dirs): branch merged with main repo
  90 2011-08-22T02:28:45  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 476:a716e61ae9c7 2.0/MoinMoin/ (11 files in 4 dirs): contenttype texts are replaced by icons in global history page, all icons are GPL licensed (picked from tango icons library).
  91 2011-08-22T02:28:50  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 477:72899d48db41 2.0/MoinMoin/ (4 files in 4 dirs): alphabetic listing of global index, with link to item index
  92 2011-08-22T02:28:50  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 478:20a940e54ffb 2.0/MoinMoin/themes/modernized/static/img/moin-expand.png: icon for more link added
  93 2011-08-22T02:28:50  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 479:d70f30322e68 2.0/ (39 files in 13 dirs): branch merged with main repo
  94 2011-08-22T02:28:50  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 480:200c0e1774df 2.0/setup.py: branch merged with main repo
  95 2011-08-22T02:28:50  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 481:e0c30f63e6c0 2.0/setup.py: branch merged with main repo
  96 2011-08-22T02:28:51  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 482:55c1d404dd12 2.0/MoinMoin/templates/global_index.html: code refactored ( due to API upgrades)
  97 2011-08-22T02:28:51  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 483:4307261bac75 2.0/MoinMoin/ (3 files in 3 dirs): item index view modified
  98 2011-08-22T02:28:56  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 484:19b257c0e102 2.0/MoinMoin/ (3 files in 3 dirs): code to get the subitem index flag has been refactored and moved under items/__init__.py and also unitest is added for the same.
  99 2011-08-22T02:28:56  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 485:3a3aea61aa1b 2.0/MoinMoin/apps/frontend/views.py: code for getting subitem flag in global_index function, replaced by the get_detailed_index() module
 100 2011-08-22T02:28:56  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 486:b6149c732926 2.0/MoinMoin/ (5 files in 5 dirs): contenttype filtering added to global index page
 101 2011-08-22T02:28:56  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 487:bdf613f0a062 2.0/ (12 files in 6 dirs): branch merged with main repo
 102 2011-08-22T02:28:56  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 488:8462764f59d2 2.0/MoinMoin/ (apps/frontend/views.py config/__init__.py items/__init__.py): contenttype_groups structure moved under config
 103 2011-08-22T02:29:01  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 489:59f8fd972e16 2.0/MoinMoin/themes/modernized/static/img/ (moin-movedown.png moin-moveup.png): up/down images added used on contenttype filter form
 104 2011-08-22T02:29:01  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 490:a7207331864a 2.0/MoinMoin/ (4 files in 3 dirs): contenttype filter form is replaced by flatland form in global_index page
 105 2011-08-22T02:29:01  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 491:52605e7140e0 2.0/MoinMoin/apps/frontend/views.py: index sorting code modified in global and item index page
 106 2011-08-22T02:29:01  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 492:fa1b9282a3ac 2.0/MoinMoin/ (26 files in 3 dirs): branch merged with main repo
 107 2011-08-22T02:29:01  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 493:17132086b9d6 2.0/MoinMoin/ (8 files in 5 dirs): File upload functionality moved from index2 to index, index2 has been removed, as well as its link from itemviews bar also.
 108 2011-08-22T02:29:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 494:56e5fe3c1966 2.0/MoinMoin/ (3 files in 2 dirs): branch merged with main repo
 109 2011-08-22T02:29:03  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 495:b9f0ba2ba779 2.0/MoinMoin/ (3 files in 3 dirs): paging code at item history moved under util, such that this function could be called from anywhere else.
 110 2011-08-22T02:29:04  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 496:a286df67f294 2.0/MoinMoin/items/__init__.py: contenttype filter code updated, due to lack of encoding information for uploaded files, some extra checks have been added.
 111 2011-08-22T02:29:04  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 497:d20568493a93 2.0/MoinMoin/ (5 files in 4 dirs): unified global_index and item index, thus we are now left with only 1 type of index
 112 2011-08-22T02:29:05  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 498:db9b498b5010 2.0/MoinMoin/apps/frontend/views.py: a line containing index2 has been removed
 113 2011-08-22T02:29:08  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 499:ff90b2aad2dc 2.0/: index2 removed again, (some problem causing due to pull and merge)
 114 2011-08-22T02:29:08  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 500:201150d3fb89 2.0/MoinMoin/util/send_file.py: branch merged with main repo
 115 2011-08-22T02:29:08  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 501:391944573fc3 2.0/MoinMoin/static/js/jfu.js: ajax file upload script updated, now only unique files could be uploaded during a upload
 116 2011-08-22T02:29:08  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 502:db121105bbc3 2.0/MoinMoin/ (3 files in 3 dirs): updated file upload script, drag and drop zone is changed to entire white area.
 117 2011-08-22T02:29:08  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 503:9059f9dedef2 2.0/MoinMoin/ (3 files in 3 dirs): modification in file upload script, now duplicate files could only be uploaded when either all files in queue are uploaded or all are cancelled.
 118 2011-08-22T02:29:14  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 504:47f7ae3ad658 2.0/MoinMoin/ (templates/forms.html themes/modernized/static/css/common.css): restored Start button for individual files, but made it invisible
 119 2011-08-22T02:29:14  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 505:e65f9a5ee6df 2.0/MoinMoin/ (5 files in 4 dirs): selet item feature added on index page
 120 2011-08-22T02:29:14  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 506:85c3759de3a6 2.0/ (5 files in 4 dirs): Download feature for items (integrated with select items) have been added at index page
 121 2011-08-22T02:29:14  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 507:49c749750d9b 2.0/setup.py: equalto sign missed in install_requires earlier in setup file, fixed now
 122 2011-08-22T02:29:15  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 508:9eb7d67addc3 2.0/MoinMoin/ (templates/index.html themes/modernized/static/css/common.css): some css fix on index page for chrome
 123 2011-08-22T02:29:20  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 509:92cc4c7ea1c0 2.0/MoinMoin/ (3 files in 3 dirs): mimetype parameter added in the download item link, such that we could set the contenttype of item being downloaded as desired.
 124 2011-08-22T02:29:20  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 510:201758d56fb1 2.0/ (38 files in 19 dirs): branch merged with main repo
 125 2011-08-22T02:29:20  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 511:5c86980e7d06 2.0/MoinMoin/ (5 files in 5 dirs): Ajax delete feature for the items, has been added on index page.
 126 2011-08-22T02:29:20  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 512:92314b3890a8 2.0/MoinMoin/ (3 files in 3 dirs): Ajax destroy feature added on index page (similar to the delete feature).
 127 2011-08-22T02:29:21  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 513:050c5d125762 2.0/MoinMoin/ (5 files in 4 dirs): New item tab added on index page, and Upload file button also moved under that new item box (but drag-drop area kept to whole screen as it was earlier)
 128 2011-08-22T02:29:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 516:476c38f0418b 2.0/MoinMoin/templates/index.html: popup block html moved outside of index test condition
 129 2011-08-22T02:29:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 519:373b67e26138 2.0/MoinMoin/themes/modernized/static/css/common.css: fixes issue 3 (increased size of div in actions)
 130 2011-08-22T02:29:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 521:0f51f999ffe5 2.0/MoinMoin/ (3 files in 3 dirs): toggle checkbox and show more event handlers added in contenttype filter form, Fixes #4
 131 2011-08-22T02:29:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 517:e6f12800e78c 2.0/MoinMoin/apps/frontend/views.py: some lines of code removed(to get range list) from global history as similar function exists under util
 132 2011-08-22T02:29:25  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 524:77a9bd2d3dc8 2.0/MoinMoin/items/__init__.py: regex search function updated, to get the subitem flag correctly
 133 2011-08-22T02:30:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 526:035656874a40 2.0/MoinMoin/themes/__init__.py: icluding tgz also as archive package for icon display, similar to tar(missed this earlier)
 134 2011-08-22T02:30:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 527:737903cbe58e 2.0/MoinMoin/ (user.py util/interwiki.py): merged with main
 135 2011-08-22T02:30:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 522:e603509fd82e 2.0/MoinMoin/apps/frontend/views.py: when no contenttype group is selected, then all types of items are shown (earlier none of them were coming)
 136 2011-08-22T02:30:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 531:43a7d7faf15c 2.0/ (setup.py wikiconfig.py): setup.py and wikiconfig.py merged with main
 137 2011-08-22T02:30:03  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 533:4b3cc69cfd06 2.0/ (3 files in 3 dirs): more merging and cleaning
 138 2011-08-22T02:30:03  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 514:aeb5bc216f21 2.0/ (5 files in 4 dirs): branch merged with main repo
 139 2011-08-22T02:31:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 520:6332dda59cb6 2.0/MoinMoin/ (apps/frontend/views.py items/__init__.py): some pep8 fixes
 140 2011-08-22T02:31:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 534:9d26ad52a720 2.0/MoinMoin/apps/frontend/views.py: generator removed from views.py
 141 2011-08-22T02:31:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 525:9e4f94558847 2.0/ (43 files in 20 dirs): merged with main repo
 142 2011-08-22T02:31:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 535:da01d505e210 2.0/MoinMoin/apps/frontend/views.py: some more urls are disallowed now
 143 2011-08-22T02:31:03  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 523:200be16e8d55 2.0/MoinMoin/ (templates/index.html themes/modernized/static/css/common.css): select all link moved separate from actions bar and some re-styilng done (to hande with width issue)
 144 2011-08-22T02:31:03  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 515:e665d70b0278 2.0/MoinMoin/ (4 files in 4 dirs): index page view modified (elements re-arranged on the page)
 145 2011-08-22T02:32:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 518:0398d1eb14c1 2.0/MoinMoin/ (3 files in 3 dirs): small change in contenttype filter (now items with unknown mime types have a different filter, as earlier it was shown regardless of the filter selected)
 146 2011-08-22T02:32:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 530:c586ab858e8a 2.0/MoinMoin/apps/frontend/views.py: make_generator removed in index function
 147 2011-08-22T02:32:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 536:99426ee77abb 2.0/ (6 files in 6 dirs): revert cs 77f05fbc7d7e
 148 2011-08-22T02:32:02  <CIA-114> Akash Sinha <akash2607@gmail.com> default * 529:2f00b5e21c7d 2.0/MoinMoin/apps/frontend/views.py: imports are ordered correctly in views.py
 149 2011-08-22T02:32:03  <CIA-114> (4 lines omitted)
 150 2011-08-22T02:32:40  <dreimark> longish
 151 2011-08-22T02:38:05  <ThomasWaldmann> hmm, where's 537 and 538?
 152 2011-08-22T02:44:08  <ThomasWaldmann> anyway, gn
 153 2011-08-22T02:57:10  <dreimark> gn
 154 2011-08-22T06:15:06  *** Marchael has joined #moin-dev
 155 2011-08-22T06:15:59  <Marchael> moin
 156 2011-08-22T06:24:24  *** Marchael has quit IRC
 157 2011-08-22T06:27:23  *** Marchael has joined #moin-dev
 158 2011-08-22T06:43:11  *** Marchael has quit IRC
 159 2011-08-22T06:49:05  *** Marchael has joined #moin-dev
 160 2011-08-22T07:00:49  *** Marchael has quit IRC
 161 2011-08-22T07:06:15  *** Marchael has joined #moin-dev
 162 2011-08-22T07:22:15  *** Marchael has quit IRC
 163 2011-08-22T07:23:45  *** Marchael has joined #moin-dev
 164 2011-08-22T08:03:27  *** Marchael has quit IRC
 165 2011-08-22T09:29:34  <ThomasWaldmann> moin
 166 2011-08-22T09:51:12  <dreimark> moin
 167 2011-08-22T09:52:03  *** mkerrin has joined #moin-dev
 168 2011-08-22T10:02:21  *** Marchael has joined #moin-dev
 169 2011-08-22T10:05:24  <dreimark> Marchael: ThomasWaldmann http://paste.pocoo.org/show/462285/
 170 2011-08-22T10:05:47  <dreimark> I guess that is related also to sinha
 171 2011-08-22T10:06:57  <Marchael> dreimark: could you add print or log to code?
 172 2011-08-22T10:07:09  <Marchael> I want to see converted_rev
 173 2011-08-22T10:08:17  <Marchael> before
 174 2011-08-22T10:08:18  <Marchael> File "/home/reimar/workspace/moin-2.0/MoinMoin/storage/backends/indexing.py", line 263, in add_rev
 175 2011-08-22T10:08:18  <Marchael>      async_writer.add_document(**converted_rev)
 176 2011-08-22T10:10:40  <dreimark> Marchael: meanwhile I have seen that the item was not correct created, I have had not all data
 177 2011-08-22T10:11:43  <Marchael> also, in some cases clean & build
 178 2011-08-22T10:12:09  <Marchael> would help
 179 2011-08-22T10:14:17  <dreimark> ok
 180 2011-08-22T10:29:32  *** pkumar has joined #moin-dev
 181 2011-08-22T10:29:39  <pkumar> moin
 182 2011-08-22T10:36:07  <dreimark> Marchael: it is an jfu upload issue, i filed a bug to sinha.
 183 2011-08-22T10:38:52  <ThomasWaldmann> dreimark: can you try updating whoosh to latest release?
 184 2011-08-22T10:39:03  <ThomasWaldmann> iirc that is already fixed
 185 2011-08-22T10:41:38  <dreimark> ThomasWaldmann: https://bitbucket.org/sinha/moin-2.0/issue/3/unable-to-upload-this-file
 186 2011-08-22T10:44:05  <dreimark> it happens when it is not correct uploaded only
 187 2011-08-22T10:44:46  <dreimark> the length of the bar can be different, but all times i tried it did not succeed
 188 2011-08-22T10:45:46  <dreimark> the problem for whoosh is may be only, that it did not wait for a successful upload?
 189 2011-08-22T10:46:35  <ThomasWaldmann> whoosh is not waiting at all
 190 2011-08-22T10:47:46  * dreimark upgrades env
 191 2011-08-22T11:00:04  *** greg_f has joined #moin-dev
 192 2011-08-22T11:09:08  <dreimark> ThomasWaldmann: I want back content, http://paste.pocoo.org/show/462306/
 193 2011-08-22T11:11:46  *** pkumar has quit IRC
 194 2011-08-22T11:13:03  <ThomasWaldmann> dreimark: that is likely not valid
 195 2011-08-22T11:15:06  <dreimark> when why?
 196 2011-08-22T11:20:00  <dreimark> on unknown types it shows the download link
 197 2011-08-22T11:20:50  <dreimark> may be the word did not describe it correctly, but it shows the data part alone without surrounding by the theme
 198 2011-08-22T11:28:32  *** pkumar has joined #moin-dev
 199 2011-08-22T11:28:37  <ThomasWaldmann> _render_data() iirc only computes a html fragment
 200 2011-08-22T11:30:25  <ThomasWaldmann> hi pkumar
 201 2011-08-22T11:31:07  <pkumar> ThomasWaldmann : hi
 202 2011-08-22T11:31:42  <ThomasWaldmann> if you have a clean workdir, you please merge main repo again
 203 2011-08-22T11:32:11  <pkumar> ThomasWaldmann : yeah, sure :)
 204 2011-08-22T11:32:11  <ThomasWaldmann> be careful, do a clean merge, resolve any conflicts there are
 205 2011-08-22T11:32:39  <pkumar> ThomasWaldmann : ok,
 206 2011-08-22T11:33:22  <ThomasWaldmann> and work on your stuff being mergeable also
 207 2011-08-22T11:34:22  <pkumar> ThomasWaldmann : in your opinion what more should be modified to make it mergeable, apart from the issue in my repo?
 208 2011-08-22T11:35:16  <ThomasWaldmann> i didn't look at the current state yet. last time quite a lot of the tests were not run.
 209 2011-08-22T11:37:01  <pkumar> ThomasWaldmann : which ones? I think all were running fine. If you are referring to the the big difference in the number of tests in main repo and mine, it is due to change of MoinClassCollecter to MoinTestFunction in conftest
 210 2011-08-22T11:37:44  <pkumar> ThomasWaldmann : now each test function is considered as one test item
 211 2011-08-22T11:38:07  <ThomasWaldmann> i mean the py.test stuff
 212 2011-08-22T11:38:21  <ThomasWaldmann> i just looked at your related changeset
 213 2011-08-22T11:38:32  <ThomasWaldmann> it contains some strange changes
 214 2011-08-22T11:39:00  <ThomasWaldmann> https://bitbucket.org/pkumar/pytest_moin/changeset/04cc08c8e31c
 215 2011-08-22T11:39:20  <ThomasWaldmann> in some files you changed the import line, but nothing else
 216 2011-08-22T11:39:59  <ThomasWaldmann> that must be wrong somehow. either the import is unused (then it should be removed), or you forgot to change the other places where it is used.
 217 2011-08-22T11:41:00  <pkumar> hmm, seems like at some places pytest is imported but not used
 218 2011-08-22T11:41:08  <pkumar> for anything
 219 2011-08-22T11:42:03  <pkumar> lemme remove the those useless imports
 220 2011-08-22T11:42:21  <ThomasWaldmann> after that, work on that pytest configuration
 221 2011-08-22T11:43:16  <ThomasWaldmann> hmm, maybe rather first do the merge
 222 2011-08-22T11:46:17  <pkumar> yeah regarding configurations: those skips are surely counted at the end test result, just that they are not visible in the test list. You want it to be visible in the test also right?
 223 2011-08-22T11:46:57  <pkumar> ThomasWaldmann : ^
 224 2011-08-22T11:50:03  <ThomasWaldmann> yes
 225 2011-08-22T11:50:13  <ThomasWaldmann> i want to know what's skipped
 226 2011-08-22T11:51:57  <ThomasWaldmann> so todo: merge, pytest config, devel docs
 227 2011-08-22T11:53:48  <pkumar> ThomasWaldmann : hmm.. quite right. test results should show what has skipped. ok, will do asap
 228 2011-08-22T12:19:45  *** pkumar has quit IRC
 229 2011-08-22T12:42:29  <dreimark> ThomasWaldmann: yeah i need to do it with Response not just sending the fragment
 230 2011-08-22T12:42:32  <dreimark> http://paste.pocoo.org/show/462345/
 231 2011-08-22T13:20:37  <ThomasWaldmann> that's not that much different
 232 2011-08-22T13:45:06  <ThomasWaldmann> Marchael: what are you working on right now?
 233 2011-08-22T13:49:20  <ThomasWaldmann> Marchael: in case you are bored, i have worked on some whoosh docs: http://test.moinmo.in/whoosh%20search
 234 2011-08-22T13:49:39  <ThomasWaldmann> you could use that content and integrate it into our sphinx docs
 235 2011-08-22T13:49:57  <ThomasWaldmann> (and transform wiki markup to rst markup)
 236 2011-08-22T15:17:02  <Marchael> re
 237 2011-08-22T15:17:12  <Marchael> ThomasWaldmann: thank you so much
 238 2011-08-22T15:18:05  <Marchael> I written some docs for admin and I think now it's time to deal with dev docs, what you think?
 239 2011-08-22T15:30:13  <ThomasWaldmann> Marchael: did you integrate the docs into the sphinx-made docs?
 240 2011-08-22T15:31:16  <Marchael> yes, I used rst markup
 241 2011-08-22T15:31:26  <Marchael> you also reviewed that
 242 2011-08-22T15:32:52  <ThomasWaldmann> did you "make html" and look how it looks like?
 243 2011-08-22T15:32:59  <Marchael> yep
 244 2011-08-22T15:33:29  <ThomasWaldmann> ok, if you're finished with it, just commit it
 245 2011-08-22T15:34:36  <Marchael> am, I told about that https://bitbucket.org/marchael/moin-2.0/changeset/b8ebdf2c816e
 246 2011-08-22T15:35:49  <Marchael> so, if I done with admin docs could I start implement dev docs?
 247 2011-08-22T15:41:02  <ThomasWaldmann> i am not talking about old stuff, but rather about today's todo
 248 2011-08-22T15:42:42  <Marchael> > (19:31:12) Marchael: so, if I done with admin docs could I start implement dev docs?
 249 2011-08-22T15:43:25  <ThomasWaldmann> just do it :)
 250 2011-08-22T15:43:35  <Marchael> all right
 251 2011-08-22T15:44:16  <ThomasWaldmann> there is some stuff on that wiki page for devs also. review it, use it.
 252 2011-08-22T16:04:42  *** pkumar has joined #moin-dev
 253 2011-08-22T16:40:47  <ThomasWaldmann> pkumar: how is it going?
 254 2011-08-22T16:41:51  <pkumar> ThomasWaldmann : new merges have added two failures in test_user. rest all tests are fine
 255 2011-08-22T16:46:39  <pkumar> ThomasWaldmann : and regarding those skips, adding command line options in .ini files gives a log kind'da output after test run but doesn't show an S after the tests. though I've added module level setup in test_ldap_login(with a few minor changes) and it shows the S for each test item in there now
 256 2011-08-22T16:51:04  <pkumar> ThomasWaldmann : http://codereview.appspot.com/4937046/diff/1/MoinMoin/auth/_tests/test_ldap_login.py
 257 2011-08-22T16:51:58  <Marchael> ThomasWaldmann: while writing docs I'm coming to believe that MoinMoin.search should be called MoinMoin.index_base, because that package responsible for base manipulation with index(like create\open) and doesn't do searching itself
 258 2011-08-22T16:52:43  <pkumar> xorAxAx : hi, please have a look at : http://codereview.appspot.com/4937046/diff/1/MoinMoin/auth/_tests/test_ldap_login.py
 259 2011-08-22T16:57:51  *** mkerrin has quit IRC
 260 2011-08-22T17:01:22  *** sinha has joined #moin-dev
 261 2011-08-22T17:02:24  <pkumar> Marchael : can you please temme if you get any failures when you run moinMoin/_tests/test_user
 262 2011-08-22T17:03:33  <Marchael> temme?
 263 2011-08-22T17:03:57  <pkumar> short of 'tell me' :)
 264 2011-08-22T17:04:09  <Marchael> ah
 265 2011-08-22T17:04:14  <Marchael> of course
 266 2011-08-22T17:13:30  <sinha> ThomasWaldmann:  i am not getting this error https://bitbucket.org/sinha/moin-2.0/issue/1/traceback-when-logged-in-fresh-user-visits ?
 267 2011-08-22T17:25:51  <CIA-114> Akash Sinha <akash2607@gmail.com> * b7548b9caaa7 r536 default/MoinMoin/themes/modernized/static/css/common.css: popup div size has been made dynamic, Fixes #2
 268 2011-08-22T17:28:02  <dreimark> sinha: please merge
 269 2011-08-22T17:28:32  <dreimark> may be look always if there is something new in the upstream repo before you work on new stuff
 270 2011-08-22T17:29:06  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * f21d81b793e3 r539 default/MoinMoin/_tests/wikiconfig.py: add interwikiname to test wikiconfig.py also
 271 2011-08-22T17:29:07  <CIA-114> Akash Sinha <akash2607@gmail.com> * d8a5368078f7 r540 default/ (MoinMoin/_tests/wikiconfig.py quickinstall.bat quickinstall): merged with main
 272 2011-08-22T17:29:10  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * b010fbdd26ca r538 default/ (41 files in 15 dirs): merged ui repo
 273 2011-08-22T17:29:11  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 96b47416eb21 r537 default/ (quickinstall.bat quickinstall): quickinstall: use --download-cache option of pip to avoid downloading the same stuff repeatedly
 274 2011-08-22T17:32:58  <dreimark> bbl
 275 2011-08-22T17:34:51  <Marchael> ThomasWaldmann: I'll back in 40-60 minutes, please review http://codereview.appspot.com/4922045
 276 2011-08-22T17:34:55  <Marchael> bbl
 277 2011-08-22T17:34:58  *** Marchael has quit IRC
 278 2011-08-22T17:36:40  <ThomasWaldmann> pkumar: review done
 279 2011-08-22T17:37:39  <ThomasWaldmann> sinha: i just created a new user and then you see what happened
 280 2011-08-22T17:42:15  <sinha> ThomasWaldmann: see the logs http://paste.pocoo.org/show/462478/, i register a new one, logged in and visited history, changes results_per_page count in usersettings
 281 2011-08-22T17:42:55  <sinha> and paging is also coming on basis of that value
 282 2011-08-22T17:46:10  <ThomasWaldmann> i never visited usersettings btw, maybe that makes the difference
 283 2011-08-22T17:46:50  <sinha> i dont see it that way
 284 2011-08-22T17:47:04  <sinha> because if you dont visit your value will be 0, i.e no paging
 285 2011-08-22T17:47:25  <ThomasWaldmann> well, obvious my user had no such attribute
 286 2011-08-22T17:47:29  <ThomasWaldmann> +ly
 287 2011-08-22T17:47:40  <sinha> i have also performed "diff -uNr main-repo/ my-repo" absolutely no difference, (except the change i did just now)
 288 2011-08-22T17:50:24  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 16bd4f3dbab8 r659 pytest2/MoinMoin/storage/backends/fs19.py: fix fs19 crash if a user has no subscribed pages
 289 2011-08-22T17:50:25  <CIA-114> Akash Sinha <akash2607@gmail.com> * 8c22eeb5c407 r676 pytest2/MoinMoin/util/monkeypatch.py: added new line at end
 290 2011-08-22T17:50:26  <CIA-114> Akash Sinha <akash2607@gmail.com> * 20a940e54ffb r692 pytest2/MoinMoin/themes/modernized/static/img/moin-expand.png: icon for more link added
 291 2011-08-22T17:50:28  <CIA-114> Akash Sinha <akash2607@gmail.com> * f1f88b7b17fa r671 pytest2/MoinMoin/templates/global_history.html: some variable names modified.
 292 2011-08-22T17:50:29  <CIA-114> Akash Sinha <akash2607@gmail.com> * d70f30322e68 r693 pytest2/ (39 files in 13 dirs): branch merged with main repo
 293 2011-08-22T17:50:30  <CIA-114> Akash Sinha <akash2607@gmail.com> * d20568493a93 r711 pytest2/MoinMoin/ (5 files in 4 dirs): unified global_index and item index, thus we are now left with only 1 type of index
 294 2011-08-22T17:50:31  <CIA-114> Akash Sinha <akash2607@gmail.com> * 9d26ad52a720 r748 pytest2/MoinMoin/apps/frontend/views.py: generator removed from views.py
 295 2011-08-22T17:50:32  <CIA-114> Akash Sinha <akash2607@gmail.com> * ff90b2aad2dc r713 pytest2/: index2 removed again, (some problem causing due to pull and merge)
 296 2011-08-22T17:50:34  <CIA-114> Akash Sinha <akash2607@gmail.com> * 92314b3890a8 r726 pytest2/MoinMoin/ (3 files in 3 dirs): Ajax destroy feature added on index page (similar to the delete feature).
 297 2011-08-22T17:50:35  <CIA-114> Akash Sinha <akash2607@gmail.com> * 4307261bac75 r697 pytest2/MoinMoin/ (3 files in 3 dirs): item index view modified
 298 2011-08-22T17:50:36  <CIA-114> Akash Sinha <akash2607@gmail.com> * b33a2dca5e8f r687 pytest2/MoinMoin/ (2 files in 2 dirs): diff link added on global history page, to view diff between latest revision and first revision
 299 2011-08-22T17:50:37  <CIA-114> Akash Sinha <akash2607@gmail.com> * 52605e7140e0 r705 pytest2/MoinMoin/apps/frontend/views.py: index sorting code modified in global and item index page
 300 2011-08-22T17:50:38  <CIA-114> Akash Sinha <akash2607@gmail.com> * f4c0d55a932f r742 pytest2/ (6 files in 6 dirs): merged with main
 301 2011-08-22T17:50:40  <CIA-114> Akash Sinha <akash2607@gmail.com> * e603509fd82e r736 pytest2/MoinMoin/apps/frontend/views.py: when no contenttype group is selected, then all types of items are shown (earlier none of them were coming)
 302 2011-08-22T17:50:41  <CIA-114> Akash Sinha <akash2607@gmail.com> * fa1b9282a3ac r706 pytest2/MoinMoin/ (26 files in 3 dirs): branch merged with main repo
 303 2011-08-22T17:50:42  <CIA-114> Akash Sinha <akash2607@gmail.com> * db121105bbc3 r716 pytest2/MoinMoin/ (3 files in 3 dirs): updated file upload script, drag and drop zone is changed to entire white area.
 304 2011-08-22T17:50:43  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * f21d81b793e3 r752 pytest2/MoinMoin/_tests/wikiconfig.py: add interwikiname to test wikiconfig.py also
 305 2011-08-22T17:50:45  <CIA-114> Akash Sinha <akash2607@gmail.com> * 3a3aea61aa1b r699 pytest2/MoinMoin/apps/frontend/views.py: code for getting subitem flag in global_index function, replaced by the get_detailed_index() module
 306 2011-08-22T17:50:46  <CIA-114> Akash Sinha <akash2607@gmail.com> * 77a9bd2d3dc8 r738 pytest2/MoinMoin/items/__init__.py: regex search function updated, to get the subitem flag correctly
 307 2011-08-22T17:50:47  <CIA-114> Akash Sinha <akash2607@gmail.com> * 201758d56fb1 r724 pytest2/ (38 files in 19 dirs): branch merged with main repo
 308 2011-08-22T17:50:48  <CIA-114> Akash Sinha <akash2607@gmail.com> * a716e61ae9c7 r690 pytest2/MoinMoin/ (11 files in 4 dirs): contenttype texts are replaced by icons in global history page, all icons are GPL licensed (picked from tango icons library).
 309 2011-08-22T17:50:49  <CIA-114> Akash Sinha <akash2607@gmail.com> * 72899d48db41 r691 pytest2/MoinMoin/ (4 files in 4 dirs): alphabetic listing of global index, with link to item index
 310 2011-08-22T17:50:50  <CIA-114> Akash Sinha <akash2607@gmail.com> * 2f00b5e21c7d r743 pytest2/MoinMoin/apps/frontend/views.py: imports are ordered correctly in views.py
 311 2011-08-22T17:50:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * 19b257c0e102 r698 pytest2/MoinMoin/ (3 files in 3 dirs): code to get the subitem index flag has been refactored and moved under items/__init__.py and also unitest is added for the same.
 312 2011-08-22T17:50:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * da01d505e210 r749 pytest2/MoinMoin/apps/frontend/views.py: some more urls are disallowed now
 313 2011-08-22T17:50:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * b07dfe4ceb8d r668 pytest2/MoinMoin/ (3 files in 3 dirs): Grouping of global history done on the date basis.
 314 2011-08-22T17:50:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * 5c86980e7d06 r725 pytest2/MoinMoin/ (5 files in 5 dirs): Ajax delete feature for the items, has been added on index page.
 315 2011-08-22T17:50:52  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * ad338b37458c r664 pytest2/MoinMoin/ (util/interwiki.py user.py): move some interwiki related code from MoinMoin.user to MoinMoin.util.interwiki
 316 2011-08-22T17:50:57  <CIA-114> Akash Sinha <akash2607@gmail.com> * 56e5fe3c1966 r708 pytest2/MoinMoin/ (3 files in 2 dirs): branch merged with main repo
 317 2011-08-22T17:50:57  <CIA-114> Akash Sinha <akash2607@gmail.com> * 43a7d7faf15c r745 pytest2/ (wikiconfig.py setup.py): setup.py and wikiconfig.py merged with main
 318 2011-08-22T17:50:57  <CIA-114> Akash Sinha <akash2607@gmail.com> * 9059f9dedef2 r717 pytest2/MoinMoin/ (3 files in 3 dirs): modification in file upload script, now duplicate files could only be uploaded when either all files in queue are uploaded or all are cancelled.
 319 2011-08-22T17:50:57  <CIA-114> Akash Sinha <akash2607@gmail.com> * 476c38f0418b r730 pytest2/MoinMoin/templates/index.html: popup block html moved outside of index test condition
 320 2011-08-22T17:50:57  <CIA-114> Akash Sinha <akash2607@gmail.com> * 201150d3fb89 r714 pytest2/MoinMoin/util/send_file.py: branch merged with main repo
 321 2011-08-22T17:50:58  <CIA-114> Akash Sinha <akash2607@gmail.com> * a286df67f294 r710 pytest2/MoinMoin/items/__init__.py: contenttype filter code updated, due to lack of encoding information for uploaded files, some extra checks have been added.
 322 2011-08-22T17:51:03  <CIA-114> Akash Sinha <akash2607@gmail.com> * 85c3759de3a6 r720 pytest2/ (5 files in 4 dirs): Download feature for items (integrated with select items) have been added at index page
 323 2011-08-22T17:51:03  <CIA-114> Akash Sinha <akash2607@gmail.com> * 737903cbe58e r741 pytest2/MoinMoin/ (util/interwiki.py user.py): merged with main
 324 2011-08-22T17:51:03  <CIA-114> Akash Sinha <akash2607@gmail.com> * 9eb7d67addc3 r722 pytest2/MoinMoin/ (templates/index.html themes/modernized/static/css/common.css): some css fix on index page for chrome
 325 2011-08-22T17:51:03  <CIA-114> Akash Sinha <akash2607@gmail.com> * 511a2a2e9950 r682 pytest2/MoinMoin/ (3 files in 3 dirs): paging of history results, currently without the option of setting count per page
 326 2011-08-22T17:51:03  <CIA-114> Akash Sinha <akash2607@gmail.com> * 050c5d125762 r727 pytest2/MoinMoin/ (5 files in 4 dirs): New item tab added on index page, and Upload file button also moved under that new item box (but drag-drop area kept to whole screen as it was earlier)
 327 2011-08-22T17:51:09  <CIA-114> Akash Sinha <akash2607@gmail.com> * 3ab8882c6da1 r669 pytest2/MoinMoin/ (15 files in 8 dirs): branch merged with main repo.
 328 2011-08-22T17:51:09  <CIA-114> Akash Sinha <akash2607@gmail.com> * c04d1ca903c7 r686 pytest2/MoinMoin/ (templates/history.html apps/frontend/views.py): paging for item history results added
 329 2011-08-22T17:51:09  <CIA-114> Akash Sinha <akash2607@gmail.com> * b9f0ba2ba779 r709 pytest2/MoinMoin/ (3 files in 3 dirs): paging code at item history moved under util, such that this function could be called from anywhere else.
 330 2011-08-22T17:51:09  <CIA-114> Akash Sinha <akash2607@gmail.com> * 0398d1eb14c1 r732 pytest2/MoinMoin/ (3 files in 3 dirs): small change in contenttype filter (now items with unknown mime types have a different filter, as earlier it was shown regardless of the filter selected)
 331 2011-08-22T17:51:09  <CIA-114> Akash Sinha <akash2607@gmail.com> * db9b498b5010 r712 pytest2/MoinMoin/apps/frontend/views.py: a line containing index2 has been removed
 332 2011-08-22T17:51:12  <CIA-114> pkumar <contactprashantat@gmail.com> * 8ae3786e50bf r662 pytest2/ (5 files in 2 dirs): merged with default
 333 2011-08-22T17:51:12  <CIA-114> Akash Sinha <akash2607@gmail.com> * 6177be92aa33 r670 pytest2/MoinMoin/apps/frontend/views.py: format_date now formatting the timestamp based on user's time zone when he is logged in otherwise showing the utc datetime
 334 2011-08-22T17:51:12  <CIA-114> Akash Sinha <akash2607@gmail.com> * 72dbe801338e r674 pytest2/MoinMoin/ (3 files in 3 dirs): Grouping of global history results on item name basis and after that on the date basis done. Also added features like diff links and editor grouping.
 335 2011-08-22T17:51:12  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 96b47416eb21 r667 pytest2/ (quickinstall.bat quickinstall): quickinstall: use --download-cache option of pip to avoid downloading the same stuff repeatedly
 336 2011-08-22T17:51:12  <CIA-114> Akash Sinha <akash2607@gmail.com> * a7207331864a r704 pytest2/MoinMoin/ (4 files in 3 dirs): contenttype filter form is replaced by flatland form in global_index page
 337 2011-08-22T17:51:17  <CIA-114> Akash Sinha <akash2607@gmail.com> * 0f51f999ffe5 r735 pytest2/MoinMoin/ (3 files in 3 dirs): toggle checkbox and show more event handlers added in contenttype filter form, Fixes #4
 338 2011-08-22T17:51:17  <CIA-114> Akash Sinha <akash2607@gmail.com> * 55c1d404dd12 r696 pytest2/MoinMoin/templates/global_index.html: code refactored ( due to API upgrades)
 339 2011-08-22T17:51:17  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 3e4ddf215182 r666 pytest2/ (6 files in 6 dirs):
 340 2011-08-22T17:51:17  <CIA-114> require cfg.interwikiname to be set to a non-empty, unique, stable unicode value
 341 2011-08-22T17:51:17  <CIA-114> fix wikiconfig.py to use u"MyMoinMoin" and also add it to cfg.interwiki_map.
 342 2011-08-22T17:51:17  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 0e1c8662871f r665 pytest2/MoinMoin/util/interwiki.py: fix getInterwikiName signature
 343 2011-08-22T17:51:18  <CIA-114> Akash Sinha <akash2607@gmail.com> * 17132086b9d6 r707 pytest2/MoinMoin/ (8 files in 5 dirs): File upload functionality moved from index2 to index, index2 has been removed, as well as its link from itemviews bar also.
 344 2011-08-22T17:51:23  <CIA-114> Akash Sinha <akash2607@gmail.com> * 71988ea0f53e r681 pytest2/MoinMoin/apps/frontend/views.py: minor edition in grouping of results, now changes done on the same day for a item is only shown in that item group
 345 2011-08-22T17:51:23  <CIA-114> Akash Sinha <akash2607@gmail.com> * 8462764f59d2 r702 pytest2/MoinMoin/ (apps/frontend/views.py config/__init__.py items/__init__.py): contenttype_groups structure moved under config
 346 2011-08-22T17:51:23  <CIA-114> pkumar <contactprashantat@gmail.com> * 149ddb56416e r754 pytest2/MoinMoin/_tests/test_user.py: tests in test_user changed as value for interWikiName is handled differntly now
 347 2011-08-22T17:51:23  <CIA-114> Akash Sinha <akash2607@gmail.com> * e665d70b0278 r729 pytest2/MoinMoin/ (4 files in 4 dirs): index page view modified (elements re-arranged on the page)
 348 2011-08-22T17:51:23  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * d9845a326f12 r658 pytest2/MoinMoin/storage/backends/__init__.py: create_simple_mapping() only returns one value (fix for fs19:)
 349 2011-08-22T17:51:28  <CIA-114> Akash Sinha <akash2607@gmail.com> * aeb5bc216f21 r728 pytest2/ (5 files in 4 dirs): branch merged with main repo
 350 2011-08-22T17:51:28  <CIA-114> pkumar <contactprashantat@gmail.com> * 72f6a200ed88 r753 pytest2/ (44 files in 16 dirs): merged with default
 351 2011-08-22T17:51:28  <CIA-114> Akash Sinha <akash2607@gmail.com> * 6332dda59cb6 r734 pytest2/MoinMoin/ (apps/frontend/views.py items/__init__.py): some pep8 fixes
 352 2011-08-22T17:51:28  <CIA-114> Akash Sinha <akash2607@gmail.com> * b32034020a58 r688 pytest2/MoinMoin/ (config/default.py user.py apps/frontend/views.py): change in action in case of user's default value for results_per_page, now on '0' NO PAGINATION.
 353 2011-08-22T17:51:29  <CIA-114> Akash Sinha <akash2607@gmail.com> * bdf613f0a062 r701 pytest2/ (12 files in 6 dirs): branch merged with main repo
 354 2011-08-22T17:51:29  <CIA-114> Akash Sinha <akash2607@gmail.com> * 49c749750d9b r721 pytest2/setup.py: equalto sign missed in install_requires earlier in setup file, fixed now
 355 2011-08-22T17:51:34  <CIA-114> pkumar <contactprashantat@gmail.com> * 0ea1cde488dd r663 pytest2/MoinMoin/ (2 files in 2 dirs): removed extra pytest imports
 356 2011-08-22T17:51:34  <CIA-114> Akash Sinha <akash2607@gmail.com> * b6149c732926 r700 pytest2/MoinMoin/ (5 files in 5 dirs): contenttype filtering added to global index page
 357 2011-08-22T17:51:34  <CIA-114> Akash Sinha <akash2607@gmail.com> * 99426ee77abb r750 pytest2/ (6 files in 6 dirs): revert cs 77f05fbc7d7e
 358 2011-08-22T17:51:34  <CIA-114> Akash Sinha <akash2607@gmail.com> * e6f12800e78c r731 pytest2/MoinMoin/apps/frontend/views.py: some lines of code removed(to get range list) from global history as similar function exists under util
 359 2011-08-22T17:51:35  <CIA-114> Akash Sinha <akash2607@gmail.com> * a4afec9ff526 r673 pytest2/MoinMoin/util/monkeypatch.py: "patch for collections module added, for the python versions < 2.7 "
 360 2011-08-22T17:51:35  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * 3d3230f84e5f r660 pytest2/docs/admin/ (configure.rst upgrade.rst): update docs: create_simple_mapping only returns 1 value
 361 2011-08-22T17:51:40  <CIA-114> Akash Sinha <akash2607@gmail.com> * 92cc4c7ea1c0 r723 pytest2/MoinMoin/ (3 files in 3 dirs): mimetype parameter added in the download item link, such that we could set the contenttype of item being downloaded as desired.
 362 2011-08-22T17:51:40  <CIA-114> Akash Sinha <akash2607@gmail.com> * 59f8fd972e16 r703 pytest2/MoinMoin/themes/modernized/static/img/ (moin-movedown.png moin-moveup.png): up/down images added used on contenttype filter form
 363 2011-08-22T17:51:40  <CIA-114> Akash Sinha <akash2607@gmail.com> * f04fafdd629f r672 pytest2/MoinMoin/converter/html_out.py: branch merged with main repo
 364 2011-08-22T17:51:40  <CIA-114> Akash Sinha <akash2607@gmail.com> * 630c21e18398 r689 pytest2/ (18 files in 8 dirs): branch merged with main repo
 365 2011-08-22T17:51:41  <CIA-114> Akash Sinha <akash2607@gmail.com> * be9511c527b0 r675 pytest2/MoinMoin/util/monkeypatch.py: removed trailing spaces, caught in pep8 checker
 366 2011-08-22T17:51:41  <CIA-114> Akash Sinha <akash2607@gmail.com> * 82261b274b68 r683 pytest2/MoinMoin/ (4 files in 4 dirs): Option to configure result count per page for pagination of history results, added in usersettings.
 367 2011-08-22T17:51:46  <CIA-114> Akash Sinha <akash2607@gmail.com> * 200c0e1774df r694 pytest2/setup.py: branch merged with main repo
 368 2011-08-22T17:51:46  <CIA-114> Akash Sinha <akash2607@gmail.com> * 7754844a1dbe r680 pytest2/MoinMoin/ (10 files in 9 dirs): branch merged with main repo
 369 2011-08-22T17:51:46  <CIA-114> Akash Sinha <akash2607@gmail.com> * 3076415fdaba r679 pytest2/MoinMoin/ (3 files in 3 dirs): Bookmark functionality added for the global history results
 370 2011-08-22T17:51:46  <CIA-114> Akash Sinha <akash2607@gmail.com> * 08e3faf4c020 r677 pytest2/MoinMoin/templates/utils.html: new separate macro added to display the editor info, which could be helpful when one just wants to display editor info.
 371 2011-08-22T17:51:47  <CIA-114> Akash Sinha <akash2607@gmail.com> * e0c30f63e6c0 r695 pytest2/setup.py: branch merged with main repo
 372 2011-08-22T17:51:47  <CIA-114> Akash Sinha <akash2607@gmail.com> * 035656874a40 r740 pytest2/MoinMoin/themes/__init__.py: icluding tgz also as archive package for icon display, similar to tar(missed this earlier)
 373 2011-08-22T17:51:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * 373b67e26138 r733 pytest2/MoinMoin/themes/modernized/static/css/common.css: fixes issue 3 (increased size of div in actions)
 374 2011-08-22T17:51:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * 391944573fc3 r715 pytest2/MoinMoin/static/js/jfu.js: ajax file upload script updated, now only unique files could be uploaded during a upload
 375 2011-08-22T17:51:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * 9e4f94558847 r739 pytest2/ (43 files in 20 dirs): merged with main repo
 376 2011-08-22T17:51:52  <CIA-114> Akash Sinha <akash2607@gmail.com> * bba40d458d9e r684 pytest2/MoinMoin/templates/global_history.html: minor change, a closing div tag corrected
 377 2011-08-22T17:51:53  <CIA-114> Akash Sinha <akash2607@gmail.com> * 4b3cc69cfd06 r747 pytest2/ (3 files in 3 dirs): more merging and cleaning
 378 2011-08-22T17:51:53  <CIA-114> Akash Sinha <akash2607@gmail.com> * e65f9a5ee6df r719 pytest2/MoinMoin/ (5 files in 4 dirs): selet item feature added on index page
 379 2011-08-22T17:51:59  <CIA-114> Akash Sinha <akash2607@gmail.com> * 77f05fbc7d7e r746 pytest2/MoinMoin/ (5 files in 5 dirs): few more files merged with main
 380 2011-08-22T17:51:59  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * b010fbdd26ca r751 pytest2/ (41 files in 15 dirs): merged ui repo
 381 2011-08-22T17:51:59  <CIA-114> Akash Sinha <akash2607@gmail.com> * c586ab858e8a r744 pytest2/MoinMoin/apps/frontend/views.py: make_generator removed in index function
 382 2011-08-22T17:51:59  <CIA-114> Akash Sinha <akash2607@gmail.com> * 58a29a7fd016 r678 pytest2/MoinMoin/ (templates/global_history.html apps/frontend/views.py): grouping of the global history results on item name and date basis (code cleaned)
 383 2011-08-22T17:52:00  <CIA-114> Akash Sinha <akash2607@gmail.com> * 17ee0418e93c r685 pytest2/MoinMoin/ (user.py apps/frontend/views.py): function to get the count for results per page has been modified, and minor modification(based upon previous) in global_history function
 384 2011-08-22T17:52:04  <CIA-114> Akash Sinha <akash2607@gmail.com> * 200be16e8d55 r737 pytest2/MoinMoin/ (templates/index.html themes/modernized/static/css/common.css): select all link moved separate from actions bar and some re-styilng done (to hande with width issue)
 385 2011-08-22T17:52:05  <CIA-114> Thomas Waldmann <tw AT waldmann-edv DOT de> * dfa71b20022c r661 pytest2/docs/admin/requirements.rst: requirements: add a note that pypy >= 1.6 works ok now
 386 2011-08-22T17:52:05  <CIA-114> Akash Sinha <akash2607@gmail.com> * 47f7ae3ad658 r718 pytest2/MoinMoin/ (themes/modernized/static/css/common.css templates/forms.html): restored Start button for individual files, but made it invisible
 387 2011-08-22T17:56:22  <CIA-114> Akash Sinha <akash2607@gmail.com> * 54608b96f2fc r541 default/MoinMoin/apps/frontend/views.py: now when no filter i selected, no items will be shown on index page (earlier no filter was resulting in default case i.e show all, changed it only for the sake of consistency)
 388 2011-08-22T17:57:05  <ThomasWaldmann> sinha: btw, i also had the impression that you have that value in user profile and in config, but that you only use one of them?
 389 2011-08-22T17:57:19  <ThomasWaldmann> (didn't verify it yet, though)
 390 2011-08-22T17:57:29  <sinha> ThomasWaldmann: yes the one that is in config is used for non logged in users
 391 2011-08-22T17:57:57  <sinha> ThomasWaldmann: i discussed it with dreimark during implementation, such that one can set that value in wikiconfig also
 392 2011-08-22T17:57:59  <ThomasWaldmann> well, it should be the default for all users, except if they explicitely set something else
 393 2011-08-22T17:58:41  <sinha> yes i know, but this is what came out that time, for users unless they specify no paging for them, but for non-user the default value will be used (Set by wiki admin)
 394 2011-08-22T17:59:10  <ThomasWaldmann> you can also look at how it is done for other user settings, e.g. theme
 395 2011-08-22T18:01:01  <sinha> ThomasWaldmann: yes i agree with you that doing that would be normal, but as i told you that during that time we decided to do this change (no paging for user...)
 396 2011-08-22T18:01:26  <ThomasWaldmann> ok, we'll see :_)
 397 2011-08-22T18:04:36  <pkumar> ThomasWaldmann : please view my reply in cr : http://codereview.appspot.com/4937046/diff/1/MoinMoin/auth/_tests/test_ldap_login.py
 398 2011-08-22T18:04:38  <pkumar> brb
 399 2011-08-22T18:04:53  <ThomasWaldmann> pkumar: i did already
 400 2011-08-22T18:05:37  <pkumar> ThomasWaldmann : reply? that was really fast :)
 401 2011-08-22T18:07:12  <pkumar> will start working on it in a while,
 402 2011-08-22T18:09:26  <ThomasWaldmann> maybe do something simpler, testing all that ldap stuff might not work out today
 403 2011-08-22T18:34:21  <sinha> bbl
 404 2011-08-22T18:34:24  *** sinha has quit IRC
 405 2011-08-22T18:53:07  *** greg_f has quit IRC
 406 2011-08-22T18:54:39  *** greg_f has joined #moin-dev
 407 2011-08-22T19:00:46  <pkumar> ThomasWaldmann : I had written some stuffs regarding docs, though not complete, please go through it if I'm going correct?
 408 2011-08-22T19:01:13  <pkumar> http://codereview.appspot.com/4919046/diff/1/docs/devel/mointests.rst
 409 2011-08-22T19:03:20  <ThomasWaldmann> hg mv mointests.rst tests.rst (or testing.rst) - moin scope is default :)
 410 2011-08-22T19:05:11  <pkumar> ok
 411 2011-08-22T19:15:38  <ThomasWaldmann> review done.
 412 2011-08-22T19:16:15  <ThomasWaldmann> maybe first fix what I have commented on and then do a second pass reading it all again and improving on spelling/grammar/phrasing.
 413 2011-08-22T19:20:53  <ThomasWaldmann> pkumar: btw, another reason not to talk about virtualenv again and again is that people might run it without virtualenv.
 414 2011-08-22T19:26:35  <pkumar> ThomasWaldmann : I was just expecting if those contents would ease the start for a beginner, some of them having no idea where to start from.
 415 2011-08-22T19:27:06  <ThomasWaldmann> the problem is a) duplication and b) that it might not apply
 416 2011-08-22T19:27:31  <ThomasWaldmann> but the virtualenv stuff is described - at exactly one place
 417 2011-08-22T19:29:15  <pkumar> ok, I'll remove those from there. maybe I can just mention the term so that new devs would know what to look for in the documentations
 418 2011-08-22T19:33:02  <ThomasWaldmann> you could refer to the section where that one description is.
 419 2011-08-22T19:33:07  *** greg_f has quit IRC
 420 2011-08-22T19:36:49  <pkumar> k
 421 2011-08-22T19:59:25  <ThomasWaldmann> pkumar: i currently review your global changes
 422 2011-08-22T19:59:30  <ThomasWaldmann> and find quite some stuff :)
 423 2011-08-22T20:04:25  <pkumar> ThomasWaldmann : quite some? do you mean some/few stuffs?
 424 2011-08-22T20:06:03  <pkumar> you are referring to the changes in the repo right?
 425 2011-08-22T20:06:20  <ThomasWaldmann> yes, i am comparing the whole thing :)
 426 2011-08-22T20:13:02  <pkumar> ThomasWaldmann : and what do you think of the comparisons? I would really like to know your opinion about the changesets
 427 2011-08-22T20:28:12  <ThomasWaldmann> ok, i just put it all into one bug report
 428 2011-08-22T20:28:22  <ThomasWaldmann> maybe try to be more clean when fixing it :)
 429 2011-08-22T20:29:08  <ThomasWaldmann> i did a rather low-level review, so I can't tell much about it, except that the diff was rather large :)
 430 2011-08-22T20:50:39  * ThomasWaldmann listens to http://www.youtube.com/watch?v=EG7wB3G-xp0
 431 2011-08-22T20:55:46  <pkumar> ThomasWaldmann : I did a few basic correction but not the rephrasing part yet. http://codereview.appspot.com/4918045/diff/1/docs/devel/tests.rst
 432 2011-08-22T20:57:30  <ThomasWaldmann> can you put it into same CR id as the one before?
 433 2011-08-22T20:57:56  *** Marchael has joined #moin-dev
 434 2011-08-22T20:58:15  <ThomasWaldmann> http://www.youtube.com/watch?v=IliwQImJrYE also nice :)
 435 2011-08-22T20:58:33  <Marchael> re
 436 2011-08-22T21:02:14  *** pkumar has quit IRC
 437 2011-08-22T21:02:34  <ThomasWaldmann> hi Marchael
 438 2011-08-22T21:02:54  <ThomasWaldmann> ok, SOC coding phase is officially over now.
 439 2011-08-22T21:04:24  <Marchael> ThomasWaldmann: couild I commit my latest stuff(after some fixing) and close issue with documentation?
 440 2011-08-22T21:07:56  <ThomasWaldmann> Marchael: you can always commit stuff. stuff committed after deadline just won't be part of SOC.
 441 2011-08-22T21:08:43  <ThomasWaldmann> but don't let that hold you back :)
 442 2011-08-22T21:09:09  <Marchael> :)
 443 2011-08-22T21:10:40  <ThomasWaldmann> the major point of SOC is not primarily pushing some FOSS projects and giving students lots of money, but that students get into contributing to open source longterm.
 444 2011-08-22T21:11:44  <Marchael> ThomasWaldmann: besides that small issue in index.py, could I have done something to improve docs?
 445 2011-08-22T21:11:47  <ThomasWaldmann> so consider the current deadline rather the end of the beginning, not the end of the end :)
 446 2011-08-22T21:13:24  <ThomasWaldmann> Marchael: can you give a url?
 447 2011-08-22T21:13:56  <Marchael> am, that's my last cr http://codereview.appspot.com/4922045
 448 2011-08-22T21:15:33  <ThomasWaldmann> well, you updated the autogenerated docs (which is ok, but more important are the non-api docs, the ones for humans)
 449 2011-08-22T21:18:53  <Marchael> then may be better move stuff from http://test.moinmo.in/whoosh%20search to "Using moin" ?
 450 2011-08-22T21:20:01  <ThomasWaldmann> yes, the user stuff
 451 2011-08-22T21:22:40  * ThomasWaldmann drives home
 452 2011-08-22T21:27:08  <dreimark> re
 453 2011-08-22T21:43:07  <dreimark> Marchael: sinha see http://moinmo.in/4ct10n/diff/MoinMoinAcknowledgements?action=diff&date=1311288303000000
 454 2011-08-22T21:44:18  <Marchael> \o/
 455 2011-08-22T22:03:28  <Marchael> ThomasWaldmann: http://codereview.appspot.com/4922045 ps 2
 456 2011-08-22T22:08:46  <ThomasWaldmann> Marchael: review done
 457 2011-08-22T22:09:51  * Marchael looks
 458 2011-08-22T22:26:48  <Marchael> ThomasWaldmann: ps 3
 459 2011-08-22T22:29:16  <ThomasWaldmann> Marchael: better. do the lists render correctly?
 460 2011-08-22T22:29:25  <Marchael> yep
 461 2011-08-22T22:29:41  <Marchael> link renders correct also
 462 2011-08-22T22:29:46  <Marchael> even for http://...
 463 2011-08-22T22:29:56  <ThomasWaldmann> hmm, i remembered that differently somehow
 464 2011-08-22T22:30:14  <ThomasWaldmann> ok, commit/push
 465 2011-08-22T22:30:45  <Marchael> ok, may I close #16?
 466 2011-08-22T22:32:02  <ThomasWaldmann> well, the etherpad still has to be looked at. i doubt we have everything interesting from there yet.
 467 2011-08-22T22:34:30  <ThomasWaldmann> also, did you integrated the devel docs already?
 468 2011-08-22T22:34:34  <ThomasWaldmann> -d
 469 2011-08-22T22:35:06  <ThomasWaldmann> xorAxAx: there?
 470 2011-08-22T22:35:47  <Marchael> you mean api docs?
 471 2011-08-22T22:37:10  <ThomasWaldmann> no, the stuff for developers, from that wiki page
 472 2011-08-22T22:37:33  <Marchael> nope, I'll do it.
 473 2011-08-22T22:40:34  <Marchael> hm, seems like I'm need to resolve conflicts after merge
 474 2011-08-22T22:41:18  <ThomasWaldmann> really? if so, be careful.
 475 2011-08-22T22:42:09  <CIA-114> Michael Mayorov <marchael@kb.csu.ru> * 788eb43bf3b7 r458 moin-2.0/ (6 files in 4 dirs): add api and user docs
 476 2011-08-22T22:44:08  <Marchael> I'll start next morning, gn/bbl
 477 2011-08-22T22:44:16  <ThomasWaldmann> gn Marchael
 478 2011-08-22T22:44:21  *** Marchael has quit IRC
 479 2011-08-22T23:45:18  <ThomasWaldmann> duck!
 480 2011-08-22T23:52:45  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 539:095b80773e88 2.0/MoinMoin/converter/rst_in.py: skip rst_in tests if docutils is missing
 481 2011-08-22T23:52:45  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 540:49c2cd426cca 2.0/MoinMoin/conftest.py: add some hooks for pytest2.x since collector customization changed
 482 2011-08-22T23:52:46  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 541:babc68d24759 2.0/MoinMoin/security/_tests/__init__.py: add a __init__.py to the security tests
 483 2011-08-22T23:52:47  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 542:4ece24d6a1a7 2.0/MoinMoin/conftest.py: use the pytest_addoption hook instead of messing with py.test.config (missing in pytest2.0)
 484 2011-08-22T23:52:47  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 543:d9ab4eb236c7 2.0/MoinMoin/storage/_tests/test_backends_hg.py: mark the hg backend as xfail for now
 485 2011-08-22T23:52:48  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 544:f40afb4f4079 2.0/setup.py: whops, actually add the pytest2 requirement
 486 2011-08-22T23:52:49  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 545:b728fdb660d7 2.0/ (17 files in 9 dirs): merge from default
 487 2011-08-22T23:52:50  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 546:e771511ea996 2.0/MoinMoin/ (23 files in 12 dirs): merge default
 488 2011-08-22T23:52:51  <CIA-114> pkumar pytest2 * 547:e0343315d68c 2.0/ (101 files in 31 dirs): merged into pytest2
 489 2011-08-22T23:52:53  <CIA-114> pkumar pytest2 * 548:8bb0eaaeff31 2.0/MoinMoin/converter/_tests/test_moinwiki_in.py: relative import in test_moinwiki_in.py changed to fix the import error.
 490 2011-08-22T23:52:53  <CIA-114> pkumar pytest2 * 549:7cb0181f5ca6 2.0/MoinMoin/converter/_tests/test_moinwiki19_in.py: relative import in test_moinwiki19_in.py changed to fix the import error.
 491 2011-08-22T23:52:53  <CIA-114> pkumar pytest2 * 550:af96b35a6a42 2.0/MoinMoin/util/_tests/test_filesys.py: skip method in test_filesys.py modified.
 492 2011-08-22T23:52:53  <CIA-114> pkumar pytest2 * 551:6f54adbb665b 2.0/MoinMoin/storage/backends/ (fs19.py fs2.py): import error due to change of sqlalchemy(0.6.0 - 0.7.0) fixed.
 493 2011-08-22T23:52:54  <CIA-114> pkumar pytest2 * 552:c367b3e54194 2.0/MoinMoin/storage/backends/ (fs19.py fs2.py): import for 'sqlalchemy.exec' in fs2.py and fs19.py modified.
 494 2011-08-22T23:52:56  <CIA-114> pkumar pytest2 * 553:82aab0626558 2.0/MoinMoin/util/_tests/test_crypto.py: test_crypto modified for more pythonic test invocation.
 495 2011-08-22T23:52:58  <CIA-114> pkumar pytest2 * 554:0956ee914940 2.0/MoinMoin/util/_tests/test_pysupport.py: test invoke method in test_pysupport.py modified.
 496 2011-08-22T23:52:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 555:fb5d880d7b86 2.0/MoinMoin/conftest.py: pytest_pycollect_makeitem() in conftest.py changed since collector._istestclasscandidate doesn't exist anymore.
 497 2011-08-22T23:52:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 556:a182d358871c 2.0/MoinMoin/util/_tests/ (10 files): py.test changed to pytest in all tests of util module
 498 2011-08-22T23:52:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 557:8eb54b6d9537 2.0/MoinMoin/config/_tests/test_defaultconfig.py: py.test changed to pytest in config module
 499 2011-08-22T23:52:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 558:cd629258f343 2.0/MoinMoin/apps/frontend/_tests/test_frontend.py: py.test changed to pytest in all tests of module apps
 500 2011-08-22T23:53:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 559:256d000ae06b 2.0/MoinMoin/ (conftest.py util/_tests/test_filesys.py): witespaces in conftes.py and test_filesys.py removed to fix failure in test_sourcecode.py
 501 2011-08-22T23:53:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 560:a547161f1b74 2.0/MoinMoin/conftest.py: Information in conftest.py added about the test validation only for pytest-2
 502 2011-08-22T23:53:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 561:a311a1addca3 2.0/MoinMoin/_tests/ (6 files): py.test changed to pytest in all tests of module MoinMoin
 503 2011-08-22T23:53:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 562:17931e46e2df 2.0/MoinMoin/ (13 files in 2 dirs): py.test changed to pytest in conftest.py and all the tests of converter module.
 504 2011-08-22T23:53:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 563:a41acf254474 2.0/MoinMoin/converter/_tests/ (7 files): some left over py.test in converter module changed to pytest.
 505 2011-08-22T23:53:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 564:183deebe0c0b 2.0/MoinMoin/conftest.py: pytest_pyfunc_call() added to intercept generators and MoinClassCollector replaced with MoinTestFunction to get rid of messy hacks.
 506 2011-08-22T23:53:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 565:50239292c3ad 2.0/MoinMoin/conftest.py: pyfunc_call() changed since MoinTestFunction returns function items, needless to use parent obj now.
 507 2011-08-22T23:53:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 566:b759201f2812 2.0/MoinMoin/conftest.py: condition added in MoinTestFunction.setup() to check for the class in conftest.py
 508 2011-08-22T23:53:14  <CIA-114> Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de> pytest2 * 567:9feca3bb9395 2.0/MoinMoin/conftest.py: pass app object to test classes for now - needs better funcargs
 509 2011-08-22T23:53:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 568:1ea65bb705e6 2.0/MoinMoin/conftest.py: coverage part in conftest.py removed and is replaced by pytest-cov plugin.
 510 2011-08-22T23:53:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 569:0d19b3f6d2fc 2.0/MoinMoin/conftest.py: condition added in MoinTestFunction.setup to avoid the errors temporarily due to hack made
 511 2011-08-22T23:53:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 572:81f27ab8c620 2.0/MoinMoin/ (conftest.py test_logging.conf): test_logging.conf added for logging configurations of tests and pytest.set_trace removed from conftest.py.
 512 2011-08-22T23:53:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 570:964a9744310c 2.0/MoinMoin/conftest.py: docstring moved to inside of function
 513 2011-08-22T23:53:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 574:b7105cee9db7 2.0/MoinMoin/conftest.py: docstring added about the hack made.
 514 2011-08-22T23:53:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 576:a9a8d49bb4f1 2.0/MoinMoin/conftest.py: MoinTestFunction in conftest.py modified so that init_test_app is not called for every test item and thereby making the test execution faster.
 515 2011-08-22T23:53:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 577:0ada641eaaf0 2.0/MoinMoin/_tests/test_test_environ.py: new app initialized in test_test_environ.py to refresh the app.
 516 2011-08-22T23:53:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 579:9db7ce03cbc5 2.0/MoinMoin/datastruct/backends/_tests/ (test_wiki_dicts.py test_wiki_groups.py): test_init_app called in test_wiki_dicts and test_wiki_groups
 517 2011-08-22T23:53:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 581:cfc4cefc5182 2.0/MoinMoin/storage/_tests/test_backends_fs2.py: init_test_app and deinit_test_app called in test_backend_fs2.
 518 2011-08-22T23:53:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 583:7f4503715326 2.0/MoinMoin/storage/_tests/ (test_backends_fs2.py test_backends_memory.py): init_test_app and deinit_test_app called in test_backends_fs2 and test_backends_memory
 519 2011-08-22T23:53:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 580:229747dcc230 2.0/MoinMoin/datastruct/backends/_tests/ (test_wiki_dicts.py test_wiki_groups.py): teardown created in test_wiki_groups and test_wiki_dicts to call deinit_test_app
 520 2011-08-22T23:53:35  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 584:fefd0baf5c89 2.0/MoinMoin/storage/_tests/test_backends_router.py: init_test_app and deinit_test_app called in test_backend_router
 521 2011-08-22T23:53:35  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 575:92f9d136044f 2.0/MoinMoin/ (conftest.py test_logging.conf): MoinMoin.log.load_config() called before import of MoinMoin.app in conftest.py and level changed to ERROR in test_logging.conf
 522 2011-08-22T23:53:36  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 587:e2794fc7f3fb 2.0/MoinMoin/ (conftest.py util/_tests/test_crypto.py): test added to check the type in util/test_crypto.
 523 2011-08-22T23:53:37  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 589:accc2bfda374 2.0/MoinMoin/util/_tests/test_crypto.py: test added for Tokens in test_crypto.py
 524 2011-08-22T23:53:39  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 591:bbd6da3dc2f2 2.0/MoinMoin/util/_tests/test_crypto.py: fixed a silly mistake
 525 2011-08-22T23:53:41  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 590:aec005cc5725 2.0/MoinMoin/util/_tests/test_crypto.py: testcache_key added to test_crypto.py
 526 2011-08-22T23:53:41  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 594:069bb2764aaf 2.0/MoinMoin/util/_tests/test_filesys.py: added TestCopy in util/test_filesys.py to test filesys.copytree
 527 2011-08-22T23:53:42  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 596:837d949a4539 2.0/MoinMoin/util/_tests/ (test_filesys.py test_mime.py): added test for Type.__repr__ in test_mime
 528 2011-08-22T23:53:43  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 597:c86e1f677ebc 2.0/MoinMoin/util/_tests/test_version.py: added test for unexpected version string format in util/test_version.py
 529 2011-08-22T23:53:45  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 599:e5c573426595 2.0/MoinMoin/util/_tests/test_lock.py: TestReadLock added for lock.ReadLock in util.test_lock
 530 2011-08-22T23:53:48  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 601:f67e58bf2f3e 2.0/MoinMoin/util/_tests/test_lock.py: added test for error in test_writelock_acquire and test_haveReadLocks improved for different conditions
 531 2011-08-22T23:53:48  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 598:af0b6a1c3764 2.0/MoinMoin/util/_tests/test_lock.py: added class TestWrilteLock for lock.WriteLock in util/test_lock.py
 532 2011-08-22T23:53:48  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 600:b2366bb97894 2.0/MoinMoin/util/_tests/test_lock.py: added test_haveReadLock to TestWriteLock in test_lock - check if a readlock already exist
 533 2011-08-22T23:53:49  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 605:04b90498ea47 2.0/ (40 files in 17 dirs): merged with default
 534 2011-08-22T23:53:50  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 607:e9c80fcc5ae5 2.0/MoinMoin/themes/_tests/test_navi_bar.py: test_location_breadcrumbs improved to check segment_name and item_name in themes/test_navi_bar
 535 2011-08-22T23:53:53  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 609:ed593361022e 2.0/MoinMoin/themes/_tests/test_navi_bar.py: test added for contenttype_to_class() in themes/test_navi_bar
 536 2011-08-22T23:53:53  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 610:66b072c4ce8b 2.0/MoinMoin/ (_tests/test_wikiutil.py themes/_tests/test_navi_bar.py): test added for wikiutil.ParentItemName() in _test/test_wikiutil
 537 2011-08-22T23:53:54  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 612:a68688927b42 2.0/MoinMoin/_tests/test_wikiutil.py: added display messages on test failure in test_wikiutil.testdrawing2fname()
 538 2011-08-22T23:53:56  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 608:27dc049120b1 2.0/MoinMoin/themes/_tests/test_navi_bar.py: test for shorten_item_name() added in themes/test_navi_bar
 539 2011-08-22T23:53:57  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 616:12057005a39f 2.0/MoinMoin/_tests/test_wikiutil.py: added test for wikiutil.split_anchor() in _tests/test_wikiutil
 540 2011-08-22T23:53:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 611:2c52e4d20d01 2.0/MoinMoin/_tests/test_wikiutil.py: test added for wikiutil.drawing2fname() in _tests/test_wikiutil
 541 2011-08-22T23:53:59  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 613:cdfb5c99b774 2.0/MoinMoin/_tests/test_wikiutil.py: added test for wikiutil.getUnicodeIndexGroup() in _test/test_wikiutil.
 542 2011-08-22T23:54:01  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 621:65922348740b 2.0/MoinMoin/ (util/_tests/test_filesys.py wikiutil.py): code cleanup done in wikiutil.py and util/test_filesys.
 543 2011-08-22T23:54:02  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 622:f734d9a2bb57 2.0/MoinMoin/themes/_tests/test_navi_bar.py: test added for themes.ThemeSupport.parent_item() in themes/test_navi_bar
 544 2011-08-22T23:54:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 623:b46fbeae2939 2.0/MoinMoin/util/_tests/test_mime.py: test for util.mime.Type.__repr__() removed from util/test_mime as representation may vary
 545 2011-08-22T23:54:06  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 625:e7ce4bd1ac93 2.0/MoinMoin/_tests/test_error.py: added test for error.CompositeError in _test/test_error
 546 2011-08-22T23:54:07  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 627:e12ed6de9e41 2.0/MoinMoin/_tests/test_user.py: test for Trail related functions in user.User added to _test/test_user
 547 2011-08-22T23:54:09  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 628:70bf6d6b2191 2.0/MoinMoin/_tests/test_user.py: added display messages on failure in _tests/test_user
 548 2011-08-22T23:54:10  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 631:e2db0443175b 2.0/MoinMoin/_tests/test_user.py: added display msg on failure in _tests/test_user
 549 2011-08-22T23:54:11  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 633:f63541967a07 2.0/MoinMoin/_tests/test_user.py: user.User.delBookmark() should return 1 on failure
 550 2011-08-22T23:54:12  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 632:ed84a79e72b7 2.0/MoinMoin/_tests/test_user.py: user.User.delBookmark() should return 0 on success
 551 2011-08-22T23:54:13  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 636:0fe63375525e 2.0/ (10 files in 4 dirs): merged with default
 552 2011-08-22T23:54:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 637:a135f319182f 2.0/MoinMoin/util/_tests/test_diff_html.py: added tests for util.diff_html in util/test_diff_html
 553 2011-08-22T23:54:16  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 638:ef9377e3b8ee 2.0/MoinMoin/util/_tests/test_diff_html.py: util/test_diff_html changed to test different conditions - charobj.ratio() < 0.5 and charobj.ratio() > 0.5.
 554 2011-08-22T23:54:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 639:d395c0a10138 2.0/MoinMoin/util/_tests/test_md5crypt.py: test added for util.md5crypt in util/test_md5crypt
 555 2011-08-22T23:54:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 640:b872a744a615 2.0/setup.py: installation version of sqlalchemy and Flask changed to latest versions, comment for pytest requirement corrected
 556 2011-08-22T23:54:22  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 644:beabd93b3904 2.0/MoinMoin/ (12 files in 5 dirs): removed extra whitespaces form codes, added my name to the tests I wrote
 557 2011-08-22T23:54:23  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 645:cf6aaf82cccf 2.0/MoinMoin/util/_tests/test_mimetype.py: added condition if extension is None in util/TestMimeType.test_mime_type()
 558 2011-08-22T23:54:24  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 646:21dc628a9f3b 2.0/MoinMoin/util/_tests/test_pycdb.py: added test for util.pycdb in util/test_pycdb
 559 2011-08-22T23:54:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 648:965105148200 2.0/MoinMoin/util/_tests/test_pycdb.py: test added for pycdb.CDBMaker.finish() in util/test_pycdb, instance creation is moved to setup_method()
 560 2011-08-22T23:54:26  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 650:db71a2f07997 2.0/MoinMoin/util/_tests/test_pycdb.py: oops, it cdb not cbd, corrected the comment also
 561 2011-08-22T23:54:29  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 651:b5d0b58267de 2.0/MoinMoin/util/_tests/test_pycdb.py: created a tempfile insted of Moin_test, added test for pycdb.CDBReader in util/test_pycdb
 562 2011-08-22T23:54:32  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 653:8569c251c15a 2.0/MoinMoin/util/_tests/test_pycdb.py: added test for CDBReader.has_key() in util/test_pycdb
 563 2011-08-22T23:54:35  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 642:3454f76eca1b 2.0/MoinMoin/util/_tests/test_mimetype.py: added test for mimetype.MimeType.mime_type() in util/test_mimetype
 564 2011-08-22T23:54:37  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 655:3051fbc2cffa 2.0/MoinMoin/util/_tests/test_pycdb.py: added test for CDBReader.itervalues in util/test_pycdb
 565 2011-08-22T23:54:38  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 656:4ac6dfe437c2 2.0/MoinMoin/util/_tests/test_pycdb.py: test added for CDBReader.iteritems() in util/test_pycdb
 566 2011-08-22T23:54:39  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 657:a37a9dcd92ec 2.0/MoinMoin/util/_tests/test_pycdb.py: added test for invalid key in test_get()
 567 2011-08-22T23:54:41  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 660:5fde3de6ae3c 2.0/MoinMoin/_tests/test_wikiutil.py: removed failure messages from test_wikiutil
 568 2011-08-22T23:54:41  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 658:eb38c73e3a33 2.0/MoinMoin/util/_tests/test_pycdb.py: removed extra whitespaces in util/test_pycdb
 569 2011-08-22T23:54:43  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 664:9c5ed3f0d15f 2.0/MoinMoin/util/_tests/test_forms.py: added test for forms.autofocus_filter() in util/test_forms
 570 2011-08-22T23:54:44  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 663:ee29d2257abc 2.0/MoinMoin/util/_tests/test_forms.py: added test to util/test_forms.test_required_filter to test if tagname is 'input'
 571 2011-08-22T23:54:45  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 667:35939c292237 2.0/MoinMoin/util/_tests/test_send_file.py: added test for util.send_file in util/test_send_file
 572 2011-08-22T23:54:46  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 662:cb2645384727 2.0/MoinMoin/util/_tests/test_forms.py: added test for util.forms in util/test_forms
 573 2011-08-22T23:54:47  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 661:94aedb5a4aa5 2.0/MoinMoin/_tests/test_wikiutil.py: code cleanup for test_wikiutil
 574 2011-08-22T23:54:49  <CIA-114> Himanshu Awasthi <89hardy.code@gmail.com> pytest2 * 672:4816f4025add 2.0/MoinMoin/storage/__init__.py: Removal of errors from test_middleware_acl.py and test_backends_router.py
 575 2011-08-22T23:54:50  <CIA-114> Himanshu Awasthi <89hardy.code@gmail.com> pytest2 * 673:5279825c90b2 2.0/MoinMoin/storage/_tests/test_serialization.py: Fixed the entire test module comparing XML manually using xml.dom.minidom because xmldiff did not help
 576 2011-08-22T23:54:51  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 676:ca82715a8bf8 2.0/MoinMoin/storage/ (5 files in 3 dirs): merged with hardy89's repo
 577 2011-08-22T23:54:52  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 677:fca6f30612d1 2.0/MoinMoin/storage/ (__init__.py _tests/test_backends.py): corrected wrong statement from merge
 578 2011-08-22T23:54:54  <CIA-114> Himanshu Awasthi <89hardy.code@gmail.com> pytest2 * 674:fae6e626eb19 2.0/MoinMoin/storage/_tests/test_backends.py: Fixed memory backend and sqla test for creating an item and a revision. Rollback was not required, did an item commit instead.
 579 2011-08-22T23:54:55  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 680:e6d1643d27d7 2.0/MoinMoin/datastruct/backends/_tests/test_wiki_dicts.py: dded test for wiki_dicts.WikiDicts._retrieve_items in test_wiki_dicts in datastruct module
 580 2011-08-22T23:54:56  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 682:35471ebbf23f 2.0/MoinMoin/items/_tests/test_Item.py: added test for Item.meta_filter() in test_Item in Item module
 581 2011-08-22T23:54:57  <ronny> oO
 582 2011-08-22T23:54:57  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 684:67da6b2f409a 2.0/MoinMoin/items/_tests/test_Item.py: added test for items.rename in test_Item
 583 2011-08-22T23:54:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 681:fa8cf6537cba 2.0/MoinMoin/datastruct/backends/_tests/test_config_dicts.py: added test to test_config_dicts for config_dicts.ConfigDicts.__iter__() in datastruct module
 584 2011-08-22T23:54:59  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 686:8ab608b4e538 2.0/MoinMoin/items/_tests/test_Item.py: added test for items.delete in test_Item
 585 2011-08-22T23:55:01  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 687:83c5d5d0cc73 2.0/MoinMoin/items/_tests/test_Item.py: added test for Item.revert() in test_Item in items module
 586 2011-08-22T23:55:02  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 641:fe69557cd5ff 2.0/MoinMoin/util/_tests/test_mimetype.py: test added for util.mimetype in util/test_mimetype
 587 2011-08-22T23:55:03  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 643:c5c41f59a912 2.0/MoinMoin/util/_tests/test_mimetype.py: added test for MimeType.content_type in util/test_mimetype
 588 2011-08-22T23:55:04  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 647:933684d86216 2.0/MoinMoin/util/_tests/test_pycdb.py: added test in TestCDBMaker.test_add() to check the difference in created file before and after.
 589 2011-08-22T23:55:07  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 694:b72c80e2c67e 2.0/MoinMoin/items/_tests/test_Item.py: added tests for ZipMixin, TransformableBitmapImage, Text in test_Item in items module
 590 2011-08-22T23:55:09  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 695:31f3d6617072 2.0/MoinMoin/items/_tests/test_Item.py: added tests for conversion related functions of Text in test_Item
 591 2011-08-22T23:55:10  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 697:5b00e06e5a8b 2.0/MoinMoin/items/_tests/test_Item.py: added test for TransformableBitmapImage._render_data_diff() in test_Item in items module
 592 2011-08-22T23:55:11  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 698:4a879ae68b3b 2.0/MoinMoin/items/_tests/test_Item.py: test added for TestTransformableBitmapImage._render_data_diff_text() in test_Item in items module
 593 2011-08-22T23:55:13  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 696:3ad1888fe586 2.0/MoinMoin/items/_tests/test_Item.py: TestTransformableBitmapImage.test_transform() modified after having PIL in the env in test_Item
 594 2011-08-22T23:55:13  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 693:42d368d2e0f1 2.0/MoinMoin/items/_tests/test_Item.py: use Binary.create in instead of Item.create as testing for class Binary
 595 2011-08-22T23:55:15  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 702:3f86e5780814 2.0/MoinMoin/ (5 files in 3 dirs): removed extra whitespaces from different files
 596 2011-08-22T23:55:18  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 700:82f80b0b43b8 2.0/MoinMoin/items/_tests/test_Item.py: added tests for MarkupItem in test_Item in items module
 597 2011-08-22T23:55:19  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 705:45a9528625cf 2.0/MoinMoin/storage/_tests/test_backends_fs19.py: code clean up for test_backends_fs19
 598 2011-08-22T23:55:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 701:0b15a98fb030 2.0/MoinMoin/converter/_tests/ (test_moinwiki_in.py test_moinwiki_in_out.py): changes in converter to fix the failures
 599 2011-08-22T23:55:21  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 708:d0ce4067e47c 2.0/MoinMoin/macro/_tests/test__base.py: name changed and comment added for the class
 600 2011-08-22T23:55:23  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 711:1b0d299e1b18 2.0/MoinMoin/macro/_tests/test_GetVal.py: added new test for macro.GetVal as test_GetVal in macro module
 601 2011-08-22T23:55:24  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 713:7fd1cbdeec3a 2.0/MoinMoin/macro/_tests/test_DateTime.py: added test for macro.DateTime as test_DateTime in macro module
 602 2011-08-22T23:55:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 699:50bd0f081899 2.0/MoinMoin/items/_tests/test_Item.py: added tests for Text._render_data_diff_text() and Text._render_data_highlight() in test_Item in items module
 603 2011-08-22T23:55:27  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 715:8c3681129c16 2.0/MoinMoin/macro/_tests/test_Date.py: added test for macro.Date as test_Date in macro module
 604 2011-08-22T23:55:28  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 704:b9c77994ba3f 2.0/MoinMoin/storage/_tests/test_backends_fs19.py: added test for the fs19.hash_hexdigest in test_backends_fs19
 605 2011-08-22T23:55:30  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 718:1c292b6a76b7 2.0/MoinMoin/security/_tests/test_textcha.py: added test for textcha.TextChaValid, TextCha.test_amend_form. created setup and teardown for test clean up.
 606 2011-08-22T23:55:31  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 720:7f2bb2c5a5ef 2.0/MoinMoin/i18n/_tests/test_i18n.py: added test for i18n as test_i18n in i18n module
 607 2011-08-22T23:55:32  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 722:cbc2976d018b 2.0/MoinMoin/ (4 files in 3 dirs): get the items from xml in the test itself rather than in app.import_export_xml, removed import_export_xml from create_app_ext; tests become faster
 608 2011-08-22T23:55:33  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 723:d2099fe6b0fe 2.0/MoinMoin/auth/_tests/test_http.py: silly mistake in test_http corrected ; its teardown_method
 609 2011-08-22T23:55:34  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 725:ed5424a32527 2.0/MoinMoin/conftest.py: removed try, finally from MoinTestFunction in conftest
 610 2011-08-22T23:55:36  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 726:228142d0fca2 2.0/MoinMoin/auth/_tests/test_auth.py: test_auth.test_handle_login changed for better testing, added test for auth.get_multistage_continuation_url in test_auth
 611 2011-08-22T23:55:37  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 728:561b5ef3b46e 2.0/MoinMoin/auth/_tests/test_log.py: added test for auth.log as test_log in auth module
 612 2011-08-22T23:55:38  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 729:8f36c9135963 2.0/ (38 files in 19 dirs): merged with default
 613 2011-08-22T23:55:39  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 727:f420130cebc8 2.0/MoinMoin/ (2 files in 2 dirs): test cleanup; deteted due to fresh clone
 614 2011-08-22T23:55:40  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 724:845467217500 2.0/MoinMoin/auth/_tests/test_auth.py: addedtest for auth.__init__ as test_auth in auth module
 615 2011-08-22T23:55:42  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 734:ec9618bd0b2a 2.0/MoinMoin/storage/_tests/test_serialization.py: Backed out changeset 5279825c90b2
 616 2011-08-22T23:55:43  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 735:3020b2d70afe 2.0/MoinMoin/storage/_tests/test_serialization.py: xml-dom is not required
 617 2011-08-22T23:55:45  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 738:ffedb02796ed 2.0/MoinMoin/storage/ (_tests/test_backends_router.py backends/router.py): Backed out changeset d9eb2bd90918
 618 2011-08-22T23:55:45  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 737:824d0bd08d41 2.0/MoinMoin/storage/_tests/test_backends.py: incorrect change
 619 2011-08-22T23:55:46  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 740:0bb61732763e 2.0/MoinMoin/storage/_tests/ (test_backends.py test_backends_router.py): fixed test failure in test_backend_router: use _get_backend instead of _backend
 620 2011-08-22T23:55:48  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 742:be9241eaa3c4 2.0/ (41 files in 20 dirs): merged with default
 621 2011-08-22T23:55:49  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 743:700c3f22ea19 2.0/MoinMoin/conftest.py: changed clean_backend to work with up storage itself, doesn't show the Integrity error with whoosh anymore
 622 2011-08-22T23:55:50  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 746:4fce66ce39db 2.0/MoinMoin/storage/_tests/test_backends_sqla.py: initialized WhooshIndex in test_backends_sqla to avoid EmptyIndexError raised due to empty index dir
 623 2011-08-22T23:55:51  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 748:c9aa22139870 2.0/setup.py: removed mathjax from setup, was there due to merging mistake
 624 2011-08-22T23:55:54  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 745:4e231d50f2a6 2.0/MoinMoin/storage/_tests/test_backends_router.py: added teardown_method in test_backends_router to delete index files in index dir as index files from previous tests affects tests with backend.history
 625 2011-08-22T23:55:55  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 752:0ea1cde488dd 2.0/MoinMoin/ (2 files in 2 dirs): removed extra pytest imports
 626 2011-08-22T23:55:56  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 751:8ae3786e50bf 2.0/ (5 files in 2 dirs): merged with default
 627 2011-08-22T23:55:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 739:1ca1b9351f5e 2.0/ (107 files in 28 dirs): undesired changes
 628 2011-08-22T23:55:59  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 744:742bdd77031b 2.0/MoinMoin/storage/_tests/ (test_backends.py test_backends_router.py): removed the smileys temporarily as it slows the tests a lot until 'this' whoosh bug is fixed
 629 2011-08-22T23:56:00  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 717:93ace300d396 2.0/MoinMoin/security/_tests/test_textcha.py: added test for security.textcha as test_textcha in security module
 630 2011-08-22T23:56:01  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 683:da96ef105861 2.0/MoinMoin/items/_tests/test_Item.py: added tests for meta_dict_to_text and meta_text_to_dict in test_item
 631 2011-08-22T23:56:02  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 730:bb92cc94029f 2.0/MoinMoin/auth/_tests/test_log.py: removed trailing whitespace in test_log
 632 2011-08-22T23:56:03  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 630:123a42cf18bc 2.0/MoinMoin/_tests/test_user.py: added test for bookmark related functions of user in _tests/test_user
 633 2011-08-22T23:56:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 690:e8eb969ff26b 2.0/MoinMoin/items/_tests/test_Item.py: tests in test_Item modified to be less complex and more neat
 634 2011-08-22T23:56:06  <CIA-114> Himanshu Awasthi <89hardy.code@gmail.com> pytest2 * 675:d9eb2bd90918 2.0/MoinMoin/storage/ (_tests/test_backends_router.py backends/router.py): Fixed rename method in router backend in turn fixing a failed test.
 635 2011-08-22T23:56:07  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 749:0538a280d1bb 2.0/MoinMoin/macro/_base.py: content_block changed to context_block in macro._base to remove the test failure
 636 2011-08-22T23:56:08  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 666:a5ec42dab3cf 2.0/MoinMoin/util/_tests/test_forms.py: code clean up for util/test_forms
 637 2011-08-22T23:56:09  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 750:04cc08c8e31c 2.0/MoinMoin/ (12 files in 4 dirs): changed py.test to pytest in all the modules
 638 2011-08-22T23:56:11  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 665:7c7b05a0a30e 2.0/MoinMoin/util/ (_tests/test_forms.py forms.py): added tests for error_filter_factory and placeholder_filter of util.forms in util/test_forms
 639 2011-08-22T23:56:12  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 710:b255ecfe87b9 2.0/MoinMoin/macro/_tests/test_Anchor.py: added new test for macro.Anchor as test_Anchor in macro module
 640 2011-08-22T23:56:13  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 624:844ff806153c 2.0/MoinMoin/converter/_tests/test_include.py: added test by increasing the stack content - stack doesn't get empty at top = stack.pop(), in converter.include.XPointer
 641 2011-08-22T23:56:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 736:059b78efc0bc 2.0/MoinMoin/storage/_tests/test_backends.py: Backed out changeset fae6e626eb19
 642 2011-08-22T23:56:15  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 733:c99e62a9d672 2.0/: should not change the tested code there
 643 2011-08-22T23:56:17  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 706:91c5baf0565b 2.0/ (3 files in 3 dirs): merged with default
 644 2011-08-22T23:56:18  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 753:72f6a200ed88 2.0/ (44 files in 16 dirs): merged with default
 645 2011-08-22T23:56:19  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 603:7fe35e3453a6 2.0/MoinMoin/util/_tests/test_lock.py: read_lock.acquire and write_lock.acquire should return True.
 646 2011-08-22T23:56:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 582:32025c625b66 2.0/MoinMoin/storage/_tests/test_backends_memory.py: init_test_app and deinit_test_app called in test_backend_memory.
 647 2011-08-22T23:56:22  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 668:9e8eefd72f87 2.0/MoinMoin/util/_tests/test_send_file.py: changed as_attachment to True, to improve the test coverage of util/test_send_file
 648 2011-08-22T23:56:23  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 707:294c0053e0a5 2.0/MoinMoin/macro/_tests/test__base.py: added new test for macro._base in test__base : previous one was out of sync with tested code
 649 2011-08-22T23:56:24  <CIA-114> Himanshu Awasthi <89hardy.code@gmail.com> pytest2 * 671:462163be25bc 2.0/MoinMoin/storage/_tests/test_backends.py: test failure removed from test_middleware_acl.py
 650 2011-08-22T23:56:25  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 617:7899736d7ede 2.0/MoinMoin/_tests/test_wikiutil.py: added test for wikiutil.file_headers() in _test/test_wikiutil
 651 2011-08-22T23:56:27  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 692:cb9d9a259f03 2.0/MoinMoin/items/_tests/test_Item.py: added test for items.Binary in test_item in items module
 652 2011-08-22T23:56:28  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 688:34aeed3ae75a 2.0/MoinMoin/items/_tests/test_Item.py: added test for Item.modify() in test_Item in items module
 653 2011-08-22T23:56:29  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 679:fee779ec7ec8 2.0/MoinMoin/ (31 files in 6 dirs): merged with default
 654 2011-08-22T23:56:30  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 652:d81a5021c087 2.0/MoinMoin/util/_tests/test_pycdb.py: function name corrected to test_get()
 655 2011-08-22T23:56:31  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 712:753acdd70fb5 2.0/MoinMoin/macro/_tests/test_Verbatim.py: added test for macro.Verbatim as test_Verbatim in macro module
 656 2011-08-22T23:56:33  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 691:17b028cef24f 2.0/MoinMoin/items/_tests/test_Item.py: added test for item.count_items() in test_Item in items module
 657 2011-08-22T23:56:34  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 747:0236cebb8221 2.0/MoinMoin/storage/_tests/ (test_backends_router.py test_backends_sqla.py): removed trailing white spaces
 658 2011-08-22T23:56:35  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 585:6610f364cfae 2.0/MoinMoin/ (4 files in 2 dirs): init_test_app and deinit_test_app removed from all the tests of storage module. This can be done in conftest.py itself.
 659 2011-08-22T23:56:36  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 586:efc0fcd76f43 2.0/MoinMoin/items/_tests/test_Item.py: init_test_app and deinit_test_app called in test_Item
 660 2011-08-22T23:56:38  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 659:f6caa84e4ae5 2.0/MoinMoin/_tests/test_user.py: removed display messages on test failure as pytest2 handles it well
 661 2011-08-22T23:56:39  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 571:957d41c088db 2.0/MoinMoin/conftest.py: added 'try', 'finally' in MoinTestFunction
 662 2011-08-22T23:56:40  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 716:10ae983e1137 2.0/MoinMoin/macro/_tests/test_GetText.py: added new test for macro.GetText as test_GetText in macro module
 663 2011-08-22T23:56:41  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 635:948b5584e941 2.0/MoinMoin/util/_tests/test_thread_monitor.py: added test for trigger_dump of util.thread_monitor.Monitor in util/test_thread_monitor
 664 2011-08-22T23:56:42  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 606:caf03e340f75 2.0/MoinMoin/themes/_tests/test_navi_bar.py: added test for location_breadcrumbs in themes/test_navi_bar
 665 2011-08-22T23:56:43  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 709:49513dc53fa5 2.0/MoinMoin/macro/_tests/test__base.py: test__base cleanup
 666 2011-08-22T23:56:45  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 578:6cbcec2eb46f 2.0/MoinMoin/apps/frontend/_tests/test_frontend.py: init_test_app called in setup_method() of TestUsersettings to avoid the test failure in test_frontend.
 667 2011-08-22T23:56:46  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 593:b3aeaf60adcc 2.0/MoinMoin/util/_tests/test_crypto.py: added test for incorrect token in testvalidtoken in test_crypto.py
 668 2011-08-22T23:56:47  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 689:c1ca6b16bba1 2.0/MoinMoin/items/_tests/test_Item.py: test for Item.modify() modified to check previous and later conditions
 669 2011-08-22T23:56:49  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 714:dc7455588fdd 2.0/MoinMoin/macro/_tests/test_DateTime.py: whitespaces cleanup
 670 2011-08-22T23:56:49  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 732:dcd63e377780 2.0/MoinMoin/storage/__init__.py: Backed out changeset 4816f4025add
 671 2011-08-22T23:56:52  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 654:0bbf1250e0d1 2.0/MoinMoin/util/_tests/test_pycdb.py: added test for key related functions of util.pycdb in util/test_pycdb
 672 2011-08-22T23:56:53  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 588:36c443f4b37f 2.0/MoinMoin/util/_tests/test_crypto.py: added testvalidpassword and testupgradepassword in test_crypto.py
 673 2011-08-22T23:56:54  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 626:134e57c7ea10 2.0/MoinMoin/_tests/test_user.py: added testfor quicklinks related functions of user.User in _test/test_user
 674 2011-08-22T23:56:55  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 620:5b68305a8211 2.0/MoinMoin/util/_tests/test_crypto.py: minor changes/test cleanup done in util/test_crypto
 675 2011-08-22T23:56:57  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 670:30f4fb350ad1 2.0/MoinMoin/storage/_tests/test_backends.py: fixed errors in test_backends_fs2 and few failures in storage module
 676 2011-08-22T23:56:58  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 615:6b173390b0e8 2.0/MoinMoin/_tests/test_wikiutil.py: test for wikiutil.containsConflictMarker() added in _test/test_wikiutil
 677 2011-08-22T23:56:59  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 592:60e6936eaf4c 2.0/MoinMoin/util/_tests/test_crypto.py: added tests to testvalidpassword and testvalidtoken in test_crypto,py
 678 2011-08-22T23:57:00  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 669:8e958f676a17 2.0/MoinMoin/util/_tests/test_send_file.py: changed conditional ti True ot improve test coverage and checked for extra whitespaces
 679 2011-08-22T23:57:02  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 719:05b5d8284031 2.0/MoinMoin/ (_tests/test_test_environ.py security/_tests/test_textcha.py): removed trailing white spcaes from test_textcha in securit module and test_test_environ in MoinMoin._tests
 680 2011-08-22T23:57:02  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 741:38f153a7c355 2.0/MoinMoin/storage/_tests/test_backends_router.py: added comment and use the variable instead
 681 2011-08-22T23:57:04  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 703:240def5ebe18 2.0/MoinMoin/storage/_tests/test_backends_fs19.py: added tests for fs19._decode_list and fs19._decode_dict in test_backend_fs19 in storage module
 682 2011-08-22T23:57:05  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 685:9115a203b363 2.0/MoinMoin/items/_tests/test_Item.py: woops test name should be test_rename
 683 2011-08-22T23:57:06  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 721:33475ee387b3 2.0/MoinMoin/auth/_tests/test_http.py: added test for auth.http as test_http in auth module
 684 2011-08-22T23:57:07  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 602:cc24cc284cde 2.0/MoinMoin/util/_tests/test_lock.py: should raise RuntimeError if a lock is already there in test_readlock_acquire.
 685 2011-08-22T23:57:08  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 634:a42e136162a5 2.0/MoinMoin/util/_tests/test_thread_monitor.py: added test test_thread_monitor for util.thread_monitor
 686 2011-08-22T23:57:10  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 618:add7c6c78f34 2.0/ (38 files in 12 dirs): merged with default
 687 2011-08-22T23:57:11  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 614:b016b5b3c0e2 2.0/MoinMoin/ (_tests/test_wikiutil.py wikiutil.py): added test for wikiutil.is_URL in _tests/test_wikiutil
 688 2011-08-22T23:57:12  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 573:7a29b52c8452 2.0/MoinMoin/conftest.py: MoinMoin.log.load_config(config_file) called from conftest.py to configure logging for tests.
 689 2011-08-22T23:57:14  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 731:23c94af9b145 2.0/MoinMoin/ (5 files in 4 dirs):
 690 2011-08-22T23:57:14  <CIA-114> 1. added function clean_bakend to conftest to remove all the items in backend
 691 2011-08-22T23:57:14  <CIA-114> created after each testing process. 2. removed app initializations from all the
 692 2011-08-22T23:57:14  <CIA-114> files which were added due to lack of test cleanup. 3. changed type of
 693 2011-08-22T23:57:14  <CIA-114> contenttype and item names to unicode in item module to fix the type assertion
 694 2011-08-22T23:57:14  <CIA-114> error there
 695 2011-08-22T23:57:15  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 619:b4784426e4c8 2.0/MoinMoin/_tests/test_wikiutil.py: added display messages on failure in _tests/test_wikiutil
 696 2011-08-22T23:57:16  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 754:149ddb56416e 2.0/MoinMoin/_tests/test_user.py: tests in test_user changed as value for interWikiName is handled differntly now
 697 2011-08-22T23:57:17  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 649:dcf0cb7a4cf1 2.0/MoinMoin/util/_tests/test_pycdb.py: added contents to cbd_file in test_finish() to improve the test coverage
 698 2011-08-22T23:57:19  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 604:6b926426e3d2 2.0/MoinMoin/util/_tests/test_crypto.py: added test to check the stamp value in valid_token in util/crypto.py
 699 2011-08-22T23:57:19  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 629:57efdd8f955d 2.0/MoinMoin/_tests/test_user.py: added tests for User.generate_recovery_token, User.apply_recovery_token, User.signature of user in _tests/test_user
 700 2011-08-22T23:57:20  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 595:1476764d3857 2.0/MoinMoin/util/_tests/test_filesys.py: added test_dir_exist to raise error if dir already exist in util/test_filesys.py
 701 2011-08-22T23:57:22  <CIA-114> pkumar <contactprashantat@gmail.com> pytest2 * 678:09b38f6280ae 2.0/MoinMoin/storage/_tests/ (test_backends.py test_backends_fs2.py): FS2Backend is sufficient for testing storage.backends.fs2

MoinMoin: MoinMoinChat/Logs/moin-dev/2011-08-22 (last edited 2011-08-21 22:45:03 by IrcLogImporter)