8000 Initial revision · pythonindy/pythonnet@614c4b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 614c4b0

Browse files
committed
Initial revision
1 parent 748f8e2 commit 614c4b0

File tree

105 files changed

+23605
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+23605
-0
lines changed

pythonnet/cvs/Entries.Log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A D/CVSROOT////

pythonnet/htdocs/index.html

Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
1+
<html>
2+
<head>
3+
4+
<title>Python for .NET</title>
5+
6+
<style type="text/css"><!--
7+
8+
body {
9+
font: 8pt/16pt georgia,verdana;
10+
text-decoration: none;
11+
color: #555753;
12+
background: #ffffff;
13+
margin: 0px;
14+
}
15+
16+
p {
17+
font: 8pt/16pt georgia;
18+
}
19+
20+
h1 {
21+
font: bold 14pt;
22+
color: #000044;
23+
24+
background-color: #EFEFFF;
25+
color: #000044;
26+
border-style: solid;
27+
border-width: 1px;
28+
border-color: #555753;
29+
padding C24 : 6px, 2px, 6px, 2px;
30+
31+
}
32+
33+
h2 {
34+
font: bold 14pt;
35+
margin-bottom: 0px;
36+
color: #000044;
37+
}
38+
39+
h3 {
40+
font: bold 12pt;
41+
margin-bottom: 0px;
42+
color: #000044;
43+
}
44+
45+
a:link {
46+
font-weight: bold;
47+
text-decoration: none;
48+
color: #000066;
49+
}
50+
51+
a:visited {
52+
font-weight: bold;
53+
text-decoration: none;
54+
color: #000066;
55+
}
56+
57+
a:hover, a:active {
58+
text-decoration: underline;
59+
color: #000066;
60+
}
61+
62+
pre {
63+
font-family: monospace;
64+
background-color: #EFEFFF;
65+
color: #000044;
66+
border-style: solid;
67+
border-width: 1px;
68+
border-color: #555753;
69+
padding: 6px, 2px, 6px, 2px;
70+
}
71+
72+
li {
73+
font: 8pt/16pt georgia,verdana;
74+
text-decoration: none;
75+
color: #555753;
76+
}
77+
78+
.spacer {
79+
font: bold 14pt;
80+
}
81+
82+
.menu {
83+
background-color: #EFEFFF;
84+
color: #000044;
85+
border-style: solid;
86+
border-width: 1px;
87+
border-color: #555753;
88+
padding: 6px, 2px, 6px, 2px;
89+
font-size: x-small;
90+
}
91+
92+
.menu ul {
93+
margin: 0px;
94+
padding: 0px;
95+
}
96+
97+
//--></style>
98+
99+
</head>
100+
<body>
101+
102+
<table width="98%" border="0" cellspacing="4">
103+
104+
<tr>
105+
<!--
106+
<td align="left" valign="top" width="20%" class="menu">
107+
108+
<h1>Python for .NET</h1>
109+
110+
111+
</td>
112+
-->
113+
114+
<td align="left" valign="top">
115+
116+
<h1>Python for .NET</h1>
117+
<p>
118+
Python for .NET is a package that gives Python programmers nearly seamless
119+
integration with the .NET Common Language Runtime (CLR) and provides a
120+
powerful application scripting tool for .NET developers. Using this package
121+
you can script .NET applications or build entire applications in Python,
122+
using .NET services and components written in any language that targets the
123+
CLR (Managed C++, C#, VB, JScript).
124+
</p>
125+
126+
<p>
127+
Note that this package does <em>not</em> implement Python as a first-class
128+
CLR language - it does not produce managed code (IL) from Python code.
129+
Rather, it is an integration of the C Python engine with the .NET runtime.
130+
This approach allows you to use use CLR services and continue to use existing
131+
Python code and C-based extensions while maintaining native execution speeds
132+
for Python code. If you are interested in a pure managed-code implementation
133+
of the Python language, you should check out the
134+
<a href="http://www.ironpython.com">IronPython</a> project, which is in
135+
active development.
136+
</p>
137+
138+
<p>
139+
Python for .NET is currently compatible with Python releases 2.3 and greater.
140+
To subscribe to the
141+
<a href="http://mail.python.org/mailman/listinfo/pythondotnet">
142+
Python for .NET mailing list
143+
</a> or read the
144+
<a href="http://mail.python.org/pipermail/pythondotnet/">
145+
online archives
146+
</a> of the list, see the
147+
<a href="http://mail.python.org/mailman/listinfo/pythondotnet">
148+
mailing list information
149+
</a> page. You can also send questions or comments to me at
150+
<a href="mailto:brian.lloyd@revolution.com">brian.lloyd@revolution.com</a>
151+
or use the
152+
<a href="http://sourceforge.net/tracker/?group_id=162464">
153+
Python for .NET issue tracker</a> to report issues.
154+
</p>
155+
156+
<p>
157+
My <a href="http://brianlloyd.blogspot.com">blog site</a> is also
158+
(sometimes) a good source for more information on Python for .NET ;)
159+
</p>
160+
161+
<ul>
162+
<li>The <a href="./readme.html">README</a>
163+
provides a detailed overview of Python for .NET, as well as
164+
some basic usage examples. Many other examples can be found
165+
in the demos and unit tests for the package.
166+
</li>
167+
168+
<li>Checkout the
169+
<a href="http://cvs.sourceforge.net/viewcvs.py/pythonnet">PythonNet</a>
170+
code
171+
from CVS. See the <a href="http://sourceforge.net/cvs/?group_id=162464">
172+
instructions on Source Forge</a> for details.
173+
</li>
174+
175+
<li><strong>Python 2.4 Releases</strong>
176+
<br />
177+
<a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1.exe">
178+
pythonnet-1.0-rc2-py2.4-clr1.1.exe
179+
</a>
180+
<br />
181+
<a href="./Releases/pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz">
182+
pythonnet-1.0-rc2-py2.4-clr1.1-src.tgz
183+
</a>
184+
</li>
185+
186+
<li><strong>Python 2.3 Releases</strong>
187+
<br />
188+
<a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1.exe">
189+
pythonnet-1.0-rc2-py2.3-clr1.1.exe
190+
</a>
191+
<br />
192+
<a href="./Releases/pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz">
193+
pythonnet-1.0-rc2-py2.3-clr1.1-src.tgz
194+
</a>
195+
</li>
196+
197+
198+
</ul>
199+
200+
201+
202+
203+
204+
205+
</td>
206+
</tr>
207+
</table>
208+
209+
</body>
210+
</html>

pythonnet/htdocs/license.txt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
Zope Public License (ZPL) Version 2.0
2+
-----------------------------------------------
3+
4+
This software is Copyright (c) Zope Corporation (tm) and
5+
Contributors. All rights reserved.
6+
7+
This license has been certified as open source. It has also
8+
been designated as GPL compatible by the Free Software
9+
Foundation (FSF).
10+
11+
Redistribution and use in source and binary forms, with or
12+
without modification, are permitted provided that the
13+
following conditions are met:
14+
15+
1. Redistributions in source code must retain the above
16+
copyright notice, this list of conditions, and the following
17+
disclaimer.
18+
19+
2. Redistributions in binary form must reproduce the above
20+
copyright notice, this list of conditions, and the following
21+
disclaimer in the documentation and/or other materials
22+
provided with the distribution.
23+
24+
3. The name Zope Corporation (tm) must not be used to
25+
endorse or promote products derived from this software
26+
without prior written permission from Zope Corporation.
27+
28+
4. The right to distribute this software or to use it for
29+
any purpose does not give you the right to use Servicemarks
30+
(sm) or Trademarks (tm) of Zope Corporation. Use of them is
31+
covered in a separate agreement (see
32+
http://www.zope.com/Marks).
33+
34+
5. If any files are modified, you must cause the modified
35+
files to carry prominent notices stating that you changed
36+
the files and the date of any change.
37+
38+
Disclaimer
39+
40+
THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS''
41+
AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
42+
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
43+
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
44+
NO EVENT SHALL ZOPE CORPORATION OR ITS CONTRIBUTORS BE
45+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
46+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
47+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
50+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
51+
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
53+
DAMAGE.
54+
55+
56+
This software consists of contributions made by Zope
57+
Corporation and many individuals on behalf of Zope
58+
Corporation. Specific attributions are listed in the
59+
accompanying credits file.
60+
61+

0 commit comments

Comments
 (0)
0