| <?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: Denis Roy |
| # Date: 2005-06-16 |
| # |
| # Description: Type your page comments here - these are not sent to the browser |
| # |
| # |
| #**************************************************************************** |
| |
| # |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Subversive - SVN Team Client"; |
| $pageKeywords = "Subversive, Subversion, SVN, Team Provider"; |
| $pageAuthor = "Igor Vinnykov"; |
| |
| # Add page-specific Nav bars here |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) |
| # $Nav->addNavSeparator("My Page Links", "downloads.php"); |
| # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3); |
| # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3); |
| |
| # End: page-specific settings |
| # |
| |
| # Paste your HTML content between the EOHTML markers! |
| $html = <<<EOHTML |
| |
| <div id="midcolumn"> |
| |
| <h2>SVN History View</h2> |
| <p><i>'SVN History View'</i> provides information on a history of resource change. The user can simply watch the change history, open editor on a specified revision, load a revision, revert the workspace to the revision, show annotations and view multi line comments and affected paths, if allowed in preferences.</p> |
| <p>This is how <i>'SVN History View'</i> looks like:</p> |
| <img border = "0" src="../images/history_view.png" alt="SVN History View"/> |
| <p><b><i>Columns</i></b></p> |
| <p><b>Revision</b> - the revision number is shown.</p> |
| <p><b>Date</b> - the date of commit is shown.</p> |
| <p><b>Changes</b> - the number of changes is shown.</p> |
| <p><b>Author</b> - the author of the changes info is shown.</p> |
| <p><b>Comment</b> - the author's commit comment is shown.</p> |
| <p><b><i>Multi line comment view</i></b></p> |
| <p>Shows the multi line comments for selected revision.</p> |
| <p><b><i>Affected Path View</i></b></p> |
| <p>Contains the information about which repository paths were affected while the changes of the resource took place.</p> |
| <p><b><i>Toolbar</i></b></p> |
| <p><b>Refresh</b> - refreshing the view according to a last resource history change info from the server.</p> |
| <p><b>Link with editor and selection</b> - show the history only of opened in an editor or selected resource.</p> |
| <p><b>Pin this history view</b> - pins the view, so every new call for history will open another history view.</p> |
| <p><b>Hide unrelated paths</b> - hides the affected paths or the revision in the Affected Path View unrelated to current resource.</p> |
| <p><b>Stop on copy</b> - hides the resource changes made before its copying from one location to another if some took place.</p> |
| <p><b>Quick filter</b> - allows to filter resource history by author, comment or both.</p> |
| <p><b>Clear filter</b> - clears the filter.</p> |
| <p><b>Show next</b> - shows next 25 revisions info in the history view.</p> |
| <p><b>Show all</b> - shows all revisions info in the history view.</p> |
| <p><b><i>Pop-up menu</i></b></p> |
| <p><b>Open/Open With</b> - opens the resource of current selected revision.</p> |
| <p><b>Compare with Each Other</b> - compares to selected revisions of the resource.</p> |
| <p><b>Compare current with 'selected'</b> - compares the current revision of the resource with the selected one.</p> |
| <p><b>Create Unified Diff</b> - creates a file containing differences between revisions.</p> |
| <p><b>Show Properties</b> - shows SVN® Properties View for a selected revision of resource.</p> |
| <p><b>Show Annotations</b> - shows SVN Annotations View for a selected revision of resource.</p> |
| <p><b>Get Contents</b> - gets the contents of the selected revision of the resource.</p> |
| <p><b>Update To</b> - updates your workspace copy to a selected revision.</p> |
| <p><b>Branch from</b> - creates a branch from a selected revision.</p> |
| <p><b>Tag from</b> - creates a tag from a selected revision.</p> |
| <p><b>Add Revision Link...</b> - creates a revision link and adds it to a revisions folder.</p> |
| <p><b>Quick filter</b> - allows to filter resource history by author, comment or both.</p> |
| <p><b>Clear filter</b> - clears the filter.</p> |
| <p><b>Copy</b> - copies the selected resource revision info.</p> |
| <p><b>Refresh</b> - refreshing the view according to the last resource history change info from the server.</p> |
| <img border="0" src="../images/rel_tops.png" alt="Related topics"/> |
| <br/> |
| <a href="../preferences/pref_svn.php">SVN Preferences (<i>'View Settings'</i> tab)</a> |
| <br/> |
| <br/> |
| </div> |
| |
| EOHTML; |
| |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |