<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cgit/ui-commit.c, branch v0.4</title>
<subtitle>Fork of cgit with my patches.</subtitle>
<id>http://git.kilabit.info/cgit/atom?h=v0.4</id>
<link rel='self' href='http://git.kilabit.info/cgit/atom?h=v0.4'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/'/>
<updated>2007-05-13T21:27:53Z</updated>
<entry>
<title>Add commitdiff between commit and each of it's parent</title>
<updated>2007-05-13T21:27:53Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2007-05-13T21:13:12Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=6a8749d3bd1570faa3dc07e80efc8fcef5953aa0'/>
<id>urn:sha1:6a8749d3bd1570faa3dc07e80efc8fcef5953aa0</id>
<content type='text'>
A link is added next to each parent of a commit, leading to the new
diff-functionality in ui-diff.c.

Also added support for a path-parameter to filelevel diffs accessed via the
diffstat.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add graphical diffstat to commit view</title>
<updated>2007-05-13T20:31:11Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2007-05-13T20:25:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=8a3685bcf2612206fc24a2421acb53dd83aeab85'/>
<id>urn:sha1:8a3685bcf2612206fc24a2421acb53dd83aeab85</id>
<content type='text'>
The diffstat is calculated against the leftmost parent of the commit. This
gives nice information for "normal" merges while octopus merges are less
than optimal, so the diffstat isn't calculated for those merges.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Use standard tree-diff function when showing diffstat for single commit</title>
<updated>2007-05-13T09:30:18Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2007-05-13T09:26:23Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=ae4c1ee11379e353f2a94201181a3a9dab75b646'/>
<id>urn:sha1:ae4c1ee11379e353f2a94201181a3a9dab75b646</id>
<content type='text'>
Remove unneeded code from ui-commit.c and replace with call to standard
diff-functions.

Also fix some whitespace issues.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Make snapshot feature configurable</title>
<updated>2007-02-08T13:47:56Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2007-02-08T13:47:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=ac70cb4795c90db02917db63d169b0fadfe9fb99'/>
<id>urn:sha1:ac70cb4795c90db02917db63d169b0fadfe9fb99</id>
<content type='text'>
Snapshots can now be enabled/disabled by default for all repositories in
cgitrc with param "snapshots". Additionally, any repo can override the
default setting with param "repo.snapshots".

By default, no snapshotting is enabled.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add support for snapshots</title>
<updated>2007-02-08T12:58:58Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2007-02-08T12:53:13Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=ab2ab95f09994560f62fd631f07d3b6e3577aa6e'/>
<id>urn:sha1:ab2ab95f09994560f62fd631f07d3b6e3577aa6e</id>
<content type='text'>
Make a link from the commit viewer to a snapshot of the corresponding tree.

Currently only zip-format is supported.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add missing diff-link in ui-commit.c</title>
<updated>2006-12-22T00:38:37Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2006-12-22T00:38:37Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=2efee09abe28ecd2719201da6cd9915f14d93a56'/>
<id>urn:sha1:2efee09abe28ecd2719201da6cd9915f14d93a56</id>
<content type='text'>
Gaah.

This should have been a part of 36aba00273e7af1b94bf8c5dd5068709d983d01e

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Don't show new and old filemode for added/removed files</title>
<updated>2006-12-17T22:30:55Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2006-12-17T22:30:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=fb6e5869dcc81b775d5ac79dd3afac7220c366dd'/>
<id>urn:sha1:fb6e5869dcc81b775d5ac79dd3afac7220c366dd</id>
<content type='text'>
It gives us no extra info whatsoever to show "----------" for either new
or old mode, it's just noise (especially since we now show the "old"
filemode for deleted files)

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Show list of modified files in ui-commit.c</title>
<updated>2006-12-17T22:07:28Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2006-12-17T22:07:28Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=6cb326c83b3c0b35d472305294afee3105b3088d'/>
<id>urn:sha1:6cb326c83b3c0b35d472305294afee3105b3088d</id>
<content type='text'>
Compare current commit with 1.parent, and for each affected file display
current filemode, old filemode if changed, current filename and source
filename if it was a copy/rename.

Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Reformat code to avoid excessive line lengths</title>
<updated>2006-12-16T20:02:02Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2006-12-16T18:35:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=9c5229ea394808f90433ee84439503bee124e1de'/>
<id>urn:sha1:9c5229ea394808f90433ee84439503bee124e1de</id>
<content type='text'>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add cgit_free_commitinfo() and use where needed</title>
<updated>2006-12-16T13:58:20Z</updated>
<author>
<name>Lars Hjemli</name>
<email>hjemli@gmail.com</email>
</author>
<published>2006-12-16T13:58:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/cgit/commit/?id=aaa24bdd30303128bded8487cd9f63b54c3b8dcd'/>
<id>urn:sha1:aaa24bdd30303128bded8487cd9f63b54c3b8dcd</id>
<content type='text'>
Signed-off-by: Lars Hjemli &lt;hjemli@gmail.com&gt;
</content>
</entry>
</feed>
