blob: d299b35500ef85284f68cf57907007f03af36f35 [file] [log] [blame]
<?php
class DevGuideUtils {
const CURRENT_VERSION = '3.8';
const MASTER_VERSION = '3.9';
public static $versions = array(
'2.0' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/2.0/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/2.0/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'2.2' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/2.2/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/2.2/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'2.3' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/2.3/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/2.3/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.0' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.0/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.0/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.1' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.1/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.1/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.2' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.2/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.2/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.3' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.3/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.3/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.4' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.4/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.4/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.5' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.5/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.5/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.6' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.6/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.6/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.7' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.7/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.7/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.8' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.8/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.8/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.9' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.9/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.9/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
)
);
private function __construct() {}
}
?>