Skip to content

Commit 4913ffb

Browse files
committed
Turn Conga FIFO mode off by default
Fix bug in SubmitButtonSimple example page
1 parent 52d4389 commit 4913ffb

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Config/Server.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<!-- Communications Settings -->
1515
<Port>8080</Port> <!-- Preferred port that MiServer listens on -->
1616
<Ports>8080-8090</Ports> <!-- List of ports that we can listen on (when running multiple MiServers) -->
17-
<FIFOMode>1</FIFOMode> <!-- Use Conga FIFO mode? -->
1817
<WaitTimeout>5000ms</WaitTimeout> <!-- Time to wait for request from client before Conga times out -->
1918
<UseContentEncoding>1</UseContentEncoding> <!-- for HTTP compression -->
2019
<SupportedEncodings>gzip,deflate</SupportedEncodings> <!-- name(s) of class(es) that use ContentEncoder interface -->

Core/Boot.dyalog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@
295295
Config.DefaultExtensionConfig Setting'DefaultExtension' 0 '.mipage'
296296
Config.DefaultPageConfig Setting'DefaultPage' 0 'index.mipage'
297297
Config.DirectFileSize{[]}02Config Setting'DirectFileSize'(,1)
298-
Config.FIFOModeConfig Setting'FIFOMode' 1 1 Conga FIFO mode default to on (1)
298+
Config.FIFOModeConfig Setting'FIFOMode' 1 0 Conga FIFO mode default to off (0)
299299
Config.FormatHtmlConfig Setting'FormatHtml' 1 0
300300
Config.HostConfig Setting'Host' 0 'localhost'
301301
Config.HTTPCacheTime'm'#.Dates.ParseTime Config Setting'HTTPCacheTime' 0 '0' default to off (0)

MS3/Examples/DC/SubmitButtonSimple.mipage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
Add _.style'#Submit {font-weight: bold; font-size: large;}'
1212

13-
:If _Request.Command≡'get' ⍝ Reset names on a GET
13+
:If _Request.Method≡'get' ⍝ Reset names on a GET
1414
fname←lname←''
1515
:EndIf
1616

0 commit comments

Comments
 (0)