finally found a router supporting uPnP
This commit is contained in:
parent
07e0de3229
commit
d6ac3b9250
|
@ -154,6 +154,12 @@ App.ShowSaysRoute = Ember.Route.extend({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
App.ShowNatMapsRoute = Ember.Route.extend({
|
||||||
|
setupController: function(controller) {
|
||||||
|
App.showNatMapsController.load();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
App.ShowChatsRoute = Ember.Route.extend({
|
App.ShowChatsRoute = Ember.Route.extend({
|
||||||
setupController: function(controller) {
|
setupController: function(controller) {
|
||||||
App.showChatsController.load();
|
App.showChatsController.load();
|
||||||
|
@ -203,6 +209,7 @@ App.Router.map(function(){
|
||||||
this.route("showAliases");
|
this.route("showAliases");
|
||||||
this.route("showCompletes");
|
this.route("showCompletes");
|
||||||
this.route("showManagements");
|
this.route("showManagements");
|
||||||
|
this.route("showNatMaps");
|
||||||
this.route("showSays");
|
this.route("showSays");
|
||||||
this.route("showChats");
|
this.route("showChats");
|
||||||
this.route("showInterfaces");
|
this.route("showInterfaces");
|
||||||
|
@ -550,6 +557,23 @@ App.showManagementsController = Ember.ArrayController.create({
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
App.showNatMapsController = Ember.ArrayController.create({
|
||||||
|
content: [],
|
||||||
|
init: function(){
|
||||||
|
},
|
||||||
|
load: function() {
|
||||||
|
var me = this;
|
||||||
|
$.getJSON("/txtapi/show?nat_map%20as%20json", function(data){
|
||||||
|
me.set('total', data.row_count);
|
||||||
|
me.content.clear();
|
||||||
|
if (data.row_count == 0) return;
|
||||||
|
|
||||||
|
me.pushObjects(data.rows);
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
App.showSaysController = Ember.ArrayController.create({
|
App.showSaysController = Ember.ArrayController.create({
|
||||||
content: [],
|
content: [],
|
||||||
init: function(){
|
init: function(){
|
||||||
|
|
|
@ -357,6 +357,28 @@
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<script type="text/x-handlebars" data-template-name="showNatMaps">
|
||||||
|
<h1>Nat Maps</h1>
|
||||||
|
<div>
|
||||||
|
<table class="table">
|
||||||
|
<tr>
|
||||||
|
<th>Port</th>
|
||||||
|
<th>Protocol</th>
|
||||||
|
<th>Protocol Number</th>
|
||||||
|
<th>Sticky</th>
|
||||||
|
</tr>
|
||||||
|
{{#each App.showNatMapsController.content}}
|
||||||
|
<tr>
|
||||||
|
<td>{{ port }}</td>
|
||||||
|
<td>{{ proto }}</td>
|
||||||
|
<td>{{ proto_num }}</td>
|
||||||
|
<td>{{ sticky }}</td>
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</script>
|
||||||
|
|
||||||
<script type="text/x-handlebars" data-template-name="showSays">
|
<script type="text/x-handlebars" data-template-name="showSays">
|
||||||
<h1>Say</h1>
|
<h1>Say</h1>
|
||||||
<div>
|
<div>
|
||||||
|
@ -492,7 +514,7 @@
|
||||||
{{#linkTo "showCompletes"}} Complete {{/linkTo}} |
|
{{#linkTo "showCompletes"}} Complete {{/linkTo}} |
|
||||||
{{#linkTo "showChats"}} Chat {{/linkTo}} |
|
{{#linkTo "showChats"}} Chat {{/linkTo}} |
|
||||||
{{#linkTo "showManagements"}} Management {{/linkTo}} |
|
{{#linkTo "showManagements"}} Management {{/linkTo}} |
|
||||||
Nat_map |
|
{{#linkTo "showNatMaps"}} Nat Map {{/linkTo}} |
|
||||||
{{#linkTo "showSays"}} Say {{/linkTo}} |
|
{{#linkTo "showSays"}} Say {{/linkTo}} |
|
||||||
{{#linkTo "showInterfaces"}} Interfaces {{/linkTo}} |
|
{{#linkTo "showInterfaces"}} Interfaces {{/linkTo}} |
|
||||||
{{#linkTo "showInterfaceTypes"}} InterfaceTypes {{/linkTo}} |
|
{{#linkTo "showInterfaceTypes"}} InterfaceTypes {{/linkTo}} |
|
||||||
|
|
Loading…
Reference in New Issue