<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.5.2-rc0</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.5.2-rc0</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.5.2-rc0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2007-04-23T05:49:25Z</updated>
<entry>
<title>gitweb: Show "no difference" message for empty diff</title>
<updated>2007-04-23T05:49:25Z</updated>
<author>
<name>Martin Koegler</name>
<email>mkoegler@auto.tuwien.ac.at</email>
</author>
<published>2007-04-23T05:49:25Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=4280cde95fa4e3fb012eb6d0c239a7777baaf60c'/>
<id>urn:sha1:4280cde95fa4e3fb012eb6d0c239a7777baaf60c</id>
<content type='text'>
Currently, gitweb shows only header and footer, if no differences are
found. This patch adds a "No differences found" message for the html
output.

Signed-off-by: Martin Koegler &lt;mkoegler@auto.tuwien.ac.at&gt;
Signed-off-by: Jakub Narebski &lt;jnareb@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>delay progress display when checking out files</title>
<updated>2007-04-23T05:18:05Z</updated>
<author>
<name>Nicolas Pitre</name>
<email>nico@cam.org</email>
</author>
<published>2007-04-20T19:27:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=55a9137d8a33449425c55104c00bc9189381754a'/>
<id>urn:sha1:55a9137d8a33449425c55104c00bc9189381754a</id>
<content type='text'>
Let's start displaying progress only if more than 50% of total number
of files remains to be checked out after 2 seconds.

Signed-off-by: Nicolas Pitre &lt;nico@cam.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>provide a facility for "delayed" progress reporting</title>
<updated>2007-04-23T05:18:05Z</updated>
<author>
<name>Nicolas Pitre</name>
<email>nico@cam.org</email>
</author>
<published>2007-04-20T19:05:27Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=180a9f226860e18cdc2c3987ae89c239b318b408'/>
<id>urn:sha1:180a9f226860e18cdc2c3987ae89c239b318b408</id>
<content type='text'>
This allows for progress to be displayed only if the progress has not
reached a specified percentage treshold within a given delay in seconds.

Signed-off-by: Nicolas Pitre &lt;nico@cam.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>make progress "title" part of the common progress interface</title>
<updated>2007-04-23T05:18:05Z</updated>
<author>
<name>Nicolas Pitre</name>
<email>nico@cam.org</email>
</author>
<published>2007-04-20T18:10:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=13aaf148258808437c485d3ef54c7ae7668384d7'/>
<id>urn:sha1:13aaf148258808437c485d3ef54c7ae7668384d7</id>
<content type='text'>
If the progress bar ends up in a box, better provide a title for it too.

Signed-off-by: Nicolas Pitre &lt;nico@cam.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>common progress display support</title>
<updated>2007-04-23T05:18:05Z</updated>
<author>
<name>Nicolas Pitre</name>
<email>nico@cam.org</email>
</author>
<published>2007-04-18T18:27:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=96a02f8f6d2192d3686cd1c719044082c89e8391'/>
<id>urn:sha1:96a02f8f6d2192d3686cd1c719044082c89e8391</id>
<content type='text'>
Instead of having this code duplicated in multiple places, let's have
a common interface for progress display.  If someday someone wishes to
display a cheezy progress bar instead then only one file will have to
be changed.

Note: I left merge-recursive.c out since it has a strange notion of
progress as it apparently increase the expected total number as it goes.
Someone with more intimate knowledge of what that is supposed to mean
might look at converting it to the common progress interface.

Signed-off-by: Nicolas Pitre &lt;nico@cam.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Support 'diff=pgm' attribute</title>
<updated>2007-04-23T05:16:14Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-23T00:52:55Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f1af60bdba465779df92090ed370988f202ff043'/>
<id>urn:sha1:f1af60bdba465779df92090ed370988f202ff043</id>
<content type='text'>
This enhances the attributes mechanism so that external programs
meant for existing GIT_EXTERNAL_DIFF interface can be specifed
per path.

To configure such a custom diff driver, first define a custom
diff driver in the configuration:

	[diff "my-c-diff"]
		command = &lt;&lt;your command string comes here&gt;&gt;

Then mark the paths that you want to use this custom driver
using the attribute mechanism.

	*.c	diff=my-c-diff

The intent of this separation is that the attribute mechanism is
used for specifying the type of the contents, while the
configuration mechanism is used to define what needs to be done
to that type of the contents, which would be specific to both
platform and personal taste.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>pack-objects: make generated packfile read-only</title>
<updated>2007-04-23T02:00:16Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-23T02:00:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=d83c9af5c6a437ddaa9dd2747e83aee642501a44'/>
<id>urn:sha1:d83c9af5c6a437ddaa9dd2747e83aee642501a44</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Update tests not to assume that generated packfiles are writable.</title>
<updated>2007-04-23T01:59:34Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-23T01:59:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a5878961b14c1b4f6d1d08c0d3a2f5234659fb8a'/>
<id>urn:sha1:a5878961b14c1b4f6d1d08c0d3a2f5234659fb8a</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Fix 'quickfix' on pack-objects.</title>
<updated>2007-04-22T19:28:34Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-22T19:28:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=b6b32ccb927de0c631b1aaf27b1664bd4eb300c7'/>
<id>urn:sha1:b6b32ccb927de0c631b1aaf27b1664bd4eb300c7</id>
<content type='text'>
The earlier quickfix forced world-readable permission bits.  This
updates it to honor umask and core.sharedrepository settings.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>pack-objects: quickfix for permission modes.</title>
<updated>2007-04-22T18:49:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-04-22T18:49:35Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=aef5aedd8536fddbbd2e19245dfab201d05afb25'/>
<id>urn:sha1:aef5aedd8536fddbbd2e19245dfab201d05afb25</id>
<content type='text'>
mkstemp() often creates the file in 0600 which means the
resulting packfile is not readable by anybody other than the
repository owner.  Force 0644 for now, even though this is not
strictly correct.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
