diff --git a/SourceWebSVN/SourceWebSVN.php b/SourceWebSVN/SourceWebSVN.php
index a2dabec..ed26043 100644
--- a/SourceWebSVN/SourceWebSVN.php
+++ b/SourceWebSVN/SourceWebSVN.php
@@ -71,6 +71,7 @@
public function update_repo_form( $p_repo ) {
$t_url = isset( $p_repo->info['websvn_url'] ) ? $p_repo->info['websvn_url'] : '';
+ $t_multiviews = isset( $p_repo->info['websvn_multiviews'] ) ? $p_repo->info['websvn_multiviews'] : false;
$t_name = isset( $p_repo->info['websvn_name'] ) ? $p_repo->info['websvn_name'] : '';
$t_path = isset( $p_repo->info['websvn_path'] ) ? $p_repo->info['websvn_path'] : '';
@@ -80,6 +81,10 @@
|
>
+ |
+/> |
+
+>
|
|
@@ -94,6 +99,7 @@
public function update_repo( $p_repo ) {
$p_repo->info['websvn_url'] = gpc_get_string( 'websvn_url' );
+ $p_repo->info['websvn_multiviews'] = gpc_get_bool( 'websvn_multiviews', false );
$p_repo->info['websvn_name'] = gpc_get_string( 'websvn_name' );
$p_repo->info['websvn_path'] = gpc_get_string( 'websvn_path' );
diff --git a/SourceWebSVN/lang/strings_english.txt b/SourceWebSVN/lang/strings_english.txt
index b68c086..d8f89fc 100644
--- a/SourceWebSVN/lang/strings_english.txt
+++ b/SourceWebSVN/lang/strings_english.txt
@@ -9,6 +9,7 @@
$s_plugin_SourceWebSVN_svn = 'WebSVN';
$s_plugin_SourceWebSVN_websvn_url = 'WebSVN URL
(With trailing slash)';
+$s_plugin_SourceWebSVN_websvn_multiviews = 'WebSVN Multiviews Mode
(Check if WebSVN runs under
Apache in Multiviews mode)';
$s_plugin_SourceWebSVN_websvn_name = 'WebSVN Name
(Repository directory)';
$s_plugin_SourceWebSVN_websvn_path = 'WebSVN Path
(From repository root)';
diff --git a/SourceWebSVN/lang/strings_french.txt b/SourceWebSVN/lang/strings_french.txt
index 3a17533..2c89441 100644
--- a/SourceWebSVN/lang/strings_french.txt
+++ b/SourceWebSVN/lang/strings_french.txt
@@ -10,6 +10,6 @@
$s_plugin_SourceWebSVN_svn = 'WebSVN';
$s_plugin_SourceWebSVN_websvn_url = 'URL WebSVN
(Avec le slash final)';
+$s_plugin_SourceWebSVN_websvn_multiviews = 'Mode Multivues
(Cocher si WebSVN est utilisé avec
Apache en mode Multivues)';
$s_plugin_SourceWebSVN_websvn_name = 'Nom WebSVN
(Répertoire dans le dépôt)';
$s_plugin_SourceWebSVN_websvn_path = 'Chemin WebSVN
(Depuis la racine du dépôt)';
-