Skip to content

Commit 935f47e

Browse files
committed
Updated with LICENS, VERSION, and README
1 parent 7122971 commit 935f47e

File tree

4 files changed

+68
-223
lines changed

4 files changed

+68
-223
lines changed

LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* PureMVC MultiCore Framework for Python (Ported) - Copyright © 2012 Daniele Esposti
2+
* PureMVC - Copyright © 2006-2012 Futurescale, Inc.
3+
* All rights reserved.
4+
5+
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9+
* Neither the name of Futurescale, Inc., PureMVC.org, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
1-
-puremvc-python-multicore-framework
2-
===================================
1+
## [PureMVC](http://puremvc.github.com/) Python MultiCore Framework
2+
PureMVC is a lightweight framework for creating applications based upon the classic [Model-View-Controller](http://en.wikipedia.org/wiki/Model-view-controller) design meta-pattern. This is a Python port of the [AS3 reference implementation of the MultiCore Version](https://github.com/PureMVC/puremvc-as3-multicore-framework/wiki). It supports [modular programming](http://en.wikipedia.org/wiki/Modular_programming) through the use of [Multiton](http://en.wikipedia.org/wiki/Multiton) Core actors instead of the [Singleton](http://en.wikipedia.org/wiki/Singleton_pattern)s used in the [Standard Version](https://github.com/PureMVC/puremvc-python-standard-framework/wiki).
3+
4+
The unit tests are included in this repository.
5+
6+
* [API Docs](http://darkstar.puremvc.org/content_header.html?url=http://puremvc.org/pages/docs/Python/docs&desc=PureMVC%20API%20Docs:%20PureMVC%20Standard%20for%20Python)
7+
* [Discussion](http://forums.puremvc.org/index.php)
8+
* [Overview Presentation](http://puremvc.tv/#P002/)
9+
10+
## Status
11+
Production - [Version 1.0] (https://github.com/PureMVC/puremvc-python-multicore-framework/blob/master/VERSION)
12+
13+
## Platforms / Technologies
14+
* [Python](http://en.wikipedia.org/wiki/Python_(programming_language\))
15+
16+
## License
17+
* PureMVC MultiCore Framework for Python (Ported) - Copyright © 2012 Daniele Esposti
18+
* PureMVC - Copyright © 2006-2012 Futurescale, Inc.
19+
* All rights reserved.
20+
21+
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
22+
23+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
24+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
25+
* Neither the name of Futurescale, Inc., PureMVC.org, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
26+
27+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

VERSION

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
PureMVC MultiCore Framework for Python (Ported) --------------------------------------------------------------------------
2+
Release Date: 10/25/2012
3+
Platform: Python 2.5+
4+
Version: 1
5+
Revision: 0
6+
Minor: 0
7+
Authors: Toby de Havilland <toby.de.havilland@puremvc.org>
8+
Daniele Esposti <expo@expobrain.net>
9+
--------------------------------------------------------------------------
10+
1.0 - * Official PureMVC.org release
11+
0.3.2 - * Added unit test for non-null values in Proxy's constructor
12+
* Fixes in unit tests code to support Python 2.5
13+
14+
0.3.1 - * Fixed fabric test() task and added task's descriptions
15+
* Fixed class inheritance where some classes inherit twice from the
16+
same interface
17+
* Improved docs strings
18+
* Added missing tests in the unit test list
19+
* Facade.getInstance() returns a new instance of the current class
20+
instead of a base Facade class
21+
* The 'body' argument in sendNotification() methods is always optional
22+
* Proxy class should call it's superclass in the constructor
23+
24+
0.3.0 - Renamed main package from puremvc_mc to puremvc
25+
26+
0.2.1 - Made code PEP8 compliant
27+
28+
0.2 - Improved unit test to cover multicore features
29+
30+
0.1 - Initial project port from AS3 code

0 commit comments

Comments
 (0)