fixing links, and adding zeroclipboard
This commit is contained in:
parent
ba5d2c925a
commit
9965af9ccd
|
@ -31,7 +31,8 @@
|
|||
"satellizer": "~0.9.4",
|
||||
"angularjs-toaster": "~0.4.14",
|
||||
"ngletteravatar": "~3.0.1",
|
||||
"angular-ui-router": "~0.2.15"
|
||||
"angular-ui-router": "~0.2.15",
|
||||
"angular-zeroclipboard": "~0.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"angular-mocks": "~1.3",
|
||||
|
|
|
@ -136,7 +136,7 @@ gulp.task('dev:scripts', function () {
|
|||
});
|
||||
|
||||
gulp.task('build:extras', function () {
|
||||
return gulp.src(['lemur/static/app/*.*', '!lemur/static/app/*.html'])
|
||||
return gulp.src(['lemur/static/app/*.*', 'bower_components/zeroclipboard/dist/ZeroClipboard.swf', '!lemur/static/app/*.html'])
|
||||
.pipe(gulp.dest('lemur/static/dist'));
|
||||
});
|
||||
|
||||
|
|
|
@ -14,9 +14,10 @@ var lemur = angular
|
|||
'uiSwitch',
|
||||
'mgo-angular-wizard',
|
||||
'satellizer',
|
||||
'ngLetterAvatar'
|
||||
'ngLetterAvatar',
|
||||
'zeroclipboard'
|
||||
])
|
||||
.config(function ($stateProvider, $urlRouterProvider, $authProvider) {
|
||||
.config(function ($stateProvider, $urlRouterProvider, $authProvider, uiZeroclipConfigProvider) {
|
||||
$urlRouterProvider.otherwise('/welcome');
|
||||
|
||||
$stateProvider
|
||||
|
@ -36,6 +37,11 @@ var lemur = angular
|
|||
authorizationEndpoint: 'https://example.com/as/authorization.oauth2',
|
||||
requiredUrlParams: ['scope']
|
||||
});
|
||||
|
||||
// config ZeroClipboard
|
||||
uiZeroclipConfigProvider.setZcConf({
|
||||
swfPath: 'ZeroClipboard.swf'
|
||||
});
|
||||
});
|
||||
|
||||
lemur.service('MomentService', function () {
|
||||
|
|
|
@ -10,17 +10,17 @@
|
|||
<div class="col-lg-4">
|
||||
<h2>Create</h2>
|
||||
<p>With Lemur you can create certificates from any authority; internal or external! Lemur does not issue certificates itself. Instead it acts as a broker, creating private keys and CSRs that are sent to external services.</p>
|
||||
<p><a class="btn btn-default" href="#" role="button">View certificates »</a></p>
|
||||
<p><a class="btn btn-default" ui-sref="certifcates" role="button">View certificates »</a></p>
|
||||
</div><!-- /.col-lg-4 -->
|
||||
<div class="col-lg-4">
|
||||
<h2>Deploy</h2>
|
||||
<p>Once certificates have been created with Lemur, you can put them to use! Lemur has the ability to create destinations for certificates that allow them to be uploaded to and used by a variety of environments.</p>
|
||||
<p><a class="btn btn-default" href="#" role="button">View Destinations »</a></p>
|
||||
<p><a class="btn btn-default" ui-sref="destinations" role="button">View Destinations »</a></p>
|
||||
</div><!-- /.col-lg-4 -->
|
||||
<div class="col-lg-4">
|
||||
<h2>Authority</h2>
|
||||
<p>Have an internal Certificate Authority? Need an easy way to create an manage those authorities? Lemur has you covered!</p>
|
||||
<p><a class="btn btn-default" href="#" role="button">View Authorities »</a></p>
|
||||
<p><a class="btn btn-default" ui-sref="authorities">Dashboard role="button">View Authorities »</a></p>
|
||||
</div><!-- /.col-lg-4 -->
|
||||
</div><!-- /.row -->
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue