Rev 1097: Remove files with .c equivalents. in http://people.samba.org/bzr/jelmer/bzr-svn/cext

Jelmer Vernooij jelmer at samba.org
Sun Jun 15 02:32:20 BST 2008


At http://people.samba.org/bzr/jelmer/bzr-svn/cext

------------------------------------------------------------
revno: 1097
revision-id: jelmer at samba.org-20080615013219-s0sefdht61hsf053
parent: jelmer at samba.org-20080615013159-d71s4ev62yxkl3av
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: cext
timestamp: Sun 2008-06-15 03:32:19 +0200
message:
  Remove files with .c equivalents.
removed:
  core.py                        core.py-20080615010310-67lnibnp889hlarb-1
  ra.py                          ra.py-20080615005305-t5221niknu8rm6bt-1
=== removed file 'core.py'
--- a/core.py	2008-06-15 01:08:06 +0000
+++ b/core.py	1970-01-01 00:00:00 +0000
@@ -1,20 +0,0 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer at samba.org>
- 
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-
-NODE_NONE = 0
-NODE_FILE = 1
-NODE_DIR = 2
-NODE_UNKNOWN = 3

=== removed file 'ra.py'
--- a/ra.py	2008-06-15 01:29:38 +0000
+++ b/ra.py	1970-01-01 00:00:00 +0000
@@ -1,37 +0,0 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer at samba.org>
- 
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.
-
-import svn.core
-
-get_username_prompt_provider = svn.core.svn_auth_get_username_prompt_provider
-get_simple_prompt_provider = svn.core.svn_auth_get_simple_prompt_provider
-get_ssl_client_cert_pw_prompt_provider = svn.core.svn_auth_get_ssl_client_cert_pw_prompt_provider
-get_ssl_server_trust_prompt_provider = svn.core.svn_auth_get_ssl_server_trust_prompt_provider
-
-DIRENT_KIND = 0x0001
-
-class Auth:
-    def __init__(self, providers=[]):
-        self.providers = providers
-        self.auth_baton = svn.core.svn_auth_open(self.providers)
-        self.parameters = {}
-        self.auth_baton._base = self.auth_baton # evil hack
-
-    def set_parameter(self, name, value):
-        self.parameters[name] = value
-        svn.core.svn_auth_set_parameter(self.auth_baton, name, value)
-
-    def get_parameter(self, name):
-        return svn.core.svn_auth_get_parameter(self.auth_baton, name)




More information about the bazaar-commits mailing list