blob: a396aeed4b13cc375e4effe1cb4271a1c33a1641 [file] [log] [blame]
<?php
class DevGuideUtils {
const CURRENT_VERSION = '3.15';
const MASTER_VERSION = '3.15';
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/'
),
'3.10' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.10/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.10/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.11' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.11/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.11/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.12' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.12/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.12/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.13' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.13/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.13/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.14' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.14/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.14/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
),
'3.15' => array(
'rootUrl' => 'http://download.eclipse.org/rt/rap/doc/3.15/',
'apiUrl' => 'http://download.eclipse.org/rt/rap/doc/3.15/guide/reference/',
'tocPath' => 'guide/toc.xml',
'topicPath' => 'guide/articles/'
)
);
private function __construct() {}
}
?>