Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

| * |

  Show Posts
Pages: 1 2 3 [4] 5 6 ... 11
46  Announcements and General Discussion / Public Demos, Tools and Applications / Dungeon Joe: A Touch-focused Strategy Game on: January 11, 2011, 05:05:48
Implemented in AIR for the Blackberry Playbook, the desktop version is 100% the same codebase, just a different project setup to target the desktop.

Still awaiting approval to Blackberry AppWorld, but you can install and play on your desktop or watch a demo of it on the HP TouchSmart here:

http://dungeonjoe.com

Enjoy,
-=Cliff>
47  PureMVC Manifold / Demos and Utils / HelloPlaybook - A PureMVC AS3 / AIR / Blackberry Playbook Demo on: December 01, 2010, 09:35:10
This demo illustrates the use of the PureMVC framework within an AIR application for the Blackberry Playbook. A lonely little blue box appears, moving in a black room. Drag it to add more boxes. Click +/- to scale all boxes. Ported to the Playbook from the original HelloFlash demo.

The demo has historically been located here: http://trac.puremvc.org/Demo_AS3_AIR_HelloPlaybook
The project has been moved here: https://github.com/PureMVC/puremvc-as3-demo-air-helloplaybook/wiki

The author is Cliff Hall.
48  PureMVC Manifold / Demos and Utils / EmployeeAdminMobile - A Java / MultiCore / GWT Demo on: October 17, 2010, 12:12:55
This demo illustrates techniques for performing routine maintenance operations in a PureMVC-based Java/GWT mobile application such as Android, iPhone and iPad.

The demo has historically been located here: http://trac.puremvc.org/Demo_Java_MultiCore_EmployeeAdminMobile
It has been moved here: https://github.com/PureMVC/puremvc-java-demo-gwt-employeeadmin-mobile/wiki

The author is Anthony Quinault.
49  PureMVC Manifold / Demos and Utils / EmployeeAdmin - A PureMVC C# / WPF Demo on: May 29, 2010, 07:11:27
This demo illustrates techniques for performing routine maintenance operations in a PureMVC-based C# / WPF application.

The demo has historically been located here: http://trac.puremvc.org/Demo_CSharp_WPF_EmployeeAdmin
The project has been moved here: https://github.com/PureMVC/puremvc-csharp-demo-wpf-employeeadmin/wiki


The author is Andy Adamczak.
50  PureMVC Manifold / Demos and Utils / EmployeeAdmin - A PureMVC C# / Silverlight Demo on: May 29, 2010, 04:44:57
This demo illustrates techniques for performing routine maintenance operations in a PureMVC-based C# / Silverlight application.

The demo has historically been located here: http://trac.puremvc.org/Demo_CSharp_Silverlight_EmployeeAdmin
The project has been moved here: https://github.com/PureMVC/puremvc-csharp-demo-silverlight-employeeadmin/wiki

The author is Frederic Saunier.
51  PureMVC Manifold / Bug Report / Proxy.proxyName and Proxy.data should be protected not private on: April 14, 2010, 09:46:24
The subject says it all. Here's what led to the discovery: http://forums.puremvc.org/index.php?topic=1692.msg7640#msg7640

-=Cliff>
52  PureMVC Manifold / Bug Report / Facade.getInstance needs to return IFacade on: February 28, 2010, 04:14:34
Currently it returns a Facade. This keeps you from being able to do:

:
/**
* get the instance.
* @return the singleton
*/
public static HelloWorldFacade getInstance( String key ) {
if (instance == null) {
instance = new HelloWorldFacade( key );
}
return instance;
}

...as you should in your concrete Facade subclass.

This why was it implemented to return the class instead of the interface? Are there other places where the AS3 reference methods return an interface but you return instead a class? It might be a good time to investigate when you make this change.

-=Cliff>
53  PureMVC Manifold / Demos and Utils / BoxSplash - A PureMVC JS Demo on: February 15, 2010, 05:03:52
This demo illustrates a pure JavaScript / CSS application that creates a variable number of colored boxes in a 3D cloud, which rotates in the direction of your cursor movement. It is a tangible test of a browser's JavaScript execution efficiency. Implementations for ExtJS and MooTools are available.

Historically, the demo has been located at http://trac.puremvc.org/Demo_JS_BoxSplash
It has now been moved to https://github.com/PureMVC/puremvc-js-demo-boxsplash/wiki

The original author is Justin Wilaby who used Mootools and the now deprecated Mootools PureMVC port.
Tony DeFusco ported it to ExtJS 3 and 4 using the Native JS MultiCore port.
54  PureMVC Manifold / Demos and Utils / Cafe Townsend - A PureMVC AS3 / Flex Demo on: October 30, 2009, 11:01:42
This demo was originally1 written for Cairngorm, another framework for Flex. It illustrates the handling of routine maintenance tasks on the client.

The demo has historically been located here: http://trac.puremvc.org/Demo_AS3_Flex_CafeTownsend
The project has been moved here: https://github.com/PureMVC/puremvc-as3-demo-flex-cafetownsend/wiki

The author is Michael Ramirez.

1 Cairngorm Cafe Townsend Demo - http://cairngormdocs.org/blog/?p=19
55  PureMVC Manifold / Port to Ruby / Request for Comments on Ruby Standard and Multicore conventions on: October 27, 2009, 01:21:30
Jake Dempsey is the owner of the existing Ruby Standard port. Oliver Feldt has created a Ruby MultiCore port but there are stylistic differences between the two.

Oliver has posted some thoughts about conventions that will be more Rubyist-friendly as well as some suggestions that alter the way the current framework code is implemented.

Ultimately, we want both ports - especially if two different owners are responsible - to be implemented in the same underlying fashion with the same conventions in place from the start.

This means on a line by line basis in the code, either the existing Standard port must be refactored to meet the agreed upon convention, or the declined changes must be altered in the MultiCore port. As is the case with the AS3 references, the net result should be a diff showing identical Ruby ports except for the MultiCore additions in one.

The reason for this is simple. When a bug is found that is common to both ports, it should be resolved in precisely the same manner and the releases should advance in lockstep. This has been the case with AS3 and Haxe, both of which have sole owners.

This was unfortunately not the case with the Java ports which have different owners who did not reconcile their ports. A major lesson was learned. We never know what bugs exist in one framework that don't in the other. We must now retroactively attempt to reconcile those two Java implementations.

Anyone interested in the Ruby ports, please have a look (particularly Jake), and post your comments here: http://forums.puremvc.org/index.php?topic=1511.0

In the end, it would be great if Jake and Oliver could summarize what will be done to bring the two frameworks into alignment, and we could plan for the changes in the initial release of the MultiCore port and the next release of the Standard port.

-=Cliff>
56  PureMVC Manifold / Demos and Utils / Login - A PureMVC ColdFusion Demo on: October 18, 2009, 12:01:28
This simple demo illustrates basic use of the PureMVC framework for ColdFusion.

The demo has historically been located here: http://trac.puremvc.org/Demo_CF_Login
The project has been moved here: https://github.com/PureMVC/puremvc-cf-demo-login/wiki

The author is Michael Oddis.
57  PureMVC Manifold / Demos and Utils / Loadup - A PureMVC AS3 Utility on: August 16, 2009, 07:25:13
The Loadup utility offers a solution to the problem of how to manage the asynchronous loading of Model resources at anytime during application runtime. It supports loading order dependencies, and is progress-aware.

The utility has historically been located here: http://trac.puremvc.org/Utility_AS3_Loadup
The project has been moved here: https://github.com/PureMVC/puremvc-as3-util-loadup/wiki

The author is Philip Sexton.

NOTE: This project was formerly known as StartupManager, and was renamed Loadup, to dispel the notion that the utility it was only usable at startup time.

The previous thread is here: http://forums.puremvc.org/index.php?topic=259.0
58  PureMVC Manifold / Demos and Utils / Loadup as Ordered - A PureMVC AS3 / Flex Demo on: August 16, 2009, 07:21:08
This demo illustrates the use of the PureMVC framework, the Loadup Utility, and the Asynchronous Stub utility to orchestrate an ordered startup process, where Model resources must be loaded in a specific order.

The demo has historically been located here: http://trac.puremvc.org/Demo_AS3_Flex_LoadupAsOrdered
The project has been moved here: https://github.com/PureMVC/puremvc-as3-demo-flex-loadupasordered/wiki

The author is Philip Sexton.

NOTE: This project is now known as LoadupAsOrdered, and was renamed when StartupManager was renamed Loadup, to dispel the notion that the utility it was only usable at startup time.

The previous thread is here: http://forums.puremvc.org/index.php?topic=258.0
59  PureMVC Manifold / Demos and Utils / Loadup for Assets - A PureMVC AS3 / Flex / Loadup Utility Demo on: August 16, 2009, 07:12:04
This demo illustrates the use of the PureMVC framework, the Loadup Utility, and its Asset management classes to load display assets.

The demo has historically been located here: http://trac.puremvc.org/Demo_AS3_Flex_LoadupForAssets
The project has been moved here: https://github.com/PureMVC/puremvc-as3-demo-flex-loadupforassets/wiki

The author is Philip Sexton.

NOTE: This project was formerly known as StartupForAssets, and was renamed when StartupManager was renamed Loadup, to dispel the notion that the utility it was only usable at startup time.

The previous thread is here: http://forums.puremvc.org/index.php?topic=716.0
60  PureMVC Manifold / Demos and Utils / EmployeeAdmin - A Java / MultiCore / GWT Demo on: June 13, 2009, 04:27:32
This demo illustrates techniques for performing routine maintenance operations in a PureMVC-based Java application.

The demo has historically been located here: http://trac.puremvc.org/Demo_Java_MultiCore_GWT_EmployeeAdmin
It has been moved here: https://github.com/PureMVC/puremvc-java-demo-gwt-employeeadmin/wiki

The author is Anthony Quinault.
Pages: 1 2 3 [4] 5 6 ... 11