date | project | content | link |
|---|
| 00:46 Tuesday | reviewboard | Commit by ASolovets@gmail.com :: r 2182 /wiki/RBTools.wiki: ( link) Edited wiki page RBTools through web user interface. | # |
| 23:44 Sunday | reviewboard | Commit by David Trowbridge on master :: r 16034b8 / docs/manual/faq/index.txt : ( link) Fix a potentially confusing answer in the FAQ. A user emailed to suggest that the FAQ was a little confusing when it suggested using post-review for post-commit reviews. The naming is unfortunate, and so I've added some clarification that "post" means "put up" in post-review, and the tool should be used for both pre- and post-commit reviews. - http://git.io/TmvvaQ | # |
| 22:13 Sunday | reviewboard | Commit by David Trowbridge on release-1.6.x :: r 5d51fd3 / (2 files in 2 dirs): ( link) | # |
| 22:12 Sunday | reviewboard | Commit by David Trowbridge on release-1.6.x :: r 7fa12ba / (2 files): ( link) Fix links to screenshot comments in notification emails. Notification emails for reviews and review replies would add a link to screenshot comments without the domain method or domain. Fixes bug 2305. - http://git.io/bzoRyQ | # |
| 09:40 Sunday | reviewboard | Commit by Christian Hammond on master :: r 40a4f5a / (3 files in 2 dirs): ( link) Switch to using middleware for initialization. Our initialization code was tied into the main urls.py. The idea being that the first request would cause URLs to be first computed, and that would be a fine time to do our other initialization. This changes with extensions. Initializing an extension may alter the URLs being generated, and may actually query the actual URLs, which won't be available just yet, breaking things on the first load. So now initialization is done as middleware. On the first request, after URLs have been loaded but before any views are determined, we perform initialization, and only once. - http://git.io/CGX7rw | # |
| 09:19 Sunday | reviewboard | Commit by Christian Hammond on master :: r 938402d / (5 files): ( link) Remove all usage of ifuserorperm/ifnotuserandperm. The ifuserorperm and ifnotuserandperm template tags appear to be pretty broken with Django 1.4. I imagine this is due to their new code that handles if/elif/endif, since it seems to trigger only when wrapped in an if statement (in which case the opening tag is broken), or when an if statement is wrapped inside of it (in which case the ending tag is broken). We don't really need these anymore, anyway. They were important in the past because Django's if statement wouldn't do equality checks, so we couldn't do an OR of the permission checks + user matching. Now we can, so we can safely replace all these. This fixes the review request page on Django 1.4. - http://git.io/xuXHoQ | # |
| 09:14 Sunday | reviewboard | Commit by Christian Hammond on master :: r b6951bf / (22 files in 6 dirs): ( link) Use Django's smarter if tag. Django these days provides a smarter if tag that allows for basic expressions. This is nicer than using ifequal for things, and with Django 1.4, we can also do elif. This cleans up bits of the code and allows some expressions and nested ifs to be condensed. - http://git.io/W5CdVQ | # |
| 05:24 Sunday | reviewboard | Commit by ASolovets@gmail.com :: r 2181 /wiki/RBTools.wiki: ( link) Created wiki page 'RBTools' through web user interface. | # |
| 00:34 Sunday | reviewboard | Commit by James Farwell on release-1.6.x :: r 24844d1 / reviewboard/diffviewer/diffutils.py : ( link) | # |
| 00:33 Sunday | reviewboard | Commit by James Farwell on release-1.6.x :: r da6eedb / reviewboard/reviews/forms.py : ( link) | # |
| 10:44 Saturday | reviewboard | Commit by Christian Hammond on master :: r 7c2ce6c / (docs/manual/docs.db setup.py): ( link) Hard-code support for Django Pipeline 1.1.27. Django Pipeline 1.2 just came out and requires full support of the staticfiles support. We're not there just yet, so hard-code support for Django Pipeline 1.1.27 until we are. - http://git.io/ouaCxA | # |
| 04:50 Saturday | reviewboard | Commit by Christian Hammond on master :: r 91ccf5f / (2 files in 2 dirs): ( link) Add some instructions and troubleshooting for Django Evolution. This guide helps new contributors in creating evolution files and debugging common problems. It covers some tips and gotchas. - http://git.io/LUwfVA | # |
| 08:52 on Feb 15 | reviewboard | Commit by Anthony Mok on master :: r 293ac09 / (3 files in 2 dirs): ( link) Added a preview e-mail page for change descriptions. The "Review request updated" e-mail can be previewed now by pointing the browser to /r/<id>/changes/<changedesc_id>/preview-email/{html|text}/. This can be useful in testing updates to the template. Reviewed at http://reviews.reviewboard.org/r/2858/ - http://git.io/3DgmYg | # |
| 10:37 on Feb 13 | reviewboard | Commit by Christian Hammond on master :: r 98b1b23 / docs/releasenotes/reviewboard/1.6.4.txt : ( link) | # |
| 10:37 on Feb 13 | reviewboard | Commit by Christian Hammond on release-1.6.x :: r 235160f / docs/releasenotes/reviewboard/1.6.4.txt : ( link) | # |
| 07:28 on Feb 13 | reviewboard | Commit by David Trowbridge on master :: r 4479531 / (15 files in 5 dirs): ( link) | # |
| 07:26 on Feb 13 | reviewboard | Commit by David Trowbridge on release-1.6.x :: r 1c18113 / (2 files): ( link) | # |
| 07:26 on Feb 13 | reviewboard | Commit by David Trowbridge on master :: r 1c18113 / (2 files): ( link) | # |
| 07:20 on Feb 13 | reviewboard | Commit by David Trowbridge on release-1.6.x :: r f591a04 / (4 files in 2 dirs): ( link) Convert our HTTP requests from urllib2 to requests. In addition to being a downright awful API to use, urllib2 has a fundamental flaw in that it will only send HTTP Basic Auth information if the first request for the resource comes back with a www-authenticate header. This doesn't work for many HTTPS mercurial repositories, and it doesn't work with some 3rd-party providers of raw-file URLs like Codebase HQ's API. This change converts our code to use the 'requests' module, which is downright sexy. 'requests' will also do a much better job of trying to guess the charset of any text we get. Fixes bug 547 Reviewed at http://reviews.reviewboard.org/r/2863/ - http://git.io/lHxp2w | # |
| 07:20 on Feb 13 | reviewboard | Commit by David Trowbridge on master :: r f591a04 / (4 files in 2 dirs): ( link) Convert our HTTP requests from urllib2 to requests. In addition to being a downright awful API to use, urllib2 has a fundamental flaw in that it will only send HTTP Basic Auth information if the first request for the resource comes back with a www-authenticate header. This doesn't work for many HTTPS mercurial repositories, and it doesn't work with some 3rd-party providers of raw-file URLs like Codebase HQ's API. This change converts our code to use the 'requests' module, which is downright sexy. 'requests' will also do a much better job of trying to guess the charset of any text we get. Fixes bug 547 Reviewed at http://reviews.reviewboard.org/r/2863/ - http://git.io/lHxp2w | # |