This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Flex SDK 路径 | |
FLEX_HOME=D:\\flex\\flex_sdk_4.1.0.16076_mpl | |
#根目录 | |
#APP_ROOT=G:\\riasource\\0.trunk | |
#ANT 安装目录 | |
ANT_HOME=D:\\apache-ant-1.8.2 | |
#本地部署目录(wamp/www) | |
#DEPLOY_DIR=E:/wamp/www/ihaveu2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=c:/Program Files/Adobe/FlashBuilder4Plug-in/sdks/4.1.0 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=c:/Program Files/Adobe/FlashBuilder4Plug-in/sdks/4.1.0 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=D:/flex_sdks/4.1.0 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=D:/flex_sdks/4.5.0 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=d:/flex_sdks/4.5.0 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 设置FLEX SDK的路径 | |
FLEX_HOME=D:/flex_sdks/4.5.1 | |
# 设置源文件路径 | |
# {$basedir} 就是本文件所在的目录 | |
SRC_DIR =${basedir}/src | |
# libs目录,一般用来放swc文件 | |
LIBS_DIR =${basedir}/libs | |
# 用于部署的文件夹 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
command! -nargs=* Make call Ant(<f-args>) | |
" 映射编译快捷键 | |
cmap <F11> Make fdb 0 | |
map <F11> :Make fdb 0<CR> | |
map <S-F11> :Make 0 0<CR> | |
cmap <F12> Make ftp 0 | |
map <F12> :Make ftp 0<CR> | |
function! GetMainFile(...) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################## | |
# dnspodsh v0.3 | |
# 基于dnspod api构架的bash ddns客户端 | |
# 作者:zrong(zengrong.net) | |
# 详细介绍:http://zengrong.net/post/1524.htm | |
# 创建日期:2012-02-13 | |
# 更新日期:2012-03-11 | |
############################## |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package maroo.codec | |
{ | |
import flash.utils.ByteArray; | |
import mx.utils.Base64Decoder; | |
public class PList | |
{ | |
public static function parse(source:XML):Object | |
{ | |
switch (source.name().localName) { |
OlderNewer