Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
6148b22a
Commit
6148b22a
authored
Jun 01, 2016
by
Suma Shivaprasad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-843 Atlas UI: Feature to search terms in left navigation. (Kalyanikashikar via sumasai)
parent
a05f752d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
90 additions
and
31 deletions
+90
-31
BusinessCatalogLayoutView_tmpl.html
...ates/business_catalog/BusinessCatalogLayoutView_tmpl.html
+5
-2
Utils.js
dashboardv2/public/js/utils/Utils.js
+8
-3
BusinessCatalogLayoutView.js
...ic/js/views/business_catalog/BusinessCatalogLayoutView.js
+76
-26
release-log.txt
release-log.txt
+1
-0
No files found.
dashboardv2/public/js/templates/business_catalog/BusinessCatalogLayoutView_tmpl.html
View file @
6148b22a
...
...
@@ -14,6 +14,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<div
class=
"form-group"
>
<select
type=
"text"
class=
"form-control"
data-id=
"searchTermInput"
placeholder=
"Search term"
></select>
</div>
<div
class=
"row"
>
<button
class=
"btn btn-taxanomyBack btn-atlas"
data-id=
"backTaxanomy"
><i
class=
"fa fa-chevron-left"
></i>
Back
</button>
</div>
...
...
@@ -21,8 +24,8 @@
<ul
class=
"taxonomyTree"
>
<div
class=
"contentLoading"
></div>
<li
class=
"children parent"
data-id=
"Parent"
></li>
<li
class=
"chil
eds parentChile
d"
>
<ul
data-id=
"chil
e
dList"
>
<li
class=
"chil
ds parentChil
d"
>
<ul
data-id=
"childList"
>
</ul>
</li>
</ul>
...
...
dashboardv2/public/js/utils/Utils.js
View file @
6148b22a
...
...
@@ -75,11 +75,18 @@ define(['require', 'utils/Globals'], function(require, Globals) {
});
};
Utils
.
defaultErrorHandler
=
function
(
model
,
error
)
{
/*require(['views/common/ErrorView', 'App'], function(vError, App) {*/
if
(
error
.
status
==
401
)
{
window
.
location
=
'login.jsp'
}
else
if
(
error
.
status
==
419
)
{
window
.
location
=
'login.jsp'
}
else
if
(
error
.
status
==
403
)
{
var
message
=
"You are not authorized"
;
if
(
error
.
statusText
)
{
message
=
JSON
.
parse
(
error
.
statusText
).
AuthorizationError
;
}
Utils
.
notifyError
({
content
:
message
});
}
else
if
(
error
.
status
==
"0"
)
{
var
diffTime
=
(
new
Date
().
getTime
()
-
prevNetworkErrorTime
);
if
(
diffTime
>
3000
)
{
...
...
@@ -90,8 +97,6 @@ define(['require', 'utils/Globals'], function(require, Globals) {
});
}
}
/*});*/
};
Utils
.
localStorage
=
{
...
...
dashboardv2/public/js/views/business_catalog/BusinessCatalogLayoutView.js
View file @
6148b22a
This diff is collapsed.
Click to expand it.
release-log.txt
View file @
6148b22a
...
...
@@ -22,6 +22,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ATLAS-843 Atlas UI: Feature to search terms in left navigation. (Kalyanikashikar via sumasai)
ATLAS-731 Remove dashboard module in Atlas, replaced by dashboardv2 (kevalbhatt18 via sumasai)
ATLAS-664 UI: Add Support for Versioning / History (Kalyanikashikar via yhemanth)
ATLAS-833 Make default build profile for External HBase and Solr (tbeerbower via yhemanth)
...
...
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