チェンジセット 975
- コミット日時:
- 2008/08/15 11:09:24 (3 年前)
- ファイル:
-
- as3/KujiraFlexCompo/SourceCodeViewer/.actionScriptProperties (追加)
- as3/KujiraFlexCompo/SourceCodeViewer/.flexLibProperties (追加)
- as3/KujiraFlexCompo/SourceCodeViewer/.project (追加)
- as3/KujiraFlexCompo/SourceCodeViewer/ReadMe.txt (更新) (1 diff)
- as3/KujiraFlexCompo/SourceCodeViewer/bin/SourceCodeViewer.swc (更新) (変更前)
- as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/controls/SourceCodeViewer.mxml (更新) (1 diff)
- as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParser.as (更新) (1 diff)
- as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParserPHP.as (更新) (1 diff)
- as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParserPHPScript.as (更新) (2 diffs)
- as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParserRuby.as (追加)
- as3/KujiraFlexCompo/Tougarasi (追加)
- as3/KujiraFlexCompo/Tougarasi/.actionScriptProperties (追加)
- as3/KujiraFlexCompo/Tougarasi/.flexProperties (追加)
- as3/KujiraFlexCompo/Tougarasi/.project (追加)
- as3/KujiraFlexCompo/Tougarasi/.settings (追加)
- as3/KujiraFlexCompo/Tougarasi/.settings/org.eclipse.core.resources.prefs (追加)
- as3/KujiraFlexCompo/Tougarasi/src (追加)
- as3/KujiraFlexCompo/Tougarasi/src/Tougarasi.mxml (追加)
- as3/KujiraFlexCompo/Tougarasi/src/main.css (追加)
- as3/KujiraFlexCompo/Tougarasi/src/source.css (追加)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/KujiraFlexCompo/SourceCodeViewer/ReadMe.txt
r880 r975 1 [�T�v] �\�[�X�R�[�h(XML/Flex/JavaScript/Basic/PHP/CSS )�̃\�[�X�R�[�h������\���������|�[�l���g1 [�T�v] �\�[�X�R�[�h(XML/Flex/JavaScript/Basic/PHP/CSS/Ruby)�̃\�[�X�R�[�h������\���������|�[�l���g 2 2 [�g�����C�u�����p�X��SourceCodeViewer.swc �������AFlex Builder �̃f�U�C���r���[�Ŕz�u�ł������ɂȂ����B 3 3 [��] �N�W�����ttp://kujirahand.com/) 4 4 [����] src �f�B���N�g���ɁASourceCodeViewer.swc �̃\�[�X�R�[�h���������B 5 5 [�g����moSourceCodeViewer.mxml ��Ă��������BsourceType ��"css" ��basic" �̂悤�Ɍ����w�肵�AsourceText �Ƀ\�[�X�R�[�h��肷�邾���ł��B 6 7 Tougarasi �v���W�F�N�g�������p�������܂��B 8 as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/controls/SourceCodeViewer.mxml
r880 r975 17 17 'php':SParserPHP, 18 18 'xml':SParserXML, 19 'ruby':SParserRuby, 19 20 'js':SParserJS, 'javascript':SParserJS, 20 21 'as':SParserJS, 'actionscript':SParserJS, as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParser.as
r880 r975 14 14 public static const STYLE_STRING:String = "str"; 15 15 public static const STYLE_NUMBER:String = "num"; 16 public static const STYLE_VARIABLE:String = "variable"; 16 17 public static const STYLE_VALUE:String = "value"; 17 18 public static const STYLE_TAG:String = "tag"; as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParserPHP.as
r880 r975 2 2 { 3 3 /** 4 * 作りかけ4 * PHP のソースコード 5 5 */ 6 6 public class SParserPHP extends SParser as3/KujiraFlexCompo/SourceCodeViewer/src/com/kujirahand/tougarasi/SParserPHPScript.as
r880 r975 11 11 { 12 12 table = [ 13 // php tag 14 new SParserTableItem(/^\<\?(php|\=)/s, STYLE_TAG, null), 15 new SParserTableItem(/^\?\>/s, STYLE_TAG, null), 13 16 // comment 14 17 new SParserTableItem(/^\/\*.*?\*\//s, STYLE_REM, null), … … 21 24 // word 22 25 new SParserTableItem(/^[\w\_][\w\d\_]*/, "", checkReserveWord), 23 new SParserTableItem(/^\$[\w\d\_]*/, STYLE_ KEYWORD, null),26 new SParserTableItem(/^\$[\w\d\_]*/, STYLE_VARIABLE, null), 24 27 ]; 25 28 reserve_word = [

