Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
fce7b868
Kaydet (Commit)
fce7b868
authored
Mar 13, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bump externals versions for doc build.
üst
34465839
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
13 deletions
+15
-13
Makefile
Doc/Makefile
+4
-4
README.txt
Doc/README.txt
+7
-5
make.bat
Doc/make.bat
+4
-4
No files found.
Doc/Makefile
Dosyayı görüntüle @
fce7b868
...
@@ -40,19 +40,19 @@ help:
...
@@ -40,19 +40,19 @@ help:
checkout
:
checkout
:
@
if
[
!
-d
tools/sphinx
]
;
then
\
@
if
[
!
-d
tools/sphinx
]
;
then
\
echo
"Checking out Sphinx..."
;
\
echo
"Checking out Sphinx..."
;
\
svn checkout
$(SVNROOT)
/external/Sphinx-0.6.
3
/sphinx tools/sphinx
;
\
svn checkout
$(SVNROOT)
/external/Sphinx-0.6.
5
/sphinx tools/sphinx
;
\
fi
fi
@
if
[
!
-d
tools/docutils
]
;
then
\
@
if
[
!
-d
tools/docutils
]
;
then
\
echo
"Checking out Docutils..."
;
\
echo
"Checking out Docutils..."
;
\
svn checkout
$(SVNROOT)
/external/docutils-0.
5
/docutils tools/docutils
;
\
svn checkout
$(SVNROOT)
/external/docutils-0.
6
/docutils tools/docutils
;
\
fi
fi
@
if
[
!
-d
tools/jinja2
]
;
then
\
@
if
[
!
-d
tools/jinja2
]
;
then
\
echo
"Checking out Jinja..."
;
\
echo
"Checking out Jinja..."
;
\
svn checkout
$(SVNROOT)
/external/Jinja-2.
1
.1/jinja2 tools/jinja2
;
\
svn checkout
$(SVNROOT)
/external/Jinja-2.
3
.1/jinja2 tools/jinja2
;
\
fi
fi
@
if
[
!
-d
tools/pygments
]
;
then
\
@
if
[
!
-d
tools/pygments
]
;
then
\
echo
"Checking out Pygments..."
;
\
echo
"Checking out Pygments..."
;
\
svn checkout
$(SVNROOT)
/external/Pygments-1.
1
.1/pygments tools/pygments
;
\
svn checkout
$(SVNROOT)
/external/Pygments-1.
3
.1/pygments tools/pygments
;
\
fi
fi
update
:
clean checkout
update
:
clean checkout
...
...
Doc/README.txt
Dosyayı görüntüle @
fce7b868
...
@@ -72,25 +72,27 @@ A "make update" updates the Subversion checkouts in `tools/`.
...
@@ -72,25 +72,27 @@ A "make update" updates the Subversion checkouts in `tools/`.
Without make
Without make
------------
------------
You'll need to
checkout the Sphinx package to the `tools/` directory
::
You'll need to
install the Sphinx package, either by checking it out via
::
svn co http://svn.python.org/projects/external/Sphinx-0.6.1/sphinx tools/sphinx
svn co http://svn.python.org/projects/external/Sphinx-0.6.5/sphinx tools/sphinx
or by installing it from PyPI.
Then, you need to install Docutils, either by checking it out via ::
Then, you need to install Docutils, either by checking it out via ::
svn co http://svn.python.org/projects/external/docutils-0.
5
/docutils tools/docutils
svn co http://svn.python.org/projects/external/docutils-0.
6
/docutils tools/docutils
or by installing it from http://docutils.sf.net/.
or by installing it from http://docutils.sf.net/.
You also need Jinja2, either by checking it out via ::
You also need Jinja2, either by checking it out via ::
svn co http://svn.python.org/projects/external/Jinja-2.
1
.1/jinja2 tools/jinja2
svn co http://svn.python.org/projects/external/Jinja-2.
3
.1/jinja2 tools/jinja2
or by installing it from PyPI.
or by installing it from PyPI.
You can optionally also install Pygments, either as a checkout via ::
You can optionally also install Pygments, either as a checkout via ::
svn co http://svn.python.org/projects/external/Pygments-1.
1
.1/pygments tools/pygments
svn co http://svn.python.org/projects/external/Pygments-1.
3
.1/pygments tools/pygments
or from PyPI at http://pypi.python.org/pypi/Pygments.
or from PyPI at http://pypi.python.org/pypi/Pygments.
...
...
Doc/make.bat
Dosyayı görüntüle @
fce7b868
...
@@ -34,10 +34,10 @@ echo.
...
@@ -34,10 +34,10 @@ echo.
goto end
goto end
:checkout
:checkout
svn co %SVNROOT%/external/Sphinx-0.6.
3
/sphinx tools/sphinx
svn co %SVNROOT%/external/Sphinx-0.6.
5
/sphinx tools/sphinx
svn co %SVNROOT%/external/docutils-0.
5
/docutils tools/docutils
svn co %SVNROOT%/external/docutils-0.
6
/docutils tools/docutils
svn co %SVNROOT%/external/Jinja-2.
1
.1/jinja2 tools/jinja2
svn co %SVNROOT%/external/Jinja-2.
3
.1/jinja2 tools/jinja2
svn co %SVNROOT%/external/Pygments-1.
1
.1/pygments tools/pygments
svn co %SVNROOT%/external/Pygments-1.
3
.1/pygments tools/pygments
goto end
goto end
:update
:update
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment