blob: 3bec4eee953cd564715a05ef97321e1935ac9085 [file] [log] [blame]
<?php
#*****************************************************************************
#
# en_status.inc
#
# Author: Denis Roy
# Date: 2004-09-10
#
# Description: Infrastructure status UI
#
# HISTORY:
#
#****************************************************************************
include("../html/header.php");
$Menu = new Menu("en");
include("../modules/menu.php");
?>
<META HTTP-EQUIV="Refresh" CONTENT="120;" />
<br />
<td width="100%" valign="top" class="normal">
<font class="large_title">Eclipse.org paths to data</font><br /><br />
Because of redundant and load-balanced services, the eclipse.org infrastructure is more complex than in the past.
This page should help you figure out what's where.
<table border="1">
<tr>
<td><b>Path</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td><b>/home</b></td>
<td>This is where all the public data is. Needless to look anywhere else.</td>
</tr>
<tr>
<td>
<b>/cvsroot/eclipse<br />
/cvsroot/tools<br />
/cvsroot/webtools</b> etc...<br />
</td>
<td>These are your CVS repositories. We <b>strongly</b> encourage you to contact the WebMaster to move or delete files, instead of doing it from the shell.</td>
</tr>
<tr>
<td>
<b>/cvsroot/org.eclipse</b>
</td>
<td>This is the website repository. Look in www/yourproject. Anything you commit here is published to www.eclipse.org/yourproject within one minute.</td>
</tr>
<tr>
<td>
<b>/home/data/httpd/download.eclipse.org</b><br />
(a.k.a /home/www and ~/downloads)
</td>
<td>This is the main download area, accessible only via RSYNC and SSH/SFTP/SCP. The download.eclipse.org webserver does not look here, so do not use this path for PHP scripts. DO use this path to add or remove downloadable files. This directory is replicated to /home/local/data/httpd/download.eclipse.org on each node server.</td>
</tr>
<tr>
<td><b>/home/data/httpd/download-staging.priv</b></td>
<td>This is where you can store downloadable files that aren't ready for downloads yet. Perhaps you need to verify them, or sign them. The Eclipse web servers cannot access this area, so it's private.</td>
</tr>
<tr>
<td><b>/home/data/httpd/writable</b></td>
<td>This is where your PHP scripts can write files. Temp files, status files, XML files, whatever. Ask us for a spot here if your project's PHP scripts need write access.</td>
</tr>
<tr>
<td><b>/home/data/users</b></td>
<td>These are your Home directories. Just type <b>cd</b> to get to yours.</td>
</tr>
<tr>
<td><b>/home/local/data/httpd/download.eclipse.org</b></td>
<td>This is the replicated downloads area, used exclusively by download.eclipse.org. Use this location to build your Download web pages using PHP. Don't change files here, because your changes will be lost.</td>
</tr>
</table>
</td>
<?php
include("../html/footer.php");
?>