Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clean-and-itasks
clean-libraries
Commits
05aa205d
Commit
05aa205d
authored
Jun 08, 2007
by
Rinus Plasmeijer
Browse files
*** empty log message ***
parent
3e2f46b5
Changes
5
Hide whitespace changes
Inline
Side-by-side
libraries/iData/PrintUtil.icl
View file @
05aa205d
...
...
@@ -26,8 +26,8 @@ gHpr{|CONS of t|} gPrHtmlc prev (CONS c) // constructor names are printed, pref
=
case
t
.
gcd_name
.[
0
]
of
'`'
=
gPrHtmlc
prev
c
// just skip this constructor name
else
=
case
t
.
gcd_arity
of
0
=
prev
<+
" "
<+
myprint
t
.
gcd_name
1
=
gPrHtmlc
(
prev
<+
" "
<+
myprint
t
.
gcd_name
<+
"
=
"
)
c
0
=
prev
<+
myprint
t
.
gcd_name
1
=
gPrHtmlc
(
prev
<+
" "
<+
myprint
t
.
gcd_name
<+
"
=
\"
"
)
c
<+
"
\"
"
n
=
gPrHtmlc
(
prev
<+
" "
<+
myprint
t
.
gcd_name
)
c
where
myprint
::
String
->
String
...
...
libraries/iData/iDataHandler.icl
View file @
05aa205d
...
...
@@ -74,9 +74,11 @@ doHtmlServer2 args userpage world
=
d_s
=
([],
allhtmlcode
,
world
)
import
Semaphore
doHtmlSubServer
::
!(*
HSt
->
(
Html
,!*
HSt
))
!*
World
->
*
World
doHtmlSubServer
userpage
world
#
result
=
RegisterSubProcToServer
1
0
1
".*"
(
ThisExe
+++
".*"
)
#
result
=
RegisterSubProcToServer
1
0
1
0
".*"
(
ThisExe
+++
".*"
)
|
result
==
1
#
(
console
,
world
)
=
stdio
world
#
(_,
world
)
=
fclose
(
fwrites
(
"Error: SubServer
\"
"
+++
location
+++
"
\"
could *NOT* registered to an HTTP 1.1 main server
\n
"
)
console
)
world
...
...
@@ -85,17 +87,21 @@ doHtmlSubServer userpage world
#
(
console
,
world
)
=
stdio
world
#
(_,
world
)
=
fclose
(
fwrites
(
"SubServer
\"
"
+++
location
+++
"
\"
successfully registered to an HTTP 1.1 main server
\n
"
)
console
)
world
=
world
#
world
=
WaitForMessageLoop
mycallbackfun
SocketNr
world
#
(
semaphore
,
world
)
=
CreateSemaphore
0
1
1
ThisExe
world
|
semaphore
==
0
=
abort
"CreateSemaphore failed"
#
world
=
WaitForMessageLoop
(
mycallbackfun
semaphore
)
SocketNr
world
#
(
ok
,
world
)
=
CloseHandle
semaphore
world
|
ok
==
0
=
abort
"CloseHandle failed"
=
world
where
mycallbackfun
::
[
String
]
Int
Socket
*
World
->
(
Socket
,*
World
)
mycallbackfun
header
contentlength
socket
world
mycallbackfun
::
!
Int
[
String
]
Int
Socket
*
World
->
(
Socket
,*
World
)
mycallbackfun
semaphore
header
contentlength
socket
world
#
(
method
,
rlocation
,
getDataArray
,
version
)
=
GetFirstLine
(
hd
header
)
#
(
alldatareceived
,
datafromclient
,
socket
,
world
)
=
ReceiveString
0
contentlength
socket
world
|
socket
==
0
=
(
0
,
world
)
//socket closed or timed out
|
alldatareceived
==
-1
&&
location
==
rlocation
#!
world
=
trace
(
"alldatareceived == -1, page request"
+++
";rloc="
+++
rlocation
)
world
#!
(_,
htmlcode
,
world
)
=
doHtmlServer2
[]
userpage
world
#!
(_,
htmlcode
,
world
)
=
indivisable
(
doHtmlServer2
[]
userpage
)
world
=
SendString
htmlcode
"text/html"
header
socket
world
|
alldatareceived
==
-1
&&
location
<>
rlocation
#!
world
=
trace
(
"alldatareceived == -1, file request"
+++
";rloc="
+++
rlocation
)
world
...
...
@@ -106,13 +112,24 @@ where
|
alldatareceived
==
0
&&
rlocation
<>
location
// server asks for files
#!
world
=
trace
(
"alldatareceived == 0, file request"
+++
";rloc="
+++
rlocation
)
world
=
SendFile
(
MyAbsDir
+++
rlocation
)
header
socket
world
#
(_,
htmlcode
,
world
)
=
doHtmlServer2
(
makeArguments
datafromclient
)
userpage
world
#
(_,
htmlcode
,
world
)
=
indivisable
(
doHtmlServer2
(
makeArguments
datafromclient
)
userpage
)
world
#!
world
=
trace
(
"alldatareceived == 0, page request"
+++
";rloc="
+++
rlocation
)
world
=
SendString
htmlcode
"text/html"
header
socket
world
where
indivisable
doServer
world
#
(_,
world
)
=
WaitForSingleObject
semaphore
-1
world
#
(
r
,
htmlcode
,
world
)
=
doServer
world
#
(
ok
,
world
)
=
ReleaseSemaphore
semaphore
1
0
world
=
(
r
,
htmlcode
,
world
)
trace
s
world
=
if
TraceHttp11
(
trace_to_file
s
world
)
world
location
=
"
\
/"
+++
ThisExe
doHtmlPage
::
!(
Maybe
[(
String
,
String
)])
!.(*
HSt
->
(
Html
,!*
HSt
))
!*
HtmlStream
!*
World
->
(!*
HtmlStream
,!*
World
)
doHtmlPage
args
userpage
inout
world
#
(
gerda
,
world
)
=
openGerda`
ODCBDataBase
world
...
...
libraries/iData/iDataHtmlDef.dcl
View file @
05aa205d
...
...
@@ -606,7 +606,7 @@ None :== [NoAttr]
|
RelLength
Int
::
Standard_Attr
=
Std_Class
String
// Core_Attr - All except base,head,html,meta,param,script,style and title
|
Std_Id
Q
String
// Core_Attr - All except base,head,html,meta,param,script,style and title
|
Std_Id
String
// Core_Attr - All except base,head,html,meta,param,script,style and title
|
Std_Style
String
// Core_Attr - All except base,head,html,meta,param,script,style and title
|
Std_Title
String
// Core_Attr - All except base,head,html,meta,param,script,style and title
|
Std_Dir
TxtDir
// Language_Attr - All except base,br,frame,frameset,hr,iframe,param and script
...
...
libraries/iData/iDataHtmlDef.icl
View file @
05aa205d
...
...
@@ -10,10 +10,10 @@ where
gHpr
{|
Head
|}
prev
(
Head
attr
tags
)
=
prev
<+>
htmlAttrCmnd
"head"
attr
tags
gHpr
{|
HeadTag
|}
prev
(
Hd_Base
attr
)
=
prev
<+>
open
Cmnd
"base"
attr
gHpr
{|
HeadTag
|}
prev
(
Hd_Basefont
attr
)
=
prev
<+>
open
Cmnd
"basefont"
attr
gHpr
{|
HeadTag
|}
prev
(
Hd_Link
attr
)
=
prev
<+>
open
Cmnd
"link"
attr
gHpr
{|
HeadTag
|}
prev
(
Hd_Meta
attr
)
=
prev
<+>
open
Cmnd
"meta"
attr
gHpr
{|
HeadTag
|}
prev
(
Hd_Base
attr
)
=
prev
<+>
htmlAttr
Cmnd
"base"
attr
None
gHpr
{|
HeadTag
|}
prev
(
Hd_Basefont
attr
)
=
prev
<+>
htmlAttr
Cmnd
"basefont"
attr
None
gHpr
{|
HeadTag
|}
prev
(
Hd_Link
attr
)
=
prev
<+>
htmlAttr
Cmnd
"link"
attr
None
gHpr
{|
HeadTag
|}
prev
(
Hd_Meta
attr
)
=
prev
<+>
htmlAttr
Cmnd
"meta"
attr
None
gHpr
{|
HeadTag
|}
prev
(
Hd_Object
attr
param
)
=
prev
<+>
htmlAttrCmnd
"object"
attr
param
gHpr
{|
HeadTag
|}
prev
(
Hd_Script
attr
text
)
=
prev
<+>
htmlAttrCmnd
"script"
attr
text
gHpr
{|
HeadTag
|}
prev
(
Hd_Style
attr
text
)
=
prev
<+>
htmlAttrCmnd
"style"
attr
text
...
...
@@ -22,7 +22,7 @@ gHpr{|HeadTag|} prev (Hd_Title text) = prev <+> htmlAttrCmnd "title" None te
gHpr
{|
Rest
|}
prev
(
Body
attr
body
)
=
prev
<+>
htmlAttrCmnd
"body"
attr
body
gHpr
{|
Rest
|}
prev
(
Frameset
attr
frames
)
=
prev
<+>
htmlAttrCmnd
"frameset"
attr
frames
gHpr
{|
Frame
|}
prev
(
Frame
attr
)
=
prev
<+>
open
Cmnd
"frame"
attr
gHpr
{|
Frame
|}
prev
(
Frame
attr
)
=
prev
<+>
htmlAttr
Cmnd
"frame"
attr
None
gHpr
{|
Frame
|}
prev
(
NoFrames
attr
body
)
=
prev
<+>
htmlAttrCmnd
"noframes"
attr
body
gHpr
{|
BodyTag
|}
prev
(
A
attr
body
)
=
prev
<+>
htmlAttrCmnd
"a"
attr
body
...
...
@@ -30,13 +30,13 @@ gHpr{|BodyTag|} prev (Abbr attr text) = prev <+> htmlAttrCmnd "abbr" attr
gHpr
{|
BodyTag
|}
prev
(
Acronym
attr
text
)
=
prev
<+>
htmlAttrCmnd
"acronym"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Address
attr
text
)
=
prev
<+>
htmlAttrCmnd
"address"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Applet
attr
text
)
=
prev
<+>
htmlAttrCmnd
"applet"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Area
attr
)
=
prev
<+>
open
Cmnd
"area"
attr
gHpr
{|
BodyTag
|}
prev
(
Area
attr
)
=
prev
<+>
htmlAttr
Cmnd
"area"
attr
None
gHpr
{|
BodyTag
|}
prev
(
B
attr
text
)
=
prev
<+>
htmlAttrCmnd
"b"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Bdo
attr
text
)
=
prev
<+>
htmlAttrCmnd
"bdo"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Big
attr
text
)
=
prev
<+>
htmlAttrCmnd
"big"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Blink
attr
text
)
=
prev
<+>
htmlAttrCmnd
"blink"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Blockquote
attr
text
)
=
prev
<+>
htmlAttrCmnd
"blockquote"
attr
text
gHpr
{|
BodyTag
|}
prev
Br
=
prev
<+
"<br>"
gHpr
{|
BodyTag
|}
prev
Br
=
prev
<+
"<br
/
>"
gHpr
{|
BodyTag
|}
prev
(
Button
attr
text
)
=
prev
<+>
htmlAttrCmnd
"button"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Caption
attr
text
)
=
prev
<+>
htmlAttrCmnd
"caption"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Center
attr
text
)
=
prev
<+>
htmlAttrCmnd
"center"
attr
text
...
...
@@ -62,10 +62,10 @@ gHpr{|BodyTag|} prev (H3 attr text) = prev <+> htmlAttrCmnd "h3" attr tex
gHpr
{|
BodyTag
|}
prev
(
H4
attr
text
)
=
prev
<+>
htmlAttrCmnd
"h4"
attr
text
gHpr
{|
BodyTag
|}
prev
(
H5
attr
text
)
=
prev
<+>
htmlAttrCmnd
"h5"
attr
text
gHpr
{|
BodyTag
|}
prev
(
H6
attr
text
)
=
prev
<+>
htmlAttrCmnd
"h6"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Hr
attr
)
=
prev
<+>
open
Cmnd
"hr"
attr
gHpr
{|
BodyTag
|}
prev
(
Hr
attr
)
=
prev
<+>
htmlAttr
Cmnd
"hr"
attr
None
gHpr
{|
BodyTag
|}
prev
(
I
attr
text
)
=
prev
<+>
htmlAttrCmnd
"i"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Iframe
attr
)
=
prev
<+>
htmlAttrCmnd
"iframe"
attr
None
gHpr
{|
BodyTag
|}
prev
(
Img
attr
)
=
prev
<+>
open
Cmnd
"img"
attr
gHpr
{|
BodyTag
|}
prev
(
Img
attr
)
=
prev
<+>
htmlAttr
Cmnd
"img"
attr
None
gHpr
{|
BodyTag
|}
prev
(
Input
attr
text
)
=
prev
<+>
htmlAttrCmnd
"input"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Ins
attr
text
)
=
prev
<+>
htmlAttrCmnd
"ins"
attr
text
gHpr
{|
BodyTag
|}
prev
(
Kbd
attr
text
)
=
prev
<+>
htmlAttrCmnd
"kbd"
attr
text
...
...
@@ -121,10 +121,10 @@ gHpr{|BodyTag|} prev (BodyTag listofbodies) = prev <+ listofbodies
gHpr
{|
Script
|}
prev
(
SScript
string
)
=
prev
<+
string
gHpr
{|
Script
|}
prev
(
FScript
fof
)
=
prev
<+>
fof
gHpr
{|
Option
|}
prev
(
Option
attr
text
)
=
prev
<+>
htmlAttrCmnd
"option"
attr
text
gHpr
{|
Option
|}
prev
(
Optgroup
attr
)
=
prev
<+>
open
Cmnd
"optgroup"
attr
gHpr
{|
Option
|}
prev
(
Option
attr
text
)
=
prev
<+>
htmlAttrCmnd
"option"
attr
text
gHpr
{|
Option
|}
prev
(
Optgroup
attr
)
=
prev
<+>
htmlAttr
Cmnd
"optgroup"
attr
None
gHpr
{|
Value
|}
prev
(
SV
string
)
=
prev
<+
"
\"
"
<+
string
<+
"
\"
"
gHpr
{|
Value
|}
prev
(
SV
string
)
=
prev
<+
string
gHpr
{|
Value
|}
prev
(
IV
int
)
=
prev
<+
toString
int
gHpr
{|
Value
|}
prev
(
RV
real
)
=
prev
<+
toString
real
gHpr
{|
Value
|}
prev
(
BV
bool
)
=
prev
<+
toString
bool
...
...
@@ -137,9 +137,9 @@ gHpr{|ScriptType|} prev (TypeVbscript) = prev <+ "\"text/Vbscript\""
gHpr
{|
ScriptType
|}
prev
(
TypeVbs
)
=
prev
<+
"
\"
text/Vbs
\"
"
gHpr
{|
ScriptType
|}
prev
(
TypeXml
)
=
prev
<+
"
\"
text/Xml
\"
"
gHpr
{|
SizeOption
|}
prev
(
Pixels
num
)
=
prev
<+
"
\"
"
<+
num
<+
"
\"
"
gHpr
{|
SizeOption
|}
prev
(
Percent
num
)
=
prev
<+
"
\"
"
<+
num
<+
"%
\"
"
gHpr
{|
SizeOption
|}
prev
(
RelLength
num
)
=
prev
<+
"
\"
"
<+
num
<+
"*
\"
"
gHpr
{|
SizeOption
|}
prev
(
Pixels
num
)
=
prev
<+
num
gHpr
{|
SizeOption
|}
prev
(
Percent
num
)
=
prev
<+
num
<+
"%"
gHpr
{|
SizeOption
|}
prev
(
RelLength
num
)
=
prev
<+
num
<+
"*"
//gHpr{|Ins_Attr|} prev (Ins_Datetime y m d) = prev <+ " datetime=\"" <+ y <+ m <+ d <+ "\""
...
...
@@ -166,7 +166,7 @@ gHpr{|HN|} prev H_F = prev <+ "F"
gHpr
{|
NoAttr
|}
prev
_
=
prev
gHpr
{|
Param
|}
prev
(
Param
attr
)
=
prev
<+>
open
Cmnd
"param"
attr
gHpr
{|
Param
|}
prev
(
Param
attr
)
=
prev
<+>
htmlAttr
Cmnd
"param"
attr
None
gHpr
{|
QString
|}
prev
(
QS
s
)
=
prev
<+
"
\"
"
<+
s
<+
"
\"
"
...
...
libraries/iData/iDataSettings.dcl
View file @
05aa205d
...
...
@@ -32,7 +32,7 @@ class iSpecialStore a
// OPTION: Comment out the next two lines if you do not have access to an ODCB database on your machine !!!!
// and enable the third line
// , pmdb {|*|} // To store and retrieve a value in a poor mans database DataFile
,
gerda
{|*|}
// To store and retrieve a value in a database
//
, gerda {|*|} // To store and retrieve a value in a database
a
// Set here the kind of server
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment