summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a39427)
raw | patch | inline | side by side (parent: 7a39427)
author | Ivan Denisov <d.ivan.krsk@gmail.com> | |
Thu, 21 Jun 2012 19:22:30 +0000 (03:22 +0800) | ||
committer | Ivan Denisov <d.ivan.krsk@gmail.com> | |
Thu, 21 Jun 2012 19:22:30 +0000 (03:22 +0800) |
Code/Config.ocf | [deleted file] | patch | blob | history |
Code/Init.ocf | [deleted file] | patch | blob | history |
Code/Initgui.ocf | [deleted file] | patch | blob | history |
Code/Meta.ocf | [deleted file] | patch | blob | history |
Sym/Initgui.osf | [deleted file] | patch | blob | history |
System/Code/Config.ocf | patch | blob | history | |
System/Code/Init.ocf | patch | blob | history | |
System/Code/Meta.ocf | patch | blob | history | |
web/forms.html | [new file with mode: 0644] | patch | blob |
web/index.html | [new file with mode: 0644] | patch | blob |
web/logo.png | [new file with mode: 0644] | patch | blob |
diff --git a/Code/Config.ocf b/Code/Config.ocf
deleted file mode 100644 (file)
index c41bde1..0000000
Binary files a/Code/Config.ocf and /dev/null differ
index c41bde1..0000000
Binary files a/Code/Config.ocf and /dev/null differ
diff --git a/Code/Init.ocf b/Code/Init.ocf
deleted file mode 100644 (file)
index ddba4e8..0000000
Binary files a/Code/Init.ocf and /dev/null differ
index ddba4e8..0000000
Binary files a/Code/Init.ocf and /dev/null differ
diff --git a/Code/Initgui.ocf b/Code/Initgui.ocf
deleted file mode 100644 (file)
index 06a4b29..0000000
Binary files a/Code/Initgui.ocf and /dev/null differ
index 06a4b29..0000000
Binary files a/Code/Initgui.ocf and /dev/null differ
diff --git a/Code/Meta.ocf b/Code/Meta.ocf
deleted file mode 100644 (file)
index b730be8..0000000
Binary files a/Code/Meta.ocf and /dev/null differ
index b730be8..0000000
Binary files a/Code/Meta.ocf and /dev/null differ
diff --git a/Sym/Initgui.osf b/Sym/Initgui.osf
deleted file mode 100644 (file)
index 707b48a..0000000
Binary files a/Sym/Initgui.osf and /dev/null differ
index 707b48a..0000000
Binary files a/Sym/Initgui.osf and /dev/null differ
diff --git a/System/Code/Config.ocf b/System/Code/Config.ocf
index 8234bb12de9fe891ee0761363f07715ad5d870d5..c41bde18b06732f71faaf1351432e6fc145459e6 100644 (file)
Binary files a/System/Code/Config.ocf and b/System/Code/Config.ocf differ
Binary files a/System/Code/Config.ocf and b/System/Code/Config.ocf differ
diff --git a/System/Code/Init.ocf b/System/Code/Init.ocf
index 94452d80758f8cd5a4c3422da178deee18f5dd98..ddba4e87fdd5266af1c27c3c7d94c542f8aefbfa 100644 (file)
Binary files a/System/Code/Init.ocf and b/System/Code/Init.ocf differ
Binary files a/System/Code/Init.ocf and b/System/Code/Init.ocf differ
diff --git a/System/Code/Meta.ocf b/System/Code/Meta.ocf
index 21289417d6c10f21fb7e4d5479ec99a0b1c743bd..b730be820cfe5632468ea2aab23301236ab7c526 100644 (file)
Binary files a/System/Code/Meta.ocf and b/System/Code/Meta.ocf differ
Binary files a/System/Code/Meta.ocf and b/System/Code/Meta.ocf differ
diff --git a/web/forms.html b/web/forms.html
--- /dev/null
+++ b/web/forms.html
@@ -0,0 +1,18 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <title>Oberon web server</title>
+</head>
+
+<body style="background: #EEEEBB; margin: 20px; font-family: Trebuchet MS; color: #330000">
+
+<br><a href='/'>На главную</a><br><br>
+
+POST form:<br>
+<form action='/forms.html' method='post' enctype='multipart/form-data' name='post_form'><input type='text' name='test_post'><br><input type='file' name='file'><input type='submit' value='post'></form><br>
+
+GET form:<br>
+<form action='/forms.html' method='get' name='post_form'><input type='text' name='test_get'><input type='submit' value='get'></form>
+
+</body>
+</html>
diff --git a/web/index.html b/web/index.html
--- /dev/null
+++ b/web/index.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <title>Oberon web server</title>
+</head>
+
+<body style="background: #EEEEBB; margin: 20px; font-family: Trebuchet MS; color: #330000">
+<table width='100%'>
+<tr><td width='140px'><img src='logo.png'></td>
+<td align='left'><h2>Cервер на <a href='http://ru.wikipedia.org/wiki/%D0%9A%D0%BE%D0%BC%D0%BF%D0%BE%D0%BD%D0%B5%D0%BD%D1%82%D0%BD%D1%8B%D0%B9_%D0%9F%D0%B0%D1%81%D0%BA%D0%B0%D0%BB%D1%8C'>Компонентном паскале</a></h2></td></tr>
+</table>
+
+Приложение работает в настоящий момент на ubuntu-11.04-x86_64; не использует Apache, CGI и т.п.; работает напрямую с TCP; выполняется в одном потоке ОС; использует динамическое связывание обработчика запроса.<br><br>
+
+Сервер основан на Linux версии BlackBox Component Builder 1.6rc6.<br><br>
+
+<br><a href='forms.html'>Формы для проверки работы запросов</a><br><br>
+
+<h3>Контакты</h3>
+Иван Денисов, d.ivan.krsk@gmail.com
+</body>
+</html>
+
diff --git a/web/logo.png b/web/logo.png