File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 14
14
<!-- Communications Settings -->
15
15
<Port >8080</Port > <!-- Preferred port that MiServer listens on -->
16
16
<Ports >8080-8090</Ports > <!-- List of ports that we can listen on (when running multiple MiServers) -->
17
- <FIFOMode >1</FIFOMode > <!-- Use Conga FIFO mode? -->
18
17
<WaitTimeout >5000ms</WaitTimeout > <!-- Time to wait for request from client before Conga times out -->
19
18
<UseContentEncoding >1</UseContentEncoding > <!-- for HTTP compression -->
20
19
<SupportedEncodings >gzip,deflate</SupportedEncodings > <!-- name(s) of class(es) that use ContentEncoder interface -->
Original file line number Diff line number Diff line change 295
295
Config . DefaultExtension ← Config Setting ' DefaultExtension' 0 ' .mipage'
296
296
Config . DefaultPage ← Config Setting ' DefaultPage' 0 ' index.mipage'
297
297
Config . DirectFileSize ← {⍵ [⍋ ⍵ ]}0 ⌈ ⌊ 2 ↑ Config Setting ' DirectFileSize' (, 1 )⍬
298
- Config . FIFOMode ← Config Setting ' FIFOMode' 1 1 ⍝ Conga FIFO mode default to on (1 )
298
+ Config . FIFOMode ← Config Setting ' FIFOMode' 1 0 ⍝ Conga FIFO mode default to off (0 )
299
299
Config . FormatHtml ← Config Setting ' FormatHtml' 1 0
300
300
Config . Host ← Config Setting ' Host' 0 ' localhost'
301
301
Config . HTTPCacheTime ← ' m' # . Dates . ParseTime Config Setting ' HTTPCacheTime' 0 ' 0' ⍝ default to off (0)
Original file line number Diff line number Diff line change 10
10
11
11
Add _.style'#Submit {font-weight: bold; font-size: large;}'
12
12
13
- :If _Request.Command ≡'get' ⍝ Reset names on a GET
13
+ :If _Request.Method ≡'get' ⍝ Reset names on a GET
14
14
fname←lname←''
15
15
:EndIf
16
16
You can’t perform that action at this time.
0 commit comments