<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/git-cvsserver.perl, branch v1.7.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.7.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.7.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2010-06-21T13:02:49Z</updated>
<entry>
<title>Merge branch 'eb/core-eol'</title>
<updated>2010-06-21T13:02:49Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-06-21T13:02:49Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=d5cff17edaf438bbf45a2130e9cadc0c938291d6'/>
<id>urn:sha1:d5cff17edaf438bbf45a2130e9cadc0c938291d6</id>
<content type='text'>
* eb/core-eol:
  Add "core.eol" config variable
  Rename the "crlf" attribute "text"
  Add per-repository eol normalization
  Add tests for per-repository eol normalization

Conflicts:
	Documentation/config.txt
	Makefile
</content>
</entry>
<entry>
<title>git-cvsserver: fix error for invalid password formats</title>
<updated>2010-06-21T04:58:26Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2010-06-19T16:06:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=1f0eb51391d58958dd9f1e6cbcba622c309303b2'/>
<id>urn:sha1:1f0eb51391d58958dd9f1e6cbcba622c309303b2</id>
<content type='text'>
Change the error message to report the erroneous password
character. $1 was never set in the previos version, it was a leftover
from older code that used a regex for the test.

Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-cvsserver: typo in a comment: bas -&gt; has</title>
<updated>2010-06-21T04:57:34Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2010-06-19T16:06:57Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=fce338a5433d34f119457c0f6e6560799ba14022'/>
<id>urn:sha1:fce338a5433d34f119457c0f6e6560799ba14022</id>
<content type='text'>
Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-cvsserver: Improved error handling for pserver</title>
<updated>2010-05-20T04:02:59Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2010-05-15T02:46:02Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=475357a32a55c3624011e3945f9659f4cb365f1b'/>
<id>urn:sha1:475357a32a55c3624011e3945f9659f4cb365f1b</id>
<content type='text'>
  - Produce an error if the user tries to supply a password for anonymous

  - Clarify the error message produced when there's no [gitcvs.authdb]

  - Produce an E error if the authdb doesn't exist instead of spewing
    $! to the user

  - do crypt($user, descramble($pass)) eq $hash; crypt($user, $hash)
    eq $hash would accept any password

Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-cvsserver: indent &amp; clean up authdb code</title>
<updated>2010-05-20T04:02:59Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2010-05-15T02:46:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=3052525effbf4b9ab0cc4a66fe32f0f7261b7323'/>
<id>urn:sha1:3052525effbf4b9ab0cc4a66fe32f0f7261b7323</id>
<content type='text'>
 - Indent the last commit to fit with the rest of the code.

 - Use lexical filehandles instead of global globs

 - Close the filehandle after the password database has been read.

Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-cvsserver: use a password file cvsserver pserver</title>
<updated>2010-05-20T04:02:59Z</updated>
<author>
<name>Sam Vilain</name>
<email>sam.vilain@catalyst.net.nz</email>
</author>
<published>2010-05-15T15:07:54Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=c057bad3701682a208b72473b746de6bb5d89792'/>
<id>urn:sha1:c057bad3701682a208b72473b746de6bb5d89792</id>
<content type='text'>
If a git repository is shared via HTTP, the config file is typically
visible.  Use an external file instead.

Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-cvsserver: authentication support for pserver</title>
<updated>2010-05-20T04:02:58Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2010-05-15T15:06:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=031a027a72a62ccf45ae22dee5721e554f6ba6e9'/>
<id>urn:sha1:031a027a72a62ccf45ae22dee5721e554f6ba6e9</id>
<content type='text'>
Allow git-cvsserver to use authentication over pserver mode.  The
pserver user/password database is stored in the config file for each
repository.

Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Worriedly-Acked-by: Martin Langhoff &lt;martin.langhoff@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Rename the "crlf" attribute "text"</title>
<updated>2010-05-20T03:42:34Z</updated>
<author>
<name>Eyvind Bernhardsen</name>
<email>eyvind.bernhardsen@gmail.com</email>
</author>
<published>2010-05-19T20:43:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=5ec3e67052289217c84e53d2cda90d939ac5725b'/>
<id>urn:sha1:5ec3e67052289217c84e53d2cda90d939ac5725b</id>
<content type='text'>
As discussed on the list, "crlf" is not an optimal name.  Linus
suggested "text", which is much better.

Signed-off-by: Eyvind Bernhardsen &lt;eyvind.bernhardsen@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'gp/maint-cvsserver'</title>
<updated>2010-01-28T08:46:33Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2010-01-28T08:46:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=811428e5b1186b87263c921ce88bdc1de2a65ce6'/>
<id>urn:sha1:811428e5b1186b87263c921ce88bdc1de2a65ce6</id>
<content type='text'>
* gp/maint-cvsserver:
  git-cvsserver: allow regex metacharacters in CVSROOT
</content>
</entry>
<entry>
<title>git-cvsserver: allow regex metacharacters in CVSROOT</title>
<updated>2010-01-26T20:54:18Z</updated>
<author>
<name>Gerrit Pape</name>
<email>pape@smarden.org</email>
</author>
<published>2010-01-26T14:47:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=f9acaeae880feb87ae52e719aab930bf1f3e8413'/>
<id>urn:sha1:f9acaeae880feb87ae52e719aab930bf1f3e8413</id>
<content type='text'>
When run in a repository with a path name containing regex metacharacters
(e.g. +), git-cvsserver failed to split the client request into CVSROOT
and module.  Now metacharacters are disabled for the value of CVSROOT in
the perl regex so that directory names containing metacharacters are
handled properly.

Signed-off-by: Gerrit Pape &lt;pape@smarden.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
