removed setup page, now redirects to setup instructions (@ readthedocs)

This commit is contained in:
Brad Rydzewski 2014-09-24 21:24:52 -07:00
parent 46b3d9daae
commit 3b59f80f98
2 changed files with 2 additions and 107 deletions

View file

@ -20,8 +20,8 @@ minor modifications to the style that only apply to this view
</div>
<div class="pure-u-1" ng-if="state == 1 && remotes.length == 0">
<a href="/setup">
<i class="fa fa-rocket"></i> Launch Setup Wizard
<a href="http://drone.readthedocs.org/en/latest/setup.html" target="_blank">
<i class="fa fa-rocket"></i> Read the Setup Guide
</a>
</div>
</div>

View file

@ -1,105 +0,0 @@
<article id="setuppage" ng-if="remote.type == undefined">
<nav>
<a href="#"><span class="fa fa-th"></span></a>
<a href="#">Choose a Remote System</a>
</nav>
<section>
<div class="pure-g">
<div class="pure-u-1">
<a href="/setup/github.com">
<i class="fa fa-github-square"></i> GitHub
</a>
</div>
<div class="pure-u-1">
<a href="/setup/enterprise.github.com">
<i class="fa fa-github-square"></i> GitHub Enterprise
</a>
</div>
<div class="pure-u-1">
<a href="/setup/bitbucket.org">
<i class="fa fa-bitbucket-square"></i> Bitbucket
</a>
</div>
<div class="pure-u-1">
<a href="/setup/stash.atlassian.com">
<i class="fa fa-bitbucket-square"></i> Atlassian Stash
</a>
</div>
<div class="pure-u-1">
<a href="/setup/gitlab.com">
<i class="fa fa-git-square"></i> GitLab
</a>
</div>
</div>
</section>
</article>
<article ng-if="remote.type != undefined" id="setuppage2">
<nav>
<a href="/setup">
<span class="fa fa-arrow-left"></span>
</a>
<a href="/setup">Configure {{ remote.type | remoteName }}</a>
</nav>
<section ng-if-"remote.type == 'github.com' || remote.type == 'enterprise.github.com' ">
<div class="pure-g">
<div class="pure-u-1 tip">
<h2>Register with {{ remote.type | remoteName }}</h2>
<dl>
<dd>Homepage URL</dd>
<dt>{{ window.location.protocol }}//{{ window.location.host }}</dt>
</dl>
<dl>
<dd>Authorization callback URL</dd>
<dt>{{ window.location.protocol }}//{{ window.location.host }}/login/{{ remote.type }}</dt>
</dl>
</div>
</div>
</section>
<section>
<div class="pure-g">
<div class="pure-u-1">
<div class="pure-form">
<div ng-if="remote.type != 'github.com' && remote.type != 'bitbucket.org' ">
<label>URL</label>
<div ng-switch="remote.type">
<input ng-switch-default ng-model="remote.url" type="text" placeholder="https://www.foo.com" />
</div>
</div>
<div ng-if="remote.type != 'github.com' && remote.type != 'bitbucket.org' ">
<label>API URL</label>
<div ng-switch="remote.type">
<input ng-switch-default ng-model="remote.api" type="text" placeholder="https://www.foo.com/api" />
</div>
</div>
<div ng-if="remote.type != 'gitlab.com'">
<label>OAuth Client</label>
<div>
<input type="text" ng-model="remote.client" />
</div>
</div>
<div ng-if="remote.type != 'gitlab.com'">
<label>OAuth Secret</label>
<div>
<input type="text" ng-model="remote.secret" />
</div>
</div>
<div class="toggle">
<input type="checkbox" ng-model="remote.register" id="register" />
<label for="register"></label>
<span>Enable Self-Registration</span>
</div>
<button ng-click="save()" class="pure-button pure-button-primary">Save and Login</button>
</div>
</div>
</div>
</section>
</article>