77 lines
2.5 KiB
Markdown
77 lines
2.5 KiB
Markdown
# Eiffel Web Framework
|
|
|
|
* version: v0.2
|
|
|
|
|
|
## Overview
|
|
|
|
Official project site for Eiffel Web Framework:
|
|
|
|
* http://eiffelwebframework.github.com/EWF/
|
|
|
|
For more information please have a look at the related wiki:
|
|
|
|
* https://github.com/EiffelWebFramework/EWF/wiki
|
|
|
|
For download, check
|
|
* https://github.com/EiffelWebFramework/EWF/downloads
|
|
|
|
## Requirements
|
|
* Compiling from EiffelStudio 7.0
|
|
* Developped using EiffelStudio 7.1 and 7.2 (on Windows, Linux)
|
|
* Tested using EiffelStudio 7.1 with "jenkins" CI server (not compatible with 6.8 due to use of `TABLE_ITERABLE')
|
|
* The code have to allow __void-safe__ compilation and non void-safe system (see [more about void-safety](http://docs.eiffel.com/book/method/void-safe-programming-eiffel) )
|
|
|
|
## How to get the source code?
|
|
|
|
* git clone https://github.com/EiffelWebFramework/EWF.git
|
|
* svn checkout https://github.com/EiffelWebFramework/EWF/trunk
|
|
|
|
* Notes:
|
|
** It does not use submodule anymore due to recurrent trouble for users.
|
|
** EWF is also provided by delivery of EiffelStudio (starting from version 7.1 shipping v0.1, and 7.2 that ships v0.2)
|
|
|
|
* And to build the required and related Clibs
|
|
* cd contrib/ise_library/cURL
|
|
* geant compile
|
|
|
|
## Libraries under 'library'
|
|
|
|
### server
|
|
* __ewsgi__: Eiffel Web Server Gateway Interface [read more](library/server/ewsgi)
|
|
* connectors: various web server connectors for EWSGI
|
|
* libfcgi: Wrapper for libfcgi SDK
|
|
* __wsf__: Web Server Framework [read more](library/server/wsf)
|
|
* __router__: URL dispatching/routing based on uri, uri_template, or custom [read more](library/server/wsf/router)
|
|
|
|
### protocol
|
|
* __http__: HTTP related classes, constants for status code, content types, ... [read more](library/protocol/http)
|
|
* __uri_template__: URI Template library (parsing and expander) [read more](library/protocol/uri_template)
|
|
*not yet released: __CONNEG__: CONNEG library (Content-type Negociation) [read more](library/protocol/CONNEG)
|
|
|
|
### client
|
|
* __http_client__: simple HTTP client based on cURL [read more](library/client/http_client)
|
|
|
|
### text
|
|
* __encoder__: Various simpler encoders: base64, url-encoder, xml entities, html entities [read more](library/text/encoder)
|
|
|
|
### crypto
|
|
* eel
|
|
* eapml
|
|
|
|
### Others
|
|
* error: very simple/basic library to handle error
|
|
|
|
## External libraries under 'contrib'
|
|
* [Eiffel Web Nino](contrib/library/server/nino)
|
|
* ..
|
|
|
|
## Draft folder = call for contribution ##
|
|
|
|
## Examples
|
|
..
|
|
|
|
|
|
For more information please have a look at the related wiki:
|
|
* https://github.com/EiffelWebFramework/EWF/wiki
|