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 ... 4 5 [6] 7 8 ... 11
76  PureMVC Manifold / Demos and Utils / EmployeeAdmin - A PureMVC JS Demo on: November 24, 2008, 08:58:59
This demo illustrates techniques for performing routine maintenance operations in a PureMVC-based JavaScript application.

Implementations for ExtJS3, ExtJS4, JQuery, MooTools and DOM are available, and illustrate use of those libraries with the various PureMVC JS ports.

The demo is located at http://trac.puremvc.org/Demo_JS_EmployeeAdmin

The authors are Frederic Saunier, Justin Wilaby, and Tony DeFusco.

Remember, PureMVC Native is now the recommended port to build against, but several of these demos show how to use the deprecated PureMVC ports that depended upon other libraries for class emulation.

With PureMVC Native you can still use the syntax of your favorite class emulation library if you choose, but you also have the option of writing your PureMVC code in a third-party library agnostic fashion using plain JavaScript or PureMVC's built-in define() syntax.
77  PureMVC Manifold / Demos and Utils / BasicDemo - A PureMVC / PHP Demo on: November 14, 2008, 10:11:19
The BasicDemo is based on the CSS Zen Garden (http://csszengarden.com). PureMVC propaganda is displayed in several CSS styles, which you can switch between.

Currently the BasicDemo is bundled with the PHP Port: http://trac.puremvc.org/PureMVC_PHP

In future versions it will be separated into its own project to reduce the size of the download for the port itself.

The authors are Hasan Otoume and Omar Gonzalez.
-=Cliff>
78  PureMVC Manifold / Demos and Utils / PureMVC PHP Standard Version Unit Tests on: November 13, 2008, 06:31:25
These are the Unit Tests for the PureMVC Framework for PHP - Standard Version

The demo is located at http://trac.puremvc.org/PureMVC_PHP_UnitTests

The author is Hasan Otoume.
79  PureMVC Manifold / Demos and Utils / Sequential - A PureMVC / AS3 Demo on: November 12, 2008, 06:58:43
This demo illustrates the use of the AsyncCommand utility to execute a series of commands, some of which must complete asynchronous operations before the next command can be executed.

The demo is located here: http://trac.puremvc.org/Demo_AS3_Sequential

Standard and MultiCore versions are included.

The author is Duncan Hall.

NOTE: Since this is a Standard/MultiCore demo, please post discussion about this utility on the main thread: http://forums.puremvc.org/index.php?topic=833.0
80  PureMVC Manifold / Demos and Utils / Sequential - A PureMVC / AS3 Demo on: November 12, 2008, 06:56:21
This demo illustrates the use of the AsyncCommand utility to execute a series of commands, some of which must complete asynchronous operations before the next command can be executed.

The demo has historically been located here: http://trac.puremvc.org/Demo_AS3_Sequential
The project has been moved here: https://github.com/PureMVC/puremvc-as3-demo-flash-sequential/wiki

Standard and MultiCore versions are included.

The author is Duncan Hall.
81  PureMVC Manifold / Demos and Utils / AsyncCommand - A PureMVC / AS3 Utility on: November 12, 2008, 06:45:54
The AsyncCommand utility offers a solution to the problem of executing a series of commands each of which may need to complete one or more asynchronous operations before the next command is executed.

The utility is located here: http://trac.puremvc.org/Utility_AS3_AsyncCommand

Standard and MultiCore versions are included.

The author is Duncan Hall.

NOTE: Since this is a Standard/MultiCore utility, please post discussion about this utility on the main thread: http://forums.puremvc.org/index.php?topic=831.0
82  PureMVC Manifold / Demos and Utils / AsyncCommand - A PureMVC / AS3 Utility on: November 12, 2008, 06:37:02
The AsyncCommand utility offers a solution to the problem of executing a series of commands each of which may need to complete one or more asynchronous operations before the next command is executed.

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

Standard and MultiCore versions are included.

The author is Duncan Hall.
83  Announcements and General Discussion / Fabrication / Fabrication - A PureMVC/AS3 Toolkit for MultiCore/Pipes on: November 06, 2008, 10:56:17
Fabrication is a rapid application development extension for PureMVC.

Its goal is to write less code while adhering to the separation of concerns of PureMVC. Fabrication is built around the Multicore version of PureMVC as it provides a solid foundation to build multi-modular applications without the singleton issues. Here is a summary of the main features in Fabrication.

Facade extensions : With Fabrication you do not need to create a concrete facade for your application. It provides a standard facade that does the work of kick starting your application with the usual startup notification. You only need to provide the startup command to use with a getStartupCommand method. The rest of startup process is done for you.

Mediator extensions : Fabrication allows registration of mediators without waiting for its corresponding viewComponent to be created. This is especially useful when using deferred component instantiation. You no longer need to code creationComplete handles, bubble custom creation events, check for mediator registration and so on. Fabrication has a built in component resolver that detects when a component becomes available and creates the mediator for it. You only need to declare your intention of associating a mediator with a viewComponent. And this is not limited to just deferred instantiation. Coupled with application states you can declare high level mediators registration minus all the creation event listeners.

Notification extensions : Fabrication provides mediators to detect notification interests based on intent. You no longer need to declare notifications that your mediator is interested in with listNotificationInterests. Instead you simply write a handler function like, respondToChanged. Fabrication automatically interprets this as a mediator's interest in the "changed" notification name. This feature reduces the complexity in switch cases that can result in a Mediator's handleNotification.

Multi-module messaging extensions : Fabrication simplifies communication between multiple modules into PureMVC Notifications. To send messages between modules you simply use the routeNotification method. Such routed notifications are received by the destination module as standard PureMVC notifications. You can either register them with Commands or use them in mediators with the respondTo syntax.

Undo support : Fabrication recognizes Undo-Redo as an integral part of rich internet applications and has extensive support for it. It provides support for n-level undos with a clean set of APIs for different types of undo operations like property changes, object adding and removal, grouping, and implicit undos.

General PureMVC extensions : Fabrication also shortens some of the typical PureMVC programming syntax. Calls to facade.<registerMediator|registerProxy> etc can be performed directly with just registerMediator, registerProxy etc. Fabrication allows mapping multiple commands with the same notification names resulting in a form of implicit macro command.

Finally Fabrication is all PureMVC(Multicore). So any utilities/code that works with PureMVC will also work with Fabrication. Everything that PureMVC provides is there. Fabrication does not modify PureMVC, it only extends it.

Grab Fabrication here
http://fabrication.googlecode.com/

Read more about Fabrication at the blog
http://codedrunks.com/

Download examples
http://fabrication.googlecode.com/svn/fabrication/examples

Documentation is currently lacking. This is something that I am working on at the moment. A user guide is coming soon. Nevertheless the best way to try out Fabrication is to start using it. The acceleration to PureMVC will become apparent once you start using it.

peace,
darshan
84  PureMVC Manifold / Demos and Utils / Deployment Config - A PureMVC AS3 / Flex / AIR Utility on: October 29, 2008, 10:14:30
The Deployment Config utility offers a simple solution to the problem of retrieving configuration and distributing it throughout a PureMVC application. Support is provided for multiple deployment environments, such that a single configuration file can hold the unique configuration settings for any number of deployment environments. A single environment is selected by changing the value of a single tag in the XML to point to the desired configuration. Standard and MultiCore versions are included.

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

The author is Cliff Hall.
85  Announcements and General Discussion / General Discussion / Talk at <HEAD> Web Conference Saturday on: October 24, 2008, 06:39:12
A little late notice, sorry, but I'll be talking at Aral Balkan's <HEAD> web conference tommorow, 18:00 UTC.

http://www.headconference.com/speakers/cliff-hall/

There's still time to attend a conference in the comfort of your own home. Pick up your ticket today.

-=Cliff>
86  PureMVC Manifold / MultiCore Version / Welcome to the Java Port - MultiCore Version on: October 12, 2008, 05:40:34
Here are some important URLS for the project:

The project has historically been located here: http://trac.puremvc.org/PureMVC_Java_MultiCore
It has been moved here: https://github.com/PureMVC/puremvc-java-multicore-framework/wiki

The Project Owner is:
Frederic Saunier, <frederic.saunier@puremvc.org>

-=Cliff>
87  PureMVC Manifold / Demos and Utils / PureMVC Java MultiCore Version Unit Tests on: October 12, 2008, 05:21:57
These are the Unit Tests for the PureMVC Framework for Java - MultiCore Version

The project has historically been located here: http://trac.puremvc.org/PureMVC_Java_MultiCore_UnitTests
It has been moved here: https://github.com/PureMVC/puremvc-java-multicore-unittests/wiki

The author is Matthieu Mauny.
88  PureMVC Manifold / Demos and Utils / Pipes - A PureMVC Java MultiCore Utility on: October 12, 2008, 05:18:33
This utility provides the capability for creating pipelines that pass messages between Cores in a PureMVC Java MultiCore-based application. Pipelines can be composed of filters, queues, splitting and merging tees, and more.

The project has historically been located here:  http://trac.puremvc.org/Utility_Java_MultiCore_Pipes
It has been moved here: https://github.com/PureMVC/puremvc-java-util-pipes/wiki

The author is Matthieu Mauny.
89  PureMVC Manifold / Demos and Utils / Startup for Assets - A PureMVC AS3 / Flex / StartupManager Demo on: September 29, 2008, 06:50:29
This demo illustrates the use of the PureMVC framework, the Startup Manager Utility, and its new Asset management classes to load display assets at startup.

The demo is located at http://trac.puremvc.org/Demo_AS3_Flex_StartupForAssets

The author is Philip Sexton.

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

The new thread is here: http://forums.puremvc.org/index.php?topic=1395.0
90  PureMVC Manifold / Demos and Utils / A Simple Image Loader Example on: August 21, 2008, 04:43:58
Brian Davis came across this one on the web in his patient search for info on the AS2 port:

http://digitalmonkstudio.com/?p=14

-=Cliff>
Pages: 1 ... 4 5 [6] 7 8 ... 11