forked from map612/dubbokeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
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
75 changed files
with
120,400 additions
and
51 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
37 changes: 37 additions & 0 deletions
37
dubbokeeper-ui/src/main/java/com/dubboclub/web/model/RouteAbstractInfo.java
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,37 @@ | ||
package com.dubboclub.web.model; | ||
|
||
/** | ||
* Created by bieber on 2015/8/1. | ||
*/ | ||
public class RouteAbstractInfo { | ||
|
||
private String applicationName; | ||
|
||
private String serviceKey; | ||
|
||
private int routeCount; | ||
|
||
public String getApplicationName() { | ||
return applicationName; | ||
} | ||
|
||
public void setApplicationName(String applicationName) { | ||
this.applicationName = applicationName; | ||
} | ||
|
||
public String getServiceKey() { | ||
return serviceKey; | ||
} | ||
|
||
public void setServiceKey(String serviceKey) { | ||
this.serviceKey = serviceKey; | ||
} | ||
|
||
public int getRouteCount() { | ||
return routeCount; | ||
} | ||
|
||
public void setRouteCount(int routeCount) { | ||
this.routeCount = routeCount; | ||
} | ||
} |
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
1 change: 1 addition & 0 deletions
1
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/css/bootswatch.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.37 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/carboncostume.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.8 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/gridgum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.24 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/logo-nav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+24.3 KB
...eeper-ui/src/main/webapp/css/libs/themes/assets/img/refs/beautifulwebdesign.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+29.4 KB
...eeper-ui/src/main/webapp/css/libs/themes/assets/img/refs/eloquentjavascript.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.9 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/refs/htmlandcss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+18.8 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/shopify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+65.5 KB
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/img/stickers.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions
56
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/js/bootswatch.js
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,56 @@ | ||
(function(){ | ||
$(window).scroll(function () { | ||
var top = $(document).scrollTop(); | ||
$('.splash').css({ | ||
'background-position': '0px -'+(top/3).toFixed(2)+'px' | ||
}); | ||
if(top > 50) | ||
$('#home > .navbar').removeClass('navbar-transparent'); | ||
else | ||
$('#home > .navbar').addClass('navbar-transparent'); | ||
}); | ||
|
||
$("a[href='#']").click(function(e) { | ||
e.preventDefault(); | ||
}); | ||
|
||
var $button = $("<div id='source-button' class='btn btn-primary btn-xs'>< ></div>").click(function(){ | ||
var html = $(this).parent().html(); | ||
html = cleanSource(html); | ||
$("#source-modal pre").text(html); | ||
$("#source-modal").modal(); | ||
}); | ||
|
||
$('.bs-component [data-toggle="popover"]').popover(); | ||
$('.bs-component [data-toggle="tooltip"]').tooltip(); | ||
|
||
$(".bs-component").hover(function(){ | ||
$(this).append($button); | ||
$button.show(); | ||
}, function(){ | ||
$button.hide(); | ||
}); | ||
|
||
function cleanSource(html) { | ||
var lines = html.split(/\n/); | ||
|
||
lines.shift(); | ||
lines.splice(-1, 1); | ||
|
||
var indentSize = lines[0].length - lines[0].trim().length, | ||
re = new RegExp(" {" + indentSize + "}"); | ||
|
||
lines = lines.map(function(line){ | ||
if (line.match(re)) { | ||
line = line.substring(indentSize); | ||
} | ||
|
||
return line; | ||
}); | ||
|
||
lines = lines.join("\n"); | ||
|
||
return lines; | ||
} | ||
|
||
})(); |
7 changes: 7 additions & 0 deletions
7
dubbokeeper-ui/src/main/webapp/css/libs/themes/assets/js/bsa.js
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,7 @@ | ||
(function(){ | ||
var bsa = document.createElement('script'); | ||
bsa.type = 'text/javascript'; | ||
bsa.async = true; | ||
bsa.src = 'http://s3.buysellads.com/ac/bsa.js'; | ||
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa); | ||
})(); |
Oops, something went wrong.