<!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/49521e9d20cbff48bd8460eeb66b0036f337cd67">changelog: fix display artifacts in expanded multi-line commit messages  When a multi-line commit message is expanded in a changelog, and the last line of th...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Fri, 20 Feb 2015 09:44:02<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/49521e9d20cbff48bd8460eeb66b0036f337cd67">49521e9d</a><pre>changelog: fix display artifacts in expanded multi-line commit messages

When a multi-line commit message is expanded in a changelog, and the last line
of the commit message has some characters that go below the baseline, like an
underscore, g, j, y, ... the bottom part of these characters would not be
shown.

This is caused by the 'overflow: hidden' property set on the unexpanded
message. Reset that property by adding 'overflow: initial' on the expanded
class.

Additionally, slightly enlarge the margin of the expanded message box.

 M kallithea/public/css/style.css (2 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/bce8e20057e15028d33a70cc96ac7b83145d382e">repository summary: avoid table bleed on long commit messages  For commit messages with the first line being very long, the 'latest changes' table on the rep...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Thu, 19 Feb 2015 21:39:53<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/bce8e20057e15028d33a70cc96ac7b83145d382e">bce8e200</a><pre>repository summary: avoid table bleed on long commit messages

For commit messages with the first line being very long, the 'latest
changes' table on the repository overview page can 'bleed', so that the
commit number overlaps with the commit status.

Commit 15cb8156b10d732cf39b37a88c656894621c0f54 changed the initial truncate
on 50 characters to a chop at the first newline characters, causing this
issue to pop up more frequently.

Instead of using floating divs for the commit status and number of comments,
use dedicated table columns, as compact as possible.
Additionally, move these new columns to the very left of the table, instead
of cramming them in between the revision and commit message.

The comments-container class gets a new attribute 'white-space: nowrap' to
avoid the comment icon to wrap from the number of comments, when the table
does wrap on a small screen.
Note that the icon currently does not display as it should be renamed from
icon-comment-alt/colored to icon-comment. This will be fixed by Sean Farley.

 M kallithea/public/css/style.css (5 lines added, 0 lines removed)
 M kallithea/templates/changelog/changelog_summary_data.html (9 lines added, 5 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/fd8c0117ca223eed6397b2a5d5e0d7a3978935a4">tests: move helper commit_change from compare test to fixture  Move the generic helper function _commit_change() to the fixture class, allowing reuse by othe...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Wed, 18 Feb 2015 20:39:01<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/fd8c0117ca223eed6397b2a5d5e0d7a3978935a4">fd8c0117</a><pre>tests: move helper commit_change from compare test to fixture

Move the generic helper function _commit_change() to the fixture class,
allowing reuse by other test classes.

 M kallithea/tests/fixture.py (33 lines added, 0 lines removed)
 M kallithea/tests/functional/test_compare.py (107 lines added, 122 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/880084c63e52e9eb47d2d00aef71221963c2702c">pullrequests: add unit tests for _get_repo_refs (unfinished)</a></h1>
<div id="body">
Thomas De Schampheleire committed on Thu, 19 Feb 2015 21:46:14<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/880084c63e52e9eb47d2d00aef71221963c2702c">880084c6</a><pre>pullrequests: add unit tests for _get_repo_refs (unfinished)

 M kallithea/tests/functional/test_pullrequests.py (94 lines added, 0 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/556e98fd06d2b81589e7f7cf96551ca11ae8925c">pullrequests on different repos: default to same destination/source branch  When a pull request is initiated between two different repositories, instead of u...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Mon, 23 Feb 2015 20:43:45<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/556e98fd06d2b81589e7f7cf96551ca11ae8925c">556e98fd</a><pre>pullrequests on different repos: default to same destination/source branch

When a pull request is initiated between two different repositories, instead
of using the current tip as destination branch, use the same branch as on
the source repository.

 M kallithea/controllers/pullrequests.py (10 lines added, 3 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/3a3ec35466e72de25821fabf4dc3cacb52dae6b5">templates: move site branding in page title to base template  Instead of repeating the same three lines in each and every template, move it to the base templ...</a></h1>
<div id="body">
Thomas De Schampheleire committed on Mon, 23 Feb 2015 21:11:38<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/3a3ec35466e72de25821fabf4dc3cacb52dae6b5">3a3ec354</a><pre>templates: move site branding in page title to base template

Instead of repeating the same three lines in each and every template, move
it to the base template.

 M kallithea/templates/about.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/admin.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/auth/auth_settings.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/defaults/defaults.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/gists/edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/gists/index.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/gists/new.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/gists/show.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/my_account/my_account.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/notifications/notifications.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/notifications/show_notification.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/permissions/permissions.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repo_groups/repo_group_add.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repo_groups/repo_group_edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repo_groups/repo_group_show.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repo_groups/repo_groups.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repos/repo_add.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repos/repo_creating.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repos/repo_edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/repos/repos.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/settings/settings.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/user_groups/user_group_add.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/user_groups/user_group_edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/user_groups/user_groups.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/users/user_add.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/users/user_edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/admin/users/users.html (0 lines added, 3 lines removed)
 M kallithea/templates/base/base.html (6 lines added, 0 lines removed)
 M kallithea/templates/base/root.html (1 lines added, 1 lines removed)
 M kallithea/templates/bookmarks/bookmarks.html (0 lines added, 3 lines removed)
 M kallithea/templates/branches/branches.html (0 lines added, 3 lines removed)
 M kallithea/templates/changelog/changelog.html (0 lines added, 3 lines removed)
 M kallithea/templates/changeset/changeset.html (0 lines added, 3 lines removed)
 M kallithea/templates/changeset/changeset_range.html (0 lines added, 3 lines removed)
 M kallithea/templates/compare/compare_diff.html (0 lines added, 3 lines removed)
 M kallithea/templates/files/diff_2way.html (0 lines added, 3 lines removed)
 M kallithea/templates/files/file_diff.html (0 lines added, 3 lines removed)
 M kallithea/templates/files/files.html (0 lines added, 4 lines removed)
 M kallithea/templates/files/files_add.html (0 lines added, 3 lines removed)
 M kallithea/templates/files/files_delete.html (0 lines added, 3 lines removed)
 M kallithea/templates/files/files_edit.html (0 lines added, 3 lines removed)
 M kallithea/templates/followers/followers.html (0 lines added, 3 lines removed)
 M kallithea/templates/forks/fork.html (0 lines added, 3 lines removed)
 M kallithea/templates/forks/forks.html (0 lines added, 3 lines removed)
 M kallithea/templates/index.html (0 lines added, 3 lines removed)
 M kallithea/templates/journal/journal.html (0 lines added, 3 lines removed)
 M kallithea/templates/journal/public_journal.html (0 lines added, 3 lines removed)
 M kallithea/templates/login.html (0 lines added, 3 lines removed)
 M kallithea/templates/password_reset.html (0 lines added, 3 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show.html (0 lines added, 3 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_all.html (0 lines added, 3 lines removed)
 M kallithea/templates/pullrequests/pullrequest_show_my.html (1 lines added, 1 lines removed)
 M kallithea/templates/register.html (0 lines added, 3 lines removed)
 M kallithea/templates/search/search.html (0 lines added, 3 lines removed)
 M kallithea/templates/summary/statistics.html (0 lines added, 3 lines removed)
 M kallithea/templates/summary/summary.html (0 lines added, 3 lines removed)
 M kallithea/templates/tags/tags.html (0 lines added, 3 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/4fbab9d5be4d6b66baef106d9f605d5baaf319f2">email templates: don't do HTML escaping in plain text templates - convert to Unicode</a></h1>
<div id="body">
andrewsh committed on Fri, 23 Jan 2015 20:26:10<br />branch: default<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/4fbab9d5be4d6b66baef106d9f605d5baaf319f2">4fbab9d5</a><pre>email templates: don't do HTML escaping in plain text templates - convert to Unicode

 M kallithea/templates/email_templates/changeset_comment.txt (8 lines added, 8 lines removed)
 M kallithea/templates/email_templates/default.txt (1 lines added, 1 lines removed)
 M kallithea/templates/email_templates/main.txt (2 lines added, 2 lines removed)
 M kallithea/templates/email_templates/password_reset.txt (5 lines added, 5 lines removed)
 M kallithea/templates/email_templates/pull_request.txt (8 lines added, 8 lines removed)
 M kallithea/templates/email_templates/pull_request_comment.txt (5 lines added, 5 lines removed)
 M kallithea/templates/email_templates/registration.txt (2 lines added, 2 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/fc311d8c3997063a8c6020f4e8d32ca77be339e5">email templates: render text part with unrendered RST, not HTML</a></h1>
<div id="body">
andrewsh committed on Fri, 23 Jan 2015 20:26:11<br />branch: default<br />tag: tip<br />changeset: <a href="https://kallithea-scm.org/repos/kallithea/changeset/fc311d8c3997063a8c6020f4e8d32ca77be339e5">fc311d8c</a><pre>email templates: render text part with unrendered RST, not HTML

 M kallithea/model/notification.py (14 lines added, 5 lines removed)</pre>
</div>
</div>
</div>
</body>
</html>