Worklog for Scaremonger

CGI library for Blitzmax

Return to Worklogs

v1.10 - Published(Posted 2007-03-27)
At last.

My Website needs a complete overhaul, so I have had to create a Dummy webiste until I can get around to redeveloping it.

It'll do for the moment, but has delayed the release by a week.

Hope everyone likes it.

________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod

v1.10 - Nearly ready for release(Posted 2007-03-12)
Well, I'm happy that the current code can be released. I've just got some samples to add to the documentation and then it's ready to give to the community... Hopefully I'll finish it tonight.

________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod

v1.10 - Module framework(Posted 2007-02-28)
Converted to a module today. Very happy with the library. The cookie support and session ID really help to make this a good library.

I'll release the library shortly. Just a few more tweaks...

________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod

Sample (Test) code(Posted 2007-02-22)
index.html
<HTML>
<HEAD><TITLE>Testing ITSCGI-test.exe</TITLE></HEAD>
<BODY>
Call the exe using a querystring: <a href='CGI_BIN\ITSCGI-test.exe?name=its&fn=xyz'>Click here</a><br>
<br>
Or Try this form:<br>
<br>

<FORM action='/cgi_bin/ITSCGI-test.exe' Method='POST'>
Name: <Input Type='TEXT' NAME='Name'><br>
<Input Type='SUBMIT'>
</FORM>

</BODY></HTML>

ITSCGI-test.exe - You need my modules to compile this.
Include "ITSCGI.bmx"

response.write "<html><body>"

response.write "<b>REQUEST METHOD:</b> " + request.serverVariable( "REQUEST_METHOD" ) + "<br>"
response.write "<b>CONTENT_TYPE:</b> " + request.serverVariable( "CONTENT_TYPE" ) + "<br>"

' Obtain Form / Querystring argument
response.write "<b>Name:</b> " + request.get( "Name", "N/a" ) + "<br>"
response.write "<br>"

response.write "</body></html>"


________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod

Beta 1.1(Posted 2007-02-22)
Added:
URL encoder / decoder
Response status (RFC 1945)
Content buffering
Content type support
Cookies (Basic ones)

________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod

Beta 1(Posted 2007-02-22)
Current functionality
Form support
Query String support
Server Variables

________________________________________
www.itspeedway.net | scaremonger.net

MODULES: ITS_Win32service.mod