Added "draft" folder to contain potential future addition to EWF
This commit is contained in:
@@ -9,6 +9,12 @@ Official project site for Eiffel Web Framework:
|
|||||||
For more information please have a look at the related wiki:
|
For more information please have a look at the related wiki:
|
||||||
* https://github.com/Eiffel-World/Eiffel-Web-Framework/wiki
|
* https://github.com/Eiffel-World/Eiffel-Web-Framework/wiki
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
* Developped using EiffelStudio 7.0 (on Windows, Linux)
|
||||||
|
* Tested using EiffelStudio 7.0 with "jenkins" CI server (and v6.8 for time to time)
|
||||||
|
* 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?
|
## How to get the source code?
|
||||||
|
|
||||||
* git clone https://github.com/Eiffel-World/Eiffel-Web-Framework.git
|
* git clone https://github.com/Eiffel-World/Eiffel-Web-Framework.git
|
||||||
|
|||||||
10
draft/library/protocol/atom/README.md
Normal file
10
draft/library/protocol/atom/README.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
Atom protocol
|
||||||
|
|
||||||
|
http://en.wikipedia.org/wiki/Atom_(standard)
|
||||||
|
|
||||||
|
Atom standard
|
||||||
|
* [RFC 4287](http://tools.ietf.org/html/rfc4287) – "The Atom Syndication Format"
|
||||||
|
* [RFC 5023](http://tools.ietf.org/html/rfc5023) – "The Atom Publishing Protocol"
|
||||||
|
|
||||||
|
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
15
draft/library/protocol/atom/atom-safe.ecf
Normal file
15
draft/library/protocol/atom/atom-safe.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="atom" uuid="076DEABB-20DA-43E9-A4C7-F3FAEDF5B1FC" library_target="atom">
|
||||||
|
<target name="atom">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="all" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base-safe.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
15
draft/library/protocol/atom/atom.ecf
Normal file
15
draft/library/protocol/atom/atom.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="atom" uuid="076DEABB-20DA-43E9-A4C7-F3FAEDF5B1FC" library_target="atom">
|
||||||
|
<target name="atom">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" void_safety="none" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
22
draft/library/protocol/atom/src/atom.e
Normal file
22
draft/library/protocol/atom/src/atom.e
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
note
|
||||||
|
description: "[
|
||||||
|
Main interface for ATOM interface
|
||||||
|
]"
|
||||||
|
date: "$Date$"
|
||||||
|
revision: "$Revision$"
|
||||||
|
|
||||||
|
class
|
||||||
|
ATOM
|
||||||
|
|
||||||
|
create
|
||||||
|
make
|
||||||
|
|
||||||
|
feature {NONE} -- Initialization
|
||||||
|
|
||||||
|
make
|
||||||
|
-- Instanciate Current object
|
||||||
|
do
|
||||||
|
check not_yet_implemented: False end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
3
draft/library/protocol/rss/README.md
Normal file
3
draft/library/protocol/rss/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
RSS protocol
|
||||||
|
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
15
draft/library/protocol/rss/rss-safe.ecf
Normal file
15
draft/library/protocol/rss/rss-safe.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="rss" uuid="8D8E3E5A-2685-40AF-9EF9-E3113B3C62AA" library_target="rss">
|
||||||
|
<target name="rss">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="all" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base-safe.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
15
draft/library/protocol/rss/rss.ecf
Normal file
15
draft/library/protocol/rss/rss.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="rss" uuid="8D8E3E5A-2685-40AF-9EF9-E3113B3C62AA" library_target="rss">
|
||||||
|
<target name="rss">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" void_safety="none" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
22
draft/library/protocol/rss/src/rss.e
Normal file
22
draft/library/protocol/rss/src/rss.e
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
note
|
||||||
|
description: "[
|
||||||
|
Main interface for RSS interface
|
||||||
|
]"
|
||||||
|
date: "$Date$"
|
||||||
|
revision: "$Revision$"
|
||||||
|
|
||||||
|
class
|
||||||
|
RSS
|
||||||
|
|
||||||
|
create
|
||||||
|
make
|
||||||
|
|
||||||
|
feature {NONE} -- Initialization
|
||||||
|
|
||||||
|
make
|
||||||
|
-- Instanciate Current object
|
||||||
|
do
|
||||||
|
check not_yet_implemented: False end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
4
draft/library/protocol/twitter/README.md
Normal file
4
draft/library/protocol/twitter/README.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
Twitter protocol
|
||||||
|
|
||||||
|
Eventually move http://bricabrac.origo.ethz.ch/wiki/Eiffel_Twitter here
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
4
draft/library/protocol/xmpp/README.md
Normal file
4
draft/library/protocol/xmpp/README.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
XMPP/Jabber protocol
|
||||||
|
|
||||||
|
Eventually move http://bricabrac.origo.ethz.ch/wiki/Eiffel_XMPP here
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
3
draft/library/security/oauth/README.md
Normal file
3
draft/library/security/oauth/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
OAuth
|
||||||
|
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
15
draft/library/security/oauth/oauth-safe.ecf
Normal file
15
draft/library/security/oauth/oauth-safe.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="oauth" uuid="F8B4DF74-C71B-45A3-9B9A-F6141C4D3C56" library_target="oauth">
|
||||||
|
<target name="oauth">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="all" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base-safe.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
15
draft/library/security/oauth/oauth.ecf
Normal file
15
draft/library/security/oauth/oauth.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="oauth" uuid="F8B4DF74-C71B-45A3-9B9A-F6141C4D3C56" library_target="oauth">
|
||||||
|
<target name="oauth">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" void_safety="none" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
22
draft/library/security/oauth/src/oauth.e
Normal file
22
draft/library/security/oauth/src/oauth.e
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
note
|
||||||
|
description: "[
|
||||||
|
Main interface for OAUTH interface
|
||||||
|
]"
|
||||||
|
date: "$Date$"
|
||||||
|
revision: "$Revision$"
|
||||||
|
|
||||||
|
class
|
||||||
|
OAUTH
|
||||||
|
|
||||||
|
create
|
||||||
|
make
|
||||||
|
|
||||||
|
feature {NONE} -- Initialization
|
||||||
|
|
||||||
|
make
|
||||||
|
-- Instanciate Current object
|
||||||
|
do
|
||||||
|
check not_yet_implemented: False end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
3
draft/library/security/openid/README.md
Normal file
3
draft/library/security/openid/README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
OpenID
|
||||||
|
|
||||||
|
Anyone wanting to contribute is welcome
|
||||||
15
draft/library/security/openid/openid-safe.ecf
Normal file
15
draft/library/security/openid/openid-safe.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="openid" uuid="E6B80EAB-AC99-46F5-9896-4892D3477A9A" library_target="openid">
|
||||||
|
<target name="openid">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" is_attached_by_default="true" void_safety="all" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base-safe.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
15
draft/library/security/openid/openid.ecf
Normal file
15
draft/library/security/openid/openid.ecf
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<system xmlns="http://www.eiffel.com/developers/xml/configuration-1-8-0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.eiffel.com/developers/xml/configuration-1-8-0 http://www.eiffel.com/developers/xml/configuration-1-8-0.xsd" name="openid" uuid="E6B80EAB-AC99-46F5-9896-4892D3477A9A" library_target="openid">
|
||||||
|
<target name="openid">
|
||||||
|
<root all_classes="true"/>
|
||||||
|
<file_rule>
|
||||||
|
<exclude>/.git$</exclude>
|
||||||
|
<exclude>/EIFGENs$</exclude>
|
||||||
|
<exclude>/.svn$</exclude>
|
||||||
|
</file_rule>
|
||||||
|
<option warning="true" full_class_checking="true" void_safety="none" syntax="standard">
|
||||||
|
</option>
|
||||||
|
<library name="base" location="$ISE_LIBRARY/library/base/base.ecf"/>
|
||||||
|
<cluster name="src" location="./src" recursive="true"/>
|
||||||
|
</target>
|
||||||
|
</system>
|
||||||
22
draft/library/security/openid/src/openid.e
Normal file
22
draft/library/security/openid/src/openid.e
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
note
|
||||||
|
description: "[
|
||||||
|
Main interface for OPENID interface
|
||||||
|
]"
|
||||||
|
date: "$Date$"
|
||||||
|
revision: "$Revision$"
|
||||||
|
|
||||||
|
class
|
||||||
|
OPENID
|
||||||
|
|
||||||
|
create
|
||||||
|
make
|
||||||
|
|
||||||
|
feature {NONE} -- Initialization
|
||||||
|
|
||||||
|
make
|
||||||
|
-- Instanciate Current object
|
||||||
|
do
|
||||||
|
check not_yet_implemented: False end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
6
draft/library/text/filter/README.md
Normal file
6
draft/library/text/filter/README.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Support for various text filters such as
|
||||||
|
|
||||||
|
wikitext
|
||||||
|
markdown
|
||||||
|
...
|
||||||
|
|
||||||
1
draft/library/text/template/README.md
Normal file
1
draft/library/text/template/README.md
Normal file
@@ -0,0 +1 @@
|
|||||||
|
We could add library similar to Velicity, Smarty, ... template engine
|
||||||
@@ -2,10 +2,17 @@
|
|||||||
; this file lists configurations/targets that should be ignored if
|
; this file lists configurations/targets that should be ignored if
|
||||||
; compile_all is run on the trunk
|
; compile_all is run on the trunk
|
||||||
;
|
;
|
||||||
|
;
|
||||||
|
[regexp=(\\|\/)contrib$]
|
||||||
|
[regexp=(\\|\/)crypto$]
|
||||||
|
|
||||||
|
; The following is for Eiffelstudio < 7.0
|
||||||
|
|
||||||
[$COMPILE_ALL_BASEDIR/contrib]
|
[$COMPILE_ALL_BASEDIR/contrib]
|
||||||
[$COMPILE_ALL_BASEDIR\contrib]
|
[$COMPILE_ALL_BASEDIR\contrib]
|
||||||
|
|
||||||
[regexp=(\\|\/)crypto$]
|
[$COMPILE_ALL_BASEDIR/library/crypto]
|
||||||
|
[$COMPILE_ALL_BASEDIR\library\crypto]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user