Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
43824d40
Commit
43824d40
authored
Oct 22, 2014
by
Marc Duez
Browse files
model.js : debug loadAnalysis url
replace .vidjil with .analysis only for extension
parent
b9b33b79
Changes
2
Hide whitespace changes
Inline
Side-by-side
browser/js/model.js
View file @
43824d40
...
...
@@ -192,7 +192,7 @@ Model.prototype = {
loadAnalysisUrl
:
function
(
url
)
{
var
self
=
this
;
var
url2
=
url
.
replace
(
"
.vidjil
"
,
"
.analysis
"
)
;
var
url2
=
url
.
replace
(
new
RegExp
(
"
.vidjil
"
+
'
$
'
),
"
.analysis
"
)
var
url_split
=
url2
.
split
(
'
/
'
)
...
...
server/fuse.py
View file @
43824d40
...
...
@@ -796,7 +796,7 @@ def main():
group_options
.
add_argument
(
'--compress'
,
'-c'
,
action
=
'store_true'
,
help
=
'compress point names, removing common substrings'
)
group_options
.
add_argument
(
'--pipeline'
,
'-p'
,
action
=
'store_true'
,
help
=
'compress point names (internal Bonsai pipeline)'
)
group_options
.
add_argument
(
'--output'
,
'-o'
,
type
=
str
,
default
=
'fused.
data
'
,
help
=
'output file (%(default)s)'
)
group_options
.
add_argument
(
'--output'
,
'-o'
,
type
=
str
,
default
=
'fused.
vidjil
'
,
help
=
'output file (%(default)s)'
)
group_options
.
add_argument
(
'--top'
,
'-t'
,
type
=
int
,
default
=
50
,
help
=
'keep only clones in the top TOP of some point (%(default)s)'
)
parser
.
add_argument
(
'file'
,
nargs
=
'+'
,
help
=
'''input files (.vidjil/.cnltab)'''
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment