[pypy-svn] rev 1642 - in pypy/trunk/doc/funding: . makedoc

tismer at codespeak.net tismer at codespeak.net
Thu Oct 9 14:17:29 CEST 2003


Author: tismer
Date: Thu Oct  9 14:17:27 2003
New Revision: 1642

Added:
   pypy/trunk/doc/funding/abstract.asc
      - copied unchanged from rev 1639, pypy/trunk/doc/funding/abstract.txt
Removed:
   pypy/trunk/doc/funding/abstract.txt
Modified:
   pypy/trunk/doc/funding/B0.1_summary.txt
   pypy/trunk/doc/funding/B1.0_objectives.txt
   pypy/trunk/doc/funding/B4.3_participants.txt
   pypy/trunk/doc/funding/makedoc/makedoc.py
   pypy/trunk/doc/funding/makedoc/part_b.sxw
   pypy/trunk/doc/funding/wp-tablebegin.asc
   pypy/trunk/doc/funding/wp-tableend.asc
   pypy/trunk/doc/funding/wp-toptable.asc
Log:
renamed abstract to abstract.asc for consistency,
small corrections to reST, small changes to the doc production.

Modified: pypy/trunk/doc/funding/B0.1_summary.txt
==============================================================================
--- pypy/trunk/doc/funding/B0.1_summary.txt	(original)
+++ pypy/trunk/doc/funding/B0.1_summary.txt	Thu Oct  9 14:17:27 2003
@@ -47,7 +47,6 @@
 
 :DELETE:END
 
-include doc/funding/abstract.txt here.
-
+.. include:: abstract.asc
 
 FIXME_NICO FIXME_LAURA check this

Modified: pypy/trunk/doc/funding/B1.0_objectives.txt
==============================================================================
--- pypy/trunk/doc/funding/B1.0_objectives.txt	(original)
+++ pypy/trunk/doc/funding/B1.0_objectives.txt	Thu Oct  9 14:17:27 2003
@@ -639,8 +639,8 @@
 http://pages.cpsc.ucalgary.ca/~aycock/papers/ucpy.pdf
 
 [kiczales97aspectoriented.pdf] Gregor Kiczales and John Lamping and
-    Anurag Menhdhekar and Chris Maeda and Cristina Lopes and Jean-Marc
-    Loingtier and John Irwin, "Aspect-Oriented Programming", ECOOP'97
+Anurag Menhdhekar and Chris Maeda and Cristina Lopes and Jean-Marc
+Loingtier and John Irwin, "Aspect-Oriented Programming", ECOOP'97
 http://www2.parc.com/csl/groups/sda/publications/papers/Kiczales-ECOOP97/for-web.pdf
 
 :DELETE:END

Modified: pypy/trunk/doc/funding/B4.3_participants.txt
==============================================================================
--- pypy/trunk/doc/funding/B4.3_participants.txt	(original)
+++ pypy/trunk/doc/funding/B4.3_participants.txt	Thu Oct  9 14:17:27 2003
@@ -1,3 +1,5 @@
+:DELETE:BEGIN
+
 FIXME EVERYBODY -- CVs
 FIXME JACOB
 FIXME LAURA MAKE SURE THIS GETS DONE
@@ -17,6 +19,11 @@
 You have to show that he has experience of successful international
 project management. Emphasise this aspect.
 
+:DELETE:END
+
+Description of the participants
+----------------------------------
+
 Jacob Hallén, 45, comes to his position as co-founder and CTO of
 AB Strakt from being a Technical Manager and international standards
 expert at the LIBRIS Department of the Royal Library. He was the
@@ -67,8 +74,8 @@
 support; algorithmic and optimization expertise; elected Director of
 Python Software Foundation (PSF) since its inception.
 
-Alex Martelli: Best-selling author of _Python in a Nutshell_. Co-editor
-of _Python Cookbook_ .  ActiveState 2002 "Activators' Choice"
+Alex Martelli: Best-selling author of *Python in a Nutshell*. Co-editor
+of *Python Cookbook* .  ActiveState 2002 "Activators' Choice"
 award. PSF member, Python langauge developer, PBF board member. Currently
 works for AB Strakt, developing the CAPS framework.  Also consults for
 other firms on Python and O-O design, teaching, coding, feasibility

Deleted: /pypy/trunk/doc/funding/abstract.txt
==============================================================================
--- /pypy/trunk/doc/funding/abstract.txt	Thu Oct  9 14:17:27 2003
+++ (empty file)
@@ -1,33 +0,0 @@
-The PyPy project will build a portable, fast, flexible, context-aware
-programming platform supporting Very-High Level Languages (VHLL) to
-yield significant productivity gains in software development. PyPy's
-flexible, modular runtime system will be well-suited for networked,
-embedded, and mobile devices.
-
-VHLLs' high semantic level can help extend context-awareness, beyond
-the basics (time, location, identity), to a wider variety of context
-information and actions. However, VHLLs can often produce slow or large
-application and supporting code, hampering their use for small devices.
-We will solve this problem via the innovative concept of ObjectSpaces,
-high-level formulations of language interpreter components. Explicit,
-clear separation of parts yields modularity and flexibility.
-ObjectSpaces are themselves coded in a VHLL and can be specialised for
-execution speed, memory consumption, or other parameters.
-
-PyPy will use and target the widely-used Open Source programming
-language Python, first developed in 1990 at CWI (Centrum voor Wiskunde
-en Informatica) in the Netherlands. By producing the new reference
-version of the language, we will have a large impact on the estimated
-175,000 Python programmers worldwide. Emphasizing simplicity and
-readability, Python has wider appeal among non-programmers, and
-particularly among women, than languages perceived as needing extensive
-mathematical training and ability. An improved Python can thus help
-somewhat in promoting social cohesion and gender equality.
-
-PyPy will leverage known European strengths in formal methods and
-languages, operating by a novel Agile Software Development methodology
-for distributed development, including short, high-productivity
-meetings known as "Sprints". Systematic efforts to spread the knowledge
-produced by the project among academics, SMEs, industry, and other
-interested parties, will ensure the project's results and achievements
-are fully exploited.

Modified: pypy/trunk/doc/funding/makedoc/makedoc.py
==============================================================================
--- pypy/trunk/doc/funding/makedoc/makedoc.py	(original)
+++ pypy/trunk/doc/funding/makedoc/makedoc.py	Thu Oct  9 14:17:27 2003
@@ -3,7 +3,8 @@
 tempfiles = []
 class tempfile(file):
     def __init__(self, name, *args, **kw):
-        tempfiles.append(name)
+        if name not in tempfiles:
+            tempfiles.append(name)
         file.__init__(self, name, *args, **kw)
 
 def get_file_list():
@@ -163,7 +164,7 @@
 
 def copy_ascfiles():
     for name in os.listdir(".."):
-        if name.startswith("wp-") and name.endswith(".asc"):
+        if name.endswith(".asc"):
             tempfile(name, "w").write(file(os.path.join("..", name)).read())
 
 def copy_binfiles():

Modified: pypy/trunk/doc/funding/makedoc/part_b.sxw
==============================================================================
Binary files. No diff available.

Modified: pypy/trunk/doc/funding/wp-tablebegin.asc
==============================================================================
--- pypy/trunk/doc/funding/wp-tablebegin.asc	(original)
+++ pypy/trunk/doc/funding/wp-tablebegin.asc	Thu Oct  9 14:17:27 2003
@@ -1,6 +1,4 @@
 
-.. start a surounding single table cell with a minimum height.
-
 .. raw:: html
 
     <P ALIGN=JUSTIFY STYLE="margin-top: 0.11cm; margin-bottom: 0.11cm"><BR><BR>

Modified: pypy/trunk/doc/funding/wp-tableend.asc
==============================================================================
--- pypy/trunk/doc/funding/wp-tableend.asc	(original)
+++ pypy/trunk/doc/funding/wp-tableend.asc	Thu Oct  9 14:17:27 2003
@@ -1,6 +1,4 @@
 
-.. end a single surrounding table.
-
 .. raw:: html
 
             </TD>

Modified: pypy/trunk/doc/funding/wp-toptable.asc
==============================================================================
--- pypy/trunk/doc/funding/wp-toptable.asc	(original)
+++ pypy/trunk/doc/funding/wp-toptable.asc	Thu Oct  9 14:17:27 2003
@@ -1,7 +1,4 @@
 
-.. create a nearly exact table for the WPs
-.. note that you must define *all* the |xxx| references.
-
 .. raw:: html
 
     <P ALIGN=JUSTIFY STYLE="margin-top: 0.11cm; margin-bottom: 0.11cm; page-break-before: always">


More information about the Pypy-commit mailing list