Skip to content

Commit b83eb7f

Browse files
authored
Migrate docs to github (#23)
* Migrate docs to github * Undo removed dep Co-authored-by: res0nance <[email protected]>
1 parent a56799c commit b83eb7f

7 files changed

+88
-5
lines changed

CHANGELOG.md

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Version History
2+
3+
## Version 2.4 (20-Apr-2018)
4+
5+
- Fixes Pipeline compatibility
6+
7+
## Version 2.3 (04-Feb-2015)
8+
9+
- Fixed links to regex pattern documentation
10+
- Use codemirror for the description field
11+
12+
## Version 2.2 (13-Sep-2011)
13+
14+
- [JENKINS-10139](http://issues.jenkins-ci.org/browse/JENKINS-10139)
15+
Fix for regex containing back slashes
16+
17+
## Version 2.1 (27-Feb-2011)
18+
19+
- If an invalid value is passed to the build, the build will be
20+
aborted and an error message will display in console indicating the
21+
parameter and failing value
22+
23+
## Version 2.0 (19-Feb-2011)
24+
25+
- Migrated code to jenkins and performed release
26+
27+
## Version 1.4 (13-Oct-2010)
28+
29+
- [JENKINS-7794](http://issues.jenkins-ci.org/browse/JENKINS-6158)
30+
validation check doesn't work if Jenkins is hosted with a context
31+
root
32+
33+
## Version 1.3 (22-May-2010)
34+
35+
- [JENKINS-6158](http://issues.jenkins-ci.org/browse/JENKINS-6158)
36+
Build will fail if invalid parameter is passed
37+
- [JENKINS-6160](http://issues.jenkins-ci.org/browse/JENKINS-6160)
38+
Jenkins will record regex used to validate the build parameter as
39+
part of build configuration and display as tooltip on the parameter
40+
page.
41+
42+
## Version 1.2 (29-Aug-2009)
43+
44+
- Used the javascript function encodeURIComponent to properly handle
45+
characters within the user entered values for regex and validation
46+
error message. (Issue
47+
[4334](http://wiki.jenkins-ci.org/pages/editpage.action?pageId=38928603))
48+
49+
## Version 1.1 (28-Aug-2009)
50+
51+
- Supported the release plugins as well as any other plugin that uses
52+
build parameters
53+
54+
## Version 1.0 (24-Aug-2009)
55+
56+
- Initial Version

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Validating String Parameter Plugin
2+
3+
The validating string parameter plugin contributes a new parameter type
4+
to Jenkins that supports regular expression validation of the user's
5+
entered parameter.
6+
7+
# Usage
8+
9+
This plugin is used wherever build parameter selection is available,
10+
most commonly in the job configuration page by enabling parameterized
11+
builds (this parameter type will also be available as release parameters
12+
using the [release
13+
plugin](https://plugins.jenkins.io/release/)).
14+
15+
Configure the parameter by entering a name, regular expression to
16+
validate the entered value and optionally a default value, an error
17+
message shown when the user entered value fails the regular expression
18+
check and a parameter description.
19+
![](docs/images/configure.PNG)
20+
21+
When a build is requested, the user will be prompted with the parameters
22+
to enter. Users enter the parameter as normal, but will now be prompted
23+
with an error message if the entered value does not meet the regular
24+
expression.
25+
26+
![](docs/images/build-error.PNG)
27+
28+
Once the entered value meets the configured regular expression, the
29+
error message is no longer displayed.
30+
31+
![](docs/images/build-success.PNG)

README.txt

-4
This file was deleted.

docs/images/build-error.PNG

5.99 KB
Loading

docs/images/build-success.PNG

4.74 KB
Loading

docs/images/configure.PNG

14.3 KB
Loading

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<packaging>hpi</packaging>
1111
<name>Validating String Parameter Plugin</name>
1212
<version>2.6-SNAPSHOT</version>
13-
<url>http://wiki.jenkins-ci.org/display/JENKINS/Validating+String+Parameter+Plugin</url>
13+
<url>https://github.com/jenkinsci/validating-string-parameter-plugin</url>
1414

1515
<properties>
1616
<java.level>8</java.level>

0 commit comments

Comments
 (0)