[Pkg-fedora-ds-maintainers] 389-admin-console: Changes to 'master'

Timo Aaltonen tjaalton at moszumanska.debian.org
Thu Dec 1 09:17:42 UTC 2016


 build.properties                                                      |    2 +-
 debian/changelog                                                      |    6 ++++++
 src/com/netscape/management/admserv/admserv.properties                |    4 ++--
 src/com/netscape/management/admserv/config/FilteredInputDocument.java |   10 +++++-----
 4 files changed, 14 insertions(+), 8 deletions(-)

New commits:
commit 66e90e86a9a63581156db6b747963597ef1d7423
Author: Timo Aaltonen <tjaalton at debian.org>
Date:   Thu Dec 1 10:55:05 2016 +0200

    releasing package 389-admin-console version 1.1.12-1

diff --git a/debian/changelog b/debian/changelog
index af34001..c8c4356 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+389-admin-console (1.1.12-1) unstable; urgency=medium
+
+  * New upstream release.
+
+ -- Timo Aaltonen <tjaalton at debian.org>  Thu, 01 Dec 2016 10:54:59 +0200
+
 389-admin-console (1.1.11-1) unstable; urgency=medium
 
   * New upstream release.

commit ee8aab54c6581d8e47e3c7d7494a7f2e5fb2f9a6
Author: Noriko Hosoi <nhosoi at redhat.com>
Date:   Fri Aug 26 08:53:09 2016 -0700

    bump version to 1.1.12

diff --git a/build.properties b/build.properties
index 6f9718c..6a4a693 100644
--- a/build.properties
+++ b/build.properties
@@ -21,7 +21,7 @@
 lang=en
 
 admservconsole.root=..
-admservconsole.version=1.1.11
+admservconsole.version=1.1.12
 admservconsole.gen.version=1.1
 brand=389
 admservconsole.name=${brand}-admin-${admservconsole.version}

commit e3fdd169650b98d828cc459e04de8afef5c021cd
Author: Mark Reynolds <mreynolds at redhat.com>
Date:   Wed Jul 6 10:32:14 2016 -0400

    Ticket 48823 - admin-console - Add IPv6 support
    
    Description:  Allow all the characters that make up IPv6 addresses
    
    https://fedorahosted.org/389/ticket/48823
    
    Reviewed by: nhosoi(Thanks!)

diff --git a/src/com/netscape/management/admserv/config/FilteredInputDocument.java b/src/com/netscape/management/admserv/config/FilteredInputDocument.java
index fa74281..81ba40d 100644
--- a/src/com/netscape/management/admserv/config/FilteredInputDocument.java
+++ b/src/com/netscape/management/admserv/config/FilteredInputDocument.java
@@ -1,11 +1,11 @@
 /** BEGIN COPYRIGHT BLOCK
  * Copyright (C) 2001 Sun Microsystems, Inc.  Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
+ * Copyright (C) 2016 Red Hat, Inc.
  * All rights reserved.
  * 
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; version 2
+ * as published by the Free Software Foundation; version 3
  * of the License.
  * 
  * This program is distributed in the hope that it will be useful,
@@ -21,9 +21,9 @@
 package com.netscape.management.admserv.config;
 
 /**
- * A text model (document) that restrects JTextField charaters to a specified character set. It
+ * A text model (document) that restricts JTextField characters to a specified character set. It
  * can be used to create, for instance, digit-only text fields, alphanumeric-only text fields,
- * etc. If a non allowed character is entered by the user, the charachter does not get echoed back
+ * etc. If a non allowed character is entered by the user, the character does not get echoed back
  * to the screen and the Console beeps.
  *
  * Usage example for digits only text field: <code>
@@ -42,7 +42,7 @@ import javax.swing.text.*;
 public class FilteredInputDocument extends PlainDocument {
 
     public static final String DIGITS = "01234567890";
-    public static final String IPADDRESS = "01234567890.";
+    public static final String IPADDRESS = "01234567890ABCDEFabcdef.:";
 
     String _allowSet;
 

commit 45b33120dbc6ee41e5664a4b3a5b5224f2bcd395
Author: Mark Reynolds <mreynolds at redhat.com>
Date:   Thu Jun 30 14:33:57 2016 -0400

    Ticket 48809 - Admin conosle displays the wrong log names
    
    Description:  In the admin console both the access and error logs were
                  named incorrectly.
    
    https://fedorahosted.org/389/ticket/48809
    
    Reviewed by: mreynolds(one line commit rule)

diff --git a/src/com/netscape/management/admserv/admserv.properties b/src/com/netscape/management/admserv/admserv.properties
index 82c3c91..23d67cd 100644
--- a/src/com/netscape/management/admserv/admserv.properties
+++ b/src/com/netscape/management/admserv/admserv.properties
@@ -76,8 +76,8 @@ dialog-configtitle=Administration Server Configuration
 
 resourcepage-Tasks=Tasks
 resourcepage-Logs=Logs
-resourcepage-LogAccess=Accesses
-resourcepage-LogError=Errors
+resourcepage-LogAccess=Access Log
+resourcepage-LogError=Error Log
 resourcepage-nodeDisplayName=Administration Server
 
 



More information about the Pkg-fedora-ds-maintainers mailing list