Subversion Repositories Applications.framework

Rev

Rev 274 | Rev 285 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 274 Rev 279
Line 10... Line 10...
10
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
10
 * @author		Aurélien PERONNET <aurelien@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
11
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
12
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
13
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
13
 * @license	http://www.cecill.info/licences/Licence_CeCILL_V2-fr.txt Licence CECILL
14
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
14
 * @license	http://www.gnu.org/licenses/gpl.html Licence GNU-GPL
15
 * @version	SVN: $Id: Url.php 274 2010-12-28 15:37:22Z jpm $
15
 * @version	SVN: $Id: Url.php 279 2010-12-28 16:10:59Z jpm $
16
 * @link		/doc/framework/
16
 * @link		/doc/framework/
17
*/
17
*/
18
class Url {
18
class Url {
Line 19... Line 19...
19
 
19
 
Line 380... Line 380...
380
	 *
380
	 *
381
	 * @return  string l'url
381
	 * @return  string l'url
382
	 */
382
	 */
383
	public function getURL() {
383
	public function getURL() {
384
		// Voir RFC 3986, section 5.3
384
		// Voir RFC 3986, section 5.3
385
		$url = "";
385
		$url = '';
Line 386... Line 386...
386
		
386
		
387
		if ($this->schema !== false) {
387
		if ($this->schema !== false) {
388
			$url .= $this->schema . ':';
388
			$url .= $this->schema . ':';