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
e48dbc9d
Commit
e48dbc9d
authored
Nov 09, 2015
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-293 UI Requires Internet Access For UI Facelift (darshankumar89 via shwethags)
parent
32913f31
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
17 deletions
+19
-17
index.html
dashboard/public/index.html
+15
-14
detailsController.js
dashboard/public/modules/details/detailsController.js
+1
-1
instanceTagsController.js
...rd/public/modules/tags/instance/instanceTagsController.js
+2
-2
release-log.txt
release-log.txt
+1
-0
No files found.
dashboard/public/index.html
View file @
e48dbc9d
...
...
@@ -27,7 +27,7 @@
<meta
http-equiv=
"Content-type"
content=
"text/html;charset=UTF-8"
>
<link
href=
"img/favicon.ico"
rel=
"shortcut icon"
type=
"image/x-icon"
>
<link
href=
"
/
img/favicon.ico"
rel=
"shortcut icon"
type=
"image/x-icon"
>
<link
rel=
"stylesheet"
href=
"/lib/font-awesome/css/font-awesome.min.css"
>
<link
rel=
"stylesheet"
href=
"/css/sticky-footer-navbar.css"
>
...
...
@@ -35,7 +35,7 @@
<link
rel=
"stylesheet"
href=
"/css/details.css"
>
<link
rel=
"stylesheet"
href=
"/css/lineage.css"
>
<link
rel=
"stylesheet"
href=
"/css/tags.css"
>
<link
rel=
"stylesheet"
href=
"
http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min
.css"
>
<link
rel=
"stylesheet"
href=
"
/lib/bootstrap/dist/css/bootstrap
.css"
>
</head>
...
...
@@ -54,20 +54,20 @@
</div>
</footer>
<script
src=
"lib/jquery/dist/jquery.js"
></script>
<script
src=
"lib/angular/angular.js"
></script>
<script
src=
"lib/bootstrap/dist/js/bootstrap.js"
></script>
<script
src=
"lib/angular-bootstrap/ui-bootstrap-tpls.js"
></script>
<script
src=
"lib/angular-cookies/angular-cookies.js"
></script>
<script
src=
"lib/angular-resource/angular-resource.js"
></script>
<script
src=
"lib/angular-route/angular-route.js"
></script>
<script
src=
"lib/angular-sanitize/angular-sanitize.js"
></script>
<script
src=
"lib/angular-ui-router/release/angular-ui-router.js"
></script>
<script
src=
"lib/angular-ui-utils/ui-utils.js"
></script>
<script
src=
"lib/lodash/lodash.js"
></script>
<script
src=
"
/
lib/jquery/dist/jquery.js"
></script>
<script
src=
"
/
lib/angular/angular.js"
></script>
<script
src=
"
/
lib/bootstrap/dist/js/bootstrap.js"
></script>
<script
src=
"
/
lib/angular-bootstrap/ui-bootstrap-tpls.js"
></script>
<script
src=
"
/
lib/angular-cookies/angular-cookies.js"
></script>
<script
src=
"
/
lib/angular-resource/angular-resource.js"
></script>
<script
src=
"
/
lib/angular-route/angular-route.js"
></script>
<script
src=
"
/
lib/angular-sanitize/angular-sanitize.js"
></script>
<script
src=
"
/
lib/angular-ui-router/release/angular-ui-router.js"
></script>
<script
src=
"
/
lib/angular-ui-utils/ui-utils.js"
></script>
<script
src=
"
/
lib/lodash/lodash.js"
></script>
<script
src=
"/lib/d3/d3.js"
></script>
<script
src=
"/lib/d3-tip/index.js"
></script>
<script
src=
"js/app.min.js"
></script>
<script
src=
"
/
js/app.min.js"
></script>
</body>
</html>
\ No newline at end of file
dashboard/public/modules/details/detailsController.js
View file @
e48dbc9d
...
...
@@ -30,7 +30,7 @@ angular.module('dgc.details').controller('DetailsController', ['$window', '$scop
console
.
log
(
data
);
$scope
.
schemas
=
data
;
$scope
.
tableName
=
data
.
values
.
name
;
$scope
.
isTable
=
(
typeof
data
.
typeName
!=
'undefined'
&&
data
.
typeName
.
toLowerCase
().
indexOf
(
'table'
)
!
=
-
1
)
?
true
:
false
;
$scope
.
isTable
=
(
typeof
data
.
typeName
!=
=
'undefined'
&&
data
.
typeName
.
toLowerCase
().
indexOf
(
'table'
)
!=
=
-
1
)
?
true
:
false
;
$scope
.
onActivate
(
'io'
);
});
...
...
dashboard/public/modules/tags/instance/instanceTagsController.js
View file @
e48dbc9d
...
...
@@ -51,7 +51,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope
$scope
.
detachTag
=
function
(
$event
,
name
)
{
var
r
=
confirm
(
"Please confirm delete."
);
if
(
r
==
true
)
{
if
(
r
==
=
true
)
{
DetailsResource
.
detachTag
({
id
:
$stateParams
.
id
,
tagName
:
name
...
...
@@ -59,7 +59,7 @@ angular.module('dgc.tags.instance').controller('InstanceTagController', ['$scope
console
.
log
(
"Detached Tag"
);
console
.
log
(
data
);
if
(
data
.
requestId
!=
undefined
&&
data
.
GUID
==
$stateParams
.
id
&&
data
.
traitName
==
name
)
{
if
(
data
.
requestId
!=
=
undefined
&&
data
.
GUID
===
$stateParams
.
id
&&
data
.
traitName
=
==
name
)
{
var
curent
=
$event
.
currentTarget
;
curent
.
parentElement
.
remove
();
$
(
".popover"
).
remove
();
...
...
release-log.txt
View file @
e48dbc9d
...
...
@@ -9,6 +9,7 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (sumasai via shwethags)
ALL CHANGES:
ATLAS-293 UI Requires Internet Access For UI Facelift (darshankumar89 via shwethags)
ATLAS-292 The artifactId 'dashboard' should be 'atlas-dashboard' in the webapp/pom.xml (ltfxyz via shwethags)
ATLAS-208 Remove "\n" characters in the REST API json response (patel_satya via shwethags)
ATLAS-211 UI: UI Facelift(anilsg via sumasai)
...
...
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