config.guess                                             |  218 +++++++++++++--
 config.sub                                               |   46 +--
 extras/source/misc_config/wizard/web/styles/beige.css    |    9 
 extras/source/misc_config/wizard/web/styles/bg.css       |    9 
 extras/source/misc_config/wizard/web/styles/bgr.css      |    9 
 extras/source/misc_config/wizard/web/styles/bgrey.css    |    9 
 extras/source/misc_config/wizard/web/styles/bwb.css      |    9 
 extras/source/misc_config/wizard/web/styles/bwo.css      |    9 
 extras/source/misc_config/wizard/web/styles/dark.css     |    9 
 extras/source/misc_config/wizard/web/styles/dp.css       |    9 
 extras/source/misc_config/wizard/web/styles/forest.css   |    9 
 extras/source/misc_config/wizard/web/styles/green.css    |    9 
 extras/source/misc_config/wizard/web/styles/greenred.css |    9 
 extras/source/misc_config/wizard/web/styles/grey.css     |    9 
 extras/source/misc_config/wizard/web/styles/ibg.css      |    9 
 extras/source/misc_config/wizard/web/styles/ice.css      |    9 
 extras/source/misc_config/wizard/web/styles/marine.css   |    9 
 extras/source/misc_config/wizard/web/styles/orange.css   |    9 
 extras/source/misc_config/wizard/web/styles/pc_old.css   |  112 -------
 extras/source/misc_config/wizard/web/styles/red.css      |    9 
 extras/source/misc_config/wizard/web/styles/rgb.css      |   25 -
 extras/source/misc_config/wizard/web/styles/strange.css  |    9 
 extras/source/misc_config/wizard/web/styles/violet.css   |    9 
 extras/source/misc_config/wizard/web/styles/water.css    |    9 
 24 files changed, 314 insertions(+), 267 deletions(-)

New commits:
commit bbd329211b80fa107d93f1a2363512a872b8d6df
Author:     Matthias Seidel <msei...@apache.org>
AuthorDate: Wed May 8 19:17:39 2019 +0000
Commit:     Matthias Seidel <msei...@apache.org>
CommitDate: Wed May 8 19:17:39 2019 +0000

    Updated to the latest version:
    
    - config.guess: 2019-04-28
    - config.sub: 2019-01-05

diff --git a/config.guess b/config.guess
index b33c9e890e0c..4cd9454b35c4 100755
--- a/config.guess
+++ b/config.guess
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
-#   Copyright 1992-2018 Free Software Foundation, Inc.
+#   Copyright 1992-2019 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2019-04-28'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -50,7 +50,7 @@ version="\
 GNU config.guess ($timestamp)
 
 Originally written by Per Bothner.
-Copyright 1992-2018 Free Software Foundation, Inc.
+Copyright 1992-2019 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -96,8 +96,7 @@ fi
 
 tmp=
 # shellcheck disable=SC2172
-trap 'test -z "$tmp" || rm -fr "$tmp"' 1 2 13 15
-trap 'exitcode=$?; test -z "$tmp" || rm -fr "$tmp"; exit $exitcode' 0
+trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15
 
 set_cc_for_build() {
     : "${TMPDIR=/tmp}"
@@ -392,15 +391,20 @@ case 
"$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
        echo i386-pc-auroraux"$UNAME_RELEASE"
        exit ;;
     i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
-       UNAME_REL="`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
-       case `isainfo -b` in
-           32)
-               echo i386-pc-solaris2"$UNAME_REL"
-               ;;
-           64)
-               echo x86_64-pc-solaris2"$UNAME_REL"
-               ;;
-       esac
+       set_cc_for_build
+       SUN_ARCH=i386
+       # If there is a compiler, see if it is configured for 64-bit objects.
+       # Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
+       # This test works for both compilers.
+       if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
+           if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
+               (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
+               grep IS_64BIT_ARCH >/dev/null
+           then
+               SUN_ARCH=x86_64
+           fi
+       fi
+       echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
        exit ;;
     sun4*:SunOS:6*:*)
        # According to config.sub, this is the proper way to canonicalize
@@ -890,7 +894,7 @@ EOF
        echo "$UNAME_MACHINE"-pc-uwin
        exit ;;
     amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
-       echo x86_64-unknown-cygwin
+       echo x86_64-pc-cygwin
        exit ;;
     prep*:SunOS:5.*:*)
        echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 
's/[^.]*//'`"
@@ -981,22 +985,50 @@ EOF
        exit ;;
     mips:Linux:*:* | mips64:Linux:*:*)
        set_cc_for_build
+       IS_GLIBC=0
+       test x"${LIBC}" = xgnu && IS_GLIBC=1
        sed 's/^        //' << EOF > "$dummy.c"
        #undef CPU
-       #undef ${UNAME_MACHINE}
-       #undef ${UNAME_MACHINE}el
+       #undef mips
+       #undef mipsel
+       #undef mips64
+       #undef mips64el
+       #if ${IS_GLIBC} && defined(_ABI64)
+       LIBCABI=gnuabi64
+       #else
+       #if ${IS_GLIBC} && defined(_ABIN32)
+       LIBCABI=gnuabin32
+       #else
+       LIBCABI=${LIBC}
+       #endif
+       #endif
+
+       #if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && 
__mips_isa_rev>=6
+       CPU=mipsisa64r6
+       #else
+       #if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && 
__mips_isa_rev>=6
+       CPU=mipsisa32r6
+       #else
+       #if defined(__mips64)
+       CPU=mips64
+       #else
+       CPU=mips
+       #endif
+       #endif
+       #endif
+
        #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || 
defined(MIPSEL)
-       CPU=${UNAME_MACHINE}el
+       MIPS_ENDIAN=el
        #else
        #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || 
defined(MIPSEB)
-       CPU=${UNAME_MACHINE}
+       MIPS_ENDIAN=
        #else
-       CPU=
+       MIPS_ENDIAN=
        #endif
        #endif
 EOF
-       eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
-       test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
+       eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep 
'^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
+       test "x$CPU" != x && { echo 
"$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
        ;;
     mips64el:Linux:*:*)
        echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
@@ -1109,7 +1141,7 @@ EOF
            *Pentium)        UNAME_MACHINE=i586 ;;
            *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
        esac
-       echo 
"$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}"
+       echo 
"$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}"
        exit ;;
     i*86:*:3.2:*)
        if test -f /usr/options/cb.name; then
@@ -1424,8 +1456,148 @@ EOF
     amd64:Isilon\ OneFS:*:*)
        echo x86_64-unknown-onefs
        exit ;;
+    *:Unleashed:*:*)
+       echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
+       exit ;;
 esac
 
+# No uname command or uname output not recognized.
+set_cc_for_build
+cat > "$dummy.c" <<EOF
+#ifdef _SEQUENT_
+#include <sys/types.h>
+#include <sys/utsname.h>
+#endif
+#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || 
defined(__ultrix__)
+#if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || 
defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)
+#include <signal.h>
+#if defined(_SIZE_T_) || defined(SIGLOST)
+#include <sys/utsname.h>
+#endif
+#endif
+#endif
+main ()
+{
+#if defined (sony)
+#if defined (MIPSEB)
+  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
+     I don't know....  */
+  printf ("mips-sony-bsd\n"); exit (0);
+#else
+#include <sys/param.h>
+  printf ("m68k-sony-newsos%s\n",
+#ifdef NEWSOS4
+  "4"
+#else
+  ""
+#endif
+  ); exit (0);
+#endif
+#endif
+
+#if defined (NeXT)
+#if !defined (__ARCHITECTURE__)
+#define __ARCHITECTURE__ "m68k"
+#endif
+  int version;
+  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
+  if (version < 4)
+    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
+  else
+    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
+  exit (0);
+#endif
+
+#if defined (MULTIMAX) || defined (n16)
+#if defined (UMAXV)
+  printf ("ns32k-encore-sysv\n"); exit (0);
+#else
+#if defined (CMU)
+  printf ("ns32k-encore-mach\n"); exit (0);
+#else
+  printf ("ns32k-encore-bsd\n"); exit (0);
+#endif
+#endif
+#endif
+
+#if defined (__386BSD__)
+  printf ("i386-pc-bsd\n"); exit (0);
+#endif
+
+#if defined (sequent)
+#if defined (i386)
+  printf ("i386-sequent-dynix\n"); exit (0);
+#endif
+#if defined (ns32000)
+  printf ("ns32k-sequent-dynix\n"); exit (0);
+#endif
+#endif
+
+#if defined (_SEQUENT_)
+  struct utsname un;
+
+  uname(&un);
+  if (strncmp(un.version, "V2", 2) == 0) {
+    printf ("i386-sequent-ptx2\n"); exit (0);
+  }
+  if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
+    printf ("i386-sequent-ptx1\n"); exit (0);
+  }
+  printf ("i386-sequent-ptx\n"); exit (0);
+#endif
+
+#if defined (vax)
+#if !defined (ultrix)
+#include <sys/param.h>
+#if defined (BSD)
+#if BSD == 43
+  printf ("vax-dec-bsd4.3\n"); exit (0);
+#else
+#if BSD == 199006
+  printf ("vax-dec-bsd4.3reno\n"); exit (0);
+#else
+  printf ("vax-dec-bsd\n"); exit (0);
+#endif
+#endif
+#else
+  printf ("vax-dec-bsd\n"); exit (0);
+#endif
+#else
+#if defined(_SIZE_T_) || defined(SIGLOST)
+  struct utsname un;
+  uname (&un);
+  printf ("vax-dec-ultrix%s\n", un.release); exit (0);
+#else
+  printf ("vax-dec-ultrix\n"); exit (0);
+#endif
+#endif
+#endif
+#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || 
defined(__ultrix__)
+#if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || 
defined(__MIPS__)
+#if defined(_SIZE_T_) || defined(SIGLOST)
+  struct utsname *un;
+  uname (&un);
+  printf ("mips-dec-ultrix%s\n", un.release); exit (0);
+#else
+  printf ("mips-dec-ultrix\n"); exit (0);
+#endif
+#endif
+#endif
+
+#if defined (alliant) && defined (i860)
+  printf ("i860-alliant-bsd\n"); exit (0);
+#endif
+
+  exit (1);
+}
+EOF
+
+$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
+       { echo "$SYSTEM_NAME"; exit; }
+
+# Apollos put the system type in the environment.
+test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; }
+
 echo "$0: unable to guess system type" >&2
 
 case "$UNAME_MACHINE:$UNAME_SYSTEM" in
diff --git a/config.sub b/config.sub
index b51fb8cdb69e..f53af5a2da7d 100755
--- a/config.sub
+++ b/config.sub
@@ -1,8 +1,8 @@
 #! /bin/sh
 # Configuration validation subroutine script.
-#   Copyright 1992-2018 Free Software Foundation, Inc.
+#   Copyright 1992-2019 Free Software Foundation, Inc.
 
-timestamp='2018-08-29'
+timestamp='2019-01-05'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -67,7 +67,7 @@ Report bugs and patches to <config-patc...@gnu.org>."
 version="\
 GNU config.sub ($timestamp)
 
-Copyright 1992-2018 Free Software Foundation, Inc.
+Copyright 1992-2019 Free Software Foundation, Inc.
 
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -89,7 +89,7 @@ while test $# -gt 0 ; do
     - )        # Use stdin as input.
        break ;;
     -* )
-       echo "$me: invalid option $1$help"
+       echo "$me: invalid option $1$help" >&2
        exit 1 ;;
 
     *local*)
@@ -111,7 +111,8 @@ case $# in
 esac
 
 # Split fields of configuration type
-IFS="-" read -r field1 field2 field3 field4 <<EOF
+# shellcheck disable=SC2162
+IFS="-" read field1 field2 field3 field4 <<EOF
 $1
 EOF
 
@@ -149,7 +150,7 @@ case $1 in
                esac
                ;;
        *-*)
-               # A lone config we happen to match not fitting any patern
+               # A lone config we happen to match not fitting any pattern
                case $field1-$field2 in
                        decstation-3100)
                                basic_machine=mips-dec
@@ -821,7 +822,9 @@ case $basic_machine in
                cpu=m68k
                vendor=next
                case $os in
-                   nextstep* )
+                   openstep*)
+                       ;;
+                   nextstep*)
                        ;;
                    ns2*)
                      os=nextstep2
@@ -918,7 +921,8 @@ case $basic_machine in
                ;;
 
        *-*)
-               IFS="-" read -r cpu vendor <<EOF
+               # shellcheck disable=SC2162
+               IFS="-" read cpu vendor <<EOF
 $basic_machine
 EOF
                ;;
@@ -950,7 +954,7 @@ unset -v basic_machine
 
 # Decode basic machines in the full and proper CPU-Company form.
 case $cpu-$vendor in
-       # Here we handle the default manufacturer of certain CPU types in 
cannonical form. It is in
+       # Here we handle the default manufacturer of certain CPU types in 
canonical form. It is in
        # some cases the only manufacturer, in others, it is the most popular.
        craynv-unknown)
                vendor=cray
@@ -1101,7 +1105,7 @@ case $cpu-$vendor in
                cpu=`echo "$cpu" | sed 's/^xscale/arm/'`
                ;;
 
-       # Recognize the cannonical CPU Types that limit and/or modify the
+       # Recognize the canonical CPU Types that limit and/or modify the
        # company names they are paired with.
        cr16-*)
                os=${os:-elf}
@@ -1150,7 +1154,7 @@ case $cpu-$vendor in
                ;;
 
        *)
-               # Recognize the cannonical CPU types that are allowed with any
+               # Recognize the canonical CPU types that are allowed with any
                # company name.
                case $cpu in
                        1750a | 580 \
@@ -1161,6 +1165,7 @@ case $cpu-$vendor in
                        | alpha64 | alpha64ev[4-8] | alpha64ev56 | 
alpha64ev6[78] \
                        | alphapca5[67] | alpha64pca5[67] \
                        | am33_2.0 \
+                       | amdgcn \
                        | arc | arceb \
                        | arm  | arm[lb]e | arme[lb] | armv* \
                        | avr | avr32 \
@@ -1182,13 +1187,13 @@ case $cpu-$vendor in
                        | le32 | le64 \
                        | lm32 \
                        | m32c | m32r | m32rle \
-                       | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | 
m68k | v70 | w65 \
-                       | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx 
| picochip \
+                       | m5200 | m68000 | m680[012346]0 | m68360 | m683?2 | 
m68k \
+                       | m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
                        | m88110 | m88k | maxq | mb | mcore | mep | metag \
                        | microblaze | microblazeel \
                        | mips | mipsbe | mipseb | mipsel | mipsle \
                        | mips16 \
-                       | mips64 | mips64el \
+                       | mips64 | mips64eb | mips64el \
                        | mips64octeon | mips64octeonel \
                        | mips64orion | mips64orionel \
                        | mips64r5900 | mips64r5900el \
@@ -1215,11 +1220,12 @@ case $cpu-$vendor in
                        | nds32 | nds32le | nds32be \
                        | nfp \
                        | nios | nios2 | nios2eb | nios2el \
-                       | none | np1 | ns16k | ns32k \
+                       | none | np1 | ns16k | ns32k | nvptx \
                        | open8 \
                        | or1k* \
                        | or32 \
                        | orion \
+                       | picochip \
                        | pdp10 | pdp11 | pj | pjl | pn | power \
                        | powerpc | powerpc64 | powerpc64le | powerpcle | 
powerpcspe \
                        | pru \
@@ -1227,7 +1233,8 @@ case $cpu-$vendor in
                        | riscv | riscv32 | riscv64 \
                        | rl78 | romp | rs6000 | rx \
                        | score \
-                       | sh | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | 
she[lb] | sh[lb]e \
+                       | sh | shl \
+                       | sh[1234] | sh[24]a | sh[24]ae[lb] | sh[23]e | she[lb] 
| sh[lb]e \
                        | sh[1234]e[lb] |  sh[12345][lb]e | sh[23]ele | sh64 | 
sh64le \
                        | sparc | sparc64 | sparc64b | sparc64v | sparc86x | 
sparclet \
                        | sparclite \
@@ -1237,10 +1244,11 @@ case $cpu-$vendor in
                        | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
                        | tron \
                        | ubicom32 \
-                       | v850 | v850e | v850e1 | v850es | v850e2 | v850e2v3 \
+                       | v70 | v850 | v850e | v850e1 | v850es | v850e2 | 
v850e2v3 \
                        | vax \
                        | visium \
-                       | wasm32 \
+                       | w65 \
+                       | wasm32 | wasm64 \
                        | we32k \
                        | x86 | x86_64 | xc16x | xgate | xps100 \
                        | xstormy16 | xtensa* \
@@ -1360,7 +1368,7 @@ case $os in
             | powermax* | dnix* | nx6 | nx7 | sei* | dragonfly* \
             | skyos* | haiku* | rdos* | toppers* | drops* | es* \
             | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
-            | midnightbsd*)
+            | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi*)
        # Remember, each alternative MUST END IN *, to match a version number.
                ;;
        qnx*)
commit 0ef008b143017cd335e8dad22f0b7cf7821434c5
Author:     Matthias Seidel <msei...@apache.org>
AuthorDate: Wed May 8 18:53:22 2019 +0000
Commit:     Matthias Seidel <msei...@apache.org>
CommitDate: Wed May 8 18:53:22 2019 +0000

    Removed nonexistent "background.gif" from css, Removed unused css, fixed 
german phrases

diff --git a/extras/source/misc_config/wizard/web/styles/beige.css 
b/extras/source/misc_config/wizard/web/styles/beige.css
index cc3a72893cdc..ad7ae9941da8 100644
--- a/extras/source/misc_config/wizard/web/styles/beige.css
+++ b/extras/source/misc_config/wizard/web/styles/beige.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #FFCC99;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/bg.css 
b/extras/source/misc_config/wizard/web/styles/bg.css
index c184f15890c8..cfa0cc80cb32 100644
--- a/extras/source/misc_config/wizard/web/styles/bg.css
+++ b/extras/source/misc_config/wizard/web/styles/bg.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #660033;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/bgr.css 
b/extras/source/misc_config/wizard/web/styles/bgr.css
index b07e528103ba..0a1d2fc90a46 100644
--- a/extras/source/misc_config/wizard/web/styles/bgr.css
+++ b/extras/source/misc_config/wizard/web/styles/bgr.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #660033;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/bgrey.css 
b/extras/source/misc_config/wizard/web/styles/bgrey.css
index 5906a13d7b2e..153d72423f3e 100644
--- a/extras/source/misc_config/wizard/web/styles/bgrey.css
+++ b/extras/source/misc_config/wizard/web/styles/bgrey.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #000000;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/bwb.css 
b/extras/source/misc_config/wizard/web/styles/bwb.css
index de7fc4e6a49a..6cd68c930469 100644
--- a/extras/source/misc_config/wizard/web/styles/bwb.css
+++ b/extras/source/misc_config/wizard/web/styles/bwb.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/bwo.css 
b/extras/source/misc_config/wizard/web/styles/bwo.css
index bbcfd12e7af6..ba7a707b33f3 100644
--- a/extras/source/misc_config/wizard/web/styles/bwo.css
+++ b/extras/source/misc_config/wizard/web/styles/bwo.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #666666;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/dark.css 
b/extras/source/misc_config/wizard/web/styles/dark.css
index 012951309635..69974adfff10 100644
--- a/extras/source/misc_config/wizard/web/styles/dark.css
+++ b/extras/source/misc_config/wizard/web/styles/dark.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #000000;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/dp.css 
b/extras/source/misc_config/wizard/web/styles/dp.css
index ecb0b65bfb6b..7baad4195e68 100644
--- a/extras/source/misc_config/wizard/web/styles/dp.css
+++ b/extras/source/misc_config/wizard/web/styles/dp.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #000000;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/forest.css 
b/extras/source/misc_config/wizard/web/styles/forest.css
index 773e3dfccea5..1f7de8fd942b 100644
--- a/extras/source/misc_config/wizard/web/styles/forest.css
+++ b/extras/source/misc_config/wizard/web/styles/forest.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/green.css 
b/extras/source/misc_config/wizard/web/styles/green.css
index 2aa793a52a68..a965f0b30ae6 100644
--- a/extras/source/misc_config/wizard/web/styles/green.css
+++ b/extras/source/misc_config/wizard/web/styles/green.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #003333;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/greenred.css 
b/extras/source/misc_config/wizard/web/styles/greenred.css
index 49c00dc274fe..873ffc725b29 100644
--- a/extras/source/misc_config/wizard/web/styles/greenred.css
+++ b/extras/source/misc_config/wizard/web/styles/greenred.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #CCCCCC;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/grey.css 
b/extras/source/misc_config/wizard/web/styles/grey.css
index cdfa37981f77..bb88ddf67952 100644
--- a/extras/source/misc_config/wizard/web/styles/grey.css
+++ b/extras/source/misc_config/wizard/web/styles/grey.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #CCCCCC;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/ibg.css 
b/extras/source/misc_config/wizard/web/styles/ibg.css
index fe72dffb04a4..eeae1f3e194b 100644
--- a/extras/source/misc_config/wizard/web/styles/ibg.css
+++ b/extras/source/misc_config/wizard/web/styles/ibg.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/ice.css 
b/extras/source/misc_config/wizard/web/styles/ice.css
index b59ec81de35d..b41258b6821e 100644
--- a/extras/source/misc_config/wizard/web/styles/ice.css
+++ b/extras/source/misc_config/wizard/web/styles/ice.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/marine.css 
b/extras/source/misc_config/wizard/web/styles/marine.css
index 7798caa3d85e..84b7e905f2ca 100644
--- a/extras/source/misc_config/wizard/web/styles/marine.css
+++ b/extras/source/misc_config/wizard/web/styles/marine.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/orange.css 
b/extras/source/misc_config/wizard/web/styles/orange.css
index 256bddcb3929..fadd905b9e7f 100644
--- a/extras/source/misc_config/wizard/web/styles/orange.css
+++ b/extras/source/misc_config/wizard/web/styles/orange.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: "Times New Roman", Times, serif;
diff --git a/extras/source/misc_config/wizard/web/styles/pc_old.css 
b/extras/source/misc_config/wizard/web/styles/pc_old.css
deleted file mode 100644
index 604941087c82..000000000000
--- a/extras/source/misc_config/wizard/web/styles/pc_old.css
+++ /dev/null
@@ -1,112 +0,0 @@
-/**************************************************************
- * 
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- * 
- *************************************************************/
-
-.doctitle {
-       font-family: "Courier New", Courier, mono;
-       font-size: 14px;
-       color: #00CC00;
-       font-weight: bold;
-}
-.docdescription {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       font-style: italic;
-       color: #00CC00;
-}
-.docauthor {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       font-style: italic;
-       color: #00CC00;
-}
-.doccreationdate {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       color: #99CC00;
-}
-.doclastchangeddate {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       color: #FF0000;
-}
-.docfilename {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       color: #00CC00;
-}
-.docfileformatinfo {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       font-style: italic;
-       color: #00CC00;
-}
-.docnumberofpages {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       color: #00CC00;
-}
-.docsizeinkb {
-       font-family: "Courier New", Courier, mono;
-       font-size: 12px;
-       color: #00CC00;
-}
-body {
-       background-color: #000000;
-       background-image: url(images/background.gif);
-}
-.toctitle {
-       font-family: "Courier New", Courier, mono;
-       font-size: 20px;
-       font-style: normal;
-       font-weight: bold;
-       color: #00CC00;
-       background-color: #222222;
-}
-.tcolor {
-       background-color: #000000;
-       border-top-width: mittel;
-       border-right-width: mittel;
-       border-bottom-width: mittel;
-       border-left-width: mittel;
-       border-top-style: doppelt;
-       border-right-style: doppelt;
-       border-bottom-style: doppelt;
-       border-left-style: doppelt;
-       border-top-color: #333333;
-       border-right-color: #000000;
-       border-bottom-color: #000000;
-       border-left-color: #999999;
-}
-.ccolor {
-       background-color: #222222;
-}
-a:link {
-       font-family: "Courier New", Courier, mono;
-       color: #00FF33;
-}
-a:visited {
-       font-family: "Courier New", Courier, mono;
-       color: #00CC33;
-}
-a:active {
-       font-family: "Courier New", Courier, mono;
-       color: #CC0000;
-}
diff --git a/extras/source/misc_config/wizard/web/styles/red.css 
b/extras/source/misc_config/wizard/web/styles/red.css
index a42087bed4ff..fea18a04ef36 100644
--- a/extras/source/misc_config/wizard/web/styles/red.css
+++ b/extras/source/misc_config/wizard/web/styles/red.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #999999;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/rgb.css 
b/extras/source/misc_config/wizard/web/styles/rgb.css
index e79fae86e936..eae2c0cc131e 100644
--- a/extras/source/misc_config/wizard/web/styles/rgb.css
+++ b/extras/source/misc_config/wizard/web/styles/rgb.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #660000;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
@@ -82,14 +81,14 @@ body {
 }
 .tcolor {
        background-color: #FFCC00;
-       border-top-width: mittel;
-       border-right-width: mittel;
-       border-bottom-width: mittel;
-       border-left-width: mittel;
-       border-top-style: doppelt;
-       border-right-style: doppelt;
-       border-bottom-style: doppelt;
-       border-left-style: doppelt;
+       border-top-width: medium;
+       border-right-width: medium;
+       border-bottom-width: medium;
+       border-left-width: medium;
+       border-top-style: thick;
+       border-right-style: thick;
+       border-bottom-style: thick;
+       border-left-style: thick;
        border-top-color: #003399;
        border-right-color: #CC3300;
        border-bottom-color: #003399;
diff --git a/extras/source/misc_config/wizard/web/styles/strange.css 
b/extras/source/misc_config/wizard/web/styles/strange.css
index dd747ca2d2a5..ce0640a14b1c 100644
--- a/extras/source/misc_config/wizard/web/styles/strange.css
+++ b/extras/source/misc_config/wizard/web/styles/strange.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #660000;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/violet.css 
b/extras/source/misc_config/wizard/web/styles/violet.css
index 242ed2766992..7f6afeb5eedb 100644
--- a/extras/source/misc_config/wizard/web/styles/violet.css
+++ b/extras/source/misc_config/wizard/web/styles/violet.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #CCCCCC;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
diff --git a/extras/source/misc_config/wizard/web/styles/water.css 
b/extras/source/misc_config/wizard/web/styles/water.css
index 401b405e3d69..c17b33d6af09 100644
--- a/extras/source/misc_config/wizard/web/styles/water.css
+++ b/extras/source/misc_config/wizard/web/styles/water.css
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,16 +7,16 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
 .doctitle {
@@ -70,7 +70,6 @@
 }
 body {
        background-color: #CCCCCC;
-       background-image: url(images/background.gif);
 }
 .toctitle {
        font-family: Arial, Helvetica, sans-serif;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to