Mailinglist Archive: opensuse-commit (1206 mails)
| < Previous | Next > |
commit yast2-http-server
- From: root@xxxxxxx (h_root)
- Date: Mon, 15 May 2006 12:44:35 +0200 (CEST)
- Message-id: <20060515104435.3066F8D6AE@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-http-server
checked in at Mon May 15 12:44:35 CEST 2006.
--------
--- yast2-http-server/yast2-http-server.changes 2006-05-09 09:24:00.000000000 +0200
+++ NOARCH/yast2-http-server/yast2-http-server.changes 2006-05-15 11:30:04.000000000 +0200
@@ -1,0 +2,5 @@
+Mon May 15 11:27:30 CEST 2006 - mzugec@xxxxxxx
+
+- fixed #175516 - open firewall on selected ports checkbox is always checked by default
+
+-------------------------------------------------------------------
Old:
----
yast2-http-server-2.13.14.tar.bz2
New:
----
yast2-http-server-2.13.15.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-http-server.spec ++++++
--- /var/tmp/diff_new_pack.ysxfeK/_old 2006-05-15 12:44:26.000000000 +0200
+++ /var/tmp/diff_new_pack.ysxfeK/_new 2006-05-15 12:44:26.000000000 +0200
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-http-server (Version 2.13.14)
+# spec file for package yast2-http-server (Version 2.13.15)
#
# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-http-server
-Version: 2.13.14
-Release: 2
+Version: 2.13.15
+Release: 1
License: GPL
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-http-server-2.13.14.tar.bz2
+Source0: yast2-http-server-2.13.15.tar.bz2
prefix: /usr
BuildRequires: docbook-xsl-stylesheets doxygen libxslt perl-XML-Writer popt-devel sgml-skel update-desktop-files yast2 yast2-devtools yast2-dns-server yast2-network yast2-packagemanager-devel yast2-perl-bindings yast2-testsuite
Requires: yast2 yast2-network yast2-firewall yast2-perl-bindings libzio
@@ -34,7 +34,7 @@
Stanislav Visnovsky <visnov@xxxxxxx>
%prep
-%setup -n yast2-http-server-2.13.14
+%setup -n yast2-http-server-2.13.15
%build
%{prefix}/bin/y2tool y2autoconf
@@ -70,6 +70,8 @@
%doc %{prefix}/share/doc/packages/yast2-http-server
%changelog -n yast2-http-server
+* Mon May 15 2006 - mzugec@xxxxxxx
+- fixed #175516 - open firewall on selected ports checkbox is always checked by default
* Tue May 09 2006 - mzugec@xxxxxxx
- fixed #173801 - autoyast profile problem (virtualhosts use IP/server_name syntax)
* Fri Apr 07 2006 - mzugec@xxxxxxx
++++++ yast2-http-server-2.13.14.tar.bz2 -> yast2-http-server-2.13.15.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/Makefile.am new/yast2-http-server-2.13.15/Makefile.am
--- old/yast2-http-server-2.13.14/Makefile.am 2006-05-09 09:10:00.000000000 +0200
+++ new/yast2-http-server-2.13.15/Makefile.am 2006-05-15 11:22:34.000000000 +0200
@@ -8,6 +8,7 @@
#where devtools are
PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools)
+Y2TOOL = $(PREFIX)/bin/y2tool
VERSION = $(shell cat $(srcdir)/VERSION)
RPMNAME = $(shell cat $(srcdir)/RPMNAME)
@@ -95,7 +96,7 @@
done
pot:
- y2tool y2makepot -s $(srcdir)
+ $(Y2TOOL) y2makepot -s $(srcdir)
install-pot: pot
@POT_DST=`find -type d -name testsuite -prune , \
@@ -116,7 +117,7 @@
fi
spellcheck: pot
- y2tool pot-spellcheck
+ $(Y2TOOL) pot-spellcheck
# all-local: $(if $(IS_DEVTOOLS),,$(POT_DST))
@@ -143,20 +144,20 @@
rm -f package/*.bak
rm -f package/*.auto
mv $(RPMNAME)-$(VERSION).tar.bz2 package/
- if ! test -x $(PREFIX)/bin/y2tool; then \
- echo "$(PREFIX)/bin/y2tool: not found."; \
+ if ! test -x $(Y2TOOL); then \
+ echo "$(Y2TOOL): not found."; \
echo "You have to install yast2-devtools to making a package"; \
false; \
fi
here=`pwd`; \
cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
- $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \
+ $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
done
package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local
-TAGVERSION = $(PREFIX)/bin/y2tool tagversion
+TAGVERSION = $(Y2TOOL) tagversion
check-up-to-date check-cvs-up-to-date check-svn-up-to-date:
if [ -d $(srcdir)/CVS ]; then \
@@ -200,12 +201,12 @@
fi
check-textdomain:
- $(PREFIX)/bin/y2tool check-textdomain $(srcdir)
+ $(Y2TOOL) check-textdomain $(srcdir)
stable: checkin-stable
checkin-stable: package
- $(PREFIX)/bin/y2tool checkin-stable
+ $(Y2TOOL) checkin-stable
# For po/ modules
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/Makefile.in new/yast2-http-server-2.13.15/Makefile.in
--- old/yast2-http-server-2.13.14/Makefile.in 2006-05-09 09:10:10.000000000 +0200
+++ new/yast2-http-server-2.13.15/Makefile.in 2006-05-15 11:22:42.000000000 +0200
@@ -198,6 +198,7 @@
#where devtools are
PREFIX := $(shell pkg-config --print-errors --variable=prefix yast2-devtools)
+Y2TOOL = $(PREFIX)/bin/y2tool
SUBDIRS_FILE = $(shell test -e $(srcdir)/SUBDIRS && echo SUBDIRS)
ACINCLUDE_FILE = $(shell test -e $(srcdir)/acinclude.m4 && echo acinclude.m4)
HAS_YAST_LICENSE = $(shell test -e $(srcdir)/YAST_LICENSE && echo YAST_LICENSE)
@@ -227,7 +228,7 @@
$(IS_DEVTOOLS),Makefile.am.common,$(POT_DST)) $(am__append_1)
@CREATE_PKGCONFIG_NOARCH_TRUE@@CREATE_PKGCONFIG_TRUE@pkgconfigdata_DATA = $(RPMNAME).pc
@CREATE_PKGCONFIG_NOARCH_FALSE@@CREATE_PKGCONFIG_TRUE@pkgconfig_DATA = $(RPMNAME).pc
-TAGVERSION = $(PREFIX)/bin/y2tool tagversion
+TAGVERSION = $(Y2TOOL) tagversion
# test ! -d $(srcdir)/po \
# || { $(MAKE) -C po checkpo && $(MAKE) -C po make-pox; }
# No ./SUBDIRS file found - assuming default: All direct subdirs with Makefile.am
@@ -724,7 +725,7 @@
done
pot:
- y2tool y2makepot -s $(srcdir)
+ $(Y2TOOL) y2makepot -s $(srcdir)
install-pot: pot
@POT_DST=`find -type d -name testsuite -prune , \
@@ -745,7 +746,7 @@
fi
spellcheck: pot
- y2tool pot-spellcheck
+ $(Y2TOOL) pot-spellcheck
# all-local: $(if $(IS_DEVTOOLS),,$(POT_DST))
@@ -772,15 +773,15 @@
rm -f package/*.bak
rm -f package/*.auto
mv $(RPMNAME)-$(VERSION).tar.bz2 package/
- if ! test -x $(PREFIX)/bin/y2tool; then \
- echo "$(PREFIX)/bin/y2tool: not found."; \
+ if ! test -x $(Y2TOOL); then \
+ echo "$(Y2TOOL): not found."; \
echo "You have to install yast2-devtools to making a package"; \
false; \
fi
here=`pwd`; \
cd $(srcdir) && for i in $(RPMNAME)*.spec.in; do \
newname="`echo "$$i" | sed "s/\.in$$//g"`"; \
- $(PREFIX)/bin/y2tool create-spec < $$i > $$here/package/$${newname} ; \
+ $(Y2TOOL) create-spec < $$i > $$here/package/$${newname} ; \
done
package: check-up-to-date check-tagversion check-all-packages check-textdomain package-local
@@ -827,12 +828,12 @@
fi
check-textdomain:
- $(PREFIX)/bin/y2tool check-textdomain $(srcdir)
+ $(Y2TOOL) check-textdomain $(srcdir)
stable: checkin-stable
checkin-stable: package
- $(PREFIX)/bin/y2tool checkin-stable
+ $(Y2TOOL) checkin-stable
# For po/ modules
checkpo:
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/VERSION new/yast2-http-server-2.13.15/VERSION
--- old/yast2-http-server-2.13.14/VERSION 2006-05-09 09:18:18.000000000 +0200
+++ new/yast2-http-server-2.13.15/VERSION 2006-05-15 11:27:24.000000000 +0200
@@ -1 +1 @@
-2.13.14
+2.13.15
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/configure new/yast2-http-server-2.13.15/configure
--- old/yast2-http-server-2.13.14/configure 2006-05-09 09:10:07.000000000 +0200
+++ new/yast2-http-server-2.13.15/configure 2006-05-15 11:22:40.000000000 +0200
@@ -1,8 +1,8 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for yast2-http-server 2.13.13.
+# Generated by GNU Autoconf 2.59 for yast2-http-server 2.13.14.
#
-# Report bugs to <http://www.suse.de/feedback>.
+# Report bugs to <http://bugs.opensuse.org/>.
#
# Copyright (C) 2003 Free Software Foundation, Inc.
# This configure script is free software; the Free Software Foundation
@@ -269,9 +269,9 @@
# Identity of this package.
PACKAGE_NAME='yast2-http-server'
PACKAGE_TARNAME='yast2-http-server'
-PACKAGE_VERSION='2.13.13'
-PACKAGE_STRING='yast2-http-server 2.13.13'
-PACKAGE_BUGREPORT='http://www.suse.de/feedback'
+PACKAGE_VERSION='2.13.14'
+PACKAGE_STRING='yast2-http-server 2.13.14'
+PACKAGE_BUGREPORT='http://bugs.opensuse.org/'
ac_unique_file="RPMNAME"
ac_default_prefix=/usr
@@ -728,7 +728,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures yast2-http-server 2.13.13 to adapt to many kinds of systems.
+\`configure' configures yast2-http-server 2.13.14 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -795,7 +795,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of yast2-http-server 2.13.13:";;
+ short | recursive ) echo "Configuration of yast2-http-server 2.13.14:";;
esac
cat <<\_ACEOF
@@ -812,7 +812,7 @@
Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
-Report bugs to <http://www.suse.de/feedback>.
+Report bugs to <http://bugs.opensuse.org/>.
_ACEOF
fi
@@ -908,7 +908,7 @@
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-yast2-http-server configure 2.13.13
+yast2-http-server configure 2.13.14
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
@@ -922,7 +922,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by yast2-http-server $as_me 2.13.13, which was
+It was created by yast2-http-server $as_me 2.13.14, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
@@ -1652,7 +1652,7 @@
# Define the identity of the package.
PACKAGE='yast2-http-server'
- VERSION='2.13.13'
+ VERSION='2.13.14'
cat >>confdefs.h <<_ACEOF
@@ -1863,7 +1863,7 @@
-VERSION="2.13.13"
+VERSION="2.13.14"
RPMNAME="yast2-http-server"
MAINTAINER="Michal Zugec <mzugec@xxxxxxx>"
@@ -2693,7 +2693,7 @@
} >&5
cat >&5 <<_CSEOF
-This file was extended by yast2-http-server $as_me 2.13.13, which was
+This file was extended by yast2-http-server $as_me 2.13.14, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -2748,7 +2748,7 @@
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-yast2-http-server config.status 2.13.13
+yast2-http-server config.status 2.13.14
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/configure.in new/yast2-http-server-2.13.15/configure.in
--- old/yast2-http-server-2.13.14/configure.in 2006-05-09 09:10:00.000000000 +0200
+++ new/yast2-http-server-2.13.15/configure.in 2006-05-15 11:22:34.000000000 +0200
@@ -1,9 +1,9 @@
dnl configure.in for yast2-http-server
dnl
-dnl -- This file is generated by y2autoconf - DO NOT EDIT! --
+dnl -- This file is generated by y2autoconf 2.13.18 - DO NOT EDIT! --
dnl (edit configure.in.in instead)
-AC_INIT(yast2-http-server, 2.13.13, http://www.suse.de/feedback, yast2-http-server)
+AC_INIT(yast2-http-server, 2.13.14, http://bugs.opensuse.org/, yast2-http-server)
dnl Check for presence of file 'RPMNAME'
AC_CONFIG_SRCDIR([RPMNAME])
@@ -17,7 +17,7 @@
AM_INIT_AUTOMAKE(tar-ustar) dnl searches for some needed programs
dnl Important YaST2 variables
-VERSION="2.13.13"
+VERSION="2.13.14"
RPMNAME="yast2-http-server"
MAINTAINER="Michal Zugec <mzugec@xxxxxxx>"
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/src/HttpServer.ycp new/yast2-http-server-2.13.15/src/HttpServer.ycp
--- old/yast2-http-server-2.13.14/src/HttpServer.ycp 2006-05-09 09:19:36.000000000 +0200
+++ new/yast2-http-server-2.13.15/src/HttpServer.ycp 2006-05-15 11:28:19.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Data for configuration of http-server, input and output functions.
* Authors: Stanislav Visnovsky <visnov@xxxxxxx>
*
- * $Id: HttpServer.ycp 30741 2006-05-09 07:19:32Z mzugec $
+ * $Id: HttpServer.ycp 30910 2006-05-15 09:27:55Z mzugec $
*
* Representation of the configuration of http-server.
* Input and output routines.
@@ -69,8 +69,8 @@
include "http-server/routines.ycp";
-global boolean firewall = true;
-global boolean firewall_started = true;
+global boolean firewall = false;
+global boolean firewall_first = true;
/**
* Mapping of IPs to network devices
@@ -79,7 +79,7 @@
global boolean getFirewallStatus(){
- y2error("get firewall status %1", firewall);
+ y2internal("get firewall status %1", firewall);
return firewall;
}
@@ -193,7 +193,7 @@
configured_dns = true;
}
Progress::set(true); //on();
- firewall_started = SuSEFirewall::IsEnabled(); //Service::Enabled( "SuSEfirewall2_final" );
+// firewall_started = SuSEFirewall::IsEnabled(); //Service::Enabled( "SuSEfirewall2_final" );
// read current settings from httpd.conf and sysconfig
Progress::NextStage();
@@ -273,7 +273,7 @@
});
y2milestone ("Mapping of IP addresses and network devices: %1", ip2device);
-
+
// now, check the firewall status to set up the original status correctly
firewall = true;
@@ -374,6 +374,8 @@
// firewall should not be open, close all ports still open
// the ones from deleted Listen statements were closed in WriteListen
+ if (firewall_first)
+ {
foreach (map<string,any> listen, YaST::HTTPDData::GetCurrentListen (),
{
// find out the port and host
@@ -392,6 +394,7 @@
}
});
+ }
SuSEFirewall::Write ();
if (configured_dns) DnsServerAPI::Write ();
Progress::set(true);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/src/HttpServerWidgets.ycp new/yast2-http-server-2.13.15/src/HttpServerWidgets.ycp
--- old/yast2-http-server-2.13.14/src/HttpServerWidgets.ycp 2006-03-15 18:05:08.000000000 +0100
+++ new/yast2-http-server-2.13.15/src/HttpServerWidgets.ycp 2006-05-15 11:28:19.000000000 +0200
@@ -5,7 +5,7 @@
* Authors: Jiri Srain <jsrain@xxxxxxx>
* Stanislav Visnovsky <visnov@xxxxxxx>
*
- * $Id: HttpServerWidgets.ycp 29027 2006-03-15 17:05:06Z mzugec $
+ * $Id: HttpServerWidgets.ycp 30910 2006-05-15 09:27:55Z mzugec $
*/
{
@@ -28,6 +28,7 @@
import "Confirm";
import "SuSEFirewall";
import "CWMServiceStart";
+ import "CWMFirewallInterfaces";
include "http-server/helps.ycp";
@@ -942,7 +943,12 @@
"opt" : [ `notify ],
"help" : HELPS["server_enable"]:"",
],
- "firewall_adapt" : $[
+ "firewall_adapt" : CWMFirewallInterfaces::CreateOpenFirewallWidget ($[
+ "services" : [ "http" ],
+ "help" : HELPS["firewall_adapt"]:"",
+ "display_details" : true,
+ ]),
+ "firewall_first" : $[
"widget" : `checkbox,
// translators: checkbox label
"label" : _("Open &Firewall on Selected Ports"),
@@ -2176,13 +2182,11 @@
* @param event map event description
*/
global void storeAdaptFirewall (string opt_id, map event) ``{
-// if( HttpServer::firewall_started || Mode::config ()) {
if( SuSEFirewall::IsStarted() ) {
HttpServer::firewall = (boolean)UI::QueryWidget (`id (opt_id), `Value);
HttpServer::modified = true;
}
}
-
/* these are for future use: */
// error message - the entered ip address is not found
@@ -2299,7 +2303,7 @@
* @param event map
*/
global define void storeFwOpen (string opt_id, map event) ``{
- if( HttpServer::firewall_started || Mode::config ()) {
+ if( SuSEFirewall::IsEnabled() || Mode::config ()) {
HttpServer::firewall = (boolean)UI::QueryWidget (`id (opt_id), `Value);
HttpServer::modified = true;
}
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/src/dialogs.ycp new/yast2-http-server-2.13.15/src/dialogs.ycp
--- old/yast2-http-server-2.13.14/src/dialogs.ycp 2006-04-07 07:56:31.000000000 +0200
+++ new/yast2-http-server-2.13.15/src/dialogs.ycp 2006-05-15 11:28:19.000000000 +0200
@@ -5,7 +5,7 @@
* Authors: Jiri Srain <jsrain@xxxxxxx>
* Stanislav Visnovsky <visnov@xxxxxxx>
*
- * $Id: dialogs.ycp 29843 2006-04-07 05:56:26Z mzugec $
+ * $Id: dialogs.ycp 30910 2006-05-15 09:27:55Z mzugec $
*/
{
@@ -110,6 +110,7 @@
*/
symbol OverviewDialog () {
string caption = _("HTTP Server Configuration");
+ if (HttpServer::firewall_first) tabs_descr["listen", "widget_names"]= [ "server_enable", "LISTEN", "logs" ];
map widget_descr = $[
"tab": CWMTab::CreateWidget($[
"tab_order": [ "listen", "modules", "default_host", "hosts"],
@@ -119,7 +120,7 @@
"tab_help" : "",
]),
];
- term contents = `VBox( "tab"/*, `VStretch ()*/);
+ term contents = `VBox( "tab");
list<map <string, any> > w = CWM::CreateWidgets (["tab"], (map <string, map <string, any> >)widget_descr);
string help = CWM::MergeHelps(w);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/src/wizard-dialog.ycp new/yast2-http-server-2.13.15/src/wizard-dialog.ycp
--- old/yast2-http-server-2.13.14/src/wizard-dialog.ycp 2006-03-15 17:31:27.000000000 +0100
+++ new/yast2-http-server-2.13.15/src/wizard-dialog.ycp 2006-05-15 11:28:19.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Dialogs for wizard
* Authors: Michal Zugec <mzugec@xxxxxxx>
*
- * $Id: wizard-dialog.ycp 29023 2006-03-15 16:31:25Z mzugec $
+ * $Id: wizard-dialog.ycp 30910 2006-05-15 09:27:55Z mzugec $
*/
{
@@ -32,13 +32,13 @@
`VSpacing(0.5),
"listen_interfaces",
`VSpacing(0.5),
- "firewall_adapt",
+ "firewall_first",
`VSpacing(8)
),
`HStretch()
// )
);
- list<string> widget_names = ["open_port", "listen_interfaces", "firewall_adapt"];
+ list<string> widget_names = ["open_port", "listen_interfaces", "firewall_first"];
list<map<string,any> > w = CWM::CreateWidgets (widget_names, HttpServerWidgets::widgets);
string help = "<h3>" + _("Network Device Selection") + "</h3>" + CWM::MergeHelps (w);
contents = CWM::PrepareDialog (contents, w);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-http-server-2.13.14/src/wizards.ycp new/yast2-http-server-2.13.15/src/wizards.ycp
--- old/yast2-http-server-2.13.14/src/wizards.ycp 2006-01-06 18:02:17.000000000 +0100
+++ new/yast2-http-server-2.13.15/src/wizards.ycp 2006-05-15 11:28:19.000000000 +0200
@@ -4,7 +4,7 @@
* Summary: Wizards definitions
* Authors: Stanislav Visnovsky <visnov@xxxxxxx>
*
- * $Id: wizards.ycp 26315 2005-11-28 12:44:14Z mzugec $
+ * $Id: wizards.ycp 30910 2006-05-15 09:27:55Z mzugec $
*/
{
@@ -218,7 +218,10 @@
if ($[] == SCR::Read (.target.stat, Directory::vardir + "/http_server"))
{
sequence["read", `next] = "wizard";
- }
+ } else
+ {
+ HttpServer::firewall_first = false;
+ }
symbol ret = Sequencer::Run(aliases, sequence);
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
| < Previous | Next > |