release 2.010004
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2.010004 - 2013-07-24
|
||||
|
||||
[BUG FIXES]
|
||||
|
||||
* Navbar query box was being cleared sometimes under admin task panels
|
||||
|
||||
2.010002 - 2013-07-23
|
||||
|
||||
[ENHANCEMENTS]
|
||||
|
||||
@@ -60,4 +60,4 @@ resources:
|
||||
homepage: http://netdisco.org/
|
||||
license: http://opensource.org/licenses/bsd-license.php
|
||||
repository: git://git.code.sf.net/p/netdisco/netdisco-ng
|
||||
version: 2.010002
|
||||
version: 2.010004
|
||||
|
||||
@@ -7,7 +7,7 @@ use 5.010_000;
|
||||
use File::ShareDir 'dist_dir';
|
||||
use Path::Class;
|
||||
|
||||
our $VERSION = '2.010002';
|
||||
our $VERSION = '2.010004';
|
||||
|
||||
BEGIN {
|
||||
if (not ($ENV{DANCER_APPDIR} || '')
|
||||
@@ -190,7 +190,7 @@ Run the following command to start the web-app server as a backgrounded daemon
|
||||
|
||||
If the Inventory is empty because this is a new installation, you probably
|
||||
want to either run some polling jobs from the command-line, or give a web user
|
||||
some admin rights (see L</"User Rights">, below).
|
||||
some admin rights (TODO: user rights management).
|
||||
|
||||
Run the following command to start the job control daemon (port control, etc):
|
||||
|
||||
|
||||
@@ -16,12 +16,14 @@ function do_search (event, tab) {
|
||||
// each sidebar search form has a hidden copy of the main navbar search
|
||||
// query. when the tab query takes place, copy the navbar locally, then
|
||||
// replicate to all other tabs.
|
||||
if ($('#nq').val()) {
|
||||
$(form).find("input[name=q]").val( $('#nq').val() );
|
||||
if (path != 'report' && path != 'admin') {
|
||||
if ($('#nq').val()) {
|
||||
$(form).find("input[name=q]").val( $('#nq').val() );
|
||||
}
|
||||
$('form').find("input[name=q]").each( function() {
|
||||
$(this).val( $(form).find("input[name=q]").val() );
|
||||
});
|
||||
}
|
||||
$('form').find("input[name=q]").each( function() {
|
||||
$(this).val( $(form).find("input[name=q]").val() );
|
||||
});
|
||||
|
||||
// hide or show sidebars depending on previous state,
|
||||
// and whether the sidebar contains any content (detected by TT)
|
||||
|
||||
6
TODO
6
TODO
@@ -1,6 +1,10 @@
|
||||
FRONTEND
|
||||
========
|
||||
|
||||
* report on port usage
|
||||
* SSL support
|
||||
* user management admin task
|
||||
|
||||
* moar reports
|
||||
* (jeneric) device module tab
|
||||
|
||||
@@ -21,6 +25,8 @@ CORE
|
||||
DOCS
|
||||
====
|
||||
|
||||
* missing user management ("User Rights")
|
||||
|
||||
* Scheduler
|
||||
* Discover/Refresh jobs
|
||||
* new X:: plugin namespace
|
||||
|
||||
Reference in New Issue
Block a user