Skip to content

Commit 1114a1d

Browse files
committed
merged the changes (r369:550) in extensions.rst
1 parent ff0ddc2 commit 1114a1d

File tree

1 file changed

+156
-2
lines changed

1 file changed

+156
-2
lines changed

docs/ja/history.rst

Lines changed: 156 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,160 @@
77
リリース履歴
88
============
99

10+
dev
11+
12+
- Clean up file permissions and remove shebangs from scripts not
13+
intended to be executed on the command line. (contributed by
14+
:bbuser:`ralphbean`)
15+
- Worked on some brittle tests.
16+
17+
3.2
18+
19+
- Make ``project_dir`` a local variable so that
20+
:ref:`command-cdproject` does not interfere with other variables
21+
the user might have set. (contributed by :bbuser:`slackorama`)
22+
- Fix typo in documentation reported by Nick Martin.
23+
- Change trove classifier for license "MIT" to reflect the license
24+
text presented in the documentation. *This does not indicate a
25+
change in the license, just a correction to the expression of that
26+
intent. See :ref:`license`* (contributed by :bbuser:`ralphbean` as
27+
fix for :bbissue:`134`)
28+
- Extend :ref:`command-rmvirtualenv` to allow removing more than one
29+
environment at a time. (contributed by :bbuser:`ciberglo`)
30+
- Change the definition of
31+
``virtualenvwrapper_get_site_packages_dir`` to ask ``distutils``
32+
for the ``site-packages`` directory instead of trying to build the
33+
path ourselves in the shell script. This should resolve
34+
:bbissue:`112` and improve support for Python interpreters other
35+
than C Python. Thanks to Carl Meyer and Dario Bertini for their
36+
contributions toward the fix.
37+
38+
3.1
39+
40+
- Fix a problem with activation hooks when associating a new
41+
virtualenv with an existing project directory. (:bbissue:`122`)
42+
- Fix a problem with :ref:`command-add2virtualenv` and paths
43+
containing "special" characters such as ``&``. (:bbissue:`132`)
44+
45+
3.0.1
46+
47+
- Fix some packaging issues that made it more difficult to run the
48+
tests directly from the sdist package. (:bbissue:`126`)
49+
50+
3.0
51+
52+
- Add Python 3 support, thanks in large part to the efforts of
53+
Daniel Kraus (:bbuser:`dakra`). Tested under Python 2.6, 2.7, and
54+
3.2.
55+
56+
2.11.1
57+
58+
- Remove the initialization shortcut because it breaks tab
59+
completion in sub-shell environments like screen and
60+
tmux. (:bbissue:`121`)
61+
62+
2.11
63+
64+
- Add ``-a`` option to :ref:`command-mkvirtualenv` to associate a
65+
new virtualenv with an existing project directory. Contributed by
66+
Mike Fogel (:bbuser:`mfogel`).
67+
- Drops support for Python 2.4 and 2.5. The tools may still work,
68+
but I no longer have a development environment set up for testing
69+
them, so I do not officially support them.
70+
- Shortcut initialization if it has run before.
71+
- Set hook log file permissions to be group-writable. (:bbissue:`62`
72+
reported by :bbuser:`hedgeddown`)
73+
- Add ``VIRTUALENVWRAPPER_PROJECT_FILENAME`` variable so the
74+
``.project`` file used to link a virtualenv to a project can be
75+
renamed to avoid conflicts with other tools. (:bbissue:`120`
76+
reported by :bbuser:`arthuralvim`)
77+
78+
2.10.1
79+
80+
- Changed arguments to :ref:`command-mktmpenv` so it always creates
81+
an environment name for you. (:bbissue:`114` reported by
82+
:bbuser:`alex_gaynor`)
83+
84+
2.10
85+
86+
- Incorporated patch to add ``-d`` option to
87+
:ref:`command-add2virtualenv`, contributed by :bbuser:`miracle2k`.
88+
- Add ``-i`` option to :ref:`command-mkvirtualenv`.
89+
- Add :ref:`command-mktmpenv` command for creating temporary
90+
environments that are automatically removed when they are
91+
deactivated.
92+
- Fixed a problem with hook_loader that prevented it from working
93+
under Python 2.5 and 2.4.
94+
- Fix a problem with the way template names were processed under
95+
zsh. (:bbissue:`111`)
96+
97+
2.9
98+
99+
- Change the shell function shell definition syntax so that ksh will
100+
treat typeset-declared variables as local. No kidding.
101+
- Merge the "project directory" features of the
102+
``virtualenvwrapper.project`` plugin into the main project, adding
103+
:ref:`command-mkproject`, :ref:`command-cdproject`, and
104+
:ref:`command-setvirtualenvproject` commands.
105+
- Add ``-r`` option to :ref:`command-mkvirtualenv` to install
106+
dependencies using a pip requirements file.
107+
108+
2.8
109+
110+
- Use VIRTUALENVWRAPPER_VIRTUALENV in `cpvirtualenv` (:bbissue:`104`).
111+
- Add support for `MSYS <http://www.mingw.org/wiki/MSYS>`_
112+
environment under Windows. Contributed by Axel
113+
H. (:bbuser:`noirbizarre`).
114+
115+
2.7.2
116+
117+
- Move setup code for tab completion later in the startup code so
118+
all of the needed variables are configured. (:bbissue:`97`)
119+
- Expand tab completion for zsh to work for all commands.
120+
121+
2.7.1
122+
123+
- When testing for WORKON_HOME during startup, dereference any
124+
symlink to make sure it is a directory.
125+
- Set VIRTUALENVWRAPPER_HOOK_DIR and VIRTUALENV_WRAPPER_LOG DIR in
126+
virtualenvwrapper_initialize after WORKON_HOME is set
127+
(:bbissue:`94`).
128+
- Update the :ref:`install-basic` instructions to be more explicit
129+
about needing to install virtualenvwrapper globally (or at least
130+
outside of a virtualenv).
131+
132+
2.7
133+
134+
- Fix problem with space in WORKON_HOME path (:bbissue:`79`).
135+
- Fix problem with argument processing in lsvirtualenv under zsh
136+
(:bbissue:`86`). Thanks to Nat Williams (:bbuser:`natw`) for the
137+
bug report and patch.
138+
- If WORKON_HOME does not exist, create it. Patch from Carl Karsten
139+
(:bbuser:`CarlFK`). Test updates based on patches from Matt Austin
140+
(:bbuser:`maafy6`) and Hugo Lopes Tavares (:bbuser:`hltbra`).
141+
- Merge in contributions from Paul McLanahan (:bbuser:`pmclanahan`)
142+
to fix the test harness to ensure that the test scripts are
143+
actually running under the expected shell.
144+
- Merge in new shell command :ref:`command-toggleglobalsitepackages`
145+
from Paul McLanahan (:bbuser:`pmclanahan`). The new command
146+
changes the configuration of the active virtualenv to enable or
147+
disable the global ``site-packages`` directory.
148+
- Fixed some tests that were failing under ksh on Ubuntu 10.10.
149+
- Document the :ref:`VIRTUALENVWRAPPER_VIRTUALENV
150+
<variable-VIRTUALENVWRAPPER_VIRTUALENV>` variable.
151+
- Implement suggestion by Van Lindberg to have
152+
:ref:`VIRTUALENVWRAPPER_HOOK_DIR
153+
<variable-VIRTUALENVWRAPPER_HOOK_DIR>` and
154+
:ref:`VIRTUALENVWRAPPER_LOG_DIR
155+
<variable-VIRTUALENVWRAPPER_LOG_DIR>` variables to control the
156+
locations of hooks and logs.
157+
- Enabled tab completion for :ref:`command-showvirtualenv`
158+
(:bbissue:`78`).
159+
- Fixed a problem with running :ref:`command-rmvirtualenv` from
160+
within the environment being removed (:bbissue:`83`).
161+
- Removed use of -e option in calls to grep for better portability
162+
(:bbissue:`85`).
163+
10164
2.6.3
11165

12166
.. - Hard-code the version information in the setup.py and conf.py
@@ -22,11 +176,11 @@
22176
Tetsuya Morimoto.
23177
- Incorporate a suggestion from Ales Zoulek to let the user specify
24178
the virtualenv binary through an environment variable
25-
(``VIRTUALENVWRAPPER_VIRTUALENV``).
179+
(:ref:`VIRTUALENVWRAPPER_VIRTUALENV <variable-VIRTUALENVWRAPPER_VIRTUALENV>`).
26180
27181
- http://readthedocs.org でドキュメントを生成してみました。
28182
- Tetsuya Morimoto からの `日本語の翻訳ドキュメント <http://www.doughellmann.com/docs/virtualenvwrapper/ja/>`__ を取り込みました。
29-
- 環境変数(``VIRTUALENVWRAPPER_VIRTUALENV``)で virtualenv バイナリをユーザが指定できるように Ales Zoulek からの提案を取り入れました。
183+
- 環境変数 (:ref:`VIRTUALENVWRAPPER_VIRTUALENV <variable-VIRTUALENVWRAPPER_VIRTUALENV>`) で virtualenv バイナリをユーザが指定できるように Ales Zoulek からの提案を取り入れました。
30184

31185
2.6.1
32186

0 commit comments

Comments
 (0)