Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Doc multi version master#1100

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
mdboom merged 16 commits intomatplotlib:masterfrommdboom:doc_multi_version_master
Aug 19, 2012
Merged
Changes from2 commits
Commits
Show all changes
16 commits
Select commitHold shift + click to select a range
ca678a4
Reinstate the manual reference counting as discovered in #1054.
mdboomAug 3, 2012
8089e04
Merge pull request #1054 from mdboom/doc_build_fail
mdboomAug 3, 2012
64e64f6
Fix gallery links (#1024)
mdboomAug 3, 2012
ff883a6
Merge pull request #1024 from mdboom/fix-gallery
mdboomAug 3, 2012
c9c108e
Fix pythonxy link
mdboomAug 9, 2012
9745bdd
Update index.html page.
mdboomAug 10, 2012
3a1c832
Gentler donation language.
mdboomAug 10, 2012
b60f3ee
Update credits page
mdboomAug 16, 2012
87f8df3
Add an autogenerated plotting command summary.
mdboomAug 16, 2012
cd4c335
Fix small typo listing members to exclude
mdboomAug 16, 2012
5a2d0a6
Add docstring to _setup_plot_info_docstrings
mdboomAug 17, 2012
fe2e95d
Update credits
mdboomAug 17, 2012
1057eed
Merge pull request #1067 from mdboom/doc_multi_version
mdboomAug 17, 2012
a906f58
Remove hard-coded docstring on plotting()
mdboomAug 17, 2012
fc271b9
Merge remote-tracking branch 'upstream/v1.1.x' into doc_multi_version…
mdboomAug 17, 2012
f537d1e
Fix hist2d docstring.
mdboomAug 17, 2012
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletionsdoc/sphinxext/gen_gallery.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@
import os, glob, re, sys, warnings
import matplotlib.image as image

multiimage = re.compile('(.*)_\d\d')
multiimage = re.compile('(.*?)(_\d\d){1,2}')

def make_thumbnail(args):
image.thumbnail(args[0], args[1], 0.3)
Expand DownExpand Up@@ -68,11 +68,8 @@ def gen_gallery(app, doctree):
thumbnails[orig_path] = thumb_path

m = multiimage.match(basename)
if m is None:
pyfile = '%s.py'%basename
else:
if m is not None:
basename = m.group(1)
pyfile = '%s.py'%basename

data.append((subdir, basename,
os.path.join(rootdir, subdir, 'thumbnails', filename)))
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp