Skip to content

Commit 81f4e32

Browse files
committed
Update for new issue queue
1 parent c04b1f6 commit 81f4e32

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<!-- ALL PRs MUST BE RELATED TO AN OPEN ISSUE -->
2-
closes #
1+
<!-- If this PR is related to an open issue -->
2+
closes odk-x/tool-suite-X#
33
<!-- OR -->
4-
addresses #
4+
addresses odk-x/tool-suite-X#
55

66

77
#### What is included in this PR?

README.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ The published documentation is at:
88

99
- https://docs.odk-x.org/
1010

11-
Please [file an issue](https://github.com/odk-x/docs/issues) if you can't find what you are looking for.
11+
Please [file an issue](https://github.com/odk-x/tool-suite-X/issues) if you can't find what you are looking for.
1212

1313
## Building and viewing documentation locally
1414

1515
There are two options for building and viewing ODK-X docs locally: [using Docker](#docker) or [setting up a local Python/Sphinx environment](#python-environment). We generally recommend starting with the Docker image unless you already have a Sphinx environment set up. The [Contributor Guide](https://docs.odk-x.org/contributing) describes the philosophy behind the docs, style considerations, how to write restructured text and more.
1616

1717
## <a name="docker"></a>Using Docker
1818

19-
[Docker](https://www.docker.com/) is a platform that makes it easier to package applications so that they can work on any computer. This is particularly valuable when setting up development environments which can work very differently based on versions of the tools involved.
19+
[Docker](https://www.docker.com/) is a platform that makes it easier to package applications so that they can work on any computer. This is particularly valuable when setting up development environments which can work very differently based on versions of the tools involved.
2020

2121
### Prerequisites
2222
* Install Docker
2323
* Windows and Mac users should follow the instructions in [the get started guide](https://www.docker.com/get-started)
2424
* Linux users should follow the instructions for their specific distribution: [CentOS](https://docs.docker.com/install/linux/docker-ce/centos/), [Debian](https://docs.docker.com/install/linux/docker-ce/debian/), [Fedora](https://docs.docker.com/install/linux/docker-ce/fedora/), [Ubuntu](https://docs.docker.com/install/linux/docker-ce/ubuntu/), [Binaries](https://docs.docker.com/install/linux/docker-ce/binaries/)
25-
25+
2626
More info at the [Docker CE docs page](https://docs.docker.com/install/)
2727
* Install [git](https://git-scm.com/downloads)
2828
* Install [Git-LFS](https://git-lfs.github.com/)
@@ -51,12 +51,12 @@ It can take a long time to build the Docker image, but you only need to do this
5151
* All commands should be run in an elevated PowerShell window. Right click on PowerShell and select the "Run as administrator" option.
5252
* Ensure Docker is running by checking your system tray. If Docker is not running, launch "Docker for Windows" app and wait until a notification confirms that Docker is running.
5353

54-
### Building and serving the docs locally
54+
### Building and serving the docs locally
5555

5656
Build and serve the docs locally with:
5757
* Windows: `.\run-task.bat odkx-autobuild`
5858
* Linux/macOS: `./run-task.sh odkx-autobuild`
59-
59+
6060
Once your terminal shows a "Serving on http://0.0.0.0:8080" message, you can then view the docs in your browser at http://localhost:8080.
6161

6262
Changes you make in the source files will automatically be built and shown in your browser.
@@ -69,7 +69,7 @@ If you get a `The name "odkx-docs" is already in use by container` error message
6969
docker kill odkx-docs
7070
```
7171

72-
### Other build tasks
72+
### Other build tasks
7373

7474
You can also use the `run-task` script described above to run just a portion of the build process. See available [build tasks](#tasks) below.
7575

@@ -80,7 +80,7 @@ You can also use the `run-task` script described above to run just a portion of
8080
* Install [Python 3](https://www.python.org/downloads/)
8181
* Install [git](https://git-scm.com/downloads)
8282
* Install [Git-LFS](https://git-lfs.github.com/)
83-
83+
8484
We highly recommend you use a virtual environment like [virtualenv](https://virtualenv.pypa.io/en/stable/) or a Python version management like [pyenv](https://github.com/pyenv/pyenv). (Type `python --version` to see your current version.)
8585

8686
- Instructions for setting up virtual environment:
@@ -93,23 +93,23 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
9393

9494
#. Create a directory called 'odkx'
9595
Create a directory for the documents. For the purposes of these directions we will use the folder 'odkx' as the directory that will contain the ODK-X Docs environment.
96-
96+
9797

9898
mkdir odkx
99-
100-
101-
Next, navigate the command line interface to inside the directory.
102-
103-
104-
cd odkx
99+
100+
101+
Next, navigate the command line interface to inside the directory.
102+
103+
104+
cd odkx
105105

106106

107107
#. Create the virtual environment.
108108

109109

110-
110+
111111
Next create the virtual environment inside the 'odkx' directory.
112-
112+
113113
Bash
114114

115115
/odkx/ $ python3 -m venv odkxenv
@@ -121,18 +121,18 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
121121
#. Activate the virtual environment.
122122

123123
Bash
124-
124+
125125
/odkx/ $ source odkxenv/bin/activate
126126
(odkxenv) /odkx/ $
127127

128128
PowerShell
129-
129+
130130
/odkx/ > source odkxenv/bin/activate
131131
(odkxenv) /odkx/ >
132132

133133
The ``(odkxenv)`` before the prompt shows that the virtual environment is active.
134134
You will need to have this active any time you are working on the docs.
135-
135+
136136
If the file cannot be found, your activate file may be located under odkxenv/scripts/activate.
137137

138138
Later, to deactivate the virtual environment:
@@ -146,7 +146,7 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
146146

147147
(odkxenv) /odkx/ > deactivate
148148
/odkx/ >
149-
149+
150150

151151
### Cloning the repo
152152

@@ -160,7 +160,7 @@ $ pip install -r requirements.txt
160160

161161
It can take a long time (>10 minutes) to clone the repo due to the large number of images in the docs. If you get an error such as `Smudge error` or `GitHub's rate limit reached`, run `git checkout -f HEAD` until you get the message `Checking out files: 100% done`.
162162

163-
### Building the docs
163+
### Building the docs
164164

165165
Once your environment is set up, build and serve the docs locally with:
166166

@@ -187,13 +187,13 @@ We are open for new issues and pull requests.
187187

188188
- Please read the [Contributors Guide](https://docs.odk-x.org/contributing) before working on the documentation.
189189
- Find issues to work on.
190-
- Issues labelled [easy](https://github.com/odk-x/docs/labels/easy) do not require much specific technical knowledge.
191-
- Issues labelled [contributor friendly](https://github.com/odk-x/docs/labels/contributor%20friendly) are usually self-contained and don't require extensive knowledge of the ODK-X ecosystem as a whole.
192-
190+
- Issues labelled [easy win](https://github.com/odk-x/tool-suite-X/labels/easy%20win) do not require much specific technical knowledge.
191+
- Issues labelled [contributor friendly](https://github.com/odk-x/tool-suite-X/labels/contributor%20friendly) are usually self-contained and don't require extensive knowledge of the ODK-X ecosystem as a whole.
192+
193193
You can also...
194194

195195
- [Discuss the documentation from a user perspective in our forum](https://forum.odk-x.org/c/development/documentation).
196-
- [File an issue](https://github.com/odk-x/docs/issues) for any needed improvements.
196+
- [File an issue](https://github.com/odk-x/tool-suite-X/issues) for any needed improvements.
197197
- [Watch](https://github.com/odk-x/docs/subscription) and star this repo, to keep up with what we're doing.
198198

199199
## Troubleshooting

odkx-src/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def setup(app):
297297
"""
298298
file_issue_here = """
299299
300-
https://github.com/odk-x/docs/issues
300+
https://github.com/odk-x/tool-suite-X/issues
301301
302302
"""
303303
contri_start = """
@@ -349,7 +349,7 @@ def setup(app):
349349
rst_epilog = """
350350
351351
.. |docs-issue| replace:: issue
352-
.. _docs-issue: https://github.com/odk-x/docs/issues
352+
.. _docs-issue: https://github.com/odk-x/tool-suite-X/issues
353353
354354
.. |forum| replace:: ODK-X Forum
355355
.. _forum: https://forum.odk-x.org

odkx-src/docs-tech-guide.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ Working on the docs
887887
Often, other contributors can provide additional context
888888
about why a particular solution may or may not work.
889889

890-
.. _issue tracker: https://github.com/odk-x/docs/issues
890+
.. _issue tracker: https://github.com/odk-x/tool-suite-X/issues
891891

892892
.. admonition:: Your first issue
893893

@@ -1472,7 +1472,7 @@ Here are a few things to keep in mind when you start your next contribution.
14721472
#. Find a `new issue to work on`_.
14731473
#. `Start a new branch for your work <git-branch-the-docs>`_ with :command:`git checkout -b branch-name`.
14741474

1475-
.. _new issue to work on: https://github.com/odk-x/docs/issues/
1475+
.. _new issue to work on: https://github.com/odk-x/tool-suite-X/issues/
14761476

14771477
.. _keep-improving:
14781478

0 commit comments

Comments
 (0)