<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
h1 {
font: 12pt Roboto, "DejaVu Sans", Arial;
}
body {
font: 12pt Roboto, "DejaVu Sans", Arial;
margin-left: 5px;
margin-right: 5px;
}
a:link {
font-weight: bold;
color: #573;
}
blockquote {
font: 10pt monospace;
}
.header {
display:block;
background: #c0cf88;
border-bottom: solid 4px #573;
padding: 5px;
margin-top: 0px;
color: #573;
}
.header a {
font-size: 20px;
text-decoration: none;
}
.footer {
display: none;
background: #c0cf88;
border-top: solid 4px #573;
padding: 5px;
margin-bottom: 0px;
}
    </style>
</head>
<body>
<div id="entry">
<h1 class="header"><a href="https://kallithea-scm.org/repos/kallithea/changeset/5e94c0f9720c908d8be2d4b717cf3e63db2bbc96">tests: decrease sql_cache_short beaker config to 1 s to match hack in fixture.anon_access</a></h1>
<div id="body">
kiilerix committed on Thu, 26 Feb 2015 22:57:38<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/5e94c0f9720c908d8be2d4b717cf3e63db2bbc96">5e94c0f9</a><pre>tests: decrease sql_cache_short beaker config to 1 s to match hack in fixture.anon_access

 M kallithea/tests/fixture.py (1 lines added, 1 lines removed)
 M test.ini (1 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
h1 {
font: 12pt Roboto, "DejaVu Sans", Arial;
}
body {
font: 12pt Roboto, "DejaVu Sans", Arial;
margin-left: 5px;
margin-right: 5px;
}
a:link {
font-weight: bold;
color: #573;
}
blockquote {
font: 10pt monospace;
}
.header {
display:block;
background: #c0cf88;
border-bottom: solid 4px #573;
padding: 5px;
margin-top: 0px;
color: #573;
}
.header a {
font-size: 20px;
text-decoration: none;
}
.footer {
display: none;
background: #c0cf88;
border-top: solid 4px #573;
padding: 5px;
margin-bottom: 0px;
}
    </style>
</head>
<body>
<div id="entry">
<h1 class="header"><a href="https://kallithea-scm.org/repos/kallithea/changeset/a40824531f684ed7d4e7ec74b9332c1f49ea1b97">controllers: don't pass rendered templates in context variables  Some controllers used the followifng pattern: - render a data template into a context variab...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Sat, 21 Feb 2015 21:04:54<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/a40824531f684ed7d4e7ec74b9332c1f49ea1b97">a4082453</a><pre>controllers: don't pass rendered templates in context variables

Some controllers used the followifng pattern:
- render a data template into a context variable
- for partial (ajax) requests, return the contents of this variable
- for full-page requests, render the full page, which expands the value of
  the context variable

Instead, avoid context variables let the controller simply render the full or partial page, and let
the full page template include the partial page.

Remove this context variable for templating and use render exclusively.
>From templates, use %include instead of context variables.

This in line with the suggestions in the Pylons documentation:
    <a href="http://pylons-webframework.readthedocs.org/en/latest/helpers.html#partial-updates-with-ajax">http://pylons-webframework.readthedocs.org/en/latest/helpers.html#partial-updates-with-ajax</a>

 M kallithea/controllers/admin/admin.py (2 lines added, 2 lines removed)
 M kallithea/controllers/followers.py (1 lines added, 3 lines removed)
 M kallithea/controllers/forks.py (1 lines added, 3 lines removed)
 M kallithea/controllers/journal.py (3 lines added, 4 lines removed)
 M kallithea/controllers/pullrequests.py (1 lines added, 3 lines removed)
 M kallithea/templates/admin/admin.html (1 lines added, 1 lines removed)
 M kallithea/templates/followers/followers.html (1 lines added, 1 lines removed)
 M kallithea/templates/forks/forks.html (1 lines added, 1 lines removed)
 M kallithea/templates/journal/journal.html (3 lines added, 1 lines removed)
 M kallithea/templates/journal/public_journal.html (3 lines added, 1 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_all.html (1 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
h1 {
font: 12pt Roboto, "DejaVu Sans", Arial;
}
body {
font: 12pt Roboto, "DejaVu Sans", Arial;
margin-left: 5px;
margin-right: 5px;
}
a:link {
font-weight: bold;
color: #573;
}
blockquote {
font: 10pt monospace;
}
.header {
display:block;
background: #c0cf88;
border-bottom: solid 4px #573;
padding: 5px;
margin-top: 0px;
color: #573;
}
.header a {
font-size: 20px;
text-decoration: none;
}
.footer {
display: none;
background: #c0cf88;
border-top: solid 4px #573;
padding: 5px;
margin-bottom: 0px;
}
    </style>
</head>
<body>
<div id="entry">
<h1 class="header"><a href="https://kallithea-scm.org/repos/kallithea/changeset/508a49a1a02f638c7229d2209ab014df972fe310">pullrequest overview: sanitize display style  Remove the unnecessarily large font size on the pullrequest overview to line up with the styling of 'my pullreq...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Sat, 21 Feb 2015 21:45:22<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/508a49a1a02f638c7229d2209ab014df972fe310">508a49a1</a><pre>pullrequest overview: sanitize display style

Remove the unnecessarily large font size on the pullrequest overview to line
up with the styling of 'my pullrequests'.

Additionally, add some whitespace between the 'show closed PRs' link and the
actual list.

 M kallithea/public/css/style.css (0 lines added, 3 lines removed)
 M kallithea/templates/pullrequests/pullrequest_data.html (1 lines added, 1 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_all.html (1 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
h1 {
font: 12pt Roboto, "DejaVu Sans", Arial;
}
body {
font: 12pt Roboto, "DejaVu Sans", Arial;
margin-left: 5px;
margin-right: 5px;
}
a:link {
font-weight: bold;
color: #573;
}
blockquote {
font: 10pt monospace;
}
.header {
display:block;
background: #c0cf88;
border-bottom: solid 4px #573;
padding: 5px;
margin-top: 0px;
color: #573;
}
.header a {
font-size: 20px;
text-decoration: none;
}
.footer {
display: none;
background: #c0cf88;
border-top: solid 4px #573;
padding: 5px;
margin-bottom: 0px;
}
    </style>
</head>
<body>
<div id="entry">
<h1 class="header"><a href="https://kallithea-scm.org/repos/kallithea/changeset/e79993216c66aa104b9a36e516a1a703d943783a">my pullrequests: line up controller/template handling with repo pullrequests  Currently, the data for 'my pullrequests' is loaded dynamically through ajax, u...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Sat, 21 Feb 2015 21:29:46<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/e79993216c66aa104b9a36e516a1a703d943783a">e7999321</a><pre>my pullrequests: line up controller/template handling with repo pullrequests

Currently, the data for 'my pullrequests' is loaded dynamically through
ajax, unlike the way 'repository pullrequests' are loaded (statically).

As there is no good reason to have both treated differently, and as dynamic
loading of 'my pullrequests' is not really needed, rework the handling of
the 'my pullrequests' page with the 'repository pullrequests' page.

This includes lining up the 'show closed pull requests' checkbox/link.

This also fixes issue #102 ('my pull requests' when not logged in:
incorrect handling of login).

 M kallithea/config/routing.py (0 lines added, 4 lines removed)
 M kallithea/controllers/pullrequests.py (4 lines added, 8 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_my.html (11 lines added, 23 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_my_data.html (0 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
h1 {
font: 12pt Roboto, "DejaVu Sans", Arial;
}
body {
font: 12pt Roboto, "DejaVu Sans", Arial;
margin-left: 5px;
margin-right: 5px;
}
a:link {
font-weight: bold;
color: #573;
}
blockquote {
font: 10pt monospace;
}
.header {
display:block;
background: #c0cf88;
border-bottom: solid 4px #573;
padding: 5px;
margin-top: 0px;
color: #573;
}
.header a {
font-size: 20px;
text-decoration: none;
}
.footer {
display: none;
background: #c0cf88;
border-top: solid 4px #573;
padding: 5px;
margin-bottom: 0px;
}
    </style>
</head>
<body>
<div id="entry">
<h1 class="header"><a href="https://kallithea-scm.org/repos/kallithea/changeset/bee7d75d878e7a6e64b92363ef9da7c081608852">templates: changelog_summary: remove non-existing CSS class table_disp  The changelog_summary template references a non-existing CSS class table_disp. Remove...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Tue, 24 Feb 2015 21:17:36<br />branch: default<br />tag: tip<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/bee7d75d878e7a6e64b92363ef9da7c081608852">bee7d75d</a><pre>templates: changelog_summary: remove non-existing CSS class table_disp

The changelog_summary template references a non-existing CSS class
table_disp. Remove it.

 M kallithea/templates/changelog/changelog_summary_data.html (1 lines added, 1 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>