Uh oh!
There was an error while loading. Please reload this page.
docs/reference: modernize contents for getting uploader rights - #95
docs/reference: modernize contents for getting uploader rights#95liushuyu wants to merge 2 commits into
Conversation
73e5414 to
694ccaeCompare| .. _ubuntu-kernel-dkms-uploaders: https://launchpad.net/~ubuntu-kernel-dkms-uploaders | ||
| .. _MOTU: https://wiki.ubuntu.com/UbuntuDevelopers#MOTU | ||
| .. _Ubuntu Core Developer: https://wiki.ubuntu.com/UbuntuDevelopers#CoreDev | ||
| .. _MOTU: https://documentation.ubuntu.com/project/who-makes-ubuntu/developers/dmb-joining-MOTU/#dmb-joining-motu |
There was a problem hiding this comment.
The Ubuntu Project docs is also a Sphinx project; so I strongly suggest replacing these links as ref or doc (and not 'regular' Markdown links) and referencing them with intersphinx.
Reason being these ref or doc links will fail when you run make run or make html without having to use the make linkcheck target.
So in conf.py, add this somewhere towards the end of the file
intersphinx_mapping = {
"ubuntu-project-docs": ("https://documentation.ubuntu.com/project/", None),
}
Then in the files that link to these external Sphinx sites, use the ref or doc directive to link.
{doc}`MOTU <ubuntu-project-docs:who-makes-ubuntu/developers/dmb-joining-MOTU>`
Same comment for other links to the Ubuntu Project documentation.
| An example application can also be seen at the following: | ||
| https://wiki.ubuntu.com/LuisHenriques/PerPackageUploaderApplication | ||
| https://github.com/ubuntu/wiki-archives/blob/2831413ef2d929fe020ff33b6bf3cdaa78dd40db/UbuntuWiki/L/LuisHenriques-PerPackageUploaderApplication.wiki |
There was a problem hiding this comment.
Thanks for this!
As you suggested, we may want to keep a sampling of good applications within our own repo as well.
Signed-off-by: Zixing Liu <zixing.liu@canonical.com>
GitHub repository Signed-off-by: Zixing Liu <zixing.liu@canonical.com>
694ccae to
f9d1bd3Compare
This pull request updates documentation links for kernel upload rights and DKMS upload rights application processes. The main changes are updating outdated wiki links to new documentation and discourse pages, and adding example application references from the old wiki to clarify how to use the templates.