public function update_repo_form($p_repo)
    {
        $t_sf_project = isset($p_repo->info['sf_project']) ? $p_repo->info['sf_project'] : '';
        ?>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceSFSVN_sf_project');
        ?>
</td>
<td><input name="sf_project" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_sf_project);
        ?>
"/></td>
</tr>
<?php 
        return parent::update_repo_form($p_repo);
    }
    public function update_repo_form($p_repo)
    {
        $t_url = isset($p_repo->info['websvn_url']) ? $p_repo->info['websvn_url'] : '';
        $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'] : '';
        ?>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_url');
        ?>
</td>
<td><input name="websvn_url" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_url);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_name');
        ?>
</td>
<td><input name="websvn_name" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_name);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_path');
        ?>
</td>
<td><input name="websvn_path" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_path);
        ?>
"/></td>
</tr>
<?php 
        return parent::update_repo_form($p_repo);
    }
    public function update_repo_form($p_repo)
    {
        $t_url = $this->get_viewvc_url($p_repo);
        $t_name = $this->get_viewvc_name($p_repo);
        $t_use_checkout = $this->get_viewvc_use_checkout($p_repo);
        $t_root_as_url = $this->get_viewvc_root_as_url($p_repo);
        ?>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceViewVC_viewvc_url');
        ?>
</td>
<td><input name="viewvc_url" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_url);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceViewVC_viewvc_name');
        ?>
</td>
<td><input name="viewvc_name" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_name);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceViewVC_viewvc_root_as_url');
        ?>
</td>
<td><input name="viewvc_root_as_url" type="checkbox" <?php 
        echo $t_root_as_url ? 'checked="checked"' : '';
        ?>
/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceViewVC_viewvc_use_checkout');
        ?>
</td>
<td><input name="viewvc_use_checkout" type="checkbox" <?php 
        echo $t_use_checkout ? 'checked="checked"' : '';
        ?>
/></td>
</tr>
<?php 
        return parent::update_repo_form($p_repo);
    }
    public function update_repo_form($p_repo)
    {
        $t_url = $this->get_websvn_url($p_repo);
        $t_name = $this->get_websvn_name($p_repo);
        $t_path = $this->get_websvn_path($p_repo);
        ?>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_url');
        ?>
</td>
<td><input name="websvn_url" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_url);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_multiviews');
        ?>
</td>
<td><input name="websvn_multiviews" type="checkbox" <?php 
        check_checked($this->is_multiviews($p_repo));
        ?>
/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_name');
        ?>
</td>
<td><input name="websvn_name" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_name);
        ?>
"/></td>
</tr>
<tr <?php 
        echo helper_alternate_class();
        ?>
>
<td class="category"><?php 
        echo lang_get('plugin_SourceWebSVN_websvn_path');
        ?>
</td>
<td><input name="websvn_path" maxlength="250" size="40" value="<?php 
        echo string_attribute($t_path);
        ?>
"/></td>
</tr>
<?php 
        return parent::update_repo_form($p_repo);
    }