-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
245 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* Improve spacing */ | ||
.version-switcher__container.dropdown { | ||
margin-left: 10px; | ||
} | ||
|
||
button.btn.version-switcher__button { | ||
margin-bottom: 0px; | ||
} | ||
|
||
/* Show on hover */ | ||
.version-switcher__container.dropdown:hover .dropdown-menu { | ||
display: block; | ||
left: 0; | ||
margin-top: var(--bs-dropdown-spacer); | ||
top: 100%; | ||
} | ||
|
||
.dropdown-menu.show { | ||
display: none; | ||
} | ||
|
||
/* Remove underline and borders */ | ||
button.btn.version-switcher__button:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.version-switcher__menu a.list-group-item { | ||
border: none !important; | ||
} | ||
|
||
.version-switcher__menu a.list-group-item:hover { | ||
text-decoration: none !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .startup import startup_api | ||
from .neuroconv import neuroconv_api | ||
from .data import data_api | ||
from .neuroconv import neuroconv_api | ||
from .startup import startup_api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
from .info import CONVERSION_SAVE_FOLDER_PATH, STUB_SAVE_FOLDER_PATH | ||
from .manage_neuroconv import ( | ||
get_all_interface_info, | ||
get_all_converter_info, | ||
locate_data, | ||
autocomplete_format_string, | ||
get_source_schema, | ||
get_metadata_schema, | ||
convert_to_nwb, | ||
validate_metadata, | ||
upload_project_to_dandi, | ||
upload_folder_to_dandi, | ||
upload_multiple_filesystem_objects_to_dandi, | ||
listen_to_neuroconv_events, | ||
generate_dataset, | ||
generate_test_data, | ||
get_all_converter_info, | ||
get_all_interface_info, | ||
get_interface_alignment, | ||
get_metadata_schema, | ||
get_source_schema, | ||
inspect_multiple_filesystem_objects, | ||
inspect_nwb_file, | ||
inspect_nwb_folder, | ||
inspect_multiple_filesystem_objects, | ||
get_interface_alignment, | ||
generate_test_data, | ||
listen_to_neuroconv_events, | ||
locate_data, | ||
upload_folder_to_dandi, | ||
upload_multiple_filesystem_objects_to_dandi, | ||
upload_project_to_dandi, | ||
validate_metadata, | ||
) | ||
|
||
|
||
from .info import STUB_SAVE_FOLDER_PATH, CONVERSION_SAVE_FOLDER_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
from .sse import announcer, format_sse | ||
from .urls import ( | ||
resource_path, | ||
CONVERSION_SAVE_FOLDER_PATH, | ||
GUIDE_ROOT_FOLDER, | ||
STUB_SAVE_FOLDER_PATH, | ||
CONVERSION_SAVE_FOLDER_PATH, | ||
resource_path, | ||
) | ||
|
||
from .sse import announcer, format_sse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import queue | ||
import json | ||
import queue | ||
|
||
|
||
def format_sse(data: str, event=None) -> str: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.