2013-01-24 15:14 UTC+0100 Viktor Szakats (harbour syenar.net)

* utils/hbmk2/hbmk2.prg
    + links to markdown and markdown to man-page converter tool
    ! minor cleanup to prev

  * utils/hbmk2/hbmk2.1
    * some updates

  * ChangeLog.txt
    ! typos/updates in previous entry

  * extras/hbdoc/*.prg
  * src/rtl/memoedit.prg
  * tests/clasinh.prg
  * tests/classch.prg
  * tests/inhprob.prg
    ! updated for new ::super: syntax

  * src/rtl/itemseri.c
    ! fixed typo in latest modification:
      'warning: use of unary operator that may be intended as compound assignment (+=)'

  * contrib/hbgd/tests/test_out.prg
  * contrib/hbhttpd/*
  * contrib/hbtip/thtml.prg
  * contrib/xhb/*.prg
  * extras/httpsrv/*
  * extras/guestbk/*
  * website/faq/*.html
  * website/samples/HowToBuildOnLinux.html
  * website/third-party.html
    * some steps to modernize old HTML

  * extras/hbdoc/*.prg
    * do not use [] as string delimiter

  - tests/function.cfm
  - website/samples/function.cfm.html
  * .gitattributes
    - obsolete file deleted
This commit is contained in:
Viktor Szakats
2013-01-24 14:20:54 +00:00
parent 953737189d
commit 2688ce2212
105 changed files with 2512 additions and 2644 deletions

View File

@@ -84,9 +84,9 @@ FUNCTION HRBMAIN()
<input type="hidden" name="action" value="gotoinfo">
</form>
Pressing button you will redirect to /info page. Look at COOKIE values.
<br>You will see a "mycookie" variable name.
<br>
<br>Return to <a href="/">Main Page</a>
<br />You will see a "mycookie" variable name.
<br />
<br />Return to <a href="/">Main Page</a>
</body>
</html>

View File

@@ -66,28 +66,28 @@ STATIC FUNCTION ShowServerInfo()
// LOCAL oCookie
cHtml += "<BIG>Server Info</BIG>"
// cHtml += "<br><br>If it is first time you see this page reload it to see cookies<br><br>"
cHtml += '<br><br>Return to <a href="/">Main Page</a><br><br>'
cHtml += "<big>Server Info</big>"
// cHtml += "<br /><br />If it is first time you see this page reload it to see cookies<br /><br />"
cHtml += '<br /><br />Return to <a href="/">Main Page</a><br /><br />'
cHtml += DisplayVars( _Server , "SERVER Vars" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _HTTP_REQUEST , "HTTP Request Headers" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _HTTP_RESPONSE, "HTTP Response Headers" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _Get , "GET Vars" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _Post , "POST Vars" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _Cookie , "COOKIE Vars" )
cHtml += "<br>"
cHtml += "<br />"
// cHtml += DisplayVars( _Files , "FILE Vars" )
// cHtml += "<br>"
// cHtml += "<br />"
cHtml += DisplayVars( _Request , "REQUEST Vars" )
cHtml += "<br>"
cHtml += "<br />"
cHtml += DisplayVars( _Session , "SESSION Vars" )
cHtml += "<br>"
cHtml += "<br />"
// Set a simple cookie
// oCookie := uhttpd_CookieNew( "localhost", "/", 1, 0 )