~svn/ubuntu/oneiric/subversion/ppa

« back to all changes in this revision

Viewing changes to debian/patches/r11771.patch

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2005-06-29 13:09:32 UTC
  • mfrom: (1.1.1 upstream) (0.1.2 sarge)
  • Revision ID: james.westby@ubuntu.com-20050629130932-vzt4595e7q8wtfqy
Tags: 1.2.0-1ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
------------------------------------------------------------------------
2
 
r11771 | breser | 2004-11-06 16:50:27 -0800 (Sat, 06 Nov 2004) | 10 lines
3
 
 
4
 
Don't comment out section names in the default config file.  Users change an
5
 
entries and forget to uncomment a section name which then means their client
6
 
fails.  Which is exceedingly annoying.
7
 
 
8
 
* subversion/libsvn_subr/config_file.c
9
 
  (svn_config_ensure): Remove comments before the groups and
10
 
    global section names in the default servers config file and
11
 
    before auth, helpers, tunnels, miscellany and auto-props in config.
12
 
 
13
 
 
14
 
------------------------------------------------------------------------
15
 
Index: subversion-1.1.1/subversion/libsvn_subr/config_file.c
16
 
===================================================================
17
 
--- subversion-1.1.1.orig/subversion/libsvn_subr/config_file.c  2004-09-09 15:19:58.000000000 -0700
18
 
+++ subversion-1.1.1/subversion/libsvn_subr/config_file.c       2004-12-10 22:14:54.421901453 -0800
19
 
@@ -897,7 +897,7 @@
20
 
         "### corresponding name."
21
 
         APR_EOL_STR
22
 
         APR_EOL_STR
23
 
-        "# [groups]"
24
 
+        "[groups]"
25
 
         APR_EOL_STR
26
 
         "# group1 = *.collab.net"
27
 
         APR_EOL_STR
28
 
@@ -968,7 +968,7 @@
29
 
         APR_EOL_STR
30
 
         "### due to SSL."
31
 
         APR_EOL_STR
32
 
-        "# [global]"
33
 
+        "[global]"
34
 
         APR_EOL_STR
35
 
         "# http-proxy-exceptions = *.exception.com, www.internal-site.org"
36
 
         APR_EOL_STR
37
 
@@ -1030,7 +1030,7 @@
38
 
         APR_EOL_STR
39
 
         "### Section for authentication and authorization customizations."
40
 
         APR_EOL_STR
41
 
-        "# [auth]"
42
 
+        "[auth]"
43
 
         APR_EOL_STR
44
 
         "### Set store-passwords to 'no' to avoid storing passwords in the"
45
 
         APR_EOL_STR
46
 
@@ -1083,7 +1083,7 @@
47
 
         APR_EOL_STR
48
 
         "###   program accepts the '--diff-program' option."
49
 
         APR_EOL_STR
50
 
-        "# [helpers]"
51
 
+        "[helpers]"
52
 
         APR_EOL_STR
53
 
         "# editor-cmd = editor (vi, emacs, notepad, etc.)"
54
 
         APR_EOL_STR
55
 
@@ -1096,7 +1096,7 @@
56
 
         APR_EOL_STR
57
 
         "### Section for configuring tunnel agents."
58
 
         APR_EOL_STR
59
 
-        "# [tunnels]"
60
 
+        "[tunnels]"
61
 
         APR_EOL_STR
62
 
         "### Configure svn protocol tunnel schemes here.  By default, only"
63
 
         APR_EOL_STR
64
 
@@ -1147,7 +1147,7 @@
65
 
         APR_EOL_STR
66
 
         "### Section for configuring miscelleneous Subversion options."
67
 
         APR_EOL_STR
68
 
-        "# [miscellany]"
69
 
+        "[miscellany]"
70
 
         APR_EOL_STR
71
 
         "### Set global-ignores to a set of whitespace-delimited globs"
72
 
         APR_EOL_STR
73
 
@@ -1188,7 +1188,7 @@
74
 
         APR_EOL_STR
75
 
         "### is typically done by setting the 'enable-auto-props' option."
76
 
         APR_EOL_STR
77
 
-        "# [auto-props]"
78
 
+        "[auto-props]"
79
 
         APR_EOL_STR
80
 
         "# *.c = svn:eol-style=native"
81
 
         APR_EOL_STR