[vhffs-dev] [821] Deleted uid and gid field in svn configuration which are not used |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 821
Author: gradator
Date: 2007-08-30 02:55:25 +0000 (Thu, 30 Aug 2007)
Log Message:
-----------
Deleted uid and gid field in svn configuration which are not used
Modified Paths:
--------------
trunk/vhffs-api/src/Vhffs/Conf.pm
trunk/vhffs-backend/conf/vhffs.conf.dist.in
trunk/vhffs-tests/conf/vhffs.conf
Modified: trunk/vhffs-api/src/Vhffs/Conf.pm
===================================================================
--- trunk/vhffs-api/src/Vhffs/Conf.pm 2007-08-30 02:44:07 UTC (rev 820)
+++ trunk/vhffs-api/src/Vhffs/Conf.pm 2007-08-30 02:55:25 UTC (rev 821)
@@ -464,72 +464,6 @@
}
-sub get_svn_repodir
-{
- if( defined $Config{"services"}{"svn"}{"repo_dir"} )
- {
- return $Config{"services"}{"svn"}{"repo_dir"};
- }
- else
- {
- return "/data/svn/svnroot";
- }
-}
-
-
-sub get_svn_helpurl
-{
- if( defined $Config{"services"}{"svn"}{"help_url"} )
- {
- return $Config{"services"}{"svn"}{"help_url"};
- }
- else
- {
- return "/svn/help.html";
- }
-}
-
-
-
-
-sub get_svn_gid
-{
- if( defined $Config{"services"}{"svn"}{"gid"} )
- {
- return $Config{"services"}{"svn"}{"gid"};
- }
- else
- {
- return "0";
- }
-}
-
-
-sub get_svn_uid
-{
- if( defined $Config{"services"}{"svn"}{"uid"} )
- {
- return $Config{"services"}{"svn"}{"uid"};
- }
- else
- {
- return "0";
- }
-}
-
-
-sub get_svn_configdir
-{
- if( defined $Config{"services"}{"svn"}{"config_dir"} )
- {
- return $Config{"services"}{"svn"}{"config_dir"};
- }
- else
- {
- return "/data/svn/conf";
- }
-}
-
sub get_themesdir
{
if( defined $Config{"global"}{"themesdir"} )
Modified: trunk/vhffs-backend/conf/vhffs.conf.dist.in
===================================================================
--- trunk/vhffs-backend/conf/vhffs.conf.dist.in 2007-08-30 02:44:07 UTC (rev 820)
+++ trunk/vhffs-backend/conf/vhffs.conf.dist.in 2007-08-30 02:55:25 UTC (rev 821)
@@ -218,6 +218,26 @@
url_doc = http://help.myhoster.net/web
</web>
+ <mysql>
+ host = localhost
+ username = root
+ password = mysecret
+ mysqldump_path = /usr/bin/mysqldump
+
+ # URL to the documentation (optional)
+ url_doc = http://help.myhoster.net/mysql
+ </mysql>
+
+ <pgsql>
+ host = localhost
+ username = vhffs
+ password = mysecret
+ pgdump_path = /usr/bin/pg_dump
+
+ # URL to the documentation (optional)
+ url_doc = http://help.myhoster.net/pgsql
+ </pgsql>
+
#DNS configuration
<dns>
# default configuration for new domains and new entries
@@ -264,31 +284,8 @@
url_doc = http://help.myhoster.net/cvs
</cvs>
- <mysql>
- host = localhost
- username = root
- password = mysecret
- mysqldump_path = /usr/bin/mysqldump
-
- # URL to the documentation (optional)
- url_doc = http://help.myhoster.net/mysql
- </mysql>
-
- <pgsql>
- host = localhost
- username = vhffs
- password = mysecret
- pgdump_path = /usr/bin/pg_dump
-
- # URL to the documentation (optional)
- url_doc = http://help.myhoster.net/pgsql
- </pgsql>
-
<svn>
- svnweb_url = "http://svnweb.hoster"
- help_url = "http://myhost.tld/file.html"
- uid = 33
- gid = 33
+ svnweb_url = "http://svnweb.hoster"
# URL to the documentation (optional)
url_doc = http://help.myhoster.net/svn
Modified: trunk/vhffs-tests/conf/vhffs.conf
===================================================================
--- trunk/vhffs-tests/conf/vhffs.conf 2007-08-30 02:44:07 UTC (rev 820)
+++ trunk/vhffs-tests/conf/vhffs.conf 2007-08-30 02:55:25 UTC (rev 821)
@@ -213,7 +213,6 @@
</pgsql>
<svn>
svnweb_url = "http://svnweb.hoster"
- help_url = "http://myhost.tld/file.html"
uid = 33
gid = 33
</svn>