[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: r1299327 - /subversion/trunk/notes/directory-index/dirindex.py

From: Greg Stein <gstein_at_gmail.com>
Date: Sun, 11 Mar 2012 01:51:30 -0500

I think you need to use Hyrum's fs-py to create an FS backend out of this,
so you can then run the test suite on it. :-)

*duck*
On Mar 10, 2012 9:43 PM, <brane_at_apache.org> wrote:

> Author: brane
> Date: Sun Mar 11 02:42:46 2012
> New Revision: 1299327
>
> URL: http://svn.apache.org/viewvc?rev=1299327&view=rev
> Log:
> * notes/directory-index/dirindex.py (Index.__init__): Make pattern searches
> case-sensitive and force text encoding to UTF-8.
>
> Modified:
> subversion/trunk/notes/directory-index/dirindex.py
>
> Modified: subversion/trunk/notes/directory-index/dirindex.py
> URL:
> http://svn.apache.org/viewvc/subversion/trunk/notes/directory-index/dirindex.py?rev=1299327&r1=1299326&r2=1299327&view=diff
>
> ==============================================================================
> --- subversion/trunk/notes/directory-index/dirindex.py (original)
> +++ subversion/trunk/notes/directory-index/dirindex.py Sun Mar 11 02:42:46
> 2012
> @@ -78,6 +78,8 @@ class Index(object):
> self.conn = sqlite3.connect(database, isolation_level =
> "IMMEDIATE")
> self.cursor = self.conn.cursor()
> self.cursor.execute("PRAGMA foreign_keys = ON")
> + self.cursor.execute("PRAGMA case_sensitive_like = ON")
> + self.cursor.execute("PRAGMA encoding = 'UTF-8'")
>
> def execute(self, statement, parameters=None):
> if parameters is not None:
>
>
>
Received on 2012-03-11 07:52:11 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.