Initial commit

This commit is contained in:
Eagle517
2026-01-14 10:27:57 -06:00
commit c1576fee30
11290 changed files with 1552799 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>About</title>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
</head>
<body lang="EN-US">
<h2>About This Content</h2>
<p>20th November, 2003</p>
<h3>License</h3>
<p>Eclipse.org makes available all content in this plug-in (&quot;Content&quot;). With the exception of the files listed below, all Content should be defined as the &quot;SWT&quot; and
is provided to you under the terms and conditions of the Common Public License Version 1.0 (&quot;CPL&quot;).
A copy of the CPL is available at <a href="http://www.eclipse.org/legal/cpl-v10.html">http://www.eclipse.org/legal/cpl-v10.html</a>.
For purposes of the CPL, &quot;Program&quot; shall mean the SWT.</p>
<h3>Third Party Content</h3>
<p>The Content includes items that have been sourced from third parties as follows:</p>
<h4>JSch 0.1.16</h4>
<p>The plug-in is based on software developed by Atsuhiko Yamanaka, JCraft, Inc., and others and
made available at <a href="http://www.jcraft.com/">http://www.jcraft.com/</a>.
<p>The following files shall be defined as the &quot;JSch&quot;:
<ul>
<li>jsch-0.1.16.jar</li>
</ul>
<p>Use of JSch is governed by the terms and conditions of the following license:</p>
<blockquote>Copyright (c) 2002,2003 ymnk, JCraft,Inc. All rights reserved.<br>
<br>
Redistribution and use in source and binary forms, with or without<br>
modification, are permitted provided that the following conditions are met:<br>
<br>
1. Redistributions of source code must retain the above copyright notice,<br>
this list of conditions and the following disclaimer.<br>
<br>
2. Redistributions in binary form must reproduce the above copyright<br>
notice, this list of conditions and the following disclaimer in<br>
the documentation and/or other materials provided with the distribution.<br>
<br>
3. The names of the authors may not be used to endorse or promote products<br>
derived from this software without specific prior written permission.<br>
<br>
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,<br>
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND<br>
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,<br>
INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,<br>
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT<br>
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,<br>
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF<br>
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING<br>
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,<br>
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</blockquote>
<p>NOTE: Although the SSH2 protocol depends on cryptographic algorithms, JSch relies on a Java(TM) Cryptography Extension (JCE)
to provide this functionality and does not in itself contain any cryptographic code.</p>
<h3>Contributions</h3>
<p>If you wish to provide modifications, enhancements and/or other code and/or documentation (&quot;Contributions&quot;) related to the JSch, such Contributions
should be made to JCraft at <a href="http://www.jcraft.com/">http://www.jcraft.com/</a>.</p>
<p>If you wish to provide Contributions related to any other part of the plug-in, any Contributions uploaded, submitted, or otherwise
made available to Eclipse.org, members of Eclipse.org and/or the host of Eclipse.org web site, by you that relate to the plug-in (but not to JSch) are
provided under the terms and conditions of the CPL and can be made available to others under the terms of the CPL.</p>
<small>Java and all Java-based trademarks are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.</small>
</body>
</html>

View File

@@ -0,0 +1,14 @@
###############################################################################
# Copyright (c) 2000, 2003 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Common Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/cpl-v10.html
#
# Contributors:
# Atsuhiko Yamanaka, JCraft,Inc. - initial API and implementation.
# IBM Corporation - implementation
###############################################################################
providerName=Eclipse.org
pluginName=CVS SSH2
ssh2PreferencePage.name=SSH2 Connection Method

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!-- =================================================================================== -->
<!-- SSH2 Plug-in Manifest -->
<!-- =================================================================================== -->
<plugin
id="org.eclipse.team.cvs.ssh2"
name="%pluginName"
version="3.0.0"
provider-name="%providerName"
class="org.eclipse.team.internal.ccvs.ssh2.CVSSSH2Plugin">
<!-- =================================================================================== -->
<!-- Runtime Libraries -->
<!-- =================================================================================== -->
<runtime>
<library name="cvsssh2.jar">
<export name="*"/>
<packages prefixes="org.eclipse.team.ccvs.ssh2"/>
</library>
<library name="jsch-0.1.16.jar">
<packages prefixes="com.jcraft.jsch"/>
</library>
</runtime>
<!-- =================================================================================== -->
<!-- Prerequisite Plug-ins -->
<!-- =================================================================================== -->
<requires>
<import plugin="org.eclipse.core.boot"/>
<import plugin="org.eclipse.core.runtime.compatibility"/>
<import plugin="org.eclipse.core.resources"/>
<import plugin="org.eclipse.team.cvs.core"/>
<import plugin="org.eclipse.team.core"/>
<import plugin="org.eclipse.ui"/>
<import plugin="org.eclipse.team.cvs.ssh"/>
</requires>
<!-- =================================================================================== -->
<!-- Extension Point: CVS connection method -->
<!-- =================================================================================== -->
<extension id="ssh2" point="org.eclipse.team.cvs.core.connectionmethods">
<adapter>
<run class="org.eclipse.team.internal.ccvs.ssh2.CVSSSH2Method">
<parameter name="trace" value="false"/>
</run>
</adapter>
</extension>
<!-- =================================================================================== -->
<!-- Extension Point: Preference page -->
<!-- =================================================================================== -->
<extension point="org.eclipse.ui.preferencePages">
<page
name="%ssh2PreferencePage.name"
category="org.eclipse.team.cvs.ui.CVSPreferences"
class="org.eclipse.team.internal.ccvs.ssh2.CVSSSH2PreferencePage"
id="org.eclipse.team.cvs.ssh2.CVSSSH2Preferences">
</page>
</extension>
</plugin>