Skip to content

Commit

Permalink
Remove usages of Prototype (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Jul 18, 2023
1 parent 27fefb1 commit f906edb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<properties>
<changelist>9999-SNAPSHOT</changelist>
<jenkins.version>2.361.4</jenkins.version>
<jenkins.version>2.410</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<no-test-jar>false</no-test-jar>
<!-- TODO fix existing violations -->
Expand Down Expand Up @@ -82,8 +82,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.361.x</artifactId>
<version>2102.v854b_fec19c92</version>
<artifactId>bom-2.401.x</artifactId>
<version>2244.vd60654536b_96</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@

<f:entry title="Space" field="spaceName">
<f:textbox clazz="required"
checkUrl="'descriptorByName/ConfluencePublisher/spaceNameCheck?siteName='+Form.findMatchingInput(this,'siteName').value+'&amp;spaceName='+escape(this.value)" />
checkUrl="'descriptorByName/ConfluencePublisher/spaceNameCheck?siteName='+findMatchingFormInput(this,'siteName').value+'&amp;spaceName='+escape(this.value)" />
</f:entry>

<f:entry title="Page" field="pageName">
<f:textbox clazz="required"
checkUrl="'descriptorByName/ConfluencePublisher/pageNameCheck?siteName='+Form.findMatchingInput(this,'siteName').value+'&amp;spaceName='+Form.findMatchingInput(this,'_.spaceName').value+'&amp;pageName='+escape(this.value)" />
checkUrl="'descriptorByName/ConfluencePublisher/pageNameCheck?siteName='+findMatchingFormInput(this,'siteName').value+'&amp;spaceName='+findMatchingFormInput(this,'_.spaceName').value+'&amp;pageName='+escape(this.value)" />
</f:entry>

<f:entry title="Parent Page ID" field="parentId">
<f:textbox
checkUrl="'descriptorByName/ConfluencePublisher/parentIdCheck?siteName='+Form.findMatchingInput(this,'siteName').value+'&amp;spaceName='+Form.findMatchingInput(this,'_.spaceName').value+'&amp;parentId='+escape(this.value)" />
checkUrl="'descriptorByName/ConfluencePublisher/parentIdCheck?siteName='+findMatchingFormInput(this,'siteName').value+'&amp;spaceName='+findMatchingFormInput(this,'_.spaceName').value+'&amp;parentId='+escape(this.value)" />
</f:entry>

<f:entry title="Page Labels" field="labels" help="${descriptor.getHelpFile('labels')}">
Expand Down

0 comments on commit f906edb

Please sign in to comment.