Compare commits
2 Commits
ewf_http_d
...
es_15_08
| Author | SHA1 | Date | |
|---|---|---|---|
| 6c51590369 | |||
|
|
c824f707cf |
@@ -361,7 +361,7 @@ feature {NONE} -- Implementation
|
|||||||
when 5 then s.append ("May")
|
when 5 then s.append ("May")
|
||||||
when 6 then s.append ("Jun")
|
when 6 then s.append ("Jun")
|
||||||
when 7 then s.append ("Jul")
|
when 7 then s.append ("Jul")
|
||||||
when 8 then s.append ("Aou")
|
when 8 then s.append ("Aug")
|
||||||
when 9 then s.append ("Sep")
|
when 9 then s.append ("Sep")
|
||||||
when 10 then s.append ("Oct")
|
when 10 then s.append ("Oct")
|
||||||
when 11 then s.append ("Nov")
|
when 11 then s.append ("Nov")
|
||||||
@@ -487,7 +487,7 @@ feature {NONE} -- Implementation
|
|||||||
elseif l_mmm.same_string ("MAY") then l_mo := 05
|
elseif l_mmm.same_string ("MAY") then l_mo := 05
|
||||||
elseif l_mmm.same_string ("JUN") then l_mo := 06
|
elseif l_mmm.same_string ("JUN") then l_mo := 06
|
||||||
elseif l_mmm.same_string ("JUL") then l_mo := 07
|
elseif l_mmm.same_string ("JUL") then l_mo := 07
|
||||||
elseif l_mmm.same_string ("AOU") then l_mo := 08
|
elseif l_mmm.same_string ("AUG") then l_mo := 08
|
||||||
elseif l_mmm.same_string ("SEP") then l_mo := 09
|
elseif l_mmm.same_string ("SEP") then l_mo := 09
|
||||||
elseif l_mmm.same_string ("OCT") then l_mo := 10
|
elseif l_mmm.same_string ("OCT") then l_mo := 10
|
||||||
elseif l_mmm.same_string ("NOV") then l_mo := 11
|
elseif l_mmm.same_string ("NOV") then l_mo := 11
|
||||||
@@ -718,7 +718,7 @@ feature {NONE} -- Implementation
|
|||||||
elseif l_mmm.same_string ("MAY") then l_mo := 05
|
elseif l_mmm.same_string ("MAY") then l_mo := 05
|
||||||
elseif l_mmm.same_string ("JUN") then l_mo := 06
|
elseif l_mmm.same_string ("JUN") then l_mo := 06
|
||||||
elseif l_mmm.same_string ("JUL") then l_mo := 07
|
elseif l_mmm.same_string ("JUL") then l_mo := 07
|
||||||
elseif l_mmm.same_string ("AOU") then l_mo := 08
|
elseif l_mmm.same_string ("AUG") then l_mo := 08
|
||||||
elseif l_mmm.same_string ("SEP") then l_mo := 09
|
elseif l_mmm.same_string ("SEP") then l_mo := 09
|
||||||
elseif l_mmm.same_string ("OCT") then l_mo := 10
|
elseif l_mmm.same_string ("OCT") then l_mo := 10
|
||||||
elseif l_mmm.same_string ("NOV") then l_mo := 11
|
elseif l_mmm.same_string ("NOV") then l_mo := 11
|
||||||
@@ -905,7 +905,7 @@ feature {NONE} -- Implementation
|
|||||||
invariant
|
invariant
|
||||||
|
|
||||||
note
|
note
|
||||||
copyright: "2011-2013, Jocelyn Fiat, Eiffel Software and others"
|
copyright: "2011-2015, Jocelyn Fiat, Eiffel Software and others"
|
||||||
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
|
||||||
source: "[
|
source: "[
|
||||||
Eiffel Software
|
Eiffel Software
|
||||||
|
|||||||
23
library/server/ewsgi/package.iron
Normal file
23
library/server/ewsgi/package.iron
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
package ewsgi
|
||||||
|
|
||||||
|
project
|
||||||
|
ewsgi = "ewsgi-safe.ecf"
|
||||||
|
ewsgi = "ewsgi.ecf"
|
||||||
|
ewsgi_spec = "ewsgi_spec-safe.ecf"
|
||||||
|
ewsgi_spec = "ewsgi_spec.ecf"
|
||||||
|
connector_cgi = "connectors/cgi/cgi-safe.ecf"
|
||||||
|
connector_cgi = "connectors/cgi/cgi.ecf"
|
||||||
|
connector_libfcgi = "connectors/libfcgi/libfcgi-safe.ecf"
|
||||||
|
connector_libfcgi = "connectors/libfcgi/libfcgi.ecf"
|
||||||
|
connector_nino = "connectors/nino/nino-safe.ecf"
|
||||||
|
connector_nino = "connectors/nino/nino.ecf"
|
||||||
|
connector_null = "connectors/null/null-safe.ecf"
|
||||||
|
connector_null = "connectors/null/null.ecf"
|
||||||
|
|
||||||
|
note
|
||||||
|
title: EWSGI
|
||||||
|
description: EWSGI specification, and a few connectors.
|
||||||
|
tags: web, httpd, ewf
|
||||||
|
license: Eiffel Forum v2
|
||||||
|
|
||||||
|
end
|
||||||
@@ -89,11 +89,11 @@ echo Install library: http
|
|||||||
echo Install library: content_negotiation
|
echo Install library: content_negotiation
|
||||||
%COPYCMD% %TMP_DIR%\library\network\protocol\content_negotiation %TMP_CONTRIB_DIR%\library\network\protocol\content_negotiation
|
%COPYCMD% %TMP_DIR%\library\network\protocol\content_negotiation %TMP_CONTRIB_DIR%\library\network\protocol\content_negotiation
|
||||||
echo Install library: http_authorization
|
echo Install library: http_authorization
|
||||||
%SAFE_MD% %TMP_CONTRIB_DIR%\library\network\authentication
|
%SAFE_MD% %TMP_CONTRIB_DIR%\library\web\authentication
|
||||||
%COPYCMD% %TMP_DIR%\library\server\authentication\http_authorization %TMP_CONTRIB_DIR%\library\web\authentication\http_authorization
|
%COPYCMD% %TMP_DIR%\library\server\authentication\http_authorization %TMP_CONTRIB_DIR%\library\web\authentication\http_authorization
|
||||||
|
|
||||||
echo Install library: openid
|
echo Install library: openid
|
||||||
%SAFE_MD% %TMP_CONTRIB_DIR%\library\security
|
%SAFE_MD% %TMP_CONTRIB_DIR%\library\web\authentication
|
||||||
%COPYCMD% %TMP_DIR%\library\security\openid %TMP_CONTRIB_DIR%\library\web\authentication\openid
|
%COPYCMD% %TMP_DIR%\library\security\openid %TMP_CONTRIB_DIR%\library\web\authentication\openid
|
||||||
|
|
||||||
echo Install library: uri_template
|
echo Install library: uri_template
|
||||||
|
|||||||
@@ -60,9 +60,9 @@ echo Uninstall library: http
|
|||||||
echo Uninstall library: content_negotiation
|
echo Uninstall library: content_negotiation
|
||||||
%RDCMD% %TMP_CONTRIB_DIR%\library\network\protocol\content_negotiation
|
%RDCMD% %TMP_CONTRIB_DIR%\library\network\protocol\content_negotiation
|
||||||
echo Uninstall library: http_authorization
|
echo Uninstall library: http_authorization
|
||||||
%RDCMD% %TMP_CONTRIB_DIR%\library\network\authentication\http_authorization
|
%RDCMD% %TMP_CONTRIB_DIR%\library\web\authentication\http_authorization
|
||||||
echo Uninstall library: security\openid
|
echo Uninstall library: security\openid
|
||||||
%RDCMD% %TMP_CONTRIB_DIR%\library\security\openid
|
%RDCMD% %TMP_CONTRIB_DIR%\library\web\authentication\openid
|
||||||
echo Uninstall library: uri_template
|
echo Uninstall library: uri_template
|
||||||
%RDCMD% %TMP_CONTRIB_DIR%\library\text\parser\uri_template
|
%RDCMD% %TMP_CONTRIB_DIR%\library\text\parser\uri_template
|
||||||
echo Uninstall library: runtime\process\notification_email
|
echo Uninstall library: runtime\process\notification_email
|
||||||
|
|||||||
Reference in New Issue
Block a user