Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-06-25 14:35:00 +0000
committerMichael Valenta2002-06-25 14:35:00 +0000
commit35640c77e6eabfcb856a387c19509c43edde7660 (patch)
treedf2eeebef451c6c469ef581412f21c2cc65a7f7b
parentd97ad3019608c39be59a61eb060c33706525d6a1 (diff)
downloadeclipse.platform.team-35640c77e6eabfcb856a387c19509c43edde7660.tar.gz
eclipse.platform.team-35640c77e6eabfcb856a387c19509c43edde7660.tar.xz
eclipse.platform.team-35640c77e6eabfcb856a387c19509c43edde7660.zip
Added documentation
-rw-r--r--examples/org.eclipse.team.examples.filesystem/doc-html/hglegal.htm14
-rw-r--r--examples/org.eclipse.team.examples.filesystem/doc-html/ngibmcpy.gifbin0 -> 1045 bytes
-rw-r--r--examples/org.eclipse.team.examples.filesystem/doc-html/team_filesystem_ex.html35
-rw-r--r--examples/org.eclipse.team.examples.filesystem/plugin.properties2
4 files changed, 50 insertions, 1 deletions
diff --git a/examples/org.eclipse.team.examples.filesystem/doc-html/hglegal.htm b/examples/org.eclipse.team.examples.filesystem/doc-html/hglegal.htm
new file mode 100644
index 000000000..cf2ced352
--- /dev/null
+++ b/examples/org.eclipse.team.examples.filesystem/doc-html/hglegal.htm
@@ -0,0 +1,14 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta name="GENERATOR" content="Mozilla/4.73 [en] (Win98; U) [Netscape]">
+ <title>Legal Notices</title>
+</head>
+<body>
+
+<h3>
+<a NAME="Notices"></a>Notices</h3>
+(c) Copyright IBM Corp. 2000, 2002. All Rights Reserved.
+</body>
+</html>
diff --git a/examples/org.eclipse.team.examples.filesystem/doc-html/ngibmcpy.gif b/examples/org.eclipse.team.examples.filesystem/doc-html/ngibmcpy.gif
new file mode 100644
index 000000000..61cef4852
--- /dev/null
+++ b/examples/org.eclipse.team.examples.filesystem/doc-html/ngibmcpy.gif
Binary files differ
diff --git a/examples/org.eclipse.team.examples.filesystem/doc-html/team_filesystem_ex.html b/examples/org.eclipse.team.examples.filesystem/doc-html/team_filesystem_ex.html
new file mode 100644
index 000000000..9604d0d6c
--- /dev/null
+++ b/examples/org.eclipse.team.examples.filesystem/doc-html/team_filesystem_ex.html
@@ -0,0 +1,35 @@
+<!doctype html public "-//w3c//dtd html 4.0//en">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <title>Team - File System Repository Provider Example</title>
+</head>
+<body>
+
+<h2>Team - File System Repository Provider Example</h2>
+
+<h3>Introduction</h3>
+
+<p>
+The File System Repository Provider shows how to define your own repository provider.
+It shows how to override the RepositoryProvider class and register this new class as
+a repository provider using the Team extension point. It also illustrates how to create
+and register a configuration wizard for connecting a local project to a remote location
+and how to provide some custom Team and Replace with menu items for simple Get and Put operations. In
+addition it also shows how to use the validate save/validate edit mechanism to support
+pessimistic providers.
+
+
+<h3>Running the example</h3>
+
+To start using this example create a project and select Team > Share Project... from the
+project's popup menu. In the wizrd that opens, select File System Example and click Next.
+Now enter the location in the local file system where you would like to connect the project
+to. The Get and Put operations in the Team menu will now transfer to and from the selected
+location.
+
+
+<p><a href="hglegal.htm"><img SRC="ngibmcpy.gif" ALT="Copyright IBM Corp. 2000, 2002. All Rights Reserved." BORDER=0></a>
+</body>
+</html>
+
diff --git a/examples/org.eclipse.team.examples.filesystem/plugin.properties b/examples/org.eclipse.team.examples.filesystem/plugin.properties
index 26f7fd8cb..93a29709f 100644
--- a/examples/org.eclipse.team.examples.filesystem/plugin.properties
+++ b/examples/org.eclipse.team.examples.filesystem/plugin.properties
@@ -7,7 +7,7 @@ Get.tooltip=Copy resources from the shared file system location to the workbench
Unmanage.name=Unmanage
Unmanage.tooltip=Mark resources as not-shared
-Replace.name=Replace with remote
+Replace.name=File System Contents
Replace.tooltip=Overwrites the local copy of this resource with the one in the repository

Back to the top