Skip to content

Commit 929a8c3

Browse files
authored
link to svn:dist, not any svn (#650)
1 parent 81b4f61 commit 929a8c3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

atr/get/upload.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ async def selected(session: web.Committer, project_name: str, version_name: str)
9494
block.append(htpy.div("#upload-progress-container.d-none"))
9595

9696
block.h2(id="svn-upload")["SVN upload"]
97-
block.p["Import files from this project's ASF Subversion repository into this draft."]
97+
block.p[
98+
"Import files from this committee's ASF ",
99+
htm.a(href="https://dist.apache.org/repos/dist/")[htm.code["svn:dist"]],
100+
" repository into this draft.",
101+
]
98102
block.p[
99103
"The import will be processed in the background using the ",
100104
htm.code["svn export"],

atr/shared/upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ def validate_file_name_with_files(cls, value: form.Filename, info: pydantic.Vali
5757
class SvnImportForm(form.Form):
5858
variant: SVN_IMPORT = form.value(SVN_IMPORT)
5959
svn_area: form.Enum[SvnArea] = form.label(
60-
"SVN area",
60+
"svn:dist area",
6161
"Select whether to import from dev or release.",
6262
widget=form.Widget.RADIO,
6363
)
6464
svn_path: form.URLPath = form.label(
6565
"SVN path",
66-
"Path within the project's SVN directory, e.g. 'java-library/4_0_4' or '3.1.5rc1'.",
66+
"Path within the committee's svn:dist directory, e.g. 'java-library/4_0_4' or '3.1.5rc1'.",
6767
)
6868
revision: str = form.label(
6969
"Revision",

0 commit comments

Comments
 (0)