├── .github ├── dependabot.yml └── workflows │ ├── cd.yaml │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── Jenkinsfile ├── README.md ├── docs ├── images │ └── logger.png └── old-changelog.md ├── pom.xml └── src ├── main ├── java │ ├── hudson │ │ └── scm │ │ │ ├── CompareAgainstBaselineCallable.java │ │ │ ├── CredentialsSVNAuthenticationProviderImpl.java │ │ │ ├── DefaultSVNLogFilter.java │ │ │ ├── DirAwareSVNXMLLogHandler.java │ │ │ ├── EnvVarsUtils.java │ │ │ ├── FilterSVNAuthenticationManager.java │ │ │ ├── NullSVNLogFilter.java │ │ │ ├── PerJobCredentialStore.java │ │ │ ├── RevisionParameterAction.java │ │ │ ├── SVNAuthStoreHandlerImpl.java │ │ │ ├── SVNAuthenticationManager.java │ │ │ ├── SVNLogFilter.java │ │ │ ├── SVNRevisionState.java │ │ │ ├── SubversionChangeLogBuilder.java │ │ │ ├── SubversionChangeLogParser.java │ │ │ ├── SubversionChangeLogSet.java │ │ │ ├── SubversionCredentialProvider.java │ │ │ ├── SubversionEventHandlerImpl.java │ │ │ ├── SubversionRepositoryBrowser.java │ │ │ ├── SubversionRepositoryStatus.java │ │ │ ├── SubversionSCM.java │ │ │ ├── SubversionStatus.java │ │ │ ├── SubversionTagAction.java │ │ │ ├── SubversionWorkspaceSelector.java │ │ │ ├── SvnClientManager.java │ │ │ ├── SvnExternalsFileManager.java │ │ │ ├── UserProvidedCredential.java │ │ │ ├── browsers │ │ │ ├── AbstractSventon.java │ │ │ ├── Assembla.java │ │ │ ├── CollabNetSVN.java │ │ │ ├── FishEyeSVN.java │ │ │ ├── Phabricator.java │ │ │ ├── SVNWeb.java │ │ │ ├── Sventon.java │ │ │ ├── Sventon2.java │ │ │ ├── ViewSVN.java │ │ │ ├── VisualSVN.java │ │ │ └── WebSVN.java │ │ │ ├── listtagsparameter │ │ │ ├── ListSubversionTagsParameterDefinition.java │ │ │ ├── ListSubversionTagsParameterValue.java │ │ │ └── SimpleSVNDirEntryHandler.java │ │ │ └── subversion │ │ │ ├── CheckoutUpdater.java │ │ │ ├── NoopUpdater.java │ │ │ ├── SubversionUpdateEventHandler.java │ │ │ ├── SvnHelper.java │ │ │ ├── UpdateUpdater.java │ │ │ ├── UpdateWithCleanUpdater.java │ │ │ ├── UpdateWithRevertUpdater.java │ │ │ ├── UpdaterException.java │ │ │ ├── WorkspaceUpdater.java │ │ │ └── WorkspaceUpdaterDescriptor.java │ └── jenkins │ │ └── scm │ │ └── impl │ │ └── subversion │ │ ├── RemotableSVNErrorMessage.java │ │ ├── SVNRepositoryView.java │ │ ├── SubversionSCMFile.java │ │ ├── SubversionSCMFileSystem.java │ │ ├── SubversionSCMSource.java │ │ └── SubversionStep.java ├── resources │ ├── META-INF │ │ └── hudson.remoting.ClassFilter │ ├── hudson │ │ └── scm │ │ │ ├── SubversionChangeLogSet │ │ │ ├── digest.jelly │ │ │ ├── digest_de.properties │ │ │ ├── digest_es.properties │ │ │ ├── digest_es_ES.properties │ │ │ ├── digest_fi.properties │ │ │ ├── digest_fr.properties │ │ │ ├── digest_it.properties │ │ │ ├── digest_ja.properties │ │ │ ├── digest_nl.properties │ │ │ ├── digest_pt_BR.properties │ │ │ ├── digest_ru.properties │ │ │ ├── digest_sl.properties │ │ │ ├── digest_sv_SE.properties │ │ │ ├── digest_tr.properties │ │ │ ├── digest_zh_TW.properties │ │ │ ├── index.jelly │ │ │ ├── index_de.properties │ │ │ ├── index_el.properties │ │ │ ├── index_es.properties │ │ │ ├── index_fr.properties │ │ │ ├── index_ja.properties │ │ │ ├── index_nl.properties │ │ │ ├── index_pt_BR.properties │ │ │ ├── index_ru.properties │ │ │ ├── index_sv_SE.properties │ │ │ ├── index_tr.properties │ │ │ └── index_zh_TW.properties │ │ │ ├── SubversionMailAddressResolverImpl │ │ │ ├── global.jelly │ │ │ ├── global_fr.properties │ │ │ └── global_zh_TW.properties │ │ │ ├── SubversionSCM │ │ │ ├── AdditionalCredentials │ │ │ │ ├── config.jelly │ │ │ │ ├── help-credentialsId.html │ │ │ │ └── help-realm.html │ │ │ ├── DescriptorImpl │ │ │ │ ├── credential-ok.js │ │ │ │ ├── credentialOK.jelly │ │ │ │ ├── credentialOK_de.properties │ │ │ │ ├── credentialOK_es.properties │ │ │ │ ├── credentialOK_fr.properties │ │ │ │ ├── credentialOK_ja.properties │ │ │ │ ├── credentialOK_zh_TW.properties │ │ │ │ ├── enterCredential.jelly │ │ │ │ ├── enterCredential.properties │ │ │ │ ├── enterCredential_de.properties │ │ │ │ ├── enterCredential_es.properties │ │ │ │ ├── enterCredential_fr.properties │ │ │ │ ├── enterCredential_ja.properties │ │ │ │ ├── enterCredential_zh_TW.properties │ │ │ │ ├── url-help.jelly │ │ │ │ ├── url-help.properties │ │ │ │ ├── url-help_de.properties │ │ │ │ ├── url-help_es.properties │ │ │ │ ├── url-help_fr.properties │ │ │ │ ├── url-help_ja.properties │ │ │ │ └── url-help_zh_TW.properties │ │ │ ├── ModuleLocation │ │ │ │ ├── config.jelly │ │ │ │ ├── help-cancelProcessOnExternalsFail.html │ │ │ │ ├── help-depthOption.html │ │ │ │ ├── help-depthOption_de.html │ │ │ │ ├── help-depthOption_zh_TW.html │ │ │ │ ├── help-ignoreExternalsOption.html │ │ │ │ ├── help-ignoreExternalsOption_de.html │ │ │ │ ├── help-ignoreExternalsOption_zh_TW.html │ │ │ │ ├── help-local.html │ │ │ │ ├── help-local_de.html │ │ │ │ ├── help-local_fr.html │ │ │ │ ├── help-local_ja.html │ │ │ │ ├── help-local_pt_BR.html │ │ │ │ ├── help-local_ru.html │ │ │ │ ├── help-local_tr.html │ │ │ │ └── help-local_zh_TW.html │ │ │ ├── buildEnv.groovy │ │ │ ├── buildEnv.properties │ │ │ ├── buildEnv_de.properties │ │ │ ├── buildEnv_zh_TW.properties │ │ │ ├── config.jelly │ │ │ ├── config_de.properties │ │ │ ├── config_es.properties │ │ │ ├── config_fr.properties │ │ │ ├── config_ja.properties │ │ │ ├── config_nl.properties │ │ │ ├── config_pt_BR.properties │ │ │ ├── config_ru.properties │ │ │ ├── config_tr.properties │ │ │ ├── config_zh_TW.properties │ │ │ ├── excludedRevprop-validation.js │ │ │ ├── global.jelly │ │ │ ├── global_de.properties │ │ │ ├── global_es.properties │ │ │ ├── global_fr.properties │ │ │ ├── global_ja.properties │ │ │ ├── global_nl.properties │ │ │ ├── global_ru.properties │ │ │ ├── global_zh_TW.properties │ │ │ ├── help-additionalCredentials.html │ │ │ ├── help-excludedCommitMessages.html │ │ │ ├── help-excludedCommitMessages_de.html │ │ │ ├── help-excludedCommitMessages_ja.html │ │ │ ├── help-excludedCommitMessages_zh_TW.html │ │ │ ├── help-excludedRegions.html │ │ │ ├── help-excludedRegions_de.html │ │ │ ├── help-excludedRegions_fr.html │ │ │ ├── help-excludedRegions_ja.html │ │ │ ├── help-excludedRegions_zh_TW.html │ │ │ ├── help-excludedRevprop.html │ │ │ ├── help-excludedRevprop_de.html │ │ │ ├── help-excludedRevprop_ja.html │ │ │ ├── help-excludedRevprop_zh_TW.html │ │ │ ├── help-excludedUsers.html │ │ │ ├── help-excludedUsers_de.html │ │ │ ├── help-excludedUsers_ja.html │ │ │ ├── help-excludedUsers_zh_TW.html │ │ │ ├── help-filterChangelog.html │ │ │ ├── help-filterChangelog_zh_TW.html │ │ │ ├── help-ignoreDirPropChanges.html │ │ │ ├── help-ignoreDirPropChanges_zh_TW.html │ │ │ ├── help-includedRegions.html │ │ │ ├── help-includedRegions_de.html │ │ │ ├── help-includedRegions_ja.html │ │ │ ├── help-includedRegions_zh_TW.html │ │ │ ├── help-quietOperation.html │ │ │ ├── help-quietOperation_zh_TW.html │ │ │ ├── help-storeAuthToDisk.html │ │ │ ├── help-storeAuthToDisk_de.html │ │ │ ├── help-workspaceFormat.html │ │ │ ├── help-workspaceFormat_de.html │ │ │ ├── help-workspaceFormat_ja.html │ │ │ ├── help-workspaceFormat_zh_TW.html │ │ │ ├── help.html │ │ │ ├── help_de.html │ │ │ ├── help_ja.html │ │ │ └── help_zh_TW.html │ │ │ ├── SubversionTagAction │ │ │ ├── help-credential.html │ │ │ ├── help-credential_de.html │ │ │ ├── help-credential_ja.html │ │ │ ├── help-credential_zh_TW.html │ │ │ ├── svn-tagform-update-row.js │ │ │ ├── tagForm.jelly │ │ │ ├── tagForm_de.properties │ │ │ ├── tagForm_es.properties │ │ │ ├── tagForm_fr.properties │ │ │ ├── tagForm_ja.properties │ │ │ ├── tagForm_nl.properties │ │ │ ├── tagForm_pt_BR.properties │ │ │ ├── tagForm_ru.properties │ │ │ ├── tagForm_tr.properties │ │ │ └── tagForm_zh_TW.properties │ │ │ ├── browsers │ │ │ ├── AbstractSventon │ │ │ │ ├── config.jelly │ │ │ │ ├── config_de.properties │ │ │ │ ├── config_es.properties │ │ │ │ ├── config_fr.properties │ │ │ │ ├── config_ja.properties │ │ │ │ ├── config_nl.properties │ │ │ │ ├── config_zh_TW.properties │ │ │ │ ├── help-repositoryInstance.html │ │ │ │ ├── help-repositoryInstance_de.html │ │ │ │ ├── help-repositoryInstance_fr.html │ │ │ │ ├── help-repositoryInstance_ja.html │ │ │ │ ├── help-repositoryInstance_nl.html │ │ │ │ ├── help-repositoryInstance_pt_BR.html │ │ │ │ ├── help-repositoryInstance_ru.html │ │ │ │ ├── help-repositoryInstance_tr.html │ │ │ │ ├── help-repositoryInstance_zh_TW.html │ │ │ │ ├── help-url.html │ │ │ │ ├── help-url_de.html │ │ │ │ ├── help-url_fr.html │ │ │ │ ├── help-url_ja.html │ │ │ │ ├── help-url_pt_BR.html │ │ │ │ ├── help-url_ru.html │ │ │ │ ├── help-url_tr.html │ │ │ │ └── help-url_zh_TW.html │ │ │ ├── Assembla │ │ │ │ └── config.jelly │ │ │ ├── CollabNetSVN │ │ │ │ ├── config.jelly │ │ │ │ ├── help-url.html │ │ │ │ ├── help-url_de.html │ │ │ │ ├── help-url_fr.html │ │ │ │ ├── help-url_ja.html │ │ │ │ ├── help-url_pt_BR.html │ │ │ │ ├── help-url_ru.html │ │ │ │ ├── help-url_tr.html │ │ │ │ └── help-url_zh_TW.html │ │ │ ├── FishEyeSVN │ │ │ │ ├── config.jelly │ │ │ │ ├── config_de.properties │ │ │ │ ├── config_es.properties │ │ │ │ ├── config_fr.properties │ │ │ │ ├── config_ja.properties │ │ │ │ ├── config_zh_TW.properties │ │ │ │ ├── help-rootModule.html │ │ │ │ ├── help-rootModule_de.html │ │ │ │ ├── help-rootModule_fr.html │ │ │ │ ├── help-rootModule_ja.html │ │ │ │ ├── help-rootModule_pt_BR.html │ │ │ │ ├── help-rootModule_ru.html │ │ │ │ ├── help-rootModule_tr.html │ │ │ │ ├── help-rootModule_zh_TW.html │ │ │ │ ├── help-url.html │ │ │ │ ├── help-url_de.html │ │ │ │ ├── help-url_fr.html │ │ │ │ ├── help-url_ja.html │ │ │ │ ├── help-url_pt_BR.html │ │ │ │ ├── help-url_ru.html │ │ │ │ ├── help-url_tr.html │ │ │ │ └── help-url_zh_TW.html │ │ │ ├── Phabricator │ │ │ │ └── config.jelly │ │ │ ├── SVNWeb │ │ │ │ └── config.jelly │ │ │ ├── ViewSVN │ │ │ │ ├── config.jelly │ │ │ │ ├── help-url.html │ │ │ │ ├── help-url_de.html │ │ │ │ ├── help-url_fr.html │ │ │ │ ├── help-url_ja.html │ │ │ │ ├── help-url_pt_BR.html │ │ │ │ ├── help-url_ru.html │ │ │ │ ├── help-url_tr.html │ │ │ │ └── help-url_zh_TW.html │ │ │ ├── VisualSVN │ │ │ │ ├── config.jelly │ │ │ │ └── help-url.html │ │ │ └── WebSVN │ │ │ │ └── config.jelly │ │ │ ├── listtagsparameter │ │ │ ├── ListSubversionTagsParameterDefinition.properties │ │ │ ├── ListSubversionTagsParameterDefinition │ │ │ │ ├── config.jelly │ │ │ │ ├── config_fr.properties │ │ │ │ ├── config_zh_TW.properties │ │ │ │ ├── help-defaultValue.html │ │ │ │ ├── help-defaultValue_zh_TW.html │ │ │ │ ├── help-maxTags.html │ │ │ │ ├── help-maxTags_zh_TW.html │ │ │ │ ├── help-reverseByDate.html │ │ │ │ ├── help-reverseByDate_fr.html │ │ │ │ ├── help-reverseByDate_zh_TW.html │ │ │ │ ├── help-reverseByName.html │ │ │ │ ├── help-reverseByName_fr.html │ │ │ │ ├── help-reverseByName_zh_TW.html │ │ │ │ ├── help-tagsDir.html │ │ │ │ ├── help-tagsDir_zh_TW.html │ │ │ │ ├── help-tagsFilter.html │ │ │ │ ├── help-tagsFilter_zh_TW.html │ │ │ │ ├── help.html │ │ │ │ ├── help_zh_TW.html │ │ │ │ └── index.jelly │ │ │ ├── ListSubversionTagsParameterDefinition_zh_TW.properties │ │ │ └── ListSubversionTagsParameterValue │ │ │ │ ├── value.jelly │ │ │ │ ├── value_fr.properties │ │ │ │ └── value_zh_TW.properties │ │ │ └── subversion │ │ │ ├── CheckoutUpdater │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── config_fr.properties │ │ │ ├── config_ja.properties │ │ │ └── config_zh_TW.properties │ │ │ ├── Messages.properties │ │ │ ├── Messages_de.properties │ │ │ ├── Messages_es.properties │ │ │ ├── Messages_fr.properties │ │ │ ├── Messages_ja.properties │ │ │ ├── Messages_nl.properties │ │ │ ├── Messages_pt_BR.properties │ │ │ ├── Messages_ru.properties │ │ │ ├── Messages_tr.properties │ │ │ ├── Messages_zh_TW.properties │ │ │ ├── NoopUpdater │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ └── sample_noop_svn_config.png │ │ │ ├── UpdateUpdater │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── config_fr.properties │ │ │ ├── config_ja.properties │ │ │ └── config_zh_TW.properties │ │ │ ├── UpdateWithCleanUpdater │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── config_fr.properties │ │ │ ├── config_ja.properties │ │ │ └── config_zh_TW.properties │ │ │ ├── UpdateWithRevertUpdater │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── config_fr.properties │ │ │ ├── config_ja.properties │ │ │ └── config_zh_TW.properties │ │ │ ├── WorkspaceUpdater │ │ │ └── config.jelly │ │ │ ├── enterCredential.jelly │ │ │ ├── enterCredential_de.properties │ │ │ ├── enterCredential_es.properties │ │ │ ├── enterCredential_fr.properties │ │ │ ├── enterCredential_ja.properties │ │ │ ├── enterCredential_ru.properties │ │ │ ├── enterCredential_zh_TW.properties │ │ │ └── taglib │ ├── index.jelly │ └── jenkins │ │ └── scm │ │ └── impl │ │ └── subversion │ │ ├── Messages.properties │ │ ├── SubversionSCMSource │ │ ├── config-detail.jelly │ │ └── resource.js │ │ └── SubversionStep │ │ ├── config.jelly │ │ └── help.html └── webapp │ ├── pass-phrase.html │ ├── pass-phrase_de.html │ ├── pass-phrase_fr.html │ ├── pass-phrase_ja.html │ ├── pass-phrase_pt_BR.html │ ├── pass-phrase_ru.html │ ├── pass-phrase_tr.html │ └── pass-phrase_zh_TW.html └── test ├── java ├── hudson │ └── scm │ │ ├── AbstractSubversionTest.java │ │ ├── CompareAgainstBaselineCallableTest.java │ │ ├── CredentialsExternalsTest.java │ │ ├── DefaultSVNLogFilterTest.java │ │ ├── PerJobCredentialStoreTest.java │ │ ├── SVNWorkingCopyTest.java │ │ ├── SubversionChangeLogParserTest.java │ │ ├── SubversionChangeLogSetTest.java │ │ ├── SubversionChangeLogUtil.java │ │ ├── SubversionEnvInjectTest.java │ │ ├── SubversionEnvVarsTest.java │ │ ├── SubversionRepositoryStatusTest.java │ │ ├── SubversionSCMChangeLogEntryTest.java │ │ ├── SubversionSCMTest.java │ │ ├── SubversionSCMUnitTest.java │ │ ├── SubversionStatusTest.java │ │ ├── SvnHelperTest.java │ │ ├── listtagsparameter │ │ ├── ListSubversionTagsParameterDefinitionTest.java │ │ ├── ListSubversionTagsParameterValueTest.java │ │ └── SimpleSVNDirEntryHandlerTest.java │ │ └── subversion │ │ └── WorkspaceUpdaterTest.java ├── jenkins │ └── scm │ │ └── impl │ │ └── subversion │ │ ├── RemotableSVNErrorMessageStepTest.java │ │ ├── RemotableSVNErrorMessageTest.java │ │ ├── SubversionSCMFileSystemBuilderTest.java │ │ ├── SubversionSCMFileSystemTest.java │ │ ├── SubversionSCMSourceIntegrationTest.java │ │ ├── SubversionSCMSourceTest.java │ │ ├── SubversionSampleRepoRule.java │ │ └── SubversionStepTest.java └── pipeline │ ├── CpsScmFlowDefinitionSubversionTest.java │ ├── LibraryAdderSubversionTest.java │ ├── ReadTrustedStepSubversionTest.java │ ├── SCMBinderSubversionTest.java │ └── SCMSourceRetrieverSubversionTest.java └── resources ├── hudson └── scm │ ├── HUDSON-1379.zip │ ├── HUDSON-6030.zip │ ├── HUDSON-7539.zip │ ├── JENKINS-10449.zip │ ├── JENKINS-16533.zip │ ├── JENKINS-20165.zip │ ├── JENKINS-6209.zip │ ├── JENKINS-777.zip │ ├── changelog_relativepath.xml │ ├── changelog_unsorted.xml │ ├── clean-update-test.zip │ ├── ignoreProps.zip │ ├── legacy-checkout.xml │ ├── legacy-revert.xml │ ├── legacy-update.xml │ ├── listtagsparameter │ └── JENKINS-11933.zip │ ├── small.zip │ └── two-revisions.zip └── svn-repo.zip /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: maven 4 | directory: "/" 5 | schedule: 6 | interval: monthly 7 | target-branch: master 8 | - package-ecosystem: github-actions 9 | directory: / 10 | schedule: 11 | interval: monthly 12 | -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- 1 | # Note: additional setup is required, see https://www.jenkins.io/redirect/continuous-delivery-of-plugins 2 | 3 | name: cd 4 | on: 5 | workflow_dispatch: 6 | check_run: 7 | types: 8 | - completed 9 | 10 | jobs: 11 | maven-cd: 12 | uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1 13 | secrets: 14 | MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} 15 | MAVEN_TOKEN: ${{ secrets.MAVEN_TOKEN }} 16 | -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- 1 | name: Jenkins Security Scan 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [ opened, synchronize, reopened ] 9 | workflow_dispatch: 10 | 11 | permissions: 12 | security-events: write 13 | contents: read 14 | actions: read 15 | 16 | jobs: 17 | security-scan: 18 | uses: jenkins-infra/jenkins-security-scan/.github/workflows/jenkins-security-scan.yaml@v2 19 | with: 20 | java-cache: 'maven' # Optionally enable use of a build dependency cache. Specify 'maven' or 'gradle' as appropriate. 21 | # java-version: 21 # Optionally specify what version of Java to set up for the build, or remove to use a recent default. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /work* 3 | 4 | # Maven build files 5 | target/ 6 | 7 | # Jenkins plugin development 8 | work/ 9 | 10 | # IntelliJ project files 11 | *.iml 12 | *.ipr 13 | *.iws 14 | .idea/ 15 | 16 | # Eclipse project files 17 | .settings/ 18 | .classpath 19 | .project 20 | .metadata 21 | .loadpath 22 | 23 | # NetBeans project files 24 | nbproject/private/ 25 | build/ 26 | nbbuild/ 27 | dist/ 28 | nbdist/ 29 | nbactions.xml 30 | nb-configuration.xml 31 | -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | io.jenkins.tools.incrementals 4 | git-changelist-maven-extension 5 | 1.8 6 | 7 | 8 | -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -Pconsume-incrementals 2 | -Pmight-produce-incrementals 3 | -Dchangelist.format=%d.v%s 4 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- 1 | /* 2 | See the documentation for more options: 3 | https://github.com/jenkins-infra/pipeline-library/ 4 | */ 5 | buildPlugin( 6 | forkCount: '1C', // run this number of tests in parallel for faster feedback. If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores 7 | useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests 8 | configurations: [ 9 | [platform: 'linux', jdk: 21], 10 | [platform: 'windows', jdk: 17], 11 | ]) 12 | -------------------------------------------------------------------------------- /docs/images/logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/docs/images/logger.png -------------------------------------------------------------------------------- /src/main/java/hudson/scm/NullSVNLogFilter.java: -------------------------------------------------------------------------------- 1 | package hudson.scm; 2 | 3 | import hudson.model.TaskListener; 4 | 5 | import org.tmatesoft.svn.core.SVNLogEntry; 6 | 7 | /** 8 | * An implementation of {@link SVNLogFilter} that never filters a {@link SVNLogEntry}. 9 | */ 10 | public class NullSVNLogFilter implements SVNLogFilter { 11 | 12 | private static final long serialVersionUID = 1L; 13 | 14 | public boolean hasExclusionRule() { 15 | return false; 16 | } 17 | 18 | public boolean isIncluded(SVNLogEntry logEntry) { 19 | return true; 20 | } 21 | 22 | public void setTaskListener(TaskListener listener) { 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/main/java/hudson/scm/SVNLogFilter.java: -------------------------------------------------------------------------------- 1 | package hudson.scm; 2 | 3 | import hudson.model.TaskListener; 4 | 5 | import java.io.Serializable; 6 | 7 | import org.tmatesoft.svn.core.SVNLogEntry; 8 | 9 | public interface SVNLogFilter extends Serializable { 10 | 11 | public abstract void setTaskListener(TaskListener listener); 12 | 13 | /** 14 | * Is there any exclusion rule? 15 | * @return true if the filter could possibly filter anything. 16 | */ 17 | public abstract boolean hasExclusionRule(); 18 | 19 | /** 20 | * Checks if the given log entry should be considered for the purposes 21 | * of SCM polling. 22 | * 23 | * @return true if the should trigger polling, false otherwise 24 | */ 25 | public abstract boolean isIncluded(SVNLogEntry logEntry); 26 | 27 | } -------------------------------------------------------------------------------- /src/main/java/hudson/scm/SVNRevisionState.java: -------------------------------------------------------------------------------- 1 | package hudson.scm; 2 | 3 | import java.io.Serializable; 4 | import java.util.Map; 5 | 6 | /** 7 | * {@link SCMRevisionState} for {@link SubversionSCM}. {@link Serializable} since we compute 8 | * this remote. 9 | */ 10 | public final class SVNRevisionState extends SCMRevisionState implements Serializable { 11 | /** 12 | * All the remote locations that we checked out. This includes those that are specified 13 | * explicitly via {@link SubversionSCM#getLocations()} as well as those that 14 | * are implicitly pulled in via svn:externals, but it excludes those locations that 15 | * are added via svn:externals in a way that fixes revisions. 16 | */ 17 | final Map revisions; 18 | 19 | SVNRevisionState(Map revisions) { 20 | this.revisions = revisions; 21 | } 22 | 23 | public long getRevision(String location) { 24 | return revisions.get(location); 25 | } 26 | 27 | @Override public String toString() { 28 | return "SVNRevisionState" + revisions; 29 | } 30 | 31 | private static final long serialVersionUID = 1L; 32 | } 33 | -------------------------------------------------------------------------------- /src/main/java/hudson/scm/subversion/SvnHelper.java: -------------------------------------------------------------------------------- 1 | package hudson.scm.subversion; 2 | 3 | import org.tmatesoft.svn.core.wc.SVNRevision; 4 | 5 | /** 6 | * Provides various helper methods. 7 | * 8 | * @author kutzi 9 | */ 10 | public class SvnHelper { 11 | 12 | private static final String REGEX_END_SLASHES = "/*$"; 13 | 14 | /** 15 | * Cuts off any optional '@revisionnr' and slashes from the end of the url string. 16 | */ 17 | public static String getUrlWithoutRevision(String remoteUrlPossiblyWithRevision) { 18 | int idx = remoteUrlPossiblyWithRevision.lastIndexOf('@'); 19 | int slashIdx = remoteUrlPossiblyWithRevision.lastIndexOf('/'); 20 | 21 | // Substitute optional '@revisionnr' 22 | String substititedString = remoteUrlPossiblyWithRevision; 23 | if (idx > 0 && idx > slashIdx) { 24 | String n = remoteUrlPossiblyWithRevision.substring(idx + 1); 25 | SVNRevision r = SVNRevision.parse(n); 26 | if ((r != null) && (r.isValid())) { 27 | substititedString = remoteUrlPossiblyWithRevision.substring(0, idx); 28 | } 29 | } 30 | 31 | // Substitute slashes at the end 32 | substititedString = substititedString.replaceAll(REGEX_END_SLASHES, ""); 33 | 34 | return substititedString; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/main/java/hudson/scm/subversion/UpdaterException.java: -------------------------------------------------------------------------------- 1 | package hudson.scm.subversion; 2 | 3 | /** 4 | * @author Nicolas De Loof 5 | */ 6 | public class UpdaterException extends RuntimeException { 7 | 8 | public UpdaterException() { 9 | } 10 | 11 | public UpdaterException(String message) { 12 | super(message); 13 | } 14 | 15 | public UpdaterException(String message, Throwable cause) { 16 | super(message, cause); 17 | } 18 | 19 | public UpdaterException(Throwable cause) { 20 | super(cause); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/hudson.remoting.ClassFilter: -------------------------------------------------------------------------------- 1 | # Whitelist for error messaging (JENKINS-50339). 2 | # SVNErrorMessage supports "Object" fields in API in 'myObjects', 3 | # so it is not guaranteed to work with JEP-200 in all cases. 4 | org.tmatesoft.svn.core.SVNErrorMessage 5 | org.tmatesoft.svn.core.SVNErrorCode 6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionChangeLogSet/digest_de.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionChangeLogSet/digest_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_es_ES.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=Sin cambios. 24 | Revisions=Revisiones 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_fi.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=Muutokset 24 | No\ changes.=Ei muutoksia. 25 | Revision=Revisio 26 | Revisions=Revisiot 27 | detail=yksityiskohdat 28 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=Aucun changement. 24 | Revision=R\u00e9vision 25 | Revisions=R\u00e9visions 26 | Changes=Changements 27 | detail=d\u00e9tails 28 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_it.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=Modifiche 24 | No\ changes.=Nessuna modifica. 25 | Revision=Revisione 26 | detail=dettaglio 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_ja.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe, id:cactusman 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Revision=\u30ea\u30d3\u30b8\u30e7\u30f3 24 | Revisions=\u30ea\u30d3\u30b8\u30e7\u30f3 25 | Changes=\u5909\u66f4\u5c65\u6b74 26 | detail=\u8a73\u7d30 27 | No\ changes.=\u5909\u66f4\u70b9\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_nl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=geen wijzigingen 24 | Revision=Revisie 25 | Revisions=Revisies 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=Sem mudan\u00E7as. 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_ru.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F 24 | No\ changes.=\u041d\u0435\u0442 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439. 25 | Revision=\u0420\u0435\u0432\u0438\u0437\u0438\u044F 26 | detail=\u043F\u043E\u0434\u0440\u043E\u0431\u043D\u043E\u0441\u0442\u0438 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_sl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=Ni sprememb. 24 | Revision=Revizija 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_sv_SE.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Changes=F\u00F6r\u00E4ndringar 24 | No\ changes.=Inga f\u00F6r\u00E4ndringar 25 | Revision=Revision 26 | Revisions=Revisioner 27 | detail=detaljer 28 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_tr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | No\ changes.=Herhangi\ bir\ de\u011fi\u015fiklik\ yok. 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/digest_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Revision=\u4fee\u8a02\u7248\u6b21 24 | Revisions=\u4fee\u8a02\u7248\u6b21 25 | Changes=\u8b8a\u66f4 26 | detail=\u8a73\u7d30\u8cc7\u6599 27 | No\ changes.=\u6c92\u6709\u8b8a\u66f4\u3002 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_de.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=Zusammenfassung 24 | Revision=Revision 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_el.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=\u03A0\u03B5\u03C1\u03AF\u03BB\u03B7\u03C8\u03B7 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionChangeLogSet/index_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=R\u00e9sum\u00e9 24 | Revision=Modification 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_ja.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:cactusman 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=\u8981\u7d04 24 | Revision=\u30ea\u30d3\u30b8\u30e7\u30f3 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_nl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=Samenvatting 24 | Revision=Revisie 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=Sum\u00E1rio 24 | Revision=Revis\u00E3o 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_ru.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Mike Salnikov 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=\u0421\u0432\u043e\u0434\u043a\u0430 24 | Revision=\u0420\u0435\u0432\u0438\u0437\u0438\u044f 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_sv_SE.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Revision=Revision 24 | Summary=Sammanfattning 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_tr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Summary=\u00d6zet 24 | Revision=Revizyon 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionChangeLogSet/index_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2013, Sun Microsystems, Inc., Chunghwa Telecom Co., Ltd., 4 | # and Pei-Tang Huang 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | 24 | Summary=\u6458\u8981 25 | Revision=\u4fee\u8a02\u7248\u6b21 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionMailAddressResolverImpl/global.jelly: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionMailAddressResolverImpl/global_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2013, Sun Microsystems, Inc., Chunghwa Telecom Co., Ltd., 4 | # and Pei-Tang Huang 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | 24 | repository\ pattern=Expression r\u00e9guli\u00e8re du d\u00e9p\u00f4t 25 | Domain\ suffix=Suffixe de domaine 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionMailAddressResolverImpl/global_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2013, Sun Microsystems, Inc., Chunghwa Telecom Co., Ltd., 4 | # and Pei-Tang Huang 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | 24 | repository\ pattern=\u5132\u5b58\u5eab\u6a23\u5f0f 25 | Domain\ suffix=\u57df\u540d\u5c3e\u78bc 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/AdditionalCredentials/help-credentialsId.html: -------------------------------------------------------------------------------- 1 |
2 | Select the credential from the list of relevant credentials in order to use that credential for checking out 3 | the source code. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/AdditionalCredentials/help-realm.html: -------------------------------------------------------------------------------- 1 |
2 | This is the realm that the SvnKit library associates with a specific checkout. For most Subversion servers this 3 | will typically be of the format <scheme://hostname(:port)> name, 4 | while for servers accessed via svn+ssh it is of the format (username@)svn+ssh://hostname(:port). 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credential-ok.js: -------------------------------------------------------------------------------- 1 | window.addEventListener("DOMContentLoaded", () => { 2 | document.querySelector(".svn-credential-ok-close").addEventListener("click", () => { 3 | window.close(); 4 | }); 5 | }); 6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credentialOK_de.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication\ Successful=Authentifizierung gegen\u00fcber Subversion erfolgreich 24 | Authentication\ was\ successful.\ Information\ is\ stored\ in\ Jenkins\ now.= \ 25 | Authentifizierung war erfolgreich. Die Anmeldedaten sind nun in Jenkins gespeichert. 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credentialOK_es.properties: -------------------------------------------------------------------------------- 1 | Subversion\ Authentication\ Successful=Autenticaci\u00f3n en "Subversion" correcta. 2 | Authentication\ was\ successful.\ Information\ is\ stored\ in\ Jenkins\ now.=La autenticaci\u00f3n ha sido correcta y la informaci\u00f3n se ha guardado en Jenkins. 3 | Close=Cerrar 4 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credentialOK_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication\ Successful=Authentification Subversion r\u00e9ussie 24 | Authentication\ was\ successful.\ Information\ is\ stored\ in\ Jenkins\ now.= \ 25 | L''authentification est r\u00e9ussie. Stockage de l''information dans Jenkins en cours. 26 | Close=Fermer 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credentialOK_ja.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication\ Successful=Subversion\u306e\u8a8d\u8a3c\u306e\u6210\u529f 24 | Authentication\ was\ successful.\ Information\ is\ stored\ in\ Jenkins\ now.=\ 25 | \u8a8d\u8a3c\u304c\u6210\u529f\u3057\u307e\u3057\u305f\u3002\u60c5\u5831\u306fJenkins\u306b\u4fdd\u5b58\u3055\u308c\u307e\u3059\u3002 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/credentialOK_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication\ Successful=Subversion \u9a57\u8b49\u6210\u529f 24 | Authentication\ was\ successful.\ Information\ is\ stored\ in\ Jenkins\ now.=\ 25 | \u9a57\u8b49\u6210\u529f\u901a\u904e\u3002\u8cc7\u8a0a\u5df2\u7d93\u5132\u5b58\u5728 Jenkins \u88e1\u3002 26 | Close=\u95dc\u9589 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/enterCredential.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | description=\ 24 | Enter the authentication information needed to connect to the Subversion repository. \ 25 | This information will be stored in Jenkins. 26 | 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/enterCredential_es.properties: -------------------------------------------------------------------------------- 1 | Subversion\ Authentication=Autenticaci\u00f3n 2 | Repository\ URL=URL del repositorio 3 | OK=Aceptar 4 | description= \ 5 | Introduce la informaci\u00f3n necesaria para conectar al repositorio de Subversion.\ 6 | Esta informaci\u00f3n ser\u00e1 guardada en Jenkins. 7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/enterCredential_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication=Authentification Subversion 24 | Repository\ URL=URL du d\u00e9p\u00f4t 25 | OK=OK 26 | description=\ 27 | Entrez les informations d''authentification n\u00e9cessaires pour connecter au repository Subversion. \ 28 | Cette information sera stock\u00e9e dans Jenkins. 29 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/enterCredential_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion\ Authentication=Subversion \u9a57\u8b49 24 | description=\ 25 | \u8f38\u5165\u9023\u5230 Subversion \u5132\u5b58\u5eab\u8981\u7528\u7684\u9a57\u8b49\u8cc7\u8a0a\u3002\ 26 | \u4e26\u5132\u5b58\u5728 Jenkins \u88e1\u3002 27 | Repository\ URL=\u5132\u5b58\u5eab URL 28 | OK=\u78ba\u5b9a 29 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/DescriptorImpl/url-help_es.properties: -------------------------------------------------------------------------------- 1 | 2 | description.1=Especifica la URL del repositorio de "subversion" desde donde actualizar. \ 3 | Por ejemplo: "http://svn.apache.org/repos/asf/ant/". 4 | 5 | description.explicitRevision=Adem\u00e1s podr\u00edas a\u00f1adir "@NNN" al final de la URL para bajar un n\u00famero de revisi\u00f3n concreto. 6 | 7 | description.3= \ 8 | During the build, revision number of the module that was checked out is available \ 9 | through the environment variable SVN_REVISION, provided that you are only checking out \ 10 | one module. If you have multiple modules checked out, use the \ 11 | svnversion command. 12 | 13 | description.2= \ 14 | Cuando se a\u00f1ade una nueva URL, Jenkins autom\u00e1ticamente prueba la conexi\u00f3n. Si fuera necesaria autenticaci\u00f3n, \ 15 | Jenkins preguntar\u00e1 por las credenciales. Si ya existen credenciales para esta conexi\u00f3n y quieres cambiarlas \ 16 | por cualquier raz\u00f3n pulsa sobre este enlace. 17 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-cancelProcessOnExternalsFail.html: -------------------------------------------------------------------------------- 1 |
2 | Determines if the process should be cancelled when checkout/update svn:externals failed. Will work when "Ignore externals" box is not checked. 3 | Default choice is to cancelled the process when checkout/update svn:externals failed. 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-depthOption.html: -------------------------------------------------------------------------------- 1 |
2 | --depth option for checkout and update commands. Default value is infinity. 3 |
    4 |
  • empty includes only the immediate target of the operation, not any of its file or directory children.
  • 5 |
  • files includes the immediate target of the operation and any of its immediate file children.
  • 6 |
  • immediates includes the immediate target of the operation and any of its immediate file or directory children. The directory children will themselves be empty.
  • 7 |
  • infinity includes the immediate target, its file and directory children, its children's children, and so on to full recursion.
  • 8 |
  • as-it-is takes the working depth from the current working copy, allows for setting update depth manually using --set-depth option.
  • 9 |
10 | More information can be found 11 | here. 12 |
13 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-depthOption_de.html: -------------------------------------------------------------------------------- 1 |
2 | --depth-Option für Checkout- und Update-Befehle. Der Standardwert ist infinity. 3 |
    4 |
  • empty enthält nur das direkte Ziel der Operation, keine darin enthaltenen Dateien oder Verzeichnisse.
  • 5 |
  • files enthält das direkte Ziel der Operation und alle direkt darin enthaltenen Dateien.
  • 6 |
  • immediates enthält das direkte Ziel der Operation und alle direkt darin enthaltenen Dateien und Verzeichnisse. 7 | Die Kindverzeichnisse werden leer ausgecheckt.
  • 8 |
  • infinity enthält das direkte Ziel, seine Dateien und Verzeichnisse, deren Kinder, and so weiter bis zur vollen Rekursion.
  • 9 |
  • as-it-is übernimmt die Tiefe aus der aktuellen Arbeitskopie. Die Tiefe kann manuell über die Option --set-depth gesetzt werden.
  • 10 |
11 | Mehr Informationen dazu finden Sie 12 | hier. 13 |
14 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-depthOption_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | checkout 及 update 指令的 "--depth" 選項。預設值是 "infinity" (無限)。 3 |

"empty" (空) 只包含作業的直接對象,其下所有檔案或子目錄都不算。 4 |

"files" (檔案) 包含作業的直接對象,及其下第一層的檔案。 5 |

"immediates" (直接對象) 包含作業的直接對象,及其下的第一層檔案跟目錄。子目錄內容會是空的。 6 |

"infinity" (無限) 包含直接對象,以及其下所有的檔案及目錄內容。 7 |

8 | 這裡可以找到更多資訊。 9 |

10 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-ignoreExternalsOption.html: -------------------------------------------------------------------------------- 1 |
2 | "--ignore-externals" option will be used with svn checkout, svn update commands to disable externals definition processing. 3 |

4 | More information can be found 5 | here. 6 |
7 | Note: there is the potential to leverage svn:externals to gain read access to the entire 8 | Subversion repository. This can happen if you follow the normal practice of giving Jenkins 9 | credentials with read access to the entire Subversion repository. You will also need to provide the credentials 10 | to use when checking/polling out the svn:externals using the Additional Credentials option. 11 |

12 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-ignoreExternalsOption_de.html: -------------------------------------------------------------------------------- 1 |
2 | Die --ignore-externals-Option wird bei Checkout- und Update-Befehlen verwendet, um die Verarbeitung von "externals"-Definitionen zu unterdrücken 3 |

4 | Mehr Informationen dazu finden Sie 5 | hier. 6 |

7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-ignoreExternalsOption_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | svn checkout 及 svn update 指令使用的 "--ignore-externals" 選項,不處理外部儲存庫定義。 3 | 4 |

5 | 這裡有更多資訊。 6 |

7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local.html: -------------------------------------------------------------------------------- 1 |
2 | Specify a local directory (relative to the workspace root) 3 | where this module is checked out. If left empty, the last path component of the URL 4 | is used as the default, just like the svn CLI. 5 | A single period (.) may be used to check out the project directly 6 | into the workspace rather than into a subdirectory. 7 |
8 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie ein lokales Verzeichnis an (relativ zum Arbeitsbereich), 3 | in welches das Modul ausgecheckt werden soll. Wenn das Feld leer bleibt, wird 4 | der letzte Pfadbestandteil der URL als Vorgabewert verwendet, analog dem 5 | Verhalten der svn-Kommandozeilenanwendung. 6 |
7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Spécifie dans quel répertoire (relatif à la racine du 3 | répertoire de travail) 4 | ce module sera placé après obtention auprès de l'outil de gestion de 5 | version. 6 | Si ce champ est vide, le dernier répertoire de l'URL sera utilisé par 7 | défaut, comme le fait la commande svn dans le Shell. 8 |
9 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_ja.html: -------------------------------------------------------------------------------- 1 |
2 | このモジュールをチェックアウトするローカルのディレクトリ(ワークスペースのルートからの相対パス) 3 | を指定してください。 4 | 何も設定しないと、コマンドのsvnと同様に、URLの最後のパス名をデフォルトとして使用します。 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите локальную директорию (относительно сборочной директории) 3 | куда будет выкачиваться модуль. Если поле оставлено пустым, будет использоваться 4 | последняя часть URL, точно также как делает svn CLI. 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Modülün checkout edileceği yerel dizini (çalışma alanı'na bağlı olarak) 3 | belirleyin. Eğer boş bırakılırsa, URL'in sonundaki dizin bu alan için kullanılır. 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/ModuleLocation/help-local_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定 Check Out 模組用的本地目錄 (之於工作區根目錄的相對路徑)。 3 | 不設的話,預設會使用 URL 路徑的最後一部分,就像 svn CLI 一樣。 4 | 輸入半型句點 (.) 可以讓專案直接 Check Out 到工作區而不是工作區的一個子目錄裡。 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/buildEnv.groovy: -------------------------------------------------------------------------------- 1 | package hudson.scm.SubversionSCM 2 | 3 | def l = namespace(lib.JenkinsTagLib) 4 | 5 | ["SVN_REVISION","SVN_URL"].each { name -> 6 | l.buildEnvVar(name:name) { 7 | raw(_("${name}.blurb")) 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/buildEnv.properties: -------------------------------------------------------------------------------- 1 | SVN_REVISION.blurb=Subversion revision number that''s currently checked out to the workspace, such as "12345" 2 | SVN_URL.blurb=Subversion URL that''s currently checked out to the workspace. -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/buildEnv_de.properties: -------------------------------------------------------------------------------- 1 | SVN_REVISION.blurb=Subversion-Revisionsnummer der im Workspace ausgecheckten Version, z. B. "12345" 2 | SVN_URL.blurb=Subversion-URL der im Workspace ausgecheckten Version. 3 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/buildEnv_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | SVN_REVISION.blurb=\u76ee\u524d Check Out \u5230\u5de5\u4f5c\u5340\u7684 Subversion \u7248\u6b21\u7de8\u865f\uff0c\u4f8b\u5982 "12345"\u3002 24 | SVN_URL.blurb=\u76ee\u524d Check Out \u5230\u5de5\u4f5c\u5340\u7684 Subversion URL\u3002 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/config_es.properties: -------------------------------------------------------------------------------- 1 | Delete=Borrar 2 | Exclusion\ revprop\ name=Nombre de la propiedad "revprop" de exclusi\u00f3n 3 | Modules=M\u00f3dulos 4 | Included\ Regions=Partes incluidas 5 | Local\ module\ directory=Directorio local del m\u00f3dulo 6 | Excluded\ Regions=Partes excluidas 7 | Excluded\ Commit\ Messages=Mensajes de "Commit" excluidos 8 | Add\ more\ locations...=A\u00f1adir mas localizaciones ... 9 | Use\ update=Utilizar actualizaci\u00f3n 10 | Repository\ URL=URL del repositorio 11 | Excluded\ Users=Usuarios excluidos 12 | Revert=Revertir 13 | optional=opcional 14 | 15 | revertDescription=Si est\u00e1 seleccionado, Jenkins ejecutar\u00e1 ''svn revert'' antes de hacer ''svn update''. \ 16 | Esto hace la ejecuci\u00f3n un poco m\u00e1s lenta, pero evita errores si los ficheros se han modificado entre \ 17 | una ejecuci\u00f3n y otra. 18 | 19 | updateDescription=Si est\u00e1 seleccionado, Jenkins ejecutar\u00e1 ''svn update'' cuando sea posible, lo que \ 20 | implica que la ejecuci\u00f3n sea bastante mas r\u00e1pida. Aunque los artefactos generados en ejecuciones \ 21 | anteriores no se borrar\u00e1n. 22 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/config_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Modules=M\u00F3dulos 24 | Repository\ URL=URL do Reposit\u00F3rio 25 | Local\ module\ directory=Diret\u00F3rio do m\u00F3dulo local 26 | optional=opcional 27 | Add\ more\ locations...=Adicinar mais locais... 28 | Delete=Excluir 29 | Use\ update=Usar atualiza\u00E7\u00E3o 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/excludedRevprop-validation.js: -------------------------------------------------------------------------------- 1 | Behaviour.specify("input[name='_.remote']", 'SubversionSCM.RemoteLocation', 0, function(element) { 2 | element.addEventListener('blur', updateHiddenFields); 3 | }); 4 | 5 | Behaviour.specify("select[name='_.credentialsId'][filldependson='remote']", 'SubversionSCM.CredentialsId', 0, function(element) { 6 | element.addEventListener('change', updateHiddenFields); 7 | }); 8 | 9 | function updateHiddenFields() { 10 | 11 | var remoteLocationElement = document.querySelector("input[name='_.remote']"); 12 | var credentialsIdElement = document.querySelector("select[name='_.credentialsId'][filldependson='remote']"); 13 | var selectedOption = credentialsIdElement.options[credentialsIdElement.selectedIndex].value; 14 | 15 | 16 | var remoteHidden = document.querySelector(".svn-remote-location-hidden"); 17 | var credentialsHidden = document.querySelector(".svn-credentials-id-hidden"); 18 | 19 | if (remoteHidden) { 20 | remoteHidden.value = remoteLocationElement.value; 21 | } 22 | 23 | if (credentialsHidden) { 24 | credentialsHidden.value = selectedOption; 25 | } 26 | 27 | var revPropField = document.querySelector("input[name='_.excludedRevprop']"); 28 | if (revPropField) { 29 | revPropField.dispatchEvent(new Event('change')); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/global_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionSCM/global_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/global_nl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion=Subversion 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/global_ru.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Subversion=Subversion 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedCommitMessages.html: -------------------------------------------------------------------------------- 1 |
2 | If set, and Jenkins is set to poll for changes, Jenkins will ignore any revisions 3 | with commit messages containing any of the given regular expressions when 4 | determining if a build needs to be triggered. 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedCommitMessages_de.html: -------------------------------------------------------------------------------- 1 |
2 | Wenn Jenkins Subversion nach Änderungen befragt (um gegebenenfalls einen 3 | neuen Builds zu starten), werden alle Revisionen ignoriert, deren Commit-Kommentar 4 | mindestens einen der hier angegebenen regulären Ausdrücke enthält. 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedCommitMessages_ja.html: -------------------------------------------------------------------------------- 1 |
2 | SCMをポーリングするように設定していると、ビルドを起動するかどうか決定する際に、 3 | 設定した正規表現に合致するコミットメッセージを持つリビジョンを無視します。 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedCommitMessages_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,如果 Jenkins 同時也被設定成輪詢變更,那麼在判斷是否要觸發建置時,會略過所有 3 | Commit 訊息包含任一指定正規表示式的修訂版次。 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRegions.html: -------------------------------------------------------------------------------- 1 |
2 | If set, and Jenkins is set to poll for changes, Jenkins will ignore any files and/or 3 | folders in this list when determining if a build needs to be triggered. 4 |

5 | Each exclusion uses regular expression pattern matching, and must be separated by a new line. 6 |

7 |

 8 | 	/trunk/myapp/src/main/web/.*\.html
 9 | 	/trunk/myapp/src/main/web/.*\.jpeg
10 | 	/trunk/myapp/src/main/web/.*\.gif
11 |   
12 | The example above illustrates that if only html/jpeg/gif files have been committed to 13 | the SCM a build will not occur. 14 |

15 | More information on regular expressions can be found 16 | here. 17 |

18 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRegions_de.html: -------------------------------------------------------------------------------- 1 |
2 | Ist dieses Feld nicht leer und das Projekt so konfiguriert, dass Jenkins regelmäßig 3 | ein SVN-Repository nach Änderungen befragt, so werden dabei die hier angegebenen Dateien 4 | und/oder Verzeichnisse bei der Bestimmung, ob ein neuer Build ausgelöst werden soll, 5 | ignoriert. 6 |

Jeder Ausschluss kann reguläre Ausdrücke verwenden und muss ein einer eigenen Zeile stehen.

7 | Im folgenden Beispiel wird kein neuer Build ausgelöst, wenn nur html/jpeg/gif-Dateien geändert wurden. 8 |

 9 |    /trunk/myapp/src/main/web/.*\.html
10 |    /trunk/myapp/src/main/web/.*\.jpeg
11 |    /trunk/myapp/src/main/web/.*\.gif
12 |   
13 | 14 |

Diese Option kann auch gemeinsam mit der Option "Eingeschlossene Bereiche" verwendet werden. 15 | In diesem Fall sind nur Dateien und/oder Verzeichnisse relevant, die zwar in den Einschlüssen enthalten, 16 | aber in den Ausschlüssen nicht enthalten sind. 17 | 18 |

Mehr zu regulären Ausdrücken.... 19 |

20 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRegions_fr.html: -------------------------------------------------------------------------------- 1 |
2 | Si cette option est cochée et que Jenkins est configuré pour scruter les changements, Jenkins ignorera tout fichier ou répertoire de cette liste au moment où il cherchera à déterminer si un build doit être lancé. 3 |

Chaque clause d'exclusion utilise les expressions régulières et doit être séparée des autres par une nouvelle ligne. 4 |

5 |

 6 | 	/trunk/myapp/src/main/web/.*\.html
 7 | 	/trunk/myapp/src/main/web/.*\.jpeg
 8 | 	/trunk/myapp/src/main/web/.*\.gif
 9 |   
10 | Dans l'exemple ci-dessus, si seuls des fichiers html/jpeg/gif ont été versionnées dans l'outil de gestion de version, un build n'aura pas lieu. 11 |

Plus d'information sur les expressions régulières peuvent être trouvés ici. 12 |

13 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRegions_ja.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkinsが変更をポーリングするように設定されている場合、ビルドを実行する必要があるかどうか判断する際に、このリストにあるファイルやフォルダを無視します。 3 |

リストには正規表現を使用し、改行で区切ります。 4 |

5 |

 6 | 	/trunk/myapp/src/main/web/.*\.html
 7 | 	/trunk/myapp/src/main/web/.*\.jpeg
 8 | 	/trunk/myapp/src/main/web/.*\.gif
 9 |   
10 | 上記は、html/jpeg/gifファイルがSCMにコミットされても、ビルドは起動しない例です。 11 |

正規表現の詳細については、こちらを参照してください。 12 |

13 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRegions_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 在輪詢變更判斷是否要觸發建置時,會略過列出的檔案或目錄。 3 | 4 |

5 | 每一筆排除設定都是要用來比對的正規表示式,一行一筆。 6 | 7 |

8 |

 9 |     /trunk/myapp/src/main/web/.*\.html
10 |     /trunk/myapp/src/main/web/.*\.jpeg
11 |     /trunk/myapp/src/main/web/.*\.gif
12 |   
13 | 上述例子示範在只有 Commit html, jpeg 及 gif 這些檔進 SCM 時不要觸發新建置。 14 | 15 |

16 | 這裡有更多正規表示式的資訊。 17 |

18 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRevprop.html: -------------------------------------------------------------------------------- 1 |
2 | If set, and Jenkins is set to poll for changes, Jenkins will ignore any revisions 3 | that are marked with the given revision property (revprop) when determining if 4 | a build needs to be triggered. This can be used to exclude commits done by the 5 | build itself from triggering another build, assuming the build server commits 6 | the change with the correct revprop. 7 |

This type of exclusion only works with Subversion 1.5 servers and newer. 8 |

More information on revision properties can be found 9 | here. 10 |

11 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRevprop_de.html: -------------------------------------------------------------------------------- 1 |
2 | Wenn Jenkins Subversion nach Änderungen befragt (um gegebenenfalls einen 3 | neuen Build zu starten), werden alle Revisionen ignoriert, die eine der hier 4 | angegebenen Revisionseigenschaften (revprop) enthalten. Dadurch können Sie 5 | vermeiden, dass Builds, die das Subversion-Repository modifizieren, weitere, 6 | ungewollte Builds auslösen. 7 |

8 | Diese Funktion erfordert einen Subversion-Server Version 1.5 oder höher. 9 |

10 | Mehr über Revisionseigenschaften (revprops) finden Sie 11 | hier. 12 |

13 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRevprop_ja.html: -------------------------------------------------------------------------------- 1 |
2 | SCMをポーリングするように設定していると、ビルドを起動するかどうか決定する際に、 3 | 設定したリビジョン属性(revprop)でマークされたリビジョンを無視します。 4 | ビルドサーバーがリビジョン属性を使用してコミットした場合、ビルド自身が行ったコミットによって他のビルドを起動しないようにすることもできます。 5 |

Subversion 1.5以降でのみ動作します。 6 |

リビジョン属性についての詳細はこちらを参照してください。 7 |

8 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedRevprop_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 在輪詢變更判斷是否要觸發建置時,會略過標有指定修訂屬性 (revprop) 的版次。 3 | 要是建置伺服器 Commit 變更時有用正確的 revprop,就可以排除建置過程自己 Commit 的版次,避免重複建置。 4 | 5 |

6 | 這種類型的排除條件只適用於 Subversion 伺服器 1.5 或是更新的版本。 7 | 8 |

9 | 這裡可以找到更多修訂屬性的資訊。 10 |

11 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedUsers.html: -------------------------------------------------------------------------------- 1 |
2 | If set, and Jenkins is set to poll for changes, Jenkins will ignore any revisions committed by users in this list when determining if a build needs to be triggered. This can be used to exclude commits done by the build itself from triggering another build, assuming the build server commits the change with a distinct SCM user. 3 |

Each exclusion uses literal pattern matching, and must be separated by a new line. 4 |

5 |

 6 | 	 auto_build_user
 7 |   
8 | The example above illustrates that if only revisions by "auto_build_user" have been committed to the SCM a build will not occur. 9 |
10 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedUsers_de.html: -------------------------------------------------------------------------------- 1 |
2 | Wenn Jenkins Subversion nach Änderungen befragt (um gegebenenfalls einen 3 | neuen Builds zu starten), werden alle Revisionen ignoriert, die von einem 4 | der hier angegebenen Committer eingecheckt wurden. 5 |

6 | Bei diesem Ausschluß müssen Sie vollständige Subversion-Benutzernamen angeben. 7 | Bei mehreren Benutzernamen schreiben Sie diese in jeweils eine eigene Zeile. 8 |

 9 | 	 auto_build_user
10 |   
11 |

12 | Das obige Beispiel würde keine neuen Builds als Reaktion auf neue Revisionen des Committers "auto_build_user" auslösen. 13 |

14 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedUsers_ja.html: -------------------------------------------------------------------------------- 1 |
2 | SCMをポーリングするように設定していると、ビルドを起動するかどうか決定する際に、このリストにあるユーザーがコミットしたリビジョンを無視します。 3 | ビルドサーバーが専用のSCMユーザーでコミットする場合、ビルド自身が行ったコミットによって他のビルドを起動しないようにすることもできます。 4 |

単純に文字の比較を行います。また、改行区切りです。 5 |

6 |

 7 | 	 auto_build_user
 8 |   
9 | 上記の例は、"auto_build_user"によってコミットされたリビジョンだけがビルドを起動しないことを表しています。 10 |
11 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-excludedUsers_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 在輪詢判斷是否要觸發建置時,會略過由指定使用者所 Commit 的修訂版次。 3 | 要是建置伺服器是使用其他 SCM 帳號 Commit 變更,就可以排除建置過程自己 Commit 的版次,避免重複建置。 4 | 5 |

6 | 每一行輸入一個要排除的使用者名稱。 7 | 8 |

9 |

10 |      auto_build_user
11 |   
12 | 上例示範在只有 "auto_build_user" Commit 的修訂版本時不會觸發建置。 13 |
14 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-filterChangelog.html: -------------------------------------------------------------------------------- 1 |
2 | If set Jenkins will apply the same inclusion and exclusion patterns for displaying changelog entries as it does for polling for changes. 3 | If this is disabled, changes which are excluded for polling are still displayed in the changelog. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-filterChangelog_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 在顯示變更記錄時也使用與輪詢變更相同的排除、包含規則。 3 | 如果停用本功能,輪詢時被排除的變更就會顯示在變更記錄中。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-ignoreDirPropChanges.html: -------------------------------------------------------------------------------- 1 |
2 | If set, Jenkins ignores svn-property only changes of directories. 3 | These changes are ignored when determining whether a build should be triggered and are removed from a 4 | build's changeset. 5 | Main usage of this property is to ignore svn:mergeinfo changes (which would otherwise e.g. lead to a complete rebuild 6 | of a maven project, in spite of incremental build option). 7 |
8 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-ignoreDirPropChanges_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 會略過只有 SVN 屬性異動的變更。 3 | 這些變更在判斷是否觸發建置時會被略過,也會從建置的變更記錄中移除。 4 | 這個選項主要是用來忽略 svn:mergeinfo 變更 (不然不管有沒有用「累進建置」,Maven 專案都會重新建置)。 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-includedRegions.html: -------------------------------------------------------------------------------- 1 |
2 | If set, and Jenkins is set to poll for changes, Jenkins will ignore any files and/or 3 | folders that are not in this list when determining if a build needs to be triggered. 4 |

5 | Each inclusion uses regular expression pattern matching, and must be separated by a new line. 6 |

7 | This is useful when you need to check out an entire resource for building, but only want to do 8 | the build when a subset has changed. 9 |

10 |

11 | 	/trunk/myapp/c/library1/.*
12 | 	/trunk/myapp/c/library2/.*
13 |   
14 | If /trunk/myapp is checked out, the build will only occur when there are changes to 15 | either the c/library1 and c/library2 subtrees. 16 |

17 | If there are also excluded regions specified, then a file is not ignored when it is in 18 | the included list and not in the excluded list. 19 |

20 | More information on regular expressions can be found 21 | here. 22 |

23 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-includedRegions_de.html: -------------------------------------------------------------------------------- 1 |
2 | Ist dieses Feld nicht leer und das Projekt so konfiguriert, dass Jenkins regelmäßig 3 | ein SVN-Repository nach Änderungen befragt, so werden dabei alle Dateien 4 | und/oder Verzeichnisse bei der Bestimmung, ob ein neuer Build ausgelöst werden soll, 5 | ignoriert, die nicht in den hier angegebenen Bereichen liegen. 6 |

7 | Jeder Einschluß kann reguläre Ausdrücke verwenden und muss ein einer eigenen Zeile stehen. 8 | 9 |

10 | Diese Option ist nützlich, wenn zwar ein ganzer Zweig aus dem Repository zum Bauen 11 | ausgecheckt werden soll, aber nur Änderungen in einem Unterbereich davon neue Builds 12 | auslösen sollen. 13 | 14 |

15 | Beispiel: Ihr Projekt checkt zum Bauen /trunk/myapp aus. Neue Builds sollen aber nur 16 | bei Änderungen unterhalb von /trunk/myapp/c/library1 oder /trunk/myapp/c/library2 17 | ausgelöst werden. Sie würden in diesem Fall hier angeben: 18 | 19 |

20 |   /trunk/myapp/c/library1/.*
21 |   /trunk/myapp/c/library2/.*
22 |   
23 | 24 |

Diese Option kann auch gemeinsam mit der Option "Ausgeschlossene Bereiche" verwendet werden. 25 | In diesem Fall sind nur Dateien und/oder Verzeichnisse relevant, die zwar in den Einschlüssen enthalten, 26 | aber in den Ausschlüssen nicht enthalten sind. 27 | 28 |

29 | Mehr zu regulären Ausdrücken.... 30 |

31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-includedRegions_ja.html: -------------------------------------------------------------------------------- 1 |
2 | Jenkinsが変更をポーリングするように設定されている場合、ビルドを実行する必要があるかどうか判断する際に、 3 | このリストにないファイルやフォルダを無視します。 4 |

5 | リストには正規表現を使用し、改行で区切ります。 6 |

7 | ビルドのために全てのリソースをチェックアウトする必要があっても、その一部分が変わった時だけビルドしたい場合に使用します。 8 |

9 |

10 | 	/trunk/myapp/c/library1/.*
11 | 	/trunk/myapp/c/library2/.*
12 |   
13 | 上記の場合、/trunk/myappをチェックアウトしても、c/library1とc/library2に変更がある場合のみビルドを実行します。  14 |

15 | 対象外範囲が設定されている場合、対象範囲のリストに含まれていて、対象外範囲のリストに含まれていないファイルは無視されません。 16 |

17 | 正規表現の詳細については、こちらを参照してください。  18 |

19 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-includedRegions_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定後,Jenkins 在輪詢判斷是否要觸發建置時,會略過不在這個清單裡的任何檔案或目錄。 3 | 4 |

5 | 每一筆排除設定都是要用來比對的正規表示式,一行一筆。 6 | 7 |

8 | 如果您在建置時需要 Check Out 完整的檔案,但只想在部分檔案有變更時才建置,就可以用這個功能。 9 | 10 |

11 |

12 |     /trunk/myapp/c/library1/.*
13 |     /trunk/myapp/c/library2/.*
14 |   
15 | 假設 Check Out 了 /trunk/myapp,那只有在 c/library1 或 c/library2 子目錄裡有變更時才會建置。 16 | 17 |

18 | 如果同時也設定了要排除的區域,檔案同時在要包含的清單,而且不在要排除的清單中時才不會被略過。 19 | 20 |

21 | 這裡有更多正規表示式的資訊。 22 |

23 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-quietOperation.html: -------------------------------------------------------------------------------- 1 |
2 |

Mimics subversion command line --quiet parameter for check out / update operations to help keep the output shorter. Prints nothing, or only summary information.

3 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-quietOperation_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 |

模仿 Subversion 客户端命令 --quiet 選項於 Check Out / Update 子命所顯示的訊息。請求客戶端在執行操作時只顯示重要信息。

3 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-storeAuthToDisk.html: -------------------------------------------------------------------------------- 1 |
2 | If enabled, Jenkins will store the configured credentials in the Subversion credentials 3 | cache after successful authentication. 4 | This has a security impact, as it transfers credentials form the Jenkins configuration 5 | to the file system.
6 | If you do not want this to happen, leave this option unchecked. 7 | Jenkins will then not modify the Subversion credentials cache. 8 |

9 | This option corresponds to the store-auth-creds option in Subversion's 10 | config file under the [auth] section. 11 |

12 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-storeAuthToDisk_de.html: -------------------------------------------------------------------------------- 1 |
2 | Wenn aktiviert, speichert Jenkins die verwendeten Zugangsdaten nach erfolgreicher 3 | Authentifizierung in Subversions Zugangsdaten-Cache. 4 | Dies ist sicherheitsrelevant, da auf diese Weise in Jenkins konfigurierte Zugangsdaten 5 | in das Dateisystem gelangen.
6 | Falls Sie dies nicht wünschen, sollten Sie diese Option deaktiviert lassen. 7 | Jenkins wird dann den Subversion Zugangsdaten-Cache nicht verändern. 8 |

9 | Diese Option entspricht dem store-auth-creds-Parameter im [auth]-Abschnitt 10 | der Subversion-Konfigurationsdatei. 11 |

12 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-workspaceFormat.html: -------------------------------------------------------------------------------- 1 |
2 | Different versions of Subversion clients store data differently in the .svn directories. 3 | This option controls which version of Subversion client Jenkins emulates. Using an older version 4 | here allows you to manipulate workspace with your older command line Subversion clients, while using 5 | a newer version allows you to use more advanced features added to later versions of Subversion, 6 | such as svn:externals support to a file. 7 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-workspaceFormat_de.html: -------------------------------------------------------------------------------- 1 |
2 | Die Clients verschiedener Subversion-Versionen haben unterschiedliche Speicherformate zum Ablegen 3 | ihrer Daten in den .svn-Verzeichnissen einer Arbeitskopie. 4 | Diese Option bestimmt die von Jenkins verwendete Client-Version. 5 | Wählen Sie hier eine alte Version, wenn Sie die Arbeitskopie mit einem alten 6 | Kommandozeilen-Subversion-Client bearbeiten wollen. 7 | Eine neuere Version erlaubt es Ihnen, die fortgeschrittenen Eigenschaften neuerer Subversion-Versionen 8 | zu verwenden, zum Beispiel svn:externals für Dateien. 9 |
10 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-workspaceFormat_ja.html: -------------------------------------------------------------------------------- 1 |
2 | Subversionクライアントは、.svnディレクトリにデータをバージョン毎に異なる形式で保存します。 3 | このオプションは、JenkinsがエミュレートするSubversionクライアントのバージョンを制御します。 4 | 古いバージョンを使用することで、古いSubversionクライアントのコマンドラインでワークスペースを操作できます。 5 | また、新しいバージョンを使用すれば、svn:externalsのような最新のSubversionに追加された進んだ機能を利用することができます。 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help-workspaceFormat_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 不同版本的 Subversion 用戶端的 .svn 目錄資料結構可能不同。 3 | 這個選項控制 Jenkins 要模擬什麼版本的 Subversion 用戶端。 4 | 選較舊的版本讓您舊的命令列 Subversion 用戶端一樣能處理工作區內容; 5 | 而選新版才能用到新版 Subversion 增加的功能,例如檔案的 svn:externals 支援。 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help.html: -------------------------------------------------------------------------------- 1 |
2 | Checks out the source code from Subversion repositories. See 3 | post-commit hook set up for improved turn-around time and 5 | performance in polling. 6 |
7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help_de.html: -------------------------------------------------------------------------------- 1 |
2 | Checkt Quelltexte aus Subversion-Repositories aus. Sie können Reaktionszeit 3 | und Ressourcenverbrauch von regelmäßigen Subversion-Abfragen mit Hilfe von 4 | post-commit hooks 5 | verbessern. 6 |
7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help_ja.html: -------------------------------------------------------------------------------- 1 |
2 | Subversionのリポジトリからソースコードをチェックアウトします。 3 | ポーリングのターンアラウンドタイムたパフォーマンスを向上するためにフックを設定する場合は、 4 | Post-commit hookを参照してください。 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionSCM/help_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 由 Subversion 儲存庫 Check Out 原始碼。請參考 3 | post-commit Hook 設定,取代輸詢,改善等候及執行的時間和效能。 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/help-credential.html: -------------------------------------------------------------------------------- 1 |
2 | Often creating a new tag on the repository requires a credential. 3 | By default, Jenkins uses the same credential it uses for checking out and updating workspaces during builds, 4 | but in some Subversion server set up, that credential may not have enough permissions to create a tag 5 | (a typical example of this is a Subversion repository that allows anonymous read-only access.) 6 | 7 |

8 | In such a case, use this option to specify alternative credential that has necessary permissions. 9 | This credential is used for just one time. This option is also useful if leaving the correct record 10 | of who created a tag is important for you. 11 |

-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/help-credential_de.html: -------------------------------------------------------------------------------- 1 |
2 | In vielen Fällen wird zum Anlegen eines Tags eine Authentifizierung verlangt. 3 | Per Default verwendet Jenkins hier dieselben Daten zur Authentifizierung, die auch 4 | zum Auschecken und Aktualisieren eines Arbeitsbereichs während des Builds eingesetzt 5 | werden. Je nach Konfiguration des Subversion-Servers können diese Berechtigungen 6 | jedoch nicht ausreichen, um Tags anzulegen (ein typisches Beispiel sind Subversion-Repositories, 7 | die anonymen Lesezugriff erlauben). 8 | 9 |

10 | In diesen Fällen verwenden Sie diese Option, um eine alternative Authentifizierung mit 11 | ausreichenden Rechten anzugeben. Diese Daten werden nur einmal verwendet. Diese Option 12 | ist auch hilfreich, wenn es für Sie aus Gründen der Nachvollziehbarkeit wichtig ist, 13 | Tags unter einem ganz bestimmten Benutzerkonto anzulegen. 14 |

-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/help-credential_ja.html: -------------------------------------------------------------------------------- 1 |
2 | リポジトリでの新しいタグの作成に認証が必要になることがあります。 3 | デフォルトでは、ビルド中にチェックアウトしたりワークスペースを更新する際に使用する認証と同一のものを使用します。 4 | しかし、Subversionサーバによってはタグを作成するのに必要な権限を持っていないこともあります 5 | (良くある例として、Subversionのリポジトリがリードオンリーな匿名アクセスのみ許可している場合があります)。 6 | 7 |

8 | そのような場合、このオプションを使用して十分な権限がある他の認証を指定します。 9 | この認証は1度だけ使用されます。このオプションは、誰がタグを作成したのか記録として残したい場合にも便利です。 10 |

-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/help-credential_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 通常在儲存庫上面建 Tag 都需要憑證。 3 | Jenkins 預設會用建置時 Check Out 及更新工作區時的同一個憑證,但在某些 Subversion 4 | 伺服器上,那個憑證的權限可能不夠,無法建立 Tag (開放匿名唯讀的 Subversion 儲存庫就是典型的例子。) 5 | 6 |

7 | 如果遇到這個情況,請用這個選項指定另一組權限夠的憑證。 8 | 這個憑證只會用一次。如果什麼人建了什麼 Tag 對您的團隊而言意義重大的話,我們這方便也做得不錯。 9 |

-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/svn-tagform-update-row.js: -------------------------------------------------------------------------------- 1 | // update the visual feedback depending on the checkbox state 2 | function updateRow(changeEvent) { 3 | const checkbox = changeEvent.target; 4 | checkbox.parentNode.parentNode.style.color = checkbox.checked ? "inherit" : "grey"; 5 | 6 | const index = checkbox.getAttribute("data-index"); 7 | document.querySelector(`input[name="name${index}"]`).disabled = !checkbox.checked; 8 | } 9 | 10 | window.addEventListener("DOMContentLoaded", () => { 11 | document.querySelectorAll(".svn-tagform-tag-checkbox").forEach((checkbox) => { 12 | checkbox.addEventListener("change", updateRow); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/tagForm_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionTagAction/tagForm_de.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/tagForm_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/SubversionTagAction/tagForm_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/tagForm_nl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, id:sorokh 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | This\ build\ is\ already\ tagged=Deze bouwpoging werd al gelabeled 24 | Module\ URL=Module URL 25 | Tag\ URL=Label URL 26 | Tag=Label 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/tagForm_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Reginaldo L. Russinholi 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | This\ build\ is\ already\ tagged=Esta constru\u00E7\u00E3o j\u00E1 est\u00E1 marcada 24 | Module\ URL=URL do m\u00F3dulo 25 | Tag\ URL=URL da marca\u00E7\u00E3o 26 | Tag=Marca\u00E7\u00E3o 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/SubversionTagAction/tagForm_tr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Oguz Dag 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | This\ build\ is\ already\ tagged=Bu yap\u0131land\u0131rma daha \u00f6nceden tag''lenmi\u015ftir 24 | Module\ URL=Mod\u00fcl URL''i 25 | Tag\ URL=Tag URL''i 26 | Tag=Tag 27 | Create\ more\ tags=Daha fazla tag olu\u015ftur 28 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_de.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Repository\ Instance=Repository-Instanz 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_es.properties: -------------------------------------------------------------------------------- 1 | URL=URL 2 | Repository\ Instance=Instancia de repositorio 3 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Repository\ Instance=Nom de l''instance du repository 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_ja.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Repository\ Instance=\u30EA\u30DD\u30B8\u30C8\u30EA\u30FB\u30A4\u30F3\u30B9\u30BF\u30F3\u30B9 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_nl.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Wim Rosseel 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | URL=URL 23 | Repository\ Instance=Naam repository-instantie 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/config_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Repository\ Instance=\u5132\u5b58\u5eab 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the Sventon repository instance name that references this subversion repository. 3 | For example, if you normally browse from http://somehost.com/svn/repobrowser.svn?name=local, 4 | this field would be local 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie den Namen der Sventon Repository-Instanz an, welche dieses Subversion-Repository referenziert. 3 | Beispiel: Wenn Ihre URL typischerweise dem Aufbau http://somehost.com/svn/repobrowser.svn?name=local folgt, 4 | tragen Sie in dieses Feld local ein. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Indiquez ici le nom de l'instance de repository Sventon qui fait 3 | référence à ce repository Subversion. 4 | Par exemple, si vous naviguez habituellement à partir de 5 | http://somehost.com/svn/repobrowser.svn?name=local, 6 | ce champ devrait contenir local 7 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_ja.html: -------------------------------------------------------------------------------- 1 |
2 | このSubversionのリポジトリを参照する、Sventonのリポジトリのインスタンス名を指定します。 3 | 例えば、通常http://somehost.com/svn/repobrowser.svn?name=localを指定して参照するなら、 4 | この項目には、localを指定します。 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_nl.html: -------------------------------------------------------------------------------- 1 |
2 | Geef de Sventon repository-instantienaam op die refereert naar deze subversion repository. 3 | Vb., indien U normaal volgende url http://somehost.com/svn/repobrowser.svn?name=lokaal, om 4 | uw repository in Sventon te visualizeren, dien je hier lokaal in te vullen. 5 |
6 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите экземпляр репозитория Sventon который соответствует этому репозиторию Subversion. 3 | Например, если вы обычно используете http://somehost.com/svn/repobrowser.svn?name=local, 4 | в этом поле должно стоять local. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Subversion repository için bir Sventon repository adı verin. 3 | Mesela, eğer local yazarsanız, 4 | http://somehost.com/svn/repobrowser.svn?name=local adresinden görürsünüz. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-repositoryInstance_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定 Sventon 參照到 Subversion 儲存庫的儲存庫名稱。 3 | 假設您都是從 http://somehost.com/svn/repobrowser.svn?name=local 瀏覽,這個欄位就填 local。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the URL of the Sventon repository browser. 3 | For example, if you normally browse from http://somehost.com/svn/repobrowser.svn?name=local, 4 | this field would be http://somehost.com/svn/ 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie die URL des Sventon Repository-Browsers an. 3 | Beispiel: Wenn Ihre URL typischerweise dem Aufbau http://somehost.com/svn/repobrowser.svn?name=local folgt, 4 | tragen Sie in dieses Feld http://somehost.com/svn/ ein. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Indiquez ici l'URL du navigateur de repository Sventon. 3 | Par exemple, si vous naviguez habituellement sur 4 | http://somehost.com/svn/repobrowser.svn?name=local, 5 | ce champ devrait contenir http://somehost.com/svn/ 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_ja.html: -------------------------------------------------------------------------------- 1 |
2 | SventonリポジトリブラウザーのURLを指定します。 3 | 例えば、通常http://somehost.com/svn/repobrowser.svn?name=localを指定して参照するなら、 4 | この項目には、http://somehost.com/svn/を指定します。 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите URL вашего экземпляра Sventon. 3 | 4 | Например, если вы обычно используете http://somehost.com/svn/repobrowser.svn?name=local, 5 | в этом поле должно стоять http://somehost.com/svn/. 6 |
7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Sventon repository tarayıcısı için URL yazın. 3 | Mesela, http://somehost.com/svn/repobrowser.svn?name=local için http://somehost.com/svn/. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/AbstractSventon/help-url_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定 Sventon 儲存庫瀏覽器的 URL。 3 | 假設您都是從 http://somehost.com/svn/repobrowser.svn?name=local 瀏覽,這個欄位就填 4 | http://somehost.com/svn/。 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/Assembla/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url.html: -------------------------------------------------------------------------------- 1 |
2 | The repository browser URL for the root of the project. 3 | For example, a Java.net project called myproject would use 4 | https://myproject.dev.java.net/source/browse/myproject. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_de.html: -------------------------------------------------------------------------------- 1 |
2 | Die Repository-Browser-URL zum Stammverzeichnis des Projekts. 3 | Beispiel: Ein Java.net-Projekt names myproject würde 4 | https://myproject.dev.java.net/source/browse/myproject verwenden. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | L'URL racine du projet pour le navigateur de l'outil de gestion de configuration du code. 3 | Par exemple, pour un projet java.net appelé monprojet : 4 | https://monprojet.dev.java.net/source/browse/monprojet. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_ja.html: -------------------------------------------------------------------------------- 1 |
2 | プロジェクトのルート用のリポジトリブラウザURL。 3 | 例えば、myproject というJava.netのプロジェクトは、 4 | https://myproject.dev.java.net/source/browse/myprojectです。 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | URL просмотрщика репозитория для корневой директории проекта. 3 | Например, Java.net проект с именем myproject должен 4 | использовать https://myproject.dev.java.net/source/browse/myproject. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Projeyi görebilmek için gereken repository tarayacısının URL'idir. 3 | Mesela, myproject isminde bir Java.net projesi 4 | https://myproject.dev.java.net/source/browse/myproject URL'ini kullanacaktır. 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/CollabNetSVN/help-url_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 專案最上層的儲存庫瀏覽器 URL。 3 | 舉例來說,一個叫做 myproject 的 Java.net 專案,會是 4 | https://myproject.dev.java.net/source/browse/myproject。 5 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/config_de.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Simon Wiest 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Root\ module=Modul-Stammverzeichnis 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/config_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/FishEyeSVN/config_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Eric Lefevre-Ardant 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Root\ module=Module racine 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/config_ja.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi, Seiji Sogabe 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Root\ module=\u30EB\u30FC\u30C8\u30E2\u30B8\u30E5\u30FC\u30EB -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/config_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | URL=URL 24 | Root\ module=\u6700\u4e0a\u5c64\u6a21\u7d44 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the root Subversion module that this FishEye monitors. 3 | For example, for http://fisheye6.cenqua.com/browse/ant/, 4 | this field would be ant because it displays the directory "/ant" 5 | of the ASF repo. If FishEye is configured to display the whole SVN repository, 6 | leave this field empty. 7 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie das Stammverzeichnis des Moduls an, das FishEye überwacht. 3 | Beispiel: Für http://fisheye6.cenqua.com/browse/ant/, 4 | würden Sie in dieses Feld ant eintragen, weil es das Verzeichnis /ant 5 | des ASF-Repositories anzeigt. Lassen Sie das Feld frei, wenn FishEye so 6 | konfiguriert ist, daß es das komplette SVN-Repository anzeigt. 7 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Spécifiez ici le module racine Subversion que ce FishEye obsverve. 3 | Par exemple, pour http://fisheye6.cenqua.com/browse/ant/, 4 | ce champ serait ant car il affiche le répertoire "/ant" 5 | du repository ASF. Si FishEye est configuré de façon à afficher le 6 | répertoire SVN en entier, laissez ce champ vide. 7 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_ja.html: -------------------------------------------------------------------------------- 1 |
2 | このFisyEyeが監視するSubversionのルートモジュールを設定します。 3 | 例えば、http://fisheye6.cenqua.com/browse/ant/であれば、 4 | この項目はantになります。なぜなら、ASFのリポジトリに"/ant"ディレクトリを表示するからです。 5 | SVNのリポジトリすべてを表示するようにしたいのなら、この項目には何も設定しないでください。 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите корневой модуль Subversion, который использует FishEye. 3 | Например для http://fisheye6.cenqua.com/browse/ant/, 4 | это поле должно содержать ant, так как он отображает содержимое 5 | директории "/ant" репозитория ASF. Если FishEye сконфигурирован для 6 | отображения всего репозитория, оставьте это поле пустым. 7 |
8 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_tr.html: -------------------------------------------------------------------------------- 1 |
2 | FishEye'ın gözleyebilmesi için Subversion'ın ana modülünü belirleyin. 3 | Mesela, http://fisheye6.cenqua.com/browse/ant/ şeklinde görebilmek için, 4 | bu alanın ant olması gerekir. Eğer FishEye'ın tüm SVN repository'yi göstermesi 5 | isteniyorsa, bu alan boş bırakılmalıdır. 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-rootModule_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定 FishEye 監控的 Subversion 最上層模組。 3 | 以 http://fisheye6.atlassian.com/browse/ant/ 為例,這一欄要填 4 | ant,因為它會顯示 Apache 軟體基金會 (ASF) 儲存庫的 "/ant" 目錄。 5 | 如果 FishEye 設定成顯示整個 SVN 儲存庫,這一欄就不要填。 6 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the URL of this module in FishEye. 3 | (such as http://fisheye6.cenqua.com/browse/ant/) 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie die FishEye-URL des Moduls an, z.B. 3 | http://fisheye6.cenqua.com/browse/ant/. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Spécifiez ici l'URL de ce module dans FishEye. 3 | (par exemple http://fisheye6.cenqua.com/browse/ant/) 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_ja.html: -------------------------------------------------------------------------------- 1 |
2 | FishEyeのこのモジュールのURLを指定します 3 | (例 http://fisheye6.cenqua.com/browse/ant/)。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_pt_BR.html -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите URL этого модуля в FishEye. Например, 3 | http://fisheye6.cenqua.com/browse/ant/. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Bu modülün FishEye URL'ini belirleyin 3 | (mesela http://fisheye6.cenqua.com/browse/ant/) 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/FishEyeSVN/help-url_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定這個模組在 FishEye 裡的 URL 3 | (例如 http://fisheye6.cenqua.com/browse/ant/)。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/Phabricator/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/SVNWeb/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the root URL of ViewSVN for this repository 3 | (such as this). 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_de.html: -------------------------------------------------------------------------------- 1 |
2 | Geben Sie die ViewSVN-Stamm-URL für dieses Repository an, z.B. 3 | http://svn.apache.org/viewvc. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Indiquez ici l'URL racine de ViewSVN pour ce repository 3 | (par exemple, comme ceci). 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_ja.html: -------------------------------------------------------------------------------- 1 |
2 | このリポジトリ用のViewSVNのルートURLを指定します 3 | ()。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_pt_BR.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the root URL of ViewSVN for this repository 3 | (such as this). 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Укажите корневой URL ViewSVN для этого репозитория, например, 3 | так: http://svn.apache.org/viewvc. 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_tr.html: -------------------------------------------------------------------------------- 1 |
2 | Bu repository'nin ViewSVN ile görüntülenebilmesi için bir başlangıç URL'i girin. 3 | (mesela linki gibi). 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/ViewSVN/help-url_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定儲存庫的 ViewSVN 最上層 URL 3 | (例如 http://svn.apache.org/viewvc)。 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/VisualSVN/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/VisualSVN/help-url.html: -------------------------------------------------------------------------------- 1 |
2 | Specify the root URL of VisualSVN for this repository 3 | (such as https://demo-server.visualsvn.com/!/#tortoisesvn). 4 |
-------------------------------------------------------------------------------- /src/main/resources/hudson/scm/browsers/WebSVN/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2010-2011, Manufacture Francaise des Pneumatiques Michelin, 4 | # Romain Seguy 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | 24 | DisplayName=List Subversion tags (and more) 25 | TagDescription=Select a Subversion entry 26 | SVNException=An SVN exception occurred while listing the directory entries. 27 | NotValidRegex=This is not a valid regular expression 28 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-defaultValue.html: -------------------------------------------------------------------------------- 1 | 24 | 25 |
26 | For features such as SVN polling a default value is required. If job will only 27 | be started manually, this field is not necessary. 28 |
29 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-defaultValue_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 對 SVN 輪詢這類功能而言,一定要指定預設值。如果作業只會手動啟動,這個欄位不填也沒有關係。 3 |
4 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-maxTags.html: -------------------------------------------------------------------------------- 1 | 24 | 25 |
26 | The maximum number of tags to display in the dropdown. Any non-number value 27 | will default to all. 28 |
29 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-maxTags_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 要顯示在下拉選單中的 Tag 筆數的最大值。如果輸入的不是數字就代表使用預設值,全部都顯示。 3 |
4 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-reverseByDate.html: -------------------------------------------------------------------------------- 1 | 24 | 25 |
26 | Check this option so that tags are sorted from the newest to the oldest. 27 | 28 |

29 | If this option is checked, the Sort Z to A one won't be taken into 30 | account. 31 |

32 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-reverseByDate_fr.html: -------------------------------------------------------------------------------- 1 | 24 | 25 |
26 | Cocher cette option pour trier les tags du plus récent au plus ancien. 27 | 28 |

29 | Si cette option est coché, le Trier par ordre alphabétique inverse ne sera pas pris en compte. 30 |

31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-reverseByDate_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 使用這個選項可以讓 Tag 由新到舊排序。 3 | 4 |

5 | 如果選了這個選項,由 Z 到 A 排序這個選項就不會有作用。 6 |

7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-reverseByName_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 使用這個選項可以連 Tag 以相反的順序顯示 (由 Z 排到 A)。 3 | 4 |

5 | 注意,要是選了由新到舊排序,這個選項就會失效。 6 |

7 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-tagsDir_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定觸發新建置時,有要顯示 Tag 的 Subversion 儲存庫 URL。 3 | 4 |

5 | 您也可以設定 Subversion 儲存庫根目錄: 6 | 如果那個目錄裡有 trunk, branchestags 7 | 子目錄,那麼下拉選單就會顥示 trunk 以及 branches 跟 tags 目錄下的所有子目錄。 8 | 如果根目錄裡沒有那三個檔案,那當中的所有子目錄都會顯示在下拉選單裡。 9 | 10 |

11 | 當您輸入 URL 後,Jenkins 會自動檢查是否能連到。需要驗證的話,會再提示您輸入必要的憑證資料。 12 | 如果您已經輸入過憑證,但是基於某些原因想換成別的,請連到這裡設定不同的憑證。 14 |

15 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help-tagsFilter_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 設定要用來篩選 Tag 的正規表示式。 3 | 觸發新建置時只會顯示符合篩選條件的 Tag。 4 |
5 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition/help_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | 使用本參數後,建置時會要使用者選擇將從 Subversion 複製到工作區的 Tag。 3 | 4 |

5 | 一但名稱儲存庫 URL 6 | 兩個欄位設定了,就必須: 7 |

    8 |
  1. 確認作業使用 Subversion 9 |
  2. Subversion儲存庫 URL 10 | 欄位設定成本參數裡兩個欄位值串接起來的值。 11 |
12 | 舉例來說,如果名稱SVN_TAG ,而儲存庫 URL 是 13 | https://svn.jenkins-ci.org/tags,那麼 14 | Subversion儲存庫 URL 就要設定成 15 | https://svn.jenkins-ci.org/tags/$SVN_TAG。 16 | 17 |

18 | 注意,要是您把儲存庫 URL欄位設定成 Subversion 儲存庫的最上層,而不是指到 19 | tags 目錄 (例如設定成 https://svn.jenkins-ci.org,而不是 20 | https://svn.jenkins-ci.org/tags)。如果儲存庫根目錄裡有 trunk, 21 | branchestags 三個目錄,那麼這個下拉選單就會讓使用者選擇要用 22 | trunk 或是某一版的 branch 或 tag。 23 |

24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterDefinition_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | DisplayName=\u5217\u51fa Subversion Tag (\u53ca\u5176\u4ed6) 24 | TagDescription=\u9078\u64c7 Subversion \u9805\u76ee 25 | SVNException=\u5217\u51fa\u76ee\u9304\u9805\u76ee\u6642\u767c\u932f SVN \u932f\u8aa4\u3002 26 | NotValidRegex=\u9019\u500b\u6b63\u898f\u8868\u793a\u5f0f\u4e0d\u6b63\u78ba\u3002 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterValue/value_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Repository\ URL=URL du d\u00e9p\u00f4t 24 | Tag=Tag 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/listtagsparameter/ListSubversionTagsParameterValue/value_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | Repository\ URL=\u5132\u5b58\u5eab URL 24 | Tag=Tag 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/CheckoutUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | ${%blurb} 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/CheckoutUpdater/config.properties: -------------------------------------------------------------------------------- 1 | blurb=Delete everything first, then perform "svn checkout". While this takes time to execute, it ensures that the workspace is in the pristine state. -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/CheckoutUpdater/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=D''abord tout supprimer, puis faire un "svn checkout". Bien que cela prend du temps \u00e0 ex\u00e9cuter, on s''assure que l''espace de travail est \u00e0 l''\u00e9tat vierge. 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/CheckoutUpdater/config_ja.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | \u6700\u521d\u306b\u3059\u3079\u3066\u3092\u524a\u9664\u3057\u3066\u304b\u3089''svn checkout''\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002\u5b9f\u884c\u306b\u6642\u9593\u304c\u304b\u304b\u308a\u307e\u3059\u304c\u3001\u78ba\u5b9f\u306b\u30ef\u30fc\u30af\u30b9\u30da\u30fc\u30b9\u3092\u5143\u306e\u72b6\u614b\u306b\u306a\u308a\u307e\u3059\u3002 -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/CheckoutUpdater/config_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=\ 24 | \u6bcf\u6b21\u90fd\u5148\u628a\u6a94\u6848\u522a\u5149\u518d\u57f7\u884c "svn checkout"\u3002\ 25 | \u96d6\u7136\u6bcf\u6b21\u90fd\u8981\u82b1\u6bd4\u8f03\u591a\u6642\u9593\u57f7\u884c\uff0c\u4f46\u662f\u53ef\u4ee5\u78ba\u4fdd\u5de5\u4f5c\u5340\u662f\u4e7e\u6de8\u7684\u3002 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/Messages_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/subversion/Messages_de.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/Messages_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/subversion/Messages_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/NoopUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | ${%blurb} 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/NoopUpdater/config.properties: -------------------------------------------------------------------------------- 1 | blurb=This option allows to use native svn client to update working copy to avoid slow java svn client. Use ''pre-scm-buildstep'' plugin to update working copy. 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/NoopUpdater/sample_noop_svn_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/subversion/NoopUpdater/sample_noop_svn_config.png -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | ${%blurb} 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateUpdater/config.properties: -------------------------------------------------------------------------------- 1 | blurb=Use ''svn update'' whenever possible, making the build faster. But this causes the artifacts from the previous build to remain when a new build starts. -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateUpdater/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=Utiliser ''svn update'' aussi souvent que possible rendra la build plus rapide. Mais cela entra\u00eene des artefacts de la pr\u00e9c\u00e9dente build qui vont rester quand la nouvelle build commencera. 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateUpdater/config_ja.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | \u3088\u308a\u901f\u304f\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u3001\u3067\u304d\u308b\u9650\u308a''svn update''\u3092\u4f7f\u7528\u3057\u307e\u3059\u304c\u3001\ 3 | \u65b0\u3057\u304f\u30d3\u30eb\u30c9\u3092\u958b\u59cb\u3059\u308b\u969b\u306b\u3001\u524d\u306e\u30d3\u30eb\u30c9\u306e\u6210\u679c\u7269\u3092\u305d\u306e\u307e\u307e\u6b8b\u3057\u3066\u3057\u307e\u3044\u307e\u3059\u3002 4 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateUpdater/config_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=\ 24 | \u76e1\u53ef\u80fd\u4f7f\u7528 ''svn update''\uff0c\u8b93\u5efa\u7f6e\u5feb\u4e00\u9ede\u3002\ 25 | \u4f46\u662f\u5728\u5efa\u7f6e\u65b0\u7248\u6642\uff0c\u820a\u7684\u6210\u54c1\u6216\u5176\u4ed6\u7522\u51fa\u7269\u53ef\u80fd\u9084\u6703\u7559\u8457\u3002 26 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithCleanUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | ${%blurb} 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithCleanUpdater/config.properties: -------------------------------------------------------------------------------- 1 | blurb=Jenkins will first remove all the unversioned/modified files/directories, as well as files/directories ignored by "svn:ignore", then execute "svn update". \ 2 | This emulates the fresh check out behaviour without the cost of full checkout. -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithCleanUpdater/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=Jenkins va d''abord supprimer tous les fichiers/dossiers non versionn\u00e9s ou modifi\u00e9s, ainsi que les fichiers/dossiers ignor\u00e9s par "svn:ignore", puis ex\u00e9cuter "svn update". \ 24 | \u00c7a simule le comportement d''un nouveau checkout sans le co\u00fbt d''un checkout complet. 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithCleanUpdater/config_ja.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | ''svn:ignore''\u304c\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3001\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044/\u7121\u8996\u3059\u308b\u3059\u3079\u3066\u306e\u30d5\u30a1\u30a4\u30eb\u3084\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6700\u521d\u306b\u524a\u9664\u3057\u3066\u304b\u3089\u3001\ 3 | ''svn update''\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002\u3053\u308c\u306f\u3001\u3059\u3079\u3066\u3092\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u3059\u308b\u30b3\u30b9\u30c8\u3092\u304b\u3051\u305a\u306b\u3001\u65b0\u898f\u306e\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u3059\u308b\u632f\u308b\u821e\u3044\u3092\u30a8\u30df\u30e5\u30ec\u30fc\u30c8\u3057\u307e\u3059\u3002 4 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithRevertUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 24 | 25 | 26 | 27 | 28 | ${%blurb} 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithRevertUpdater/config.properties: -------------------------------------------------------------------------------- 1 | blurb=Do ''svn revert'' before doing ''svn update''. This slows down builds a bit, but this prevents files from getting modified by builds. 2 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithRevertUpdater/config_fr.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=Fais un ''svn revert'' avant de faire un ''svn update''. Cela ralentit un peu le temps de la build, mais emp\u00eache d''avoir des fichiers modifi\u00e9s par la pr\u00e9c\u00e9dente build. 24 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithRevertUpdater/config_ja.properties: -------------------------------------------------------------------------------- 1 | blurb=\ 2 | ''svn update''\u3059\u308b\u524d\u306b''svn revert''\u3092\u5b9f\u884c\u3057\u307e\u3059\u3002\u30d3\u30eb\u30c9\u304c\u3059\u3053\u3057\u9045\u304f\u306a\u308a\u307e\u3059\u304c\u3001\u30d3\u30eb\u30c9\u306b\u3088\u3063\u3066\u30d5\u30a1\u30a4\u30eb\u304c\u5909\u66f4\u3055\u308c\u308b\u306e\u3092\u9632\u304e\u307e\u3059\u3002 3 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/UpdateWithRevertUpdater/config_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2013, Chunghwa Telecom Co., Ltd., Pei-Tang Huang 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | blurb=\u5728 ''svn update'' \u5148 ''svn revert''\u3002\ 24 | \u9019\u6703\u62d6\u6162\u4e00\u9ede\u5efa\u7f6e\u901f\u5ea6\uff0c\u4f46\u662f\u53ef\u4ee5\u907f\u514d\u6a94\u6848\u5728\u5efa\u7f6e\u6642\u88ab\u4fee\u6539\u6389\u6240\u53ef\u80fd\u7522\u751f\u7684\u554f\u984c\u3002 25 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/WorkspaceUpdater/config.jelly: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/enterCredential_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/subversion/enterCredential_es.properties -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/enterCredential_ru.properties: -------------------------------------------------------------------------------- 1 | # The MIT License 2 | # 3 | # Copyright (c) 2004-2010, Sun Microsystems, Inc. 4 | # 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy 6 | # of this software and associated documentation files (the "Software"), to deal 7 | # in the Software without restriction, including without limitation the rights 8 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | # copies of the Software, and to permit persons to whom the Software is 10 | # furnished to do so, subject to the following conditions: 11 | # 12 | # The above copyright notice and this permission notice shall be included in 13 | # all copies or substantial portions of the Software. 14 | # 15 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | # THE SOFTWARE. 22 | 23 | PKCS12\ certificate=PKCS12 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043A\u0430\u0442 24 | Password=\u041F\u0430\u0440\u043E\u043B\u044C 25 | Private\ key=\u041F\u0440\u0438\u0432\u0430\u0442\u043D\u044B\u0439 \u043A\u043B\u044E\u0447 26 | User\ name=\u041F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C 27 | -------------------------------------------------------------------------------- /src/main/resources/hudson/scm/subversion/taglib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/resources/hudson/scm/subversion/taglib -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- 1 | 2 |
3 | This plugin adds Apache Subversion support (via SVNKit) to Jenkins. 4 |
-------------------------------------------------------------------------------- /src/main/resources/jenkins/scm/impl/subversion/Messages.properties: -------------------------------------------------------------------------------- 1 | # 2 | # The MIT License 3 | # 4 | # Copyright (c) 2013, CloudBees, Inc., Stephen Connolly. 5 | # 6 | # Permission is hereby granted, free of charge, to any person obtaining a copy 7 | # of this software and associated documentation files (the "Software"), to deal 8 | # in the Software without restriction, including without limitation the rights 9 | # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | # copies of the Software, and to permit persons to whom the Software is 11 | # furnished to do so, subject to the following conditions: 12 | # 13 | # The above copyright notice and this permission notice shall be included in 14 | # all copies or substantial portions of the Software. 15 | # 16 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | # THE SOFTWARE. 23 | # 24 | SubversionSCMSource.DisplayName=Subversion 25 | SubversionStep.subversion=Subversion 26 | -------------------------------------------------------------------------------- /src/main/resources/jenkins/scm/impl/subversion/SubversionSCMSource/resource.js: -------------------------------------------------------------------------------- 1 | Behaviour.specify("#svnerrorlink", "SubversionSCMSource_showDetails", 0, (element) => { 2 | element.addEventListener("click", (event) => { 3 | event.preventDefault(); 4 | 5 | document.getElementById("svnerror").style.display = "block"; 6 | event.target.style.display = "none"; 7 | }); 8 | }); 9 | -------------------------------------------------------------------------------- /src/main/resources/jenkins/scm/impl/subversion/SubversionStep/config.jelly: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/main/resources/jenkins/scm/impl/subversion/SubversionStep/help.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | SVN step. It performs a checkout from the specified repository. 4 |

5 |

6 | Note that this step is shorthand for the generic SCM step:

 7 | checkout([$class: 'SubversionSCM', remote: 'http://sv-server/repository/trunk']]])
 8 |     
9 |

10 |
-------------------------------------------------------------------------------- /src/main/webapp/pass-phrase.html: -------------------------------------------------------------------------------- 1 |
2 | SSH private keys can be encrypted with a passphrase. If your key has a passphrase, 3 | specify that here. Otherwise leave it blank. 4 |
-------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_de.html: -------------------------------------------------------------------------------- 1 |
2 | Private SSH-Schlüssel können mit einem Passwort geschützt sein. Dieses spezielle 3 | Passwort wird auch als "pass phrase" bezeichnet. Falls Ihr SSH-Schlüssel ein 4 | solches Passwort besitzt, geben Sie es hier an. Ansonsten lassen Sie das Feld leer. 5 |
-------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_fr.html: -------------------------------------------------------------------------------- 1 | 
2 | Les clefs privées SSH peuvent être encryptées avec une phrase secrète. 3 | Si votre clef utilise une phrase secrète, indiquez-la ici. Sinon, 4 | laissez ce champ vide. 5 |
6 | -------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_ja.html: -------------------------------------------------------------------------------- 1 |
2 | SSHの秘密鍵にパスフレーズを設定します。もし、パスフレーズを設定している場合は、 3 | ここで指定します。そうでなければ、空欄のままにします。 4 |
5 | -------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_pt_BR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/main/webapp/pass-phrase_pt_BR.html -------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_ru.html: -------------------------------------------------------------------------------- 1 | 
2 | Приватные ключи SSH могут быть зашифрованы паролем. Если ваш ключ имеет пароль, 3 | укажите его здесь. Иначе оставьте поле пустым. 4 |
-------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_tr.html: -------------------------------------------------------------------------------- 1 |
2 | SSH özel anahtarları, bir passphrase yardımı ile şifrelenir. Eğer anahtarınızın 3 | bir passphrase'i varsa, buraya yazabilirsiniz. Aksi takdirde boş bırakın. 4 |
-------------------------------------------------------------------------------- /src/main/webapp/pass-phrase_zh_TW.html: -------------------------------------------------------------------------------- 1 |
2 | SSH 私有金鑰可以用複雜密碼 (Passphrase) 加密。如果您的金鑰用了複雜密碼,請在這裡指定; 不然就留空。 3 |
-------------------------------------------------------------------------------- /src/test/java/hudson/scm/SubversionChangeLogUtil.java: -------------------------------------------------------------------------------- 1 | package hudson.scm; 2 | 3 | public class SubversionChangeLogUtil { 4 | 5 | static SubversionChangeLogSet.LogEntry buildChangeLogEntry(int revision, String msg) { 6 | SubversionChangeLogSet.LogEntry entry = new SubversionChangeLogSet.LogEntry(); 7 | entry.setRevision(revision); 8 | entry.setMsg(msg); 9 | return entry; 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/test/java/hudson/scm/SubversionSCMChangeLogEntryTest.java: -------------------------------------------------------------------------------- 1 | package hudson.scm; 2 | 3 | import static org.hamcrest.CoreMatchers.*; 4 | import static org.junit.Assert.*; 5 | 6 | import org.junit.Test; 7 | 8 | 9 | public class SubversionSCMChangeLogEntryTest { 10 | 11 | private SubversionChangeLogSet.LogEntry entry = SubversionChangeLogUtil.buildChangeLogEntry(99, "Dummy"); 12 | 13 | @Test 14 | public void testRemoveIgnoredDirPropChangesNotRemoving() throws Exception { 15 | addPathToEntry("A", "file", "a"); 16 | addPathToEntry("A", "dir", "b"); 17 | addPathToEntry("D", "file", "c"); 18 | addPathToEntry("D", "dir", "d"); 19 | addPathToEntry("M", "file", "e"); 20 | 21 | int oldSize = entry.getPaths().size(); 22 | entry.removePropertyOnlyPaths(); 23 | assertThat(entry.getPaths().size(), is(oldSize)); 24 | } 25 | 26 | @Test 27 | public void testRemoveIgnoredDirPropChanges() throws Exception { 28 | addPathToEntry("A", "file", "filetokeep"); 29 | addPathToEntry("M", "dir", "dirtodelete"); 30 | addPathToEntry("M", "dir", "anotherdirtodelete"); 31 | entry.removePropertyOnlyPaths(); 32 | assertThat(entry.getPaths().size(), is(1)); 33 | } 34 | 35 | private void addPathToEntry(String action, String kind, String path) { 36 | SubversionChangeLogSet.Path result = new SubversionChangeLogSet.Path(); 37 | result.setAction(action); 38 | result.setKind(kind); 39 | result.setValue(path); 40 | result.setLogEntry(entry); 41 | entry.addPath(result); 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /src/test/java/jenkins/scm/impl/subversion/RemotableSVNErrorMessageTest.java: -------------------------------------------------------------------------------- 1 | package jenkins.scm.impl.subversion; 2 | 3 | import org.junit.Test; 4 | import org.tmatesoft.svn.core.SVNErrorCode; 5 | 6 | import static org.junit.Assert.assertNotNull; 7 | 8 | public class RemotableSVNErrorMessageTest { 9 | 10 | @Test 11 | public void shouldNotThrowNPEsInToString() { 12 | assertNotNull(new RemotableSVNErrorMessage(SVNErrorCode.APMOD_CONNECTION_ABORTED).toString()); 13 | assertNotNull(new RemotableSVNErrorMessage(SVNErrorCode.APMOD_CONNECTION_ABORTED, "message").toString()); 14 | assertNotNull(new RemotableSVNErrorMessage(SVNErrorCode.APMOD_CONNECTION_ABORTED, new Exception()).toString()); 15 | assertNotNull(new RemotableSVNErrorMessage(SVNErrorCode.APMOD_CONNECTION_ABORTED, "message", new Exception()).toString()); 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/HUDSON-1379.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/HUDSON-1379.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/HUDSON-6030.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/HUDSON-6030.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/HUDSON-7539.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/HUDSON-7539.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/JENKINS-10449.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/JENKINS-10449.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/JENKINS-16533.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/JENKINS-16533.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/JENKINS-20165.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/JENKINS-20165.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/JENKINS-6209.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/JENKINS-6209.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/JENKINS-777.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/JENKINS-777.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/changelog_relativepath.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | user 5 | 2014-05-03T12:45:33.664887Z 6 | 7 | /projectX/trunk/foo 8 | 9 | changed foo 10 | 11 | 12 | user 13 | 2014-05-03T12:45:33.664887Z 14 | 15 | /projectX/trunk/foo 16 | 17 | changed foo 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/changelog_unsorted.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | user 5 | 2011-07-14T15:25:09.982854Z 6 | 7 | /module-a/trunk/test-impl/src/main/java/org/test/Test1.java 8 | 9 | /integration-tests/trunk/src/test/java/org/test/testing/impl/TestService.java 10 | 11 | /module-b/trunk/src/main/java/org/test/a/Test2.java 12 | 13 | /module-a/trunk/test-impl/src/main/java/org/test/ITest.java 14 | 15 | 16 | A commit 17 | message 18 | 19 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/clean-update-test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/clean-update-test.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/ignoreProps.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/ignoreProps.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/legacy-checkout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | 10 | svn://localhost 11 | . 12 | 13 | 14 | false 15 | false 16 | 17 | 18 | 19 | 20 | 21 | 22 | true 23 | false 24 | false 25 | 26 | false 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/legacy-revert.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | 10 | svn://localhost 11 | . 12 | 13 | 14 | true 15 | true 16 | 17 | 18 | 19 | 20 | 21 | 22 | true 23 | false 24 | false 25 | 26 | false 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/legacy-update.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | 7 | 8 | 9 | 10 | svn://localhost 11 | . 12 | 13 | 14 | true 15 | false 16 | 17 | 18 | 19 | 20 | 21 | 22 | true 23 | false 24 | false 25 | 26 | false 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/listtagsparameter/JENKINS-11933.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/listtagsparameter/JENKINS-11933.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/small.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/small.zip -------------------------------------------------------------------------------- /src/test/resources/hudson/scm/two-revisions.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/hudson/scm/two-revisions.zip -------------------------------------------------------------------------------- /src/test/resources/svn-repo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/subversion-plugin/b684d6d3ce9febfb8124e682b86842c1167af373/src/test/resources/svn-repo.zip --------------------------------------------------------------------------------