<form method="POST" action="/deploy/${type.getId()}" class="form-horizontal dropzone" enctype="multipart/form-data" id="formDZ" data-toggle="validator" role="form"> <div class="form-group"> <div class="input-group"> <span class="input-group-addon">Repository</span> <select type="text" name="repoID" class="form-control"> <#list depots as d> <option value="${d.getName()}">${d.getTitle()}</option> </#list> </select> </div> </div> <div class="form-group"> <div class="input-group"> <span class="input-group-addon">Path</span> <input type="text" name="pathID" class="form-control" pattern="/([A-z0-9-_\.\/]){3,}" maxlength="256" placeholder="/main/resources" data-error="A valid Perforce path, starting with a '/' and consisting of 3 to 256 characters." required /> </div> <span class="help-block with-errors"></span> </div> <div class="form-group"> <button type="submit" class="btn btn-primary pull-right" id="submitDZ"> <i class="glyphicon glyphicon-upload"></i> <span>Upload</span> </button> </div> </form>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#5 | 15782 | Paul Allen |
Update to UX - deploy has 3 process steps (including a submit report) |
||
#4 | 14969 | Paul Allen | Form validation. | ||
#3 | 14897 | Paul Allen | Added form validation and Perforce Artifacts | ||
#2 | 14886 | Paul Allen | Asset --> Artifact refactor | ||
#1 | 14725 | Paul Allen | Generic deploy/upload |