チェンジセット 3357
- コミット日時:
- 2010/01/27 17:09:19 (2 年前)
- ファイル:
-
- as3/GeniusFramework/branches/2.0/app-template/bin-release (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/AC_OETags.js (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/assets (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/history (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/history/history.css (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/history/history.js (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/history/historyFrame.html (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/index.html (追加)
- as3/GeniusFramework/branches/2.0/app-template/bin-release/playerProductInstall.swf (追加)
- as3/GeniusFramework/branches/2.0/app-template/libs/Genius2.swc (更新) (変更前)
- as3/GeniusFramework/branches/2.0/app-template/script/build.properties (更新) (1 diff)
- as3/GeniusFramework/branches/2.0/app-template/script/build.xml (更新) (1 diff)
- as3/GeniusFramework/branches/2.0/app-template/script/release (追加)
- as3/GeniusFramework/branches/2.0/bin/build.xml (更新) (2 diffs)
- as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/threads/URLLoaderServiceThread.as (更新) (1 diff)
- as3/GeniusFramework/branches/2.0/src/jp/seagirl/validators/ValidatorManager.as (更新) (1 diff)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/GeniusFramework/branches/2.0/app-template/script/build.properties
r2585 r3357 2 2 3 3 APP_ROOT=${basedir}/.. 4 MAIN_APP=${APP_ROOT}/src/[% name %].mxml 5 OUTPUT_BIN=${basedir}/../bin-debug/[% name %].swf 4 APP_NAME=[% name %] 5 MAIN_APP=${APP_ROOT}/src/${APP_NAME}.mxml 6 6 7 7 package=[% package %] as3/GeniusFramework/branches/2.0/app-template/script/build.xml
r2585 r3357 41 41 42 42 <target name="build"> 43 <mxmlc 44 actionscript-file-encoding="UTF-8" 45 file="${MAIN_APP}" 46 output="${APP_ROOT}/bin-debug/${APP_NAME}.swf" 47 debug="true" 48 incremental="true" 49 keep-generated-actionscript="false" 50 > 51 <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" /> 52 </mxmlc> 53 <copy todir="${basedir}/../bin-debug/assets"> 54 <fileset dir="${basedir}/../src/assets"/> 55 </copy> 56 </target> 57 58 <target name="release"> 43 59 <mxmlc 44 60 actionscript-file-encoding="UTF-8" 45 61 file="${MAIN_APP}" 46 output="${OUTPUT_BIN}" 62 output="${APP_ROOT}/bin-release/${APP_NAME}.swf" 63 debug="false" 47 64 incremental="true" 48 keep-generated-actionscript="false"> 65 keep-generated-actionscript="false" 66 > 49 67 <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" /> 50 68 </mxmlc> 51 <copy todir="${basedir}/../bin- debug/assets">69 <copy todir="${basedir}/../bin-release/assets"> 52 70 <fileset dir="${basedir}/../src/assets"/> 53 71 </copy> as3/GeniusFramework/branches/2.0/bin/build.xml
r3179 r3357 46 46 <include name="script/*.properties"/> 47 47 <include name="bin-debug/*.html"/> 48 <include name="bin-release/*.html"/> 48 49 <include name="src/**/*.as"/> 49 50 <include name="src/**/*.mxml"/> … … 60 61 <chmod file="${app_root}/script/generate" perm="755"/> 61 62 <chmod file="${app_root}/script/debug" perm="755"/> 63 <chmod file="${app_root}/script/release" perm="755"/> 62 64 </target> 63 65 as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/threads/URLLoaderServiceThread.as
r3176 r3357 97 97 override protected function run():void 98 98 { 99 error(IOError, handleError); 100 error(SecurityError, handleError); 101 102 initialize(); 103 } 104 105 protected function initialize():void 106 { 107 99 108 100 } 109 101 as3/GeniusFramework/branches/2.0/src/jp/seagirl/validators/ValidatorManager.as
r318 r3357 160 160 } 161 161 162 public function removeValidator(validator:Validator):void 163 { 164 repository.filter( 165 function (element:Validator, index:int, array:Array):Boolean 166 { 167 return element != validator; 168 } 169 ); 170 171 return; 172 } 173 174 public function removeAllValidators():void 175 { 176 repository = []; 177 178 return; 179 } 180 162 181 /** 163 182 * リポジトリに登録された全てのValidatorを使って妥当性を判断します。

