From 2f98d7031f5a0f92014a6d26dd24e6e8630b7575 Mon Sep 17 00:00:00 2001 From: Jocelyn Fiat Date: Fri, 6 Oct 2017 14:06:46 +0200 Subject: [PATCH] Updated a few package.iron files. --- library/network/http_client/package.iron | 15 ++++++++------- .../protocol/content_negotiation/package.iron | 5 +++-- library/network/protocol/http/package.iron | 17 +++++++++-------- .../process/notification_email/package.iron | 18 +++++++++--------- library/security/jwt/package.iron | 2 +- library/security/openid/package.iron | 3 +-- .../http_authorization/package.iron | 6 +++--- library/server/ewsgi/package.iron | 10 ++++++---- library/server/httpd/package.iron | 5 +++-- library/server/libfcgi/package.iron | 9 +++++---- library/server/wsf/package.iron | 16 ++++++++++------ library/text/encoder/package.iron | 16 ++++++++-------- library/text/parser/feed/package.iron | 7 ++++--- library/text/parser/uri_template/package.iron | 10 +++++----- library/utility/general/error/package.iron | 10 +++++----- 15 files changed, 80 insertions(+), 69 deletions(-) diff --git a/library/network/http_client/package.iron b/library/network/http_client/package.iron index 55dc9162..46b23ee3 100644 --- a/library/network/http_client/package.iron +++ b/library/network/http_client/package.iron @@ -7,13 +7,14 @@ project note title: HTTP client - description: "[ - Provides simple routines to perform http requests, and get associated response. - It has two implementations: - - using Eiffel cURL (i.e libcurl) - - using EiffelNET (and the EiffelNET SSL extension) - ]" - collection:EWF + description: "[ +Provides simple routines to perform http requests, and get associated response. +It has two implementations: + - using Eiffel cURL (i.e libcurl) + - using EiffelNET (and the EiffelNET SSL extension) + ]" + + collection: EWF tags: http,client,network,request,web,curl,EWF copyright: 1984-2016 Eiffel Software and others license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) diff --git a/library/network/protocol/content_negotiation/package.iron b/library/network/protocol/content_negotiation/package.iron index d251813c..11c1066c 100644 --- a/library/network/protocol/content_negotiation/package.iron +++ b/library/network/protocol/content_negotiation/package.iron @@ -6,8 +6,9 @@ project note title: CONneg Content Negotiation description: "[ - CONneg is a library that provides utilities to select the best repesentation of a resource for a client where there are multiple representations available. - ]" +CONneg is a library that provides utilities to select the best repesentation of a resource for a client where there are multiple representations available. + ]" + collection: EWF tags: content,accept,conneg,negotiation,EWF,web,request copyright: 2011-2016, Javier Velilla, Jocelyn Fiat, Eiffel Software and others diff --git a/library/network/protocol/http/package.iron b/library/network/protocol/http/package.iron index f5c60110..2e4bab84 100644 --- a/library/network/protocol/http/package.iron +++ b/library/network/protocol/http/package.iron @@ -6,14 +6,15 @@ project note title: HTTP protocol description: "[ - Collection of interfaces related to HTTP protocol: - - header - - status codes, request methods - - content type, media type, mime type. - - cookie - - date used in web protocol - - file extension mime mapping - ]" +Collection of interfaces related to HTTP protocol: + - header + - status codes, request methods + - content type, media type, mime type. + - cookie + - date used in web protocol + - file extension mime mapping + ]" + collection: EWF tags: http,web,header,status,method,type,mime,cookie license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) diff --git a/library/runtime/process/notification_email/package.iron b/library/runtime/process/notification_email/package.iron index b8d80a73..17abbb58 100644 --- a/library/runtime/process/notification_email/package.iron +++ b/library/runtime/process/notification_email/package.iron @@ -6,19 +6,19 @@ project note title: Notification Email description: "[ - Abstract interface to send message via various mailers: - - smtp - - sendmail - - external script - - store on local file - - ... - ]" +Abstract interface to send message via various mailers: + - smtp + - sendmail + - external script + - store on local file + - ... + ]" + collection: EWF tags: message,smtp,sendmail,mailer - copyright: "2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others" + copyright: 2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Eiffel Software and others license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) link[license]: http://www.eiffel.com/licensing/forum.txt link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/runtime/process/notification_email end - diff --git a/library/security/jwt/package.iron b/library/security/jwt/package.iron index fd132cd6..3fa82da0 100644 --- a/library/security/jwt/package.iron +++ b/library/security/jwt/package.iron @@ -6,7 +6,7 @@ project note title: JSON Web Token description: JSON Web Token - tags:jwt,web,jws,jwe,token,jose + tags: jwt,web,jws,jwe,token,jose copyright: 2011-2017, Jocelyn Fiat, Eiffel Software and others license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) link[license]: http://www.eiffel.com/licensing/forum.txt diff --git a/library/security/openid/package.iron b/library/security/openid/package.iron index 9257259b..2d11f51f 100644 --- a/library/security/openid/package.iron +++ b/library/security/openid/package.iron @@ -5,7 +5,7 @@ project note title: Eiffel OpenID - description: OpenID consumer library + description: OpenID consumer library tags: openid,security,web,authentication,sso copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) @@ -14,4 +14,3 @@ note link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/security/http_authorization/README.md end - diff --git a/library/server/authentication/http_authorization/package.iron b/library/server/authentication/http_authorization/package.iron index b96316c5..20a2d47e 100644 --- a/library/server/authentication/http_authorization/package.iron +++ b/library/server/authentication/http_authorization/package.iron @@ -6,8 +6,9 @@ project note title: HTTP Authorization description: "[ - Class to manipulate HTTP 'Authorization' header value. - ]" +Class to manipulate HTTP 'Authorization' header value. + ]" + collection: EWF tags: http,authorization,authentication,web copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others @@ -16,4 +17,3 @@ note link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/server/authentication/http_authorization end - diff --git a/library/server/ewsgi/package.iron b/library/server/ewsgi/package.iron index 50666b1c..a20fb463 100644 --- a/library/server/ewsgi/package.iron +++ b/library/server/ewsgi/package.iron @@ -6,13 +6,15 @@ project connector_libfcgi = "connectors/libfcgi/libfcgi.ecf" connector_null = "connectors/null/null.ecf" connector_standalone = "connectors/standalone/standalone.ecf" - httpd = "connectors/standalone/src/httpd/httpd.ecf" + ewsgi_spec = "ewsgi_spec.ecf" + connector_nino = "connectors/nino/nino.ecf" note title: EWSGI description: "[ - Eiffel Web Server Gateway Interface (EWSGI) specification, and a few connectors. - ]" +Eiffel Web Server Gateway Interface (EWSGI) specification, and a few connectors. + ]" + collection: EWF tags: ewsgi,cgi,web,httpd,ewf copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others @@ -20,5 +22,5 @@ note link[license]: http://www.eiffel.com/licensing/forum.txt link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/server/ewsgi link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/server/ewsgi/doc -end +end diff --git a/library/server/httpd/package.iron b/library/server/httpd/package.iron index 000bae4b..66a6fc00 100644 --- a/library/server/httpd/package.iron +++ b/library/server/httpd/package.iron @@ -6,8 +6,9 @@ project note title: HTTP server description: "[ - Simple HTTP listener and handler, that can be extended easily. - ]" +Simple HTTP listener and handler, that can be extended easily. + ]" + tags: http,httpd,server,web collection: EWF copyright: 2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others diff --git a/library/server/libfcgi/package.iron b/library/server/libfcgi/package.iron index 34fc9fb1..6c6f0ec9 100644 --- a/library/server/libfcgi/package.iron +++ b/library/server/libfcgi/package.iron @@ -9,10 +9,11 @@ project note title: Eiffel libfcgi wrapper description: "[ - Wrapper on modified libfcgi. - (modification: added 64 bits support) - It brings implementation for FCGI protocol. - ]" +Wrapper on modified libfcgi. +(modification: added 64 bits support) +It brings implementation for FCGI protocol. + ]" + collection: EWF tags: fcgi,libfcgi,cgi,http,web,ewf copyright: 2011-2016, Jocelyn Fiat, Javier Velilla, Eiffel Software and others diff --git a/library/server/wsf/package.iron b/library/server/wsf/package.iron index f2e0d8c7..702947af 100644 --- a/library/server/wsf/package.iron +++ b/library/server/wsf/package.iron @@ -1,4 +1,3 @@ - package wsf project @@ -14,14 +13,20 @@ project default_openshift = "default/openshift.ecf" wsf_standalone = "connector/standalone.ecf" default_standalone = "default/standalone.ecf" + wsf_all = "connector/all.ecf" + wsf_nino = "connector/nino.ecf" + wsf_openshift = "connector/openshift.ecf" + wsf_standalone_websocket = "connector/standalone_websocket.ecf" + default_nino = "default/nino.ecf" note title: Web Server Foundation description: "[ - Core of the Eiffel Web Framework (EWF). - Provide the request, response, router, ... interfaces. - The foundation to build web server application. - ]" +Core of the Eiffel Web Framework (EWF). +Provide the request, response, router, ... interfaces. +The foundation to build web server application. + ]" + tags: ewf,server,httpd,request,connector,web collection: EWF copyright: 2011-2016, Jocelyn Fiat, Javier Velilla, Olivier Ligot, Colin Adams, Eiffel Software and others @@ -31,4 +36,3 @@ note link[doc]: "Documentation" http://eiffelwebframework.github.io/EWF/ end - diff --git a/library/text/encoder/package.iron b/library/text/encoder/package.iron index 53237ce3..83293467 100644 --- a/library/text/encoder/package.iron +++ b/library/text/encoder/package.iron @@ -6,13 +6,14 @@ project note title: Text encoders description: "[ - Text encoders used in web technologies: - - HTML encoder - - XML encoder - - JSON encoder - - UTF8 - - BASE64 - ]" +Text encoders used in web technologies: + - HTML encoder + - XML encoder + - JSON encoder + - UTF8 + - BASE64 + ]" + collection: EWF tags: html,xml,percent encoding,web,json,utf copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others @@ -22,4 +23,3 @@ note link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/blob/master/library/text/encoder/README.md end - diff --git a/library/text/parser/feed/package.iron b/library/text/parser/feed/package.iron index 58a9d5a4..0370949a 100644 --- a/library/text/parser/feed/package.iron +++ b/library/text/parser/feed/package.iron @@ -6,9 +6,10 @@ project note title: Eiffel FEED parser description: "[ - RSS2.0 and ATOM feed parser. - Feed visitor including HTML generation from FEED Eiffel objects. - ]" +RSS2.0 and ATOM feed parser. +Feed visitor including HTML generation from FEED Eiffel objects. + ]" + tags: rss,atom,feed,html,generator,parser copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt) diff --git a/library/text/parser/uri_template/package.iron b/library/text/parser/uri_template/package.iron index d05c0d42..e36b9c43 100644 --- a/library/text/parser/uri_template/package.iron +++ b/library/text/parser/uri_template/package.iron @@ -6,11 +6,12 @@ project note title: URI Template description: "[ - Implement URI Template as described at http://tools.ietf.org/rfc/rfc6570.txt +Implement URI Template as described at http://tools.ietf.org/rfc/rfc6570.txt + +Support for URI template string expansion +But also partial URI Template matching + ]" - Support for URI template string expansion - But also partial URI Template matching - ]" collection: EWF tags: uri template,router,generator,url copyright: 2011-2016, Jocelyn Fiat, Javier Velilla, Eiffel Software and others @@ -20,4 +21,3 @@ note link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/text/parser/uri_template/README.md end - diff --git a/library/utility/general/error/package.iron b/library/utility/general/error/package.iron index 8c50b8a5..a56fddd9 100644 --- a/library/utility/general/error/package.iron +++ b/library/utility/general/error/package.iron @@ -6,15 +6,15 @@ project note title: Error framework description: "[ - Errors and associated handler, to manage errors and also provides a way to synchronize one or many error handlers. - This is convenient to propagate error from a layer to another without adding unwanted dependencies. - ]" +Errors and associated handler, to manage errors and also provides a way to synchronize one or many error handlers. +This is convenient to propagate error from a layer to another without adding unwanted dependencies. + ]" + collection: EWF tags: error,framework license: Eiffel Forum License v2 copyright: Jocelyn Fiat, Eiffel Software and others. link[license]: http://www.eiffel.com/licensing/forum.txt - link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/utility/general/error + link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/utility/general/error end -