Skip to content

Commit 81dc8fe

Browse files
committed
Another automatic change
1 parent d23dca2 commit 81dc8fe

File tree

79 files changed

+146
-146
lines changed

Some content is hidden

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

79 files changed

+146
-146
lines changed

src/bin/sage

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ resolvelinks() {
7777
}
7878

7979
# Resolve the links in $0 so that local/bin/sage can be executed from
80-
# a symlink (Trac #30888).
80+
# a symlink (Issue #30888).
8181
SELF=$(resolvelinks "${0}")
8282

8383
# Display the current version of Sage
@@ -173,7 +173,7 @@ if [ -z "$SAGE_VENV" -a -x "${SELF}-venv-config" ]; then
173173
export SAGE_VENV=$("${SELF}-venv-config" SAGE_VENV)
174174
fi
175175
if [ -f "${SELF}-env-config" ]; then
176-
# As of Trac #22731, sage-env-config is optional.
176+
# As of Issue #22731, sage-env-config is optional.
177177
. "${SELF}-env-config" >&2
178178
fi
179179

@@ -570,7 +570,7 @@ fi
570570
if [ "$1" = '-c' ]; then
571571
shift
572572
sage_setup
573-
unset TERM # See Trac #12263
573+
unset TERM # See Issue #12263
574574
exec sage-eval "$@"
575575
fi
576576

@@ -1016,7 +1016,7 @@ fi
10161016
if [ "$1" = "-docbuild" -o "$1" = "--docbuild" ]; then
10171017
shift
10181018

1019-
# Trac #30002: ensure an English locale so that it is possible to
1019+
# Issue #30002: ensure an English locale so that it is possible to
10201020
# scrape out warnings by pattern matching.
10211021
export LANG=C
10221022
export LANGUAGE=C
@@ -1027,7 +1027,7 @@ if [ "$1" = "-docbuild" -o "$1" = "--docbuild" ]; then
10271027
export OMP_NUM_THREADS=1
10281028
fi
10291029

1030-
# Trac #33650: Make sure that user configuration of Jupyter does not
1030+
# Issue #33650: Make sure that user configuration of Jupyter does not
10311031
# shadow our sagemath kernel when jupyter-sphinx is invoked
10321032
export JUPYTER_CONFIG_DIR=/doesnotexist
10331033
export JUPYTER_CONFIG_PATH=/doesnotexist
@@ -1141,7 +1141,7 @@ if [ $# -ge 1 ]; then
11411141
exit 1
11421142
fi
11431143
sage_setup
1144-
unset TERM # See Trac #12263
1144+
unset TERM # See Issue #12263
11451145
# sage-run rejects all command line options as the first argument.
11461146
exec sage-run "$@"
11471147
fi

src/bin/sage-coverage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def coverage_all(directory):
3737

3838
print(''.join(s))
3939

40-
# Trac #5859: Don't crash if there isn't anything to test.
40+
# Issue #5859: Don't crash if there isn't anything to test.
4141
score = 100.0
4242
if total != 0:
4343
score = (float(scr) / total)

src/bin/sage-cython

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env sage-python
22

33
# This script is a deprecated wrapper around the "cython" program.
4-
# It is deprecated since Trac #27041 (Sage 8.7) because one should
4+
# It is deprecated since Issue #27041 (Sage 8.7) because one should
55
# simply use "cython" directly. We display deprecation messages whenever
66
# "sage-cython" does something different from plain "cython".
77
#

src/bin/sage-env

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ if [ "$UNAME" = "Darwin" ]; then
278278
export MACOSX_VERSION=`uname -r | awk -F. '{print $1}'`
279279
# Work around problems on recent OS X crashing with an error message
280280
# "... may have been in progress in another thread when fork() was called"
281-
# when objective-C functions are called after fork(). See Trac #25921.
281+
# when objective-C functions are called after fork(). See Issue #25921.
282282
# Most likely, these errors are false positives, so we disable them:
283283
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
284284
fi
@@ -449,7 +449,7 @@ if [ -n "$SAGE_LOCAL" ]; then
449449
PERL5LIB="$SAGE_LOCAL/lib/perl5:$PERL5LIB" && export PERL5LIB
450450
fi
451451

452-
# Allow SAGE_BROWSER to override BROWSER (Trac #22449)
452+
# Allow SAGE_BROWSER to override BROWSER (Issue #22449)
453453
if [ -n "$SAGE_BROWSER" ]; then
454454
export BROWSER="$SAGE_BROWSER"
455455
fi
@@ -558,7 +558,7 @@ case "$SAGE_NUM_THREADS,$SAGE_NUM_THREADS_PARALLEL" in
558558
# sage-num-threads.py would just recompute them
559559
;;
560560
*)
561-
# See Trac Ticket #12016
561+
# See Issue Ticket #12016
562562
# First, figure out the right values for SAGE_NUM_THREADS (default
563563
# number of threads) and SAGE_NUM_THREADS_PARALLEL (default number of
564564
# threads when parallel execution is asked explicitly).
@@ -615,7 +615,7 @@ fi
615615

616616
if [ -n "$SAGE_LOCAL" ]; then
617617
# If we move the Sage tree then ncurses cannot find terminfo, hence, we
618-
# tell it where to find it. See Trac Ticket #15091
618+
# tell it where to find it. See Issue Ticket #15091
619619
export TERMINFO="$SAGE_LOCAL/share/terminfo"
620620

621621
# If nodejs is installed, activate the nodeenv containing it.

src/bin/sage-runtests

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import sys
88
DOT_SAGE = os.environ.get('DOT_SAGE', os.path.join(os.environ.get('HOME'),
99
'.sage'))
1010

11-
# Override to not pick up user configuration, see Trac #20270
11+
# Override to not pick up user configuration, see Issue #20270
1212
os.environ['SAGE_STARTUP_FILE'] = os.path.join(DOT_SAGE, 'init-doctests.sage')
1313

1414

@@ -141,7 +141,7 @@ if __name__ == "__main__":
141141
sys.exit(2)
142142

143143
# Limit the number of threads to 2 to save system resources.
144-
# See Trac #23713, #23892, #30351
144+
# See Issue #23713, #23892, #30351
145145
if sys.platform == 'darwin':
146146
os.environ["OMP_NUM_THREADS"] = "1"
147147
else:
@@ -153,7 +153,7 @@ if __name__ == "__main__":
153153
DC = DocTestController(args, args.filenames)
154154
err = DC.run()
155155

156-
# Trac #33521: Do not run pytest if the pytest configuration is not available.
156+
# Issue #33521: Do not run pytest if the pytest configuration is not available.
157157
# This happens when the source tree is not available and SAGE_SRC falls back
158158
# to SAGE_LIB.
159159
from sage.env import SAGE_SRC

src/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from _pytest.pathlib import import_path, ImportMode
2626

2727
# Import sage.all is necessary to:
28-
# - avoid cyclic import errors, see Trac #33580
28+
# - avoid cyclic import errors, see Issue #33580
2929
# - inject it into globals namespace for doctests
3030
import sage.all
3131
from sage.doctest.parsing import SageDocTestParser, SageOutputChecker

src/doc/en/developer/advanced_git.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Advanced Git
1111
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1212
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1313
the transition, some parts of this guide (especially those related with `the
14-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
15-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
14+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
15+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1616
GitHub
1717
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1818
for the preliminary version of the workflow.

src/doc/en/developer/git_trac.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
.. _chapter-git_trac:
44

55
====================================
6-
Optional: Using the Git-Trac Command
6+
Optional: Using the Git-Issue Command
77
====================================
88

99
.. WARNING::
1010

1111
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1212
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1313
the transition, some parts of this guide (especially those related with `the
14-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
15-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
14+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
15+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1616
GitHub
1717
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1818
for the preliminary version of the workflow.
@@ -25,7 +25,7 @@ perform every development task with just git and a web browser.
2525

2626
.. _section-git_trac-install:
2727

28-
Installing the Git-Trac Command
28+
Installing the Git-Issue Command
2929
===============================
3030

3131
::
@@ -58,7 +58,7 @@ there whenever you need to update the ``git-trac`` command.
5858

5959
.. _section-git_trac-setup:
6060

61-
Git and Trac Configuration
61+
Git and Issue Configuration
6262
==========================
6363

6464
.. NOTE::
@@ -75,7 +75,7 @@ authentication mechanism is needed. To set up ``git trac``, first go
7575
to the Sage directory and tell ``git trac`` about your trac account::
7676

7777
[user@localhost sage]$ git trac config --user USERNAME --pass 'PASSWORD'
78-
Trac xmlrpc URL:
78+
Issue xmlrpc URL:
7979
https://trac.sagemath.org/xmlrpc (anonymous)
8080
https://trac.sagemath.org/login/xmlrpc (authenticated)
8181
realm sage.math.washington.edu
@@ -98,8 +98,8 @@ a generated token by passing ``--token=<token>`` instead of ``--pass``::
9898

9999
[user@localhost sage]$ git trac config --user=<username> --token=<token>
100100

101-
This is required if you authenticate to Trac with your GitHub account, as
102-
you do not have a Trac password. Logged in users can find their token
101+
This is required if you authenticate to Issue with your GitHub account, as
102+
you do not have a Issue password. Logged in users can find their token
103103
under :trac:`the token tab in preferences on the trac site <prefs/token>`.
104104

105105
.. NOTE::
@@ -142,7 +142,7 @@ secured with SSH keys, which you must have set up as in
142142
fetch url and does not require SSH.
143143

144144

145-
Trac Tickets and Git Branches
145+
Issue Tickets and Git Branches
146146
=============================
147147

148148
Now let's start adding code to Sage!
@@ -191,7 +191,7 @@ local branch to make your edits, you would just run::
191191

192192
[user@localhost sage]$ git trac checkout 12345
193193
Loading ticket #12345...
194-
Checking out Trac #13744 remote branch u/user/last_twin_prime -> local branch t/12345/last_twin_prime...
194+
Checking out Issue #13744 remote branch u/user/last_twin_prime -> local branch t/12345/last_twin_prime...
195195

196196
The ``git trac checkout`` command downloads an existing branch (as
197197
specified in the "Branch:" field on the trac ticket) or creates a new
@@ -250,7 +250,7 @@ someone and want to share your changes "up until now". This is simply
250250
done by::
251251

252252
[user@localhost sage]$ git trac push
253-
Pushing to Trac #12345...
253+
Pushing to Issue #12345...
254254
Guessed remote branch: u/user/last_twin_prime
255255

256256
To git@trac.sagemath.org:sage.git

src/doc/en/developer/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Welcome to the Sage Developer's Guide!
99
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1010
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1111
the transition, some parts of this guide (especially those related with `the
12-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
13-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
12+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
13+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1414
GitHub
1515
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1616
for the preliminary version of the workflow.
@@ -35,7 +35,7 @@ Here are brief overviews of each part; for more details, see the extended table
3535
of contents below. No matter where you start, good luck and welcome to Sage
3636
development!
3737

38-
- **Trac server:** all changes go through `the Sage Trac server
38+
- **Issue server:** all changes go through `the Sage Issue server
3939
<https://trac.sagemath.org>`_ at some point. It contains bug reports, upgrade
4040
requests, changes in progress, and those already part of Sage
4141
today. :ref:`Click here <chapter-sage-trac>` for more information.
@@ -74,7 +74,7 @@ development!
7474
- :ref:`How to configure it for use with Trac? <section-git-setup-name>`
7575
- :ref:`Here is <chapter-walkthrough>` an overview of our development flow.
7676

77-
Git and Trac for Sage development
77+
Git and Issue for Sage development
7878
=================================
7979

8080
First Steps with Git

src/doc/en/developer/manual_git.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
.. _chapter-manual-git:
44

55
===================================
6-
Using Git with the Sage Trac Server
6+
Using Git with the Sage Issue Server
77
===================================
88

99
.. WARNING::
1010

1111
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1212
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1313
the transition, some parts of this guide (especially those related with `the
14-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
15-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
14+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
15+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1616
GitHub
1717
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1818
for the preliminary version of the workflow.
@@ -102,7 +102,7 @@ passphrase empty to be able to login without any human intervention.
102102

103103
.. _section-trac-ssh-key:
104104

105-
Linking your Public Key to your Trac Account
105+
Linking your Public Key to your Issue Account
106106
--------------------------------------------
107107

108108
In order to push your code directly to a branch on the git repository
@@ -199,7 +199,7 @@ changes and ``git push`` to upload your local changes using::
199199

200200
Note that write operations (``push``) use the ssh protocol (specified by the ``git@``
201201
part). For this to work, you need to have a trac account and to set up your ssh public
202-
key as described in `Trac authentication through ssh
202+
key as described in `Issue authentication through ssh
203203
<http://doc.sagemath.org/html/en/developer/trac.html#trac-authentication-through-ssh>`_.
204204
Authentication is necessary if you want to upload anything to ensure
205205
that it really is from you.

src/doc/en/developer/packaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ The comments may include links to Github issues, as in the following example:
628628
629629
$ cat build/pkgs/packaging/install-requires.txt
630630
packaging >=18.0
631-
# Trac #30975: packaging 20.5 is known to work but we have to silence "DeprecationWarning: Creating a LegacyVersion"
631+
# Issue #30975: packaging 20.5 is known to work but we have to silence "DeprecationWarning: Creating a LegacyVersion"
632632
633633
The currently encoded version constraints are merely a starting point.
634634
Developers and downstream packagers are invited to refine the version
@@ -1079,7 +1079,7 @@ For Python packages available from PyPI, there is another shortcut::
10791079
[...............................................................]
10801080
10811081
The ``upstream_url`` information serves yet another purpose.
1082-
Developers who wish to test a package update from a Trac branch before
1082+
Developers who wish to test a package update from a Issue branch before
10831083
the archive is available on a Sage mirror can do so by configuring
10841084
their Sage tree using ``./configure
10851085
--enable-download-from-upstream-url``. Then Sage will fall back to

src/doc/en/developer/reviewer_checklist.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ The reviewer's check list
1111
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1212
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1313
the transition, some parts of this guide (especially those related with `the
14-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
15-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
14+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
15+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1616
GitHub
1717
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1818
for the preliminary version of the workflow.
@@ -133,6 +133,6 @@ For more advice on reviewing, see [WSblog]_.
133133

134134
REFERENCES:
135135

136-
.. [WSblog] William Stein, How to Referee Sage Trac Tickets,
136+
.. [WSblog] William Stein, How to Referee Sage Issue Tickets,
137137
http://sagemath.blogspot.com/2010/10/how-to-referee-sage-trac-tickets.html
138138
(Caveat: mercurial was replaced with git)

src/doc/en/developer/sage_manuals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ by Sage, you can link toward it without specifying its full path:
107107
:widths: 4 4 4
108108
:header-rows: 0
109109

110-
* - Trac server
110+
* - Issue server
111111
- ``:trac:`17596```
112112
- :trac:`17596`
113113

src/doc/en/developer/trac.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
.. _chapter-sage-trac:
44

55
====================
6-
The Sage Trac Server
6+
The Sage Issue Server
77
====================
88

99
.. WARNING::
1010

1111
**Sage development is scheduled to move to GitHub in February 2023.** The exact
1212
date will be announced in `<https://groups.google.com/g/sage-devel>`_. After
1313
the transition, some parts of this guide (especially those related with `the
14-
Sage Trac server <https://trac.sagemath.org>`_) will become obsolete and be
15-
updated according to the new workflow on GitHub. See our `transition guide from Trac to
14+
Sage Issue server <https://trac.sagemath.org>`_) will become obsolete and be
15+
updated according to the new workflow on GitHub. See our `transition guide from Issue to
1616
GitHub
1717
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md>`_
1818
for the preliminary version of the workflow.
@@ -22,7 +22,7 @@ your own private needs. However, typically it is beneficial to
2222
share code and ideas with others; the manner in which the
2323
`Sage project <https://www.sagemath.org>`_ does this (as well as fixing
2424
bugs and upgrading components) is in a very collaborative and
25-
public setting on `the Sage Trac server <https://trac.sagemath.org>`_
25+
public setting on `the Sage Issue server <https://trac.sagemath.org>`_
2626
(the Sage bug and enhancement tracker).
2727

2828
The purpose of the Sage trac server is to
@@ -47,7 +47,7 @@ the :trac:`Sage trac timeline <timeline>`.
4747
.. WARNING::
4848

4949
**Sage development is scheduled to move to GitHub in February 2023.**
50-
All functions of our Trac server will be taken over by our main repository,
50+
All functions of our Issue server will be taken over by our main repository,
5151
https://github.com/sagemath/sage.
5252

5353

@@ -173,7 +173,7 @@ of fields that can be changed. Here is a comprehensive overview (for the
173173
* **Reported by:** The trac account name of whoever created the
174174
ticket. Cannot be changed.
175175

176-
* **Owned by:** Trac account name of owner, by default the person in charge of
176+
* **Owned by:** Issue account name of owner, by default the person in charge of
177177
the Component (see below). Generally not used in the Sage trac.
178178

179179
* **Type:** One of ``enhancement`` (e.g. a new feature), ``defect`` (e.g. a bug

0 commit comments

Comments
 (0)