Skip to content

Commit

Permalink
fixes robotlegs#44 moved all robotlegs packages out of org.robotlegs.…
Browse files Browse the repository at this point in the history
…v2 into robotlegs.bender
  • Loading branch information
joelhooks committed Dec 29, 2011
1 parent e5b9376 commit e38f9ca
Show file tree
Hide file tree
Showing 272 changed files with 2,922 additions and 2,922 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<!-- So true. -->
<arg value="-incremental=true"/>
<arg value="-verbose-stacktraces=true"/>
<arg value="-headless-server=false"/>
<arg value="-headless-server=false"/>
<arg value="-debug=true"/>
</java>
<!-- Execute TestRunner.swf as FlexUnit tests and publish reports -->
Expand Down Expand Up @@ -122,8 +122,8 @@
<arg line="-window-title 'Robotlegs ${robotlegs.ver.num}'"/>
<arg line="-main-title 'Robotlegs ${robotlegs.ver.num}'"/>
<arg line="-footer 'Robotlegs - http://www.robotlegs.org/ - Documentation generated at: ${docgen.time}'"/>
<arg line="-package org.robotlegs.v2.core.api 'Core framework API'"/>
<arg line="-package org.robotlegs.v2.core.impl 'Core framework implementation'"/>
<arg line="-package robotlegs.bender.core.api 'Core framework API'"/>
<arg line="-package robotlegs.bender.core.impl 'Core framework implementation'"/>
</java>
<echo>[asdoc] ASDOC documentation generated successfully</echo>
</target>
Expand Down
36 changes: 18 additions & 18 deletions buildfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,33 +16,33 @@ layout[:source, :test, :as3] = "test"
THIS_VERSION = "2.0.0b1-SNAPSHOT"

define "robotlegs-framework", :layout => layout do
project.group = "org.robotlegs"
project.version = THIS_VERSION

project.group = "org.robotlegs"
project.version = THIS_VERSION

args = [
"-namespace+=http://ns.robotlegs.org/flex/rl2,#{_(:src,"manifest.xml")}",
"-include-namespaces+=http://ns.robotlegs.org/flex/rl2"
]

compile.using( :compc, :flexsdk => flexsdk, :args => args ).
with( _(:lib,"as3commons-logging-2.7.swc"),
with( _(:lib,"as3commons-logging-2.7.swc"),
_(:lib,"Swiftsuspenders-v2.0.0b3.swc"),
_(:lib,"robotlegs-framework-v1.5.2.swc") )

testrunner = _(:source, :test, :as3, "RobotlegsTest.mxml")
test.using(:flexunit4 => true, :headless => false, :version => "4.1.0-8")

test.compile.using( :main => testrunner, :args => [] ).
with( FlexUnit4.swcs("4.1.0-8", "4.1.0.16076", :flex),
_(:lib,"mockolate-0.12.2-flex.swc"),
_(:lib,"hamcrest-as3-flex-1.1.3.swc") )

doc_title = "Robotlegs v#{THIS_VERSION}"
doc.using :maintitle => doc_title,
:windowtitle => doc_title,
:windowtitle => doc_title,
:args => doc_args

task package => doc

package(:swc).
Expand All @@ -51,14 +51,14 @@ define "robotlegs-framework", :layout => layout do
include( _(:target,:doc,:tempdita,'packages.dita*') ).
include( _(:target,:doc,:tempdita,'org.*') )


end

desc "Creates a zip archive containing a swc, sources, libraries and documentation."
task :archive => "robotlegs-framework:doc" do

rl = project( "robotlegs-framework" )
rl_swc = artifacts( rl ).first
rl_swc = artifacts( rl ).first
rl_vname = File.basename( rl_swc.to_s, ".swc" )
rl_zip = rl._(:target, "#{rl_vname}.zip")

Expand All @@ -71,9 +71,9 @@ task :archive => "robotlegs-framework:doc" do
"rlprojectlink" => "http://github.com/robotlegs/robotlegs-framework",
"bestpracticeslink" => "http://github.com/robotlegs/robotlegs-framework/wiki/Best-Practices",
"faqlink" => "http://knowledge.robotlegs.com" ).run
FileUtils.move rl._(:target,"README.tmpl"), rl._(:target,"README")

FileUtils.move rl._(:target,"README.tmpl"), rl._(:target,"README")

puts "Packaging archive in #{rl_zip}"

rl_zip = zip( rl_zip )
Expand All @@ -85,16 +85,16 @@ task :archive => "robotlegs-framework:doc" do
rl_zip.path('docs').include( rl._(:target,:doc), :as => "docs" ).exclude( rl._(:target,:doc,:tempdita) )
rl_zip.include( rl._(:lib) )
rl_zip.invoke

FileUtils.rm_r rl._(:target, "README")
end

def doc_args
[ "-keep-xml=true",
"-lenient=true",
"-lenient=true",
"-footer", "Robotlegs - http://www.robotlegs.org/ - Documentation generated at: #{Time.now.localtime.strftime("%d-%m-%Y")}",
"-package", "org.robotlegs.v2.core.api", "Core framework API",
"-package", "org.robotlegs.v2.core.impl", "Core framework implementation" ]
"-package", "robotlegs.bender.core.api", "Core framework API",
"-package", "robotlegs.bender.core.impl", "Core framework implementation" ]
end


Expand Down
4 changes: 2 additions & 2 deletions src/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<componentPackage>

<component
<component
id="ContextBuilder"
class="org.robotlegs.v2.flex.mxml.ContextBuilderTag"
class="robotlegs.bender.mxml.ContextBuilderTag"
/>

</componentPackage>
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.bundles.classic
package robotlegs.bender.bundles.classic
{
import org.robotlegs.v2.bundles.shared.configs.ContextViewListenerConfig;
import org.robotlegs.v2.core.api.ContextLogLevel;
import org.robotlegs.v2.core.api.IContextBuilder;
import org.robotlegs.v2.core.api.IContextBuilderBundle;
import org.robotlegs.v2.extensions.autoDestroy.AutoDestroyExtension;
import org.robotlegs.v2.extensions.commandMap.CommandMapExtension;
import org.robotlegs.v2.extensions.eventCommandMap.EventCommandMapExtension;
import org.robotlegs.v2.extensions.logging.impl.TraceLogTarget;
import org.robotlegs.v2.extensions.mediatorMap.MediatorMapExtension;
import org.robotlegs.v2.extensions.modularity.ModularityExtension;
import org.robotlegs.v2.extensions.viewManager.ViewManagerExtension;
import robotlegs.bender.bundles.shared.configs.ContextViewListenerConfig;
import robotlegs.bender.core.api.ContextLogLevel;
import robotlegs.bender.core.api.IContextBuilder;
import robotlegs.bender.core.api.IContextBuilderBundle;
import robotlegs.bender.extensions.autoDestroy.AutoDestroyExtension;
import robotlegs.bender.extensions.commandMap.CommandMapExtension;
import robotlegs.bender.extensions.eventCommandMap.EventCommandMapExtension;
import robotlegs.bender.extensions.logging.impl.TraceLogTarget;
import robotlegs.bender.extensions.mediatorMap.MediatorMapExtension;
import robotlegs.bender.extensions.modularity.ModularityExtension;
import robotlegs.bender.extensions.viewManager.ViewManagerExtension;

public class ClassicRobotlegsBundle implements IContextBuilderBundle
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.bundles.shared.configs
package robotlegs.bender.bundles.shared.configs
{
import flash.display.DisplayObjectContainer;
import org.robotlegs.v2.core.api.IContext;
import org.robotlegs.v2.core.api.IContextConfig;
import org.robotlegs.v2.extensions.viewManager.api.IViewManager;
import robotlegs.bender.core.api.IContext;
import robotlegs.bender.core.api.IContextConfig;
import robotlegs.bender.extensions.viewManager.api.IViewManager;

public class ContextViewListenerConfig implements IContextConfig
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.bundles.shared.utilities
package robotlegs.bender.bundles.shared.utilities
{
import flash.events.Event;
import flash.events.EventDispatcher;
import org.robotlegs.v2.core.api.IContextLogger;
import robotlegs.bender.core.api.IContextLogger;

public class LoggingEventDispatcher extends EventDispatcher
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{
import flash.events.Event;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{
import flash.utils.Dictionary;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{
import flash.display.DisplayObjectContainer;
import flash.events.IEventDispatcher;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{
import flash.display.DisplayObjectContainer;
import flash.events.IEventDispatcher;
import org.swiftsuspenders.Injector;

[Event(name="contextBuildComplete", type="org.robotlegs.v2.core.api.ContextBuilderEvent")]
[Event(name="contextBuildComplete", type="robotlegs.bender.core.api.ContextBuilderEvent")]
public interface IContextBuilder extends IEventDispatcher
{
function build():IContext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextBuilderBundle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextConfig
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextExtension
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextLogTarget
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextLogger
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
//------------------------------------------------------------------------------
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
// Copyright (c) 2011 the original author or authors. All Rights Reserved.
//
// NOTICE: You are permitted to use, modify, and distribute this file
// in accordance with the terms of the license agreement accompanying it.
//------------------------------------------------------------------------------

package org.robotlegs.v2.core.api
package robotlegs.bender.core.api
{

public interface IContextPreProcessor
Expand Down
Loading

0 comments on commit e38f9ca

Please sign in to comment.