Skip to content

Commit

Permalink
Turn Conga FIFO mode off by default
Browse files Browse the repository at this point in the history
Fix bug in SubmitButtonSimple example page
  • Loading branch information
bpbecker committed Jan 25, 2019
1 parent 52d4389 commit 4913ffb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Config/Server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<!-- Communications Settings -->
<Port>8080</Port> <!-- Preferred port that MiServer listens on -->
<Ports>8080-8090</Ports> <!-- List of ports that we can listen on (when running multiple MiServers) -->
<FIFOMode>1</FIFOMode> <!-- Use Conga FIFO mode? -->
<WaitTimeout>5000ms</WaitTimeout> <!-- Time to wait for request from client before Conga times out -->
<UseContentEncoding>1</UseContentEncoding> <!-- for HTTP compression -->
<SupportedEncodings>gzip,deflate</SupportedEncodings> <!-- name(s) of class(es) that use ContentEncoder interface -->
Expand Down
2 changes: 1 addition & 1 deletion Core/Boot.dyalog
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@
Config.DefaultExtensionConfig Setting'DefaultExtension' 0 '.mipage'
Config.DefaultPageConfig Setting'DefaultPage' 0 'index.mipage'
Config.DirectFileSize{[]}02Config Setting'DirectFileSize'(,1)
Config.FIFOModeConfig Setting'FIFOMode' 1 1 Conga FIFO mode default to on (1)
Config.FIFOModeConfig Setting'FIFOMode' 1 0 Conga FIFO mode default to off (0)
Config.FormatHtmlConfig Setting'FormatHtml' 1 0
Config.HostConfig Setting'Host' 0 'localhost'
Config.HTTPCacheTime'm'#.Dates.ParseTime Config Setting'HTTPCacheTime' 0 '0' default to off (0)
Expand Down
2 changes: 1 addition & 1 deletion MS3/Examples/DC/SubmitButtonSimple.mipage
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

:If _Request.Command≡'get' ⍝ Reset names on a GET
:If _Request.Method≡'get' ⍝ Reset names on a GET
fname←lname←''
:EndIf

Expand Down

0 comments on commit 4913ffb

Please sign in to comment.