Changeset 07fdf203 in mainline
- Timestamp:
- 2009-09-11T15:46:20Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8e2ae1
- Parents:
- ac2c2ea7
- Location:
- contrib
- Files:
-
- 23 added
- 3 deleted
- 2 edited
- 45 moved
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/hadlbppp.py
rac2c2ea7 r07fdf203 28 28 # 29 29 """ 30 HelenOS Behavior Protocols preprocessor30 HelenOS Architecture Description Language and Behavior Protocols preprocessor 31 31 """ 32 32 … … 141 141 inf.close() 142 142 143 def recursion(root, out f, level):143 def recursion(root, output, level): 144 144 "Recursive directory walk" 145 145 … … 161 161 162 162 path = os.path.abspath(sys.argv[1]) 163 if ( os.path.isdir(path)):164 print "<OUTPUT> is an existingdirectory"163 if (not os.path.isdir(path)): 164 print "<OUTPUT> is not a directory" 165 165 return 166 166 167 outf = file(path, "w") 168 recursion(".", outf, 0) 169 outf.close() 167 recursion(".", path, 0) 170 168 171 169 if __name__ == '__main__': -
contrib/highlight/adl.syntax
rac2c2ea7 r07fdf203 5 5 keyword whole interface yellow 6 6 keyword whole frame yellow 7 keyword whole architecture yellow 8 9 keyword whole system yellow 10 keyword whole extends yellow 11 keyword whole version yellow 12 13 keyword whole inst yellow 14 keyword whole bind yellow 15 keyword whole to yellow 16 keyword whole subsume yellow 17 keyword whole delegate yellow 7 18 8 19 keyword whole ipcarg_t yellow … … 33 44 keyword ] brightblue black 34 45 46 context exclusive [ ] brightblue black 47 keyword % brightcyan black 48 35 49 context exclusive /\* \*/ brown 36 50 spellcheck -
contrib/highlight/bp.syntax
rac2c2ea7 r07fdf203 4 4 context default 5 5 keyword whole NULL yellow 6 keyword whole try yellow 7 keyword whole catch yellow 8 keyword whole tentative yellow 6 9 7 10 keyword /\* brown … … 29 32 30 33 context exclusive [ ] brightblue black 34 keyword % brightcyan black 31 35 32 36 context exclusive /\* \*/ brown
Note:
See TracChangeset
for help on using the changeset viewer.