Skip to content

Commit eb2bbb7

Browse files
committed
Updated with LICENSE, VERSION, and README
1 parent c890389 commit eb2bbb7

File tree

4 files changed

+55
-67
lines changed

4 files changed

+55
-67
lines changed

LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
* PureMVC C# Standard Framework (Ported) - Copyright © 2008 Andy Adamczak, Matt Brailsford
2+
* PureMVC - Copyright © 2007-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: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
## [PureMVC](http://puremvc.github.com/) C# Standard 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 C# port of the [AS3 reference implementation of the Standard Version](https://github.com/PureMVC/puremvc-as3-standard-framework/wiki).
3+
4+
Unit tests are included for VS2005 using NUnit Lite, and in the new style for VS2008 Pro with code coverage.
5+
6+
* [API Docs](http://darkstar.puremvc.org/content_header.html?url=http://puremvc.org/pages/docs/CSharp/standard/&desc=PureMVC%20API%20Docs:%20PureMVC%20Standard%20for%20C Sharp)
7+
* [Discussion](http://forums.puremvc.org/index.php?board=72.0)
8+
* [Overview Presentation](http://puremvc.tv/#P100)
9+
10+
##Demos
11+
* [Demo: Webservice Login](https://github.com/PureMVC/puremvc-csharp-demo-webservice-login/wiki)
12+
* [Demo: Employee Admin - WPF](https://github.com/PureMVC/puremvc-csharp-demo-wpf-employeeadmin/wiki)
13+
* [Demo: Employee Admin - Silverlight](https://github.com/PureMVC/puremvc-csharp-demo-silverlight-employeeadmin/wiki)
14+
15+
## Status
16+
Production - [Version 3.1](https://github.com/PureMVC/puremvc-csharp-standard-framework/blob/master/VERSION)
17+
18+
## Platforms / Technologies
19+
* [C#](http://en.wikipedia.org/wiki/C_Sharp_(programming_language\))
20+
* Microsoft .NET Framework 2.0, 3.0, 3.5
21+
* Microsoft WPF 3.0, 4.0
22+
* Microsoft .NET Compact Framework 2.0, 3.0, 3.5
23+
* Microsoft Silverlight 2.0, 3.0, 4.0
24+
* Microsoft Windows Mobile 5.0, 6.0
25+
* Microsoft Pocket PC (Windows Mobile 6)
26+
* Microsoft SmartPhone (Windows Mobile 5)
27+
* Microsoft Windows CE 5.0
28+
29+
## License
30+
* PureMVC C# Standard Framework (Ported) - Copyright © 2008 Andy Adamczak, Matt Brailsford
31+
* PureMVC - Copyright © 2007-2012 Futurescale, Inc.
32+
* All rights reserved.
33+
34+
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
35+
36+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
37+
* 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.
38+
* 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.
39+
40+
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.txt renamed to VERSION

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
PureMVC C# Port by Andy Adamczak <andy.adamczak@puremvc.org>, Matt Brailsford
2-
PureMVC - Copyright(c) 2006-10 Futurescale, Inc., Some rights reserved.
1+
PureMVC C# Standard Framework (Ported)
32
--------------------------------------------------------------------------
43
Release Date: 10/20/08
54
Platform: C# (DotNET, DotNetCF, Silverlight)
65
Version: 3
76
Revision: 1
87
Minor: 0
98
Author: Andy Adamczak <andy.adamczak@puremvc.org>
10-
License: Creative Commons Attribution 3.0 United States License
119
--------------------------------------------------------------------------
1210

1311
3.1 - Fixed a bug in the multi-threaded implementation of the Observer. - AA
@@ -24,9 +22,9 @@ Release Date: 10/20/08
2422
Added separate Visual Studio 2008 projects that compile the framework
2523
against .Net Framework 3.5. - AA
2624

27-
1.0 - Updated inline with version 2.0.4 release of the AS3 implementation
28-
See http://forums.puremvc.org/index.php?topic=625.0 for details
29-
Signed the built assemblies. - AA
25+
1.0 - Updated inline with version 2.0.4 release of the AS3 implementation
26+
See http://forums.puremvc.org/index.php?topic=625.0 for details
27+
Signed the built assemblies. - AA
3028

3129
0.9 - Updated inline with version 2.0 release of the AS3 implementation
3230
See http://forums.puremvc.org/index.php?topic=212.0 for details - MB

license.txt

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)