ForgeSVN/forgesvn/templates/svn/checkout_url.html (71 lines of code) (raw):

{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% block content %} <form> <label class="grid-13" for="checkout_url">Checkout branch:</label> <div class="grid-9" style="text-align:right"> {{ app.repo.clone_url_first(anon=True) }} {% if allow_config %} <input type="text" name="checkout_url" id="checkout_url" {% if app.config.options.checkout_url %} value="{{app.config.options.checkout_url}}"{% endif %}/> {% else %} <span>{{checkout_url}}</span> {% endif %} </div> <div class="grid-4"> e.g., trunk </div> <div class="grid-13">&nbsp;</div> <label class="grid-4">External checkout URL:</label> <div class="grid-5" style="text-align:right"> <input type="text" name="external_checkout_url" id="external_checkout_url" value="{{app.config.options.external_checkout_url or ''}}"/> </div> <div class="grid-13"> Override the checkout URL with an external one. This is useful if this repository is a mirror of another, canonical repository. </div> {% if allow_config %} <div class="grid-13">&nbsp;</div> <hr> <div class="grid-13">&nbsp;</div> <div class="grid-13"> <input type="button" id="save-checkout-url" value="Save"> <a href="#" class="close">Cancel</a> </div> {% endif %} </form> {% if allow_config %} <script type="text/javascript"> function save_checkout_url() { var cval = $.cookie('_csrf_token'); $.post('{{c.project.url()}}admin/{{app.config.options.mount_point}}/set_checkout_url', { checkout_url: $('#checkout_url').val(), external_checkout_url: $('#external_checkout_url').val(), _csrf_token:cval }, function () { location.reload(); }); } $('#save-checkout-url').on('click', function(e){ save_checkout_url(); e.preventDefault(); }) </script> {% endif %} {% endblock %}