Synchronize site documentation with help
Remove notes about Ganymede update site
diff --git a/documentation/gettingStarted/aboutSubversive/install.php b/documentation/gettingStarted/aboutSubversive/install.php
index 678748e..4654399 100644
--- a/documentation/gettingStarted/aboutSubversive/install.php
+++ b/documentation/gettingStarted/aboutSubversive/install.php
@@ -54,7 +54,7 @@
<br/><br/><img border="0" src="../../images/new_update_site.png" alt="New update site"/><br/><br/>
</li>
<li>
- The Subversive update site can be found in 'Ganymede Update Site' in 'Collaboration Tools' category and provides following features list.
+ The Subversive update site provides following features list.
<ul>
Required feature, which should be installed unconditionally:
<li>
diff --git a/documentation/images/create_repository.png b/documentation/images/create_repository.png
new file mode 100644
index 0000000..dae9a85
--- /dev/null
+++ b/documentation/images/create_repository.png
Binary files differ
diff --git a/documentation/images/pref_diff_viewer.png b/documentation/images/pref_diff_viewer.png
new file mode 100644
index 0000000..f7b3dc3
--- /dev/null
+++ b/documentation/images/pref_diff_viewer.png
Binary files differ
diff --git a/documentation/images/rep_expl_persp.png b/documentation/images/rep_expl_persp.png
index 21f5303..ffa8b24 100644
--- a/documentation/images/rep_expl_persp.png
+++ b/documentation/images/rep_expl_persp.png
Binary files differ
diff --git a/documentation/images/repos_view.png b/documentation/images/repos_view.png
index 79c035d..f372d5f 100644
--- a/documentation/images/repos_view.png
+++ b/documentation/images/repos_view.png
Binary files differ
diff --git a/documentation/index.php b/documentation/index.php
index cc9871d..0a3cbe6 100644
--- a/documentation/index.php
+++ b/documentation/index.php
@@ -63,6 +63,7 @@
<li><a href="preferences/pref_svn.php">SVN</a></li>
<li><a href="preferences/pref_comments.php">Comment Templates</a></li>
<li><a href="preferences/pref_console.php">Console</a></li>
+ <li><a href="preferences/pref_diff_viewer.php">Diff Viewer</a></li>
<li><a href="preferences/pref_label_decors.php">Label Decorations</a></li>
<li><a href="preferences/pref_pass.php">Password Management</a></li>
<li><a href="preferences/pref_performance.php">Performance</a></li>
@@ -74,6 +75,7 @@
<ul>
<li><a href="teamSupport/repos_persp.php">SVN Repository Exploring Perspective</a></li>
<li><a href="teamSupport/new_location_wiz.php">SVN Repository Location Wizard</a></li>
+ <li><a href="teamSupport/create_repository.php">SVN Repository Dialog</a></li>
<li><a href="teamSupport/sharing_wiz.php">SVN Sharing Wizard</a></li>
<li><a href="teamSupport/find_check_wiz.php">SVN Find/Check Out As Wizard</a></li>
<li><a href="teamSupport/console.php">SVN Console</a></li>
diff --git a/documentation/preferences/pref_diff_viewer.php b/documentation/preferences/pref_diff_viewer.php
new file mode 100644
index 0000000..7500937
--- /dev/null
+++ b/documentation/preferences/pref_diff_viewer.php
@@ -0,0 +1,111 @@
+<?php
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+ $App = new App();
+ $Nav = new Nav();
+ $Menu = new Menu();
+ include($App->getProjectCommon());
+ # All on the same line to unclutter the user's desktop'
+
+ #*****************************************************************************
+ #
+ # template.php
+ #
+ # Author: Igor Vinnykov
+ # Date: 2007-11-23
+ #
+ # Description: Autogenerated for eclipse.org site pages from Eclipse IDE help
+ #
+ #
+ #****************************************************************************
+
+ #
+ # Begin: page-specific settings. Change these.
+ $pageTitle = "Eclipse Subversive - Documentation";
+ $pageKeywords = "Subversive, Subversion, SVN, Team Provider, documentation, user guid";
+ $pageAuthor = "Igor Vinnykov";
+
+ # Paste your HTML content between the EOHTML markers!
+ $html = <<<EOHTML
+
+ <div id="midcolumn" style="width:95%">
+
+ <h2>Diff Viewer</h2>
+ <p>
+ These preferences can be changed on
+ <i>'Team>SVN>Diff Viewer'</i>
+ properties page.
+ On this page user can configure external diff/merge programs used for comparing different revisions of files.
+ User can associate an external diff program to specific file extension or mime type. For example, in order to specify file extension for doc files use .doc. Example of mime-type usage: text/plain.
+ Also user can specify external diff program which will be applied for all files by using an asterisk(*) in extension/mime-type field.
+ </p>
+
+ <p>
+ For each file extension/mime-type user can specify following parameters: diff program path, diff program arguments, merge program path, merge program parameters.
+ Diff program settings are applied for compare actions. Merge program settings are applied for Edit Conflicts action.
+ The external program will need to obtain the filenames from the command line, along with any other command line options.
+ <br/>
+ Subversive uses substitution parameters in a form %{param-name}. When it encounters one of these it will substitute the appropriate value.
+ <ul>
+ <li>base: <i>The original file without your changes.</i></li>
+ <li>mine: <i>Your own file, with your changes.</i></li>
+ <li>theirs: <i>The file as it is in the repository.</i></li>
+ <li>merged: <i>The conflicted file, where to save.</i></li>
+ <li>etc.</li>
+ </ul>
+ </p>
+
+ <!-- Default config -->
+ <p>
+ Subversive is supplied with default configuration for file extension associations, default configuration includes paths to script files
+ which allow to run external programs. It includes configuration for following file extensions: doc, docx, xls, xlsx, ppt, pptx, odt, ods.
+ </p>
+
+ <table cellpadding="1" cellspacing="0" border="0">
+ <tr>
+ <td valign="top" align="left">
+ <p align="left">
+ <i>
+ <b>Tip:</b>
+ </i>
+ </p>
+ </td>
+ <td valign="top">
+ <p>
+ <i>
+ Default diff handlers provided by Subversive are loaded and can be used only on Microsoft Windows.
+ For other operating systems users can configure their own handlers.
+ </i>
+ </p>
+ </td>
+ </tr>
+ </table>
+
+ This is how <i>'Diff Viewer'</i> properties page looks like:
+ <br/><br/><img border="0" src="../images/pref_diff_viewer.png" alt="Diff Viewer properties page"/>
+ <br/>
+ <br/>
+
+ Here's a list of actions which can call external compare editor:
+ <ul>
+ <li>Compare With Base from Working Copy</li>
+ <li>Compare With Latest from Repository</li>
+ <li>Compare With Revision or Url...</li>
+ <li>Compare With Branch...</li>
+ <li>Compare With Tag...</li>
+ <li>'Compare In External Compare Editor' action in Synchronize View</li>
+ <li>'Edit Conflicts' action in Synchronize View</li>
+ <li>Compare actions available from History View, e.g. Compare With Previous State</li>
+ <li>'Compare In External Compare Editor' action available for files when performing comparing for directories</li>
+ <li>etc.</li>
+ </ul>
+
+ </div>
+
+EOHTML;
+
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
diff --git a/documentation/prefs.php b/documentation/prefs.php
index 1e6bd12..8c468ba 100644
--- a/documentation/prefs.php
+++ b/documentation/prefs.php
@@ -47,6 +47,8 @@
<br/>
<a href="preferences/pref_console.php">Console</a>
<br/>
+ <a href="preferences/pref_diff_viewer.php">Diff Viewer</a>
+ <br/>
<a href="preferences/pref_label_decors.php">Label Decorations</a>
<br/>
<a href="preferences/pref_pass.php">Password Management</a>
diff --git a/documentation/teamSupport.php b/documentation/teamSupport.php
index f0bef6c..5074305 100644
--- a/documentation/teamSupport.php
+++ b/documentation/teamSupport.php
@@ -109,6 +109,8 @@
<br/>
<a href="teamSupport/new_location_wiz.php">SVN Repository Location Wizard</a>
<br/>
+ <a href="teamSupport/create_repository.php">SVN Repository Dialog</a>
+ <br/>
<a href="teamSupport/sharing_wiz.php">SVN Sharing Wizard</a>
<br/>
<a href="teamSupport/find_check_wiz.php">SVN Find/Check Out As Wizard</a>
diff --git a/documentation/teamSupport/create_repository.php b/documentation/teamSupport/create_repository.php
new file mode 100644
index 0000000..4fa8431
--- /dev/null
+++ b/documentation/teamSupport/create_repository.php
@@ -0,0 +1,76 @@
+<?php
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
+ require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
+ $App = new App();
+ $Nav = new Nav();
+ $Menu = new Menu();
+ include($App->getProjectCommon());
+ # All on the same line to unclutter the user's desktop'
+
+ #*****************************************************************************
+ #
+ # template.php
+ #
+ # Author: Igor Vinnykov
+ # Date: 2008-07-01
+ #
+ # Description: Autogenerated for eclipse.org site pages from Eclipse IDE help
+ #
+ #
+ #****************************************************************************
+
+ #
+ # Begin: page-specific settings. Change these.
+ $pageTitle = "Eclipse Subversive - Documentation";
+ $pageKeywords = "Subversive, Subversion, SVN, Team Provider, documentation, user guid";
+ $pageAuthor = "Igor Vinnykov";
+
+ # Paste your HTML content between the EOHTML markers!
+ $html = <<<EOHTML
+
+ <div id="midcolumn" style="width:95%">
+
+ <h2>SVN Repository Dialog</h2>
+
+ <p>
+ This facility provides a probability to create a new repository on local drive.
+ There are two kinds of file system type: File System and Berkley DB which the user can select.
+ There is option to create a repository location for just created repository which uses file:/// scheme (direct repository access).
+ Accessible from 'SVN Repository View' (click on 'New Repository' button).
+ </p>
+ <table cellpadding="1" cellspacing="0" border="0">
+ <tr>
+ <td valign="top" align="left">
+ <p align="left">
+ <i>
+ <b>Note:</b>
+ </i>
+ </p>
+ </td>
+ <td valign="top">
+ <p>
+ <i>
+ The Create Repository operation is available only for JavaHL SVN Connector.
+ If the user selects SVN Kit connector the action is not enabled.
+ </i>
+ </p>
+ </td>
+ </tr>
+ </table>
+ <p>This is how <i>'Create Repository'</i> looks like:</p>
+ <img border = "0" src="../images/create_repository.png" alt="Create Repository dialog"/>
+
+ <br/>
+ <img border="0" src="../images/rel_tops.png" alt="Related topics"/>
+ <br/>
+ <a href="new_location_wiz.php">SVN Repository Location Wizard</a>
+
+ </div>
+
+EOHTML;
+
+
+ # Generate the web page
+ $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
diff --git a/documentation/teamSupport/new_location_wiz.php b/documentation/teamSupport/new_location_wiz.php
index 1de2b4a..3fe76ec 100644
--- a/documentation/teamSupport/new_location_wiz.php
+++ b/documentation/teamSupport/new_location_wiz.php
@@ -193,6 +193,8 @@
<br/>
<a href="../teamSupport/repos_view.php">SVN Repository View</a>
<br/>
+ <a href="../teamSupport/create_repository.php">SVN Repository Dialog</a>
+ <br/>
<br/>
</div>
diff --git a/documentation/teamSupport/repos_persp.php b/documentation/teamSupport/repos_persp.php
index 29ac3d8..626a162 100644
--- a/documentation/teamSupport/repos_persp.php
+++ b/documentation/teamSupport/repos_persp.php
@@ -42,6 +42,8 @@
<br/>
<a href="../teamSupport/new_location_wiz.php">SVN Repository Location Wizard</a>
<br/>
+ <a href="../teamSupport/create_repository.php">SVN Repository Dialog</a>
+ <br/>
<a href="../teamSupport/repos_view.php">SVN Repository View</a>
<br/>
<a href="../teamSupport/repos_browser_view.php">SVN Repository Browser View</a>
diff --git a/documentation/teamSupport/repos_view.php b/documentation/teamSupport/repos_view.php
index 0198bf9..1d21dff 100644
--- a/documentation/teamSupport/repos_view.php
+++ b/documentation/teamSupport/repos_view.php
@@ -43,9 +43,11 @@
<p><b>Refresh</b> - redraws the view refreshing the content.</p>
<p><b>Collapse All</b> - redraws the view collapsing all expanded items.</p>
<p><b>New repository location</b> - activates a New Repository Location Wizard.</p>
+ <p><b>New repository</b> - activates a Create Repository dialog.</p>
<p><b>Show repository browser</b> - shows Repository Browser View.</p>
<p><b><i>Pop-up menu</i></b></p>
<p><b>New>Repository Location</b> - activates a New Repository Location Wizard.</p>
+ <p><b>New>Repository</b> - activates a Create Repository Dialog.</p>
<p><b>New>File</b> - creates a new file in the repository location.</p>
<p><b>New>Folder</b> - creates a new folder in the repository location.</p>
<p><b>New>Tag</b> - creates a new tag in the specified location.</p>
diff --git a/downloads.php b/downloads.php
index fa625b6..978f40b 100644
--- a/downloads.php
+++ b/downloads.php
@@ -48,29 +48,7 @@
<h2>Requirements</h2>
<p>
This version requires at least Eclipse 3.3 and doesn't support previous versions of Eclipse IDE. You can see full list of requirements in <a href="/subversive/documentation/gettingStarted/aboutSubversive/requirements.php">'Requirements'</a> topic.
- </p>
- <div class="homeitem3col">
- <h3>Ganymede Release</h3>
- <ul>
- <li>
- <b>Version</b>: 0.7.3.I20080814-1500 | <b>Date</b>: 14 August 2008 | 0.7.3 Release<br/>
- </li>
- <li>
- <b>Important:</b> Subversive installation includes Subversive plug-in and Subversive SVN Connectors plug-in. In order to start work with Subversive you should install both of them.
- </li>
- <li>
- <b>Subversive plug-in</b> - [required]<br/>
- <img src="/subversive/images/arrow.gif"></img> <b>Update Site: </b>is a part of Ganymede Update Site. Look at Help > Software Updates... > Available Software > Ganymede > Collaboration Tools<br/>
- Other downloads:<br/>
- <img src="/subversive/images/arrow.gif"></img> Archived Update Site: <a href="http://www.eclipse.org/downloads/download.php?file=/technology/subversive/archive/Subversive-incubation-0.7.3.I20080814-1500.zip">Subversive-incubation-0.7.3.I20080814-1500.zip</a><br/>
- </li>
- <li>
- <b>Subversive SVN Connectors plug-in</b> - [required]<br/>
- <i>Important: Subversive SVN Connectors distributed from external location. Such scheme of distribution caused by licensing requirements.</i><br/>
- <img src="/subversive/images/arrow.gif"></img> <b><a href="http://www.polarion.com/products/svn/subversive.php?src=eclipseproject">Visit external site to get Subversive SVN Connectors</a></b><br/>
- </li>
- </ul>
- </div>
+ </p>
<div class="homeitem3col">
<h3>Latest Release - Recommended</h3>
<ul>
@@ -78,7 +56,7 @@
<b>Version</b>: 0.7.7.I20090224-1900 | <b>Date</b>: 24 February 2009 | 0.7.7 Release<br/>
<img src="/subversive/images/arrow.gif"></img> <a href="/subversive/changelogs/changelog.txt">Change Log</a><br/>
<img src="/subversive/images/arrow.gif"></img> <a href="/subversive/changelogs/releasenotes.txt">Release Notes</a><br/>
- This is most up-to-date stable version. It includes SVN 1.5 features support. If you use Eclipse 3.4 Ganymede release and want to benefit from the latest Subversive features, we recommend you to use this version instead of the one, which is a part of Ganymede update site.
+ This is most up-to-date stable version. It includes SVN 1.5 features support.
</li>
<li>
<b>Important:</b> Subversive installation includes Subversive plug-in and Subversive SVN Connectors plug-in. In order to start work with Subversive you should install both of them.