Updated package.iron files.

This commit is contained in:
2016-02-02 09:57:03 +01:00
parent 55ab6969ee
commit e9afc9ad17
14 changed files with 216 additions and 62 deletions

View File

@@ -8,7 +8,8 @@ note
title: Eiffel Nino Web Server title: Eiffel Nino Web Server
description: Simple HTTPd server written in Eiffel description: Simple HTTPd server written in Eiffel
tags: web, httpd, server tags: web, httpd, server
copyright: Javier Velilla, Jocelyn Fiat and Eiffel Software.
license: Eiffel Forum v2 license: Eiffel Forum v2
copyright: Javier Velilla, Jocelyn Fiat. link[license]: http://www.eiffel.com/licensing/forum.txt
end end

View File

@@ -3,13 +3,25 @@ package http_client
project project
http_client = "http_client-safe.ecf" http_client = "http_client-safe.ecf"
http_client = "http_client.ecf" http_client = "http_client.ecf"
libcurl_http_client = "libcurl_http_client-safe.ecf"
libcurl_http_client = "libcurl_http_client.ecf"
net_http_client = "net_http_client-safe.ecf"
net_http_client = "net_http_client.ecf"
note note
-- title: title: HTTP client
-- description: description: "[
-- tags: Provides simple routines to perform http requests, and get associated response.
-- license: It has two implementations:
-- copyright: - using Eiffel cURL (i.e libcurl)
-- link[doc]: "Documentation" http:// - 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)
link[license]: http://www.eiffel.com/licensing/forum.txt
link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/network/http_client
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/network/http_client/README.md
end end

View File

@@ -5,11 +5,16 @@ project
conneg = "conneg.ecf" conneg = "conneg.ecf"
note note
-- title: title: CONneg Content Negotiation
-- description: description: "[
-- tags: CONneg is a library that provides utilities to select the best repesentation of a resource for a client where there are multiple representations available.
-- license: ]"
-- copyright: collection: EWF
-- link[doc]: "Documentation" http:// tags: content,accept,conneg,negotiation,EWF,web,request
copyright: 2011-2016, Javier Velilla, 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
link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/network/protocol/content_negotiation
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/network/protocol/content_negotiation/README.md
end end

View File

@@ -5,11 +5,22 @@ project
http = "http.ecf" http = "http.ecf"
note note
-- title: title: HTTP protocol
-- description: description: "[
-- tags: Collection of interfaces related to HTTP protocol:
-- license: - header
-- copyright: - status codes, request methods
-- link[doc]: "Documentation" http:// - 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)
copyright: 2011-2016, 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/network/protocol/http
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/network/protocol/http/README.md
end end

View File

@@ -5,11 +5,21 @@ project
notification_email = "notification_email.ecf" notification_email = "notification_email.ecf"
note note
-- title: title: Notification Email
-- description: description: "[
-- tags: Abstract interface to send message via various mailers:
-- license: - smtp
-- copyright: - sendmail
-- link[doc]: "Documentation" http:// - 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"
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 end

View File

@@ -3,14 +3,17 @@ package openid
project project
openid = "consumer/openid.ecf" openid = "consumer/openid.ecf"
openid = "consumer/openid-safe.ecf" openid = "consumer/openid-safe.ecf"
demo = "consumer/demo/demo-safe.ecf"
note note
title: Eiffel OpenID title: Eiffel OpenID
description: OpenID library (for now only consumer) description: OpenID consumer library
tags: openid,security tags: openid,security,web,authentication,sso
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)
-- copyright: copyright: 2011-2016, Jocelyn Fiat, Eiffel Software and others
-- link[doc]: "Documentation" http:// 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/security/http_authorization
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/security/http_authorization/README.md
end end

View File

@@ -5,11 +5,16 @@ project
http_authorization = "http_authorization.ecf" http_authorization = "http_authorization.ecf"
note note
-- title: title: HTTP Authorization
-- description: description: "[
-- tags: Class to manipulate HTTP 'Authorization' header value.
-- license: ]"
-- copyright: collection: EWF
-- link[doc]: "Documentation" http:// tags: http,authorization,authentication,web
copyright: 2011-2016, 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
link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/server/authentication/http_authorization
end end

View File

@@ -3,21 +3,28 @@ package ewsgi
project project
ewsgi = "ewsgi-safe.ecf" ewsgi = "ewsgi-safe.ecf"
ewsgi = "ewsgi.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-safe.ecf"
connector_cgi = "connectors/cgi/cgi.ecf" connector_cgi = "connectors/cgi/cgi.ecf"
connector_libfcgi = "connectors/libfcgi/libfcgi-safe.ecf" connector_libfcgi = "connectors/libfcgi/libfcgi-safe.ecf"
connector_libfcgi = "connectors/libfcgi/libfcgi.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-safe.ecf"
connector_null = "connectors/null/null.ecf" connector_null = "connectors/null/null.ecf"
connector_standalone = "connectors/standalone/standalone-safe.ecf"
connector_standalone = "connectors/standalone/standalone.ecf"
httpd = "connectors/standalone/src/httpd/httpd-safe.ecf"
httpd = "connectors/standalone/src/httpd/httpd.ecf"
note note
title: EWSGI title: EWSGI
description: EWSGI specification, and a few connectors. description: "[
tags: web, httpd, ewf Eiffel Web Server Gateway Interface (EWSGI) specification, and a few connectors.
license: Eiffel Forum v2 ]"
collection: EWF
tags: ewsgi,cgi,web,httpd,ewf
copyright: 2011-2016, 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
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

View File

@@ -0,0 +1,25 @@
package libfcgi
setup
compile_library = Clib
project
libfcgi = "libfcgi-safe.ecf"
libfcgi = "libfcgi.ecf"
note
title: Eiffel libfcgi wrapper
description: "[
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
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/library/server/libfcgi
link[doc]: "Documentation" http://eiffelwebframework.github.io/EWF/
end

View File

@@ -1,3 +1,14 @@
note
title: Web Server Foundation
description: Core of the Eiffel Web Framework, used to build web server application.
tags: ewf,server,httpd,request,connector
license: Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)
link[license]: https://github.com/EiffelWebFramework/EWF/blob/master/LICENSE
link[source]: "Github" https://github.com/EiffelWebFramework/EWF
link[doc]: "Documentation" http://eiffelwebframework.github.io/EWF/
end
package wsf package wsf
project project
@@ -11,29 +22,35 @@ project
wsf_router_context = "wsf_router_context.ecf" wsf_router_context = "wsf_router_context.ecf"
wsf_session = "wsf_session-safe.ecf" wsf_session = "wsf_session-safe.ecf"
wsf_session = "wsf_session.ecf" wsf_session = "wsf_session.ecf"
wsf_all = "connector/all-safe.ecf"
wsf_cgi = "connector/cgi-safe.ecf" wsf_cgi = "connector/cgi-safe.ecf"
wsf_cgi = "connector/cgi.ecf" wsf_cgi = "connector/cgi.ecf"
wsf_libfcgi = "connector/libfcgi-safe.ecf" wsf_libfcgi = "connector/libfcgi-safe.ecf"
wsf_libfcgi = "connector/libfcgi.ecf" wsf_libfcgi = "connector/libfcgi.ecf"
wsf_nino = "connector/nino-safe.ecf"
wsf_nino = "connector/nino.ecf"
wsf_openshift = "connector/openshift-safe.ecf" wsf_openshift = "connector/openshift-safe.ecf"
default_cgi = "default/cgi-safe.ecf" default_cgi = "default/cgi-safe.ecf"
default_cgi = "default/cgi.ecf" default_cgi = "default/cgi.ecf"
default_libfcgi = "default/libfcgi-safe.ecf" default_libfcgi = "default/libfcgi-safe.ecf"
default_libfcgi = "default/libfcgi.ecf" default_libfcgi = "default/libfcgi.ecf"
default_nino = "default/nino-safe.ecf"
default_nino = "default/nino.ecf"
default_openshift = "default/openshift-safe.ecf" default_openshift = "default/openshift-safe.ecf"
wsf_standalone = "connector/standalone-safe.ecf"
wsf_standalone = "connector/standalone.ecf"
default_standalone = "default/standalone-safe.ecf"
default_standalone = "default/standalone.ecf"
note note
title: Web Server Foundation title: Web Server Foundation
description: Core of the Eiffel Web Framework, used to build web server application. description: "[
tags: ewf,server,httpd,request,connector 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
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)
link[license]: https://github.com/EiffelWebFramework/EWF/blob/master/LICENSE link[license]: http://www.eiffel.com/licensing/forum.txt
link[source]: "Github" https://github.com/EiffelWebFramework/EWF link[source]: "Github" https://github.com/EiffelWebFramework/EWF/library/server/wsf
link[doc]: "Documentation" http://eiffelwebframework.github.io/EWF/ link[doc]: "Documentation" http://eiffelwebframework.github.io/EWF/
end end

View File

@@ -0,0 +1,26 @@
package encoder
project
encoder = "encoder-safe.ecf"
encoder = "encoder.ecf"
note
title: Text encoders
description: "[
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
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/library/text/encoder
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/blob/master/library/text/encoder/README.md
end

View File

@@ -0,0 +1,19 @@
package feed
project
feed = "feed-safe.ecf"
feed = "feed.ecf"
note
title: Eiffel FEED parser
description: "[
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)
link[license]: http://www.eiffel.com/licensing/forum.txt
link[source]: "github" https://github.com/EiffelWebFramework/EWF/tree/master/library/text/parser/feed
end

View File

@@ -5,11 +5,20 @@ project
uri_template = "uri_template.ecf" uri_template = "uri_template.ecf"
note note
-- title: title: URI Template
-- description: description: "[
-- tags: Implement URI Template as described at http://tools.ietf.org/rfc/rfc6570.txt
-- license:
-- copyright: Support for URI template string expansion
-- link[doc]: "Documentation" http:// 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
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/text/parser/uri_template
link[doc]: "Documentation" https://github.com/EiffelWebFramework/EWF/tree/master/library/text/parser/uri_template/README.md
end end

View File

@@ -7,11 +7,15 @@ project
note note
title: Error framework title: Error framework
description: "[ description: "[
Errors and associated handler, to manage errors and also provides a way to synchronize one or many error handlers. 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. This is convenient to propagate error from a layer to another without adding unwanted dependencies.
tags: error ]"
collection: EWF
tags: error,framework
license: Eiffel Forum License v2 license: Eiffel Forum License v2
copyright: Jocelyn Fiat, Eiffel Software and others. copyright: Jocelyn Fiat, Eiffel Software and others.
link[license]: 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/utility/general/error
end end