adding url context path to html templates (#814)
This commit is contained in:
parent
21d48b32c9
commit
31f4cf0253
|
@ -89,7 +89,7 @@ And then run:
|
||||||
.. note:: This command will install npm dependencies as well as compile static assets.
|
.. note:: This command will install npm dependencies as well as compile static assets.
|
||||||
|
|
||||||
|
|
||||||
You may also run with the urlContextPath variable set. If this is set it will add the desired context path for subsequent calls back to lemur.
|
You may also run with the urlContextPath variable set. If this is set it will add the desired context path for subsequent calls back to lemur. This will only edit the front end code for calls back to the server, you will have to make sure the server knows about these routes.
|
||||||
::
|
::
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
|
@ -232,10 +232,16 @@ gulp.task('package:strip', function () {
|
||||||
|
|
||||||
gulp.task('addUrlContextPath',['addUrlContextPath:revreplace'], function(){
|
gulp.task('addUrlContextPath',['addUrlContextPath:revreplace'], function(){
|
||||||
var urlContextPathExists = argv.urlContextPath ? true : false;
|
var urlContextPathExists = argv.urlContextPath ? true : false;
|
||||||
return gulp.src('lemur/static/dist/scripts/main*.js')
|
['lemur/static/dist/scripts/main*.js',
|
||||||
|
'lemur/static/dist/angular/**/*.html']
|
||||||
|
.forEach(function(file){
|
||||||
|
return gulp.src(file)
|
||||||
.pipe(gulpif(urlContextPathExists, replace('api/', argv.urlContextPath + '/api/')))
|
.pipe(gulpif(urlContextPathExists, replace('api/', argv.urlContextPath + '/api/')))
|
||||||
.pipe(gulpif(urlContextPathExists, replace('angular/', argv.urlContextPath + '/angular/')))
|
.pipe(gulpif(urlContextPathExists, replace('angular/', argv.urlContextPath + '/angular/')))
|
||||||
.pipe(gulp.dest('lemur/static/dist/scripts'))
|
.pipe(gulp.dest(function(file){
|
||||||
|
return file.base;
|
||||||
|
}))
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('addUrlContextPath:revision', function(){
|
gulp.task('addUrlContextPath:revision', function(){
|
||||||
|
|
Loading…
Reference in New Issue