Added the administration of the repository.
It is now possible to select the repository type and a possible remote repository for subversion in the administration area.
This commit is contained in:
parent
2d271f6b69
commit
3a3aa9c730
92
src/IDF/Form/SourceConf.php
Normal file
92
src/IDF/Form/SourceConf.php
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
<?php
|
||||||
|
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||||
|
/*
|
||||||
|
# ***** BEGIN LICENSE BLOCK *****
|
||||||
|
# This file is part of InDefero, an open source project management application.
|
||||||
|
# Copyright (C) 2008 Céondo Ltd and contributors.
|
||||||
|
#
|
||||||
|
# InDefero 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 2 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# InDefero 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, write to the Free Software
|
||||||
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
#
|
||||||
|
# ***** END LICENSE BLOCK ***** */
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Configuration of the source.
|
||||||
|
*/
|
||||||
|
class IDF_Form_SourceConf extends Pluf_Form
|
||||||
|
{
|
||||||
|
public $conf = null;
|
||||||
|
public function initFields($extra=array())
|
||||||
|
{
|
||||||
|
$this->conf = $extra['conf'];
|
||||||
|
$this->fields['scm'] = new Pluf_Form_Field_Varchar(
|
||||||
|
array('required' => true,
|
||||||
|
'label' => __('Repository type'),
|
||||||
|
'initial' => $this->conf->getVal('scm', 'git'),
|
||||||
|
'widget_attrs' => array('choices' =>
|
||||||
|
array(
|
||||||
|
__('git') => 'git',
|
||||||
|
__('Subversion') => 'svn',
|
||||||
|
)
|
||||||
|
),
|
||||||
|
'widget' => 'Pluf_Form_Widget_SelectInput',
|
||||||
|
));
|
||||||
|
$this->fields['svn_remote_url'] = new Pluf_Form_Field_Varchar(
|
||||||
|
array('required' => false,
|
||||||
|
'label' => __('Remote Subversion repository'),
|
||||||
|
'initial' => $this->conf->getVal('svn_remote_url', ''),
|
||||||
|
'widget_attrs' => array('size' => '30'),
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->fields['svn_username'] = new Pluf_Form_Field_Varchar(
|
||||||
|
array('required' => false,
|
||||||
|
'label' => __('Repository username'),
|
||||||
|
'initial' => $this->conf->getVal('svn_username', ''),
|
||||||
|
'widget_attrs' => array('size' => '15'),
|
||||||
|
));
|
||||||
|
|
||||||
|
$this->fields['svn_password'] = new Pluf_Form_Field_Varchar(
|
||||||
|
array('required' => false,
|
||||||
|
'label' => __('Repository password'),
|
||||||
|
'initial' => $this->conf->getVal('svn_password', ''),
|
||||||
|
'widget' => 'Pluf_Form_Widget_PasswordInput',
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function clean_svn_remote_url()
|
||||||
|
{
|
||||||
|
$url = trim($this->cleaned_data['svn_remote_url']);
|
||||||
|
if (strlen($url) == 0) return $url;
|
||||||
|
// we accept only starting with http(s):// to avoid people
|
||||||
|
// trying to access the local filesystem.
|
||||||
|
if (!preg_match('#^(http|https)://#', $url)) {
|
||||||
|
throw new Pluf_Form_Invalid(__('Only a remote repository available throught http or https are allowed. For example "http://somewhere.com/sv/trunk.'));
|
||||||
|
}
|
||||||
|
return $url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function clean()
|
||||||
|
{
|
||||||
|
if ($this->cleaned_data['scm'] == 'git') {
|
||||||
|
foreach (array('svn_remote_url', 'svn_username', 'svn_password')
|
||||||
|
as $key) {
|
||||||
|
$this->cleaned_data[$key] = '';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $this->cleaned_data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -249,4 +249,49 @@ class IDF_Views_Project
|
|||||||
),
|
),
|
||||||
$request);
|
$request);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Administrate the source control.
|
||||||
|
*/
|
||||||
|
public $adminSource_precond = array('IDF_Precondition::projectOwner');
|
||||||
|
public function adminSource($request, $match)
|
||||||
|
{
|
||||||
|
$prj = $request->project;
|
||||||
|
$title = sprintf(__('%s Source'), (string) $prj);
|
||||||
|
$extra = array(
|
||||||
|
'conf' => $request->conf,
|
||||||
|
);
|
||||||
|
if ($request->method == 'POST') {
|
||||||
|
$form = new IDF_Form_SourceConf($request->POST, $extra);
|
||||||
|
if ($form->isValid()) {
|
||||||
|
foreach ($form->cleaned_data as $key=>$val) {
|
||||||
|
$request->conf->setVal($key, $val);
|
||||||
|
}
|
||||||
|
$request->user->setMessage(__('The project source configuration has been saved.'));
|
||||||
|
$url = Pluf_HTTP_URL_urlForView('IDF_Views_Project::adminSource',
|
||||||
|
array($prj->shortname));
|
||||||
|
return new Pluf_HTTP_Response_Redirect($url);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$params = array();
|
||||||
|
$keys = array('scm', 'svn_remote_url',
|
||||||
|
'svn_username', 'svn_password');
|
||||||
|
foreach ($keys as $key) {
|
||||||
|
$_val = $request->conf->getVal($key, false);
|
||||||
|
if ($_val !== false) {
|
||||||
|
$params[$key] = $_val;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (count($params) == 0) {
|
||||||
|
$params = null; //Nothing in the db, so new form.
|
||||||
|
}
|
||||||
|
$form = new IDF_Form_SourceConf($params, $extra);
|
||||||
|
}
|
||||||
|
return Pluf_Shortcuts_RenderToResponse('admin/source.html',
|
||||||
|
array(
|
||||||
|
'page_title' => $title,
|
||||||
|
'form' => $form,
|
||||||
|
),
|
||||||
|
$request);
|
||||||
|
}
|
||||||
}
|
}
|
@ -242,6 +242,12 @@ $ctl[] = array('regex' => '#^/p/(\w+)/admin/downloads/$#',
|
|||||||
'model' => 'IDF_Views_Project',
|
'model' => 'IDF_Views_Project',
|
||||||
'method' => 'adminDownloads');
|
'method' => 'adminDownloads');
|
||||||
|
|
||||||
|
$ctl[] = array('regex' => '#^/p/(\w+)/admin/source/$#',
|
||||||
|
'base' => $base,
|
||||||
|
'priority' => 4,
|
||||||
|
'model' => 'IDF_Views_Project',
|
||||||
|
'method' => 'adminSource');
|
||||||
|
|
||||||
$ctl[] = array('regex' => '#^/p/(\w+)/admin/members/$#',
|
$ctl[] = array('regex' => '#^/p/(\w+)/admin/members/$#',
|
||||||
'base' => $base,
|
'base' => $base,
|
||||||
'priority' => 4,
|
'priority' => 4,
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
{block subtabs}
|
{block subtabs}
|
||||||
<div id="sub-tabs">
|
<div id="sub-tabs">
|
||||||
<a {if $inSummary}class="active" {/if}href="{url 'IDF_Views_Project::admin', array($project.shortname)}">{trans 'Project Summary'}</a> |
|
<a {if $inSummary}class="active" {/if}href="{url 'IDF_Views_Project::admin', array($project.shortname)}">{trans 'Project Summary'}</a> |
|
||||||
<a {if $inMembers}class="active" {/if}href="{url 'IDF_Views_Project::adminMembers', array($project.shortname)}">{trans 'Project Members'}</a> |
|
|
||||||
<a {if $inIssueTracking}class="active" {/if}href="{url 'IDF_Views_Project::adminIssues', array($project.shortname)}">{trans 'Issue Tracking'}</a> |
|
<a {if $inIssueTracking}class="active" {/if}href="{url 'IDF_Views_Project::adminIssues', array($project.shortname)}">{trans 'Issue Tracking'}</a> |
|
||||||
<a {if $inDownloads}class="active" {/if}href="{url 'IDF_Views_Project::adminDownloads', array($project.shortname)}">{trans 'Downloads'}</a> |
|
<a {if $inDownloads}class="active" {/if}href="{url 'IDF_Views_Project::adminDownloads', array($project.shortname)}">{trans 'Downloads'}</a> |
|
||||||
|
<a {if $inSource}class="active" {/if}href="{url 'IDF_Views_Project::adminSource', array($project.shortname)}">{trans 'Source'}</a> |
|
||||||
|
<a {if $inMembers}class="active" {/if}href="{url 'IDF_Views_Project::adminMembers', array($project.shortname)}">{trans 'Project Members'}</a> |
|
||||||
<a {if $inTabs}class="active" {/if}href="{url 'IDF_Views_Project::adminTabs', array($project.shortname)}">{trans 'Tabs Access'}</a>
|
<a {if $inTabs}class="active" {/if}href="{url 'IDF_Views_Project::adminTabs', array($project.shortname)}">{trans 'Tabs Access'}</a>
|
||||||
</div>
|
</div>
|
||||||
{/block}
|
{/block}
|
||||||
|
52
src/IDF/templates/admin/source.html
Normal file
52
src/IDF/templates/admin/source.html
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{extends "admin/base.html"}
|
||||||
|
{block docclass}yui-t1{assign $inSource = true}{/block}
|
||||||
|
{block body}
|
||||||
|
{if $form.errors}
|
||||||
|
<div class="px-message-error">
|
||||||
|
<p>{trans 'The form contains some errors. Please correct them to update the source configuration.'}</p>
|
||||||
|
{if $form.get_top_errors}
|
||||||
|
{$form.render_top_errors|unsafe}
|
||||||
|
{/if}
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
|
<form method="post" action=".">
|
||||||
|
<table class="form" summary="">
|
||||||
|
<tr>
|
||||||
|
<th><strong>{$form.f.scm.labelTag}:</strong></th>
|
||||||
|
<td>{if $form.f.scm.errors}{$form.f.scm.fieldErrors}{/if}
|
||||||
|
{$form.f.scm|unsafe}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$form.f.svn_remote_url.labelTag}:</th>
|
||||||
|
<td>{if $form.f.svn_remote_url.errors}{$form.f.svn_remote_url.fieldErrors}{/if}
|
||||||
|
{$form.f.svn_remote_url|unsafe}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$form.f.svn_username.labelTag}:</th>
|
||||||
|
<td>{if $form.f.svn_username.errors}{$form.f.svn_username.fieldErrors}{/if}
|
||||||
|
{$form.f.svn_username|unsafe}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th>{$form.f.svn_password.labelTag}:</th>
|
||||||
|
<td>{if $form.f.svn_password.errors}{$form.f.svn_password.fieldErrors}{/if}
|
||||||
|
{$form.f.svn_password|unsafe}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td> </td>
|
||||||
|
<td>
|
||||||
|
<input type="submit" value="{trans 'Save Changes'}" name="submit" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</form>
|
||||||
|
{/block}
|
||||||
|
{block context}
|
||||||
|
<div class="issue-submit-info">
|
||||||
|
<p><strong>{trans 'Instructions:'}</strong></p>
|
||||||
|
<p>{blocktrans}You can select the type of repository you want. In the case of subversion, you can use optionally a remote repository instead of the local one.{/blocktrans}</p>
|
||||||
|
</div>
|
||||||
|
{/block}
|
Loading…
Reference in New Issue
Block a user