Indefero

Indefero Commit Details


Date:2009-05-27 15:54:26 (15 years 6 months ago)
Author:Loic d'Anterroches
Branch:develop, feature-issue_links, feature.better-home, feature.content-md5, feature.diff-whitespace, feature.download-md5, feature.issue-links, feature.issue-of-others, feature.issue-summary, feature.search-filter, feature.webrepos, feature.wiki-default-page, master, release-1.1, release-1.2, release-1.3
Commit:44ea8f1817aa0a348020749bcd1f7bdd1b002b91
Parents: 6ef721d3a8f4e5d3c410f3076049518da0834a61
Message:Added the getAuthAccessUrl method.

Changes:

File differences

src/IDF/Scm/Svn.php
8686
8787
8888
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
89106
90107
91108
}
/**
* Returns the URL of the subversion repository.
*
* @param IDF_Project
* @return string URL
*/
public static function getAuthAccessUrl($project, $user)
{
$conf = $project->getConf();
if (false !== ($url=$conf->getVal('svn_remote_url', false))
&& !empty($url)) {
// Remote repository
return $url;
}
return sprintf(Pluf::f('svn_remote_url'), $project->shortname);
}
/**
* Returns this object correctly initialized for the project.
*
* @param IDF_Project

Archive Download the corresponding diff file

Page rendered in 0.07623s using 13 queries.