-
Notifications
You must be signed in to change notification settings - Fork 143
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
8 changed files
with
128 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Advanced", | ||
"icon": "fa fa-check-circle-o", | ||
"modulename": "advanced_search.py", | ||
"classname": "AdvancedSearch", | ||
"componenttype": "filter", | ||
"componentpath": "views/components/search/advanced-search", | ||
"componentname": "advanced-search", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} | ||
|
||
|
||
class AdvancedSearch(): | ||
|
||
def append_dsl(self, dsl): | ||
pass |
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,19 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Map Filter", | ||
"icon": "fa fa-map-marker", | ||
"modulename": "map_filter.py", | ||
"classname": "MapFilter", | ||
"componenttype": "filter", | ||
"componentpath": "views/components/search/map-filter", | ||
"componentname": "map-filter", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} | ||
|
||
|
||
class MapFilter(): | ||
|
||
def append_dsl(self, dsl): | ||
pass |
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,19 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Provisional Filter", | ||
"icon": "", | ||
"modulename": "provisional_filter.py", | ||
"classname": "ProvisionalFilter", | ||
"componenttype": "", | ||
"componentpath": "views/components/search/provisional-filter", | ||
"componentname": "provisional-filter", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} | ||
|
||
|
||
class ProvisionalFilter(): | ||
|
||
def append_dsl(self, dsl): | ||
pass |
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,13 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Related", | ||
"icon": "fa fa-code-fork", | ||
"modulename": "", | ||
"classname": "", | ||
"componenttype": "filter", | ||
"componentpath": "views/components/search/related-resources-filter", | ||
"componentname": "related-resources-filter", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} |
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,13 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Resource Type Filter", | ||
"icon": "", | ||
"modulename": "", | ||
"classname": "", | ||
"componenttype": "resource-type-filter", | ||
"componentpath": "views/components/search/resource-type-filter", | ||
"componentname": "resource-type-filter", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} |
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,13 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Saved", | ||
"icon": "fa fa-bookmark", | ||
"modulename": "", | ||
"classname": "", | ||
"componenttype": "filter", | ||
"componentpath": "views/components/search/saved-searches", | ||
"componentname": "saved-searches", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} |
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,13 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Search Results", | ||
"icon": "", | ||
"modulename": "", | ||
"classname": "", | ||
"componenttype": "results-list", | ||
"componentpath": "views/components/search/search-results", | ||
"componentname": "search-results", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} |
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,19 @@ | ||
details = { | ||
"searchcomponentid": "", | ||
"name": "Time Filter", | ||
"icon": "fa fa-calendar", | ||
"modulename": "time_filter.py", | ||
"classname": "TimeFilter", | ||
"componenttype": "filter", | ||
"componentpath": "views/components/search/time-filter", | ||
"componentname": "time-filter", | ||
"config": {}, | ||
"sortorder": "0", | ||
"enabled": True | ||
} | ||
|
||
|
||
class TimeFilter(): | ||
|
||
def append_dsl(self, dsl): | ||
pass |