bixbite 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.markdown +49 -0
- data/VERSION +1 -0
- data/bin/bixbite +73 -0
- data/lib/bixbite.rb +13 -0
- data/lib/bixbite/command.rb +14 -0
- data/lib/bixbite/create.rb +76 -0
- data/template/Rakefile +25 -0
- data/template/assets/bixbite/Rakefile.rb +297 -0
- data/template/assets/naturaldocs/NaturalDocs/Config/Languages.txt +286 -0
- data/template/assets/naturaldocs/NaturalDocs/Config/Topics.txt +382 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/customizinglanguages.html +52 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/customizingtopics.html +74 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/documenting.html +58 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/documenting/reference.html +146 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/documenting/walkthrough.html +180 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/example/Default.css +528 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/example/NaturalDocs.js +204 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/examples.css +90 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/background.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/leftside.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/logo.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/overbody.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/overbodybg.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/overleftmargin.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/overmenu.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/overmenubg.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/header/rightside.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/logo.gif +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/about.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/background.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/bottomleft.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/bottomright.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/community.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/customizing.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/images/menu/using.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/index.html +9 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/javascript/BrowserStyles.js +77 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/javascript/PNGHandling.js +72 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/keywords.html +38 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/languages.html +32 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/menu.html +79 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/output.html +84 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/running.html +40 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/styles.css +290 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/styles.html +52 -0
- data/template/assets/naturaldocs/NaturalDocs/Help/troubleshooting.html +18 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/CSSGuide.txt +947 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/File Parsing.txt +83 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/HTMLTestCases.pm +269 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/Languages.txt +107 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/NDMarkup.txt +91 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/Symbol Management.txt +59 -0
- data/template/assets/naturaldocs/NaturalDocs/Info/images/Logo.png +0 -0
- data/template/assets/naturaldocs/NaturalDocs/JavaScript/NaturalDocs.js +836 -0
- data/template/assets/naturaldocs/NaturalDocs/License-GPL.txt +341 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/BinaryFile.pm +294 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Builder.pm +280 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Builder/Base.pm +348 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Builder/FramedHTML.pm +345 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Builder/HTML.pm +398 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Builder/HTMLBase.pm +3693 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ClassHierarchy.pm +860 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ClassHierarchy/Class.pm +412 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ClassHierarchy/File.pm +157 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ConfigFile.pm +497 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Constants.pm +165 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/DefineMembers.pm +100 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Error.pm +305 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/File.pm +540 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ImageReferenceTable.pm +383 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ImageReferenceTable/Reference.pm +44 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ImageReferenceTable/String.pm +110 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages.pm +1475 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/ActionScript.pm +1473 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Ada.pm +38 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Advanced.pm +828 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Advanced/Scope.pm +95 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Advanced/ScopeChange.pm +70 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Base.pm +832 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/CSharp.pm +1484 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/PLSQL.pm +319 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Pascal.pm +143 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Perl.pm +1370 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Prototype.pm +92 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Prototype/Parameter.pm +87 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Simple.pm +503 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Languages/Tcl.pm +219 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Menu.pm +3406 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Menu/Entry.pm +201 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/NDMarkup.pm +76 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Parser.pm +1331 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Parser/JavaDoc.pm +464 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Parser/Native.pm +1060 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Parser/ParsedTopic.pm +253 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Project.pm +1402 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Project/ImageFile.pm +160 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Project/SourceFile.pm +113 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/ReferenceString.pm +334 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Settings.pm +1418 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Settings/BuildTarget.pm +66 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB.pm +678 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB/Extension.pm +84 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB/File.pm +129 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB/Item.pm +201 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB/ItemDefinition.pm +45 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SourceDB/WatchedFileDefinitions.pm +159 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/StatusMessage.pm +102 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolString.pm +212 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable.pm +1984 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/File.pm +186 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/IndexElement.pm +522 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/Reference.pm +273 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/ReferenceTarget.pm +97 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/Symbol.pm +428 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/SymbolTable/SymbolDefinition.pm +96 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Topics.pm +1319 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Topics/Type.pm +151 -0
- data/template/assets/naturaldocs/NaturalDocs/Modules/NaturalDocs/Version.pm +384 -0
- data/template/assets/naturaldocs/NaturalDocs/NaturalDocs +400 -0
- data/template/assets/naturaldocs/NaturalDocs/NaturalDocs.bat +17 -0
- data/template/assets/naturaldocs/NaturalDocs/Styles/Default.css +767 -0
- data/template/assets/naturaldocs/NaturalDocs/Styles/Roman.css +765 -0
- data/template/assets/naturaldocs/NaturalDocs/Styles/Small.css +763 -0
- data/template/assets/utilities/pngout +0 -0
- data/template/deploy/public_html/.htaccess +0 -0
- data/template/documentation/js/.htaccess +0 -0
- data/template/src/html/.htaccess +76 -0
- data/template/src/html/css/cmn/global.css +96 -0
- data/template/src/html/css/cmn/ie.css +15 -0
- data/template/src/html/css/cmn/ie6.css +15 -0
- data/template/src/html/images/cmn/.htaccess +0 -0
- data/template/src/html/images/tmp/.htaccess +0 -0
- data/template/src/html/includes/debug.inc +5 -0
- data/template/src/html/includes/footer.inc +52 -0
- data/template/src/html/includes/header.inc +61 -0
- data/template/src/html/includes/html.inc +3 -0
- data/template/src/html/includes/namespace.inc +19 -0
- data/template/src/html/includes/page.inc +151 -0
- data/template/src/html/index.html +35 -0
- data/template/src/html/js/cmn/bootstrap.js +74 -0
- data/template/src/html/js/cmn/global.js +142 -0
- data/template/src/html/js/cmn/lib/LAB.js +348 -0
- data/template/src/html/min/.htaccess +4 -0
- data/template/src/html/min/MinifyCLI.php +19 -0
- data/template/src/html/min/README.txt +132 -0
- data/template/src/html/min/builder/_index.js +242 -0
- data/template/src/html/min/builder/bm.js +36 -0
- data/template/src/html/min/builder/index.php +182 -0
- data/template/src/html/min/builder/ocCheck.php +36 -0
- data/template/src/html/min/builder/rewriteTest.js +1 -0
- data/template/src/html/min/config.php +187 -0
- data/template/src/html/min/groupsConfig.php +34 -0
- data/template/src/html/min/index.php +66 -0
- data/template/src/html/min/lib/FirePHP.php +1370 -0
- data/template/src/html/min/lib/HTTP/ConditionalGet.php +348 -0
- data/template/src/html/min/lib/HTTP/Encoder.php +326 -0
- data/template/src/html/min/lib/JSMin.php +314 -0
- data/template/src/html/min/lib/JSMinPlus.php +1872 -0
- data/template/src/html/min/lib/Minify.php +532 -0
- data/template/src/html/min/lib/Minify/Build.php +103 -0
- data/template/src/html/min/lib/Minify/CSS.php +83 -0
- data/template/src/html/min/lib/Minify/CSS/Compressor.php +250 -0
- data/template/src/html/min/lib/Minify/CSS/UriRewriter.php +270 -0
- data/template/src/html/min/lib/Minify/Cache/APC.php +130 -0
- data/template/src/html/min/lib/Minify/Cache/File.php +125 -0
- data/template/src/html/min/lib/Minify/Cache/Memcache.php +137 -0
- data/template/src/html/min/lib/Minify/ClosureCompiler.php +85 -0
- data/template/src/html/min/lib/Minify/CommentPreserver.php +90 -0
- data/template/src/html/min/lib/Minify/Controller/Base.php +202 -0
- data/template/src/html/min/lib/Minify/Controller/Files.php +78 -0
- data/template/src/html/min/lib/Minify/Controller/Groups.php +94 -0
- data/template/src/html/min/lib/Minify/Controller/MinApp.php +132 -0
- data/template/src/html/min/lib/Minify/Controller/Page.php +82 -0
- data/template/src/html/min/lib/Minify/Controller/Version1.php +118 -0
- data/template/src/html/min/lib/Minify/HTML.php +245 -0
- data/template/src/html/min/lib/Minify/ImportProcessor.php +157 -0
- data/template/src/html/min/lib/Minify/Lines.php +131 -0
- data/template/src/html/min/lib/Minify/Logger.php +45 -0
- data/template/src/html/min/lib/Minify/Packer.php +37 -0
- data/template/src/html/min/lib/Minify/Source.php +187 -0
- data/template/src/html/min/lib/Minify/YUICompressor.php +139 -0
- data/template/src/html/min/lib/Solar/Dir.php +199 -0
- data/template/src/html/min/lib/closure-compiler.jar +0 -0
- data/template/src/html/min/lib/yuicompressor-2.4.2.jar +0 -0
- data/template/src/html/min/utils.php +90 -0
- data/template/src/templates/css/template.css +7 -0
- data/template/src/templates/js/template.js +72 -0
- data/template/src/templates/template.html +18 -0
- data/template/src/yaml/config.yml +46 -0
- data/template/src/yaml/deploy.yml +35 -0
- data/test/bixbite_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +278 -0
@@ -0,0 +1,286 @@
|
|
1
|
+
Format: 1.4
|
2
|
+
|
3
|
+
# This is the main Natural Docs languages file. If you change anything here,
|
4
|
+
# it will apply to EVERY PROJECT you use Natural Docs on. If you'd like to
|
5
|
+
# change something for just one project, edit the Languages.txt in its project
|
6
|
+
# directory instead.
|
7
|
+
|
8
|
+
|
9
|
+
#-------------------------------------------------------------------------------
|
10
|
+
# SYNTAX:
|
11
|
+
#
|
12
|
+
# Unlike other Natural Docs configuration files, in this file all comments
|
13
|
+
# MUST be alone on a line. Some languages deal with the # character, so you
|
14
|
+
# cannot put comments on the same line as content.
|
15
|
+
#
|
16
|
+
# Also, all lists are separated with spaces, not commas, again because some
|
17
|
+
# languages may need to use them.
|
18
|
+
#
|
19
|
+
# Language: [name]
|
20
|
+
# Defines a new language. Its name can use any characters.
|
21
|
+
#
|
22
|
+
# The language Shebang Script is special. It's entry is only used for
|
23
|
+
# extensions, and files with those extensions have their shebang (#!) lines
|
24
|
+
# read to determine the real language of the file. Extensionless files are
|
25
|
+
# always treated this way.
|
26
|
+
#
|
27
|
+
# The language Text File is also special. It's treated as one big comment
|
28
|
+
# so you can put Natural Docs content in them without special symbols. Also,
|
29
|
+
# if you don't specify a package separator, ignored prefixes, or enum value
|
30
|
+
# behavior, it will copy those settings from the language that is used most
|
31
|
+
# in the source tree.
|
32
|
+
#
|
33
|
+
# Extensions: [extension] [extension] ...
|
34
|
+
# Defines the file extensions of the language's source files. You can use *
|
35
|
+
# to mean any undefined extension.
|
36
|
+
#
|
37
|
+
# Shebang Strings: [string] [string] ...
|
38
|
+
# Defines a list of strings that can appear in the shebang (#!) line to
|
39
|
+
# designate that it's part of the language.
|
40
|
+
#
|
41
|
+
# Ignore Prefixes in Index: [prefix] [prefix] ...
|
42
|
+
# Ignore [Topic Type] Prefixes in Index: [prefix] [prefix] ...
|
43
|
+
# Specifies prefixes that should be ignored when sorting symbols in an
|
44
|
+
# index. Can be specified in general or for a specific topic type.
|
45
|
+
#
|
46
|
+
#------------------------------------------------------------------------------
|
47
|
+
# For basic language support only:
|
48
|
+
#
|
49
|
+
# Line Comments: [symbol] [symbol] ...
|
50
|
+
# Defines a space-separated list of symbols that are used for line comments,
|
51
|
+
# if any.
|
52
|
+
#
|
53
|
+
# Block Comments: [opening sym] [closing sym] [opening sym] [closing sym] ...
|
54
|
+
# Defines a space-separated list of symbol pairs that are used for block
|
55
|
+
# comments, if any.
|
56
|
+
#
|
57
|
+
# Package Separator: [symbol]
|
58
|
+
# Defines the default package separator symbol. The default is a dot.
|
59
|
+
#
|
60
|
+
# [Topic Type] Prototype Enders: [symbol] [symbol] ...
|
61
|
+
# When defined, Natural Docs will attempt to get a prototype from the code
|
62
|
+
# immediately following the topic type. It stops when it reaches one of
|
63
|
+
# these symbols. Use \n for line breaks.
|
64
|
+
#
|
65
|
+
# Line Extender: [symbol]
|
66
|
+
# Defines the symbol that allows a prototype to span multiple lines if
|
67
|
+
# normally a line break would end it.
|
68
|
+
#
|
69
|
+
# Enum Values: [global|under type|under parent]
|
70
|
+
# Defines how enum values are referenced. The default is global.
|
71
|
+
# global - Values are always global, referenced as 'value'.
|
72
|
+
# under type - Values are under the enum type, referenced as
|
73
|
+
# 'package.enum.value'.
|
74
|
+
# under parent - Values are under the enum's parent, referenced as
|
75
|
+
# 'package.value'.
|
76
|
+
#
|
77
|
+
# Perl Package: [perl package]
|
78
|
+
# Specifies the Perl package used to fine-tune the language behavior in ways
|
79
|
+
# too complex to do in this file.
|
80
|
+
#
|
81
|
+
#------------------------------------------------------------------------------
|
82
|
+
# For full language support only:
|
83
|
+
#
|
84
|
+
# Full Language Support: [perl package]
|
85
|
+
# Specifies the Perl package that has the parsing routines necessary for full
|
86
|
+
# language support.
|
87
|
+
#
|
88
|
+
#-------------------------------------------------------------------------------
|
89
|
+
|
90
|
+
# The following languages MUST be defined in this file:
|
91
|
+
#
|
92
|
+
# Text File, Shebang Script
|
93
|
+
|
94
|
+
# If you add a language that you think would be useful to other developers
|
95
|
+
# and should be included in Natural Docs by default, please e-mail it to
|
96
|
+
# languages [at] naturaldocs [dot] org.
|
97
|
+
|
98
|
+
|
99
|
+
Language: Text File
|
100
|
+
|
101
|
+
Extension: txt
|
102
|
+
|
103
|
+
|
104
|
+
Language: Shebang Script
|
105
|
+
|
106
|
+
Extension: cgi
|
107
|
+
|
108
|
+
|
109
|
+
Language: C/C++
|
110
|
+
|
111
|
+
Extensions: c cpp h hpp cxx hxx
|
112
|
+
Ignore Function Prefix in Index: ~
|
113
|
+
Line Comment: //
|
114
|
+
Block Comment: /* */
|
115
|
+
Package Separator: ::
|
116
|
+
Enum Values: Under parent
|
117
|
+
Class Prototype Enders: ; {
|
118
|
+
Function Prototype Enders: ; {
|
119
|
+
Variable Prototype Enders: ; =
|
120
|
+
|
121
|
+
|
122
|
+
Language: C#
|
123
|
+
|
124
|
+
Extension: cs
|
125
|
+
Ignore Prefix in Index: @
|
126
|
+
Full Language Support: NaturalDocs::Languages::CSharp
|
127
|
+
|
128
|
+
|
129
|
+
Language: Java
|
130
|
+
|
131
|
+
Extension: java
|
132
|
+
Line Comment: //
|
133
|
+
Block Comment: /* */
|
134
|
+
Enum Values: Under type
|
135
|
+
Function Prototype Ender: {
|
136
|
+
Variable Prototype Enders: ; =
|
137
|
+
|
138
|
+
|
139
|
+
Language: JavaScript
|
140
|
+
|
141
|
+
Extension: js
|
142
|
+
Line Comment: //
|
143
|
+
Block Comment: /* */
|
144
|
+
Enum Values: Under type
|
145
|
+
Function Prototype Ender: {
|
146
|
+
Variable Prototype Enders: ; =
|
147
|
+
|
148
|
+
|
149
|
+
Language: Perl
|
150
|
+
|
151
|
+
Extensions: pl pm
|
152
|
+
Shebang String: perl
|
153
|
+
Ignore Variable Prefixes in Index: $ @ % *
|
154
|
+
Full Language Support: NaturalDocs::Languages::Perl
|
155
|
+
|
156
|
+
|
157
|
+
Language: Python
|
158
|
+
|
159
|
+
Extension: py
|
160
|
+
Shebang String: python
|
161
|
+
Line Comment: #
|
162
|
+
Function Prototype Ender: :
|
163
|
+
Variable Prototype Ender: =
|
164
|
+
Line Extender: \
|
165
|
+
|
166
|
+
|
167
|
+
Language: PHP
|
168
|
+
|
169
|
+
Extensions: inc php php3 php4 phtml
|
170
|
+
Shebang String: php
|
171
|
+
Ignore Variable Prefix in Index: $
|
172
|
+
Line Comments: // #
|
173
|
+
Block Comment: /* */
|
174
|
+
Function Prototype Enders: ; {
|
175
|
+
Variable Prototype Enders: ; =
|
176
|
+
|
177
|
+
|
178
|
+
Language: SQL
|
179
|
+
|
180
|
+
Extension: sql
|
181
|
+
Line Comment: --
|
182
|
+
Block Comment: /* */
|
183
|
+
Enum Values: Global
|
184
|
+
Function Prototype Enders: , ; ) as As AS is Is IS
|
185
|
+
Variable Prototype Enders: , ; ) := default Default DEFAULT
|
186
|
+
Database Trigger Prototype Enders: begin Begin BEGIN as As AS
|
187
|
+
Database Index Prototype Enders: , ; )
|
188
|
+
Perl Package: NaturalDocs::Languages::PLSQL
|
189
|
+
|
190
|
+
|
191
|
+
Language: Visual Basic
|
192
|
+
|
193
|
+
Extensions: vb vbs bas cls frm
|
194
|
+
Line Comment: '
|
195
|
+
Enum Values: Under type
|
196
|
+
Function Prototype Ender: \n
|
197
|
+
Variable Prototype Enders: \n =
|
198
|
+
Line Extender: _
|
199
|
+
|
200
|
+
|
201
|
+
Language: Pascal
|
202
|
+
|
203
|
+
Extension: pas
|
204
|
+
Line Comment: //
|
205
|
+
Block Comments: { } (* *)
|
206
|
+
Function Prototype Ender: ;
|
207
|
+
Variable Prototype Enders: ; =
|
208
|
+
Perl Package: NaturalDocs::Languages::Pascal
|
209
|
+
|
210
|
+
|
211
|
+
Language: Assembly
|
212
|
+
|
213
|
+
Extension: asm
|
214
|
+
Line Comment: ;
|
215
|
+
Variable Prototype Ender: \n
|
216
|
+
Line Extender: \
|
217
|
+
|
218
|
+
|
219
|
+
Language: Ada
|
220
|
+
|
221
|
+
Extensions: ada ads adb
|
222
|
+
Line Comment: --
|
223
|
+
Function Prototype Enders: ; is Is IS
|
224
|
+
Variable Prototype Enders: ; :=
|
225
|
+
Perl Package: NaturalDocs::Languages::Ada
|
226
|
+
|
227
|
+
|
228
|
+
Language: Tcl
|
229
|
+
|
230
|
+
Extensions: tcl exp
|
231
|
+
Shebang Strings: tclsh wish expect
|
232
|
+
Line Comment: #
|
233
|
+
Package Separator: ::
|
234
|
+
Function Prototype Enders: ; {
|
235
|
+
Variable Prototype Enders: ; \n
|
236
|
+
Line Extender: \
|
237
|
+
Perl Package: NaturalDocs::Languages::Tcl
|
238
|
+
|
239
|
+
|
240
|
+
Language: Ruby
|
241
|
+
|
242
|
+
Extension: rb
|
243
|
+
Shebang String: ruby
|
244
|
+
Ignore Variable Prefixes in Index: $ @ @@
|
245
|
+
Line Comment: #
|
246
|
+
Enum Values: Under parent
|
247
|
+
Function Prototype Enders: ; \n
|
248
|
+
Variable Prototype Enders: ; \n =
|
249
|
+
Line Extender: \
|
250
|
+
|
251
|
+
|
252
|
+
Language: Makefile
|
253
|
+
|
254
|
+
Extensions: mk mak make
|
255
|
+
Line Comment: #
|
256
|
+
|
257
|
+
|
258
|
+
Language: ActionScript
|
259
|
+
|
260
|
+
Extensions: as mxml
|
261
|
+
Full Language Support: NaturalDocs::Languages::ActionScript
|
262
|
+
|
263
|
+
|
264
|
+
Language: ColdFusion
|
265
|
+
|
266
|
+
Extensions: cfm cfml cfc
|
267
|
+
Line Comment: //
|
268
|
+
Block Comments: <!--- ---> /* */
|
269
|
+
Function Prototype Enders: { <
|
270
|
+
|
271
|
+
|
272
|
+
Language: R
|
273
|
+
|
274
|
+
Extension: r
|
275
|
+
Line Comment: #
|
276
|
+
Function Prototype Enders: { ;
|
277
|
+
Variable Prototype Enders: <- = ; \n
|
278
|
+
|
279
|
+
|
280
|
+
Language: Fortran
|
281
|
+
|
282
|
+
Extensions: f90 f95 f03
|
283
|
+
Line Comment: !
|
284
|
+
Function Prototype Ender: \n
|
285
|
+
Variable Prototype Enders: \n = =>
|
286
|
+
Line Extender: &
|
@@ -0,0 +1,382 @@
|
|
1
|
+
Format: 1.4
|
2
|
+
|
3
|
+
# This is the main Natural Docs topics file. If you change anything here, it
|
4
|
+
# will apply to EVERY PROJECT you use Natural Docs on. If you'd like to
|
5
|
+
# change something for just one project, edit the Topics.txt in its project
|
6
|
+
# directory instead.
|
7
|
+
|
8
|
+
|
9
|
+
#-------------------------------------------------------------------------------
|
10
|
+
# SYNTAX:
|
11
|
+
#
|
12
|
+
# Topic Type: [name]
|
13
|
+
# Creates a new topic type. Each type gets its own index and behavior
|
14
|
+
# settings. Its name can have letters, numbers, spaces, and these
|
15
|
+
# charaters: - / . '
|
16
|
+
#
|
17
|
+
# The Enumeration type is special. It's indexed with Types but its members
|
18
|
+
# are indexed with Constants according to the rules in Languages.txt.
|
19
|
+
#
|
20
|
+
# Plural: [name]
|
21
|
+
# Sets the plural name of the topic type, if different.
|
22
|
+
#
|
23
|
+
# Keywords:
|
24
|
+
# [keyword]
|
25
|
+
# [keyword], [plural keyword]
|
26
|
+
# ...
|
27
|
+
# Defines a list of keywords for the topic type. They may only contain
|
28
|
+
# letters, numbers, and spaces and are not case sensitive. Plural keywords
|
29
|
+
# are used for list topics.
|
30
|
+
#
|
31
|
+
# Index: [yes|no]
|
32
|
+
# Whether the topics get their own index. Defaults to yes. Everything is
|
33
|
+
# included in the general index regardless of this setting.
|
34
|
+
#
|
35
|
+
# Scope: [normal|start|end|always global]
|
36
|
+
# How the topics affects scope. Defaults to normal.
|
37
|
+
# normal - Topics stay within the current scope.
|
38
|
+
# start - Topics start a new scope for all the topics beneath it,
|
39
|
+
# like class topics.
|
40
|
+
# end - Topics reset the scope back to global for all the topics
|
41
|
+
# beneath it.
|
42
|
+
# always global - Topics are defined as global, but do not change the scope
|
43
|
+
# for any other topics.
|
44
|
+
#
|
45
|
+
# Class Hierarchy: [yes|no]
|
46
|
+
# Whether the topics are part of the class hierarchy. Defaults to no.
|
47
|
+
#
|
48
|
+
# Page Title If First: [yes|no]
|
49
|
+
# Whether the topic's title becomes the page title if it's the first one in
|
50
|
+
# a file. Defaults to no.
|
51
|
+
#
|
52
|
+
# Break Lists: [yes|no]
|
53
|
+
# Whether list topics should be broken into individual topics in the output.
|
54
|
+
# Defaults to no.
|
55
|
+
#
|
56
|
+
# Can Group With: [type], [type], ...
|
57
|
+
# Defines a list of topic types that this one can possibly be grouped with.
|
58
|
+
# Defaults to none.
|
59
|
+
#-------------------------------------------------------------------------------
|
60
|
+
|
61
|
+
# The following topics MUST be defined in this file:
|
62
|
+
#
|
63
|
+
# Generic, Class, Interface, Section, File, Group, Function, Variable,
|
64
|
+
# Property, Type, Constant, Enumeration, Event, Delegate
|
65
|
+
|
66
|
+
# If you add something that you think would be useful to other developers
|
67
|
+
# and should be included in Natural Docs by default, please e-mail it to
|
68
|
+
# topics [at] naturaldocs [dot] org.
|
69
|
+
|
70
|
+
|
71
|
+
Topic Type: Generic
|
72
|
+
|
73
|
+
Index: No
|
74
|
+
Keywords:
|
75
|
+
topic, topics
|
76
|
+
about, list
|
77
|
+
|
78
|
+
|
79
|
+
Topic Type: Class
|
80
|
+
|
81
|
+
Plural: Classes
|
82
|
+
Scope: Start
|
83
|
+
Class Hierarchy: Yes
|
84
|
+
Page Title If First: Yes
|
85
|
+
Can Group With: Interfaces
|
86
|
+
|
87
|
+
Keywords:
|
88
|
+
class, classes
|
89
|
+
structure, structures
|
90
|
+
struct, structs
|
91
|
+
package, packages
|
92
|
+
namespace, namespaces
|
93
|
+
|
94
|
+
|
95
|
+
Topic Type: Interface
|
96
|
+
|
97
|
+
Plural: Interfaces
|
98
|
+
Scope: Start
|
99
|
+
Class Hierarchy: Yes
|
100
|
+
Page Title If First: Yes
|
101
|
+
Can Group With: Classes
|
102
|
+
|
103
|
+
Keywords:
|
104
|
+
interface, interfaces
|
105
|
+
|
106
|
+
|
107
|
+
Topic Type: Section
|
108
|
+
|
109
|
+
Plural: Sections
|
110
|
+
Index: No
|
111
|
+
Scope: End
|
112
|
+
Page Title If First: Yes
|
113
|
+
|
114
|
+
Keywords:
|
115
|
+
section
|
116
|
+
title
|
117
|
+
|
118
|
+
|
119
|
+
Topic Type: File
|
120
|
+
|
121
|
+
Plural: Files
|
122
|
+
Scope: Always global
|
123
|
+
Page Title If First: Yes
|
124
|
+
|
125
|
+
Keywords:
|
126
|
+
file, files
|
127
|
+
program, programs
|
128
|
+
script, scripts
|
129
|
+
document, documents
|
130
|
+
doc, docs
|
131
|
+
header, headers
|
132
|
+
|
133
|
+
|
134
|
+
Topic Type: Group
|
135
|
+
|
136
|
+
Plural: Groups
|
137
|
+
Index: No
|
138
|
+
|
139
|
+
Keywords:
|
140
|
+
group
|
141
|
+
|
142
|
+
|
143
|
+
Topic Type: Function
|
144
|
+
|
145
|
+
Plural: Functions
|
146
|
+
Break Lists: Yes
|
147
|
+
Can Group With: Properties
|
148
|
+
|
149
|
+
Keywords:
|
150
|
+
function, functions
|
151
|
+
func, funcs
|
152
|
+
procedure, procedures
|
153
|
+
proc, procs
|
154
|
+
routine, routines
|
155
|
+
subroutine, subroutines
|
156
|
+
sub, subs
|
157
|
+
method, methods
|
158
|
+
callback, callbacks
|
159
|
+
constructor, constructors
|
160
|
+
destructor, destructors
|
161
|
+
operator, operators
|
162
|
+
|
163
|
+
|
164
|
+
Topic Type: Variable
|
165
|
+
|
166
|
+
Plural: Variables
|
167
|
+
Can Group With: Types, Constants, Macros, Enumerations
|
168
|
+
|
169
|
+
Keywords:
|
170
|
+
variable, variables
|
171
|
+
var, vars
|
172
|
+
integer, integers
|
173
|
+
int, ints
|
174
|
+
uint, uints
|
175
|
+
long, longs
|
176
|
+
ulong, ulongs
|
177
|
+
short, shorts
|
178
|
+
ushort, ushorts
|
179
|
+
byte, bytes
|
180
|
+
ubyte, ubytes
|
181
|
+
sbyte, sbytes
|
182
|
+
float, floats
|
183
|
+
double, doubles
|
184
|
+
real, reals
|
185
|
+
decimal, decimals
|
186
|
+
scalar, scalars
|
187
|
+
array, arrays
|
188
|
+
arrayref, arrayrefs
|
189
|
+
hash, hashes
|
190
|
+
hashref, hashrefs
|
191
|
+
bool, bools
|
192
|
+
boolean, booleans
|
193
|
+
flag, flags
|
194
|
+
bit, bits
|
195
|
+
bitfield, bitfields
|
196
|
+
field, fields
|
197
|
+
pointer, pointers
|
198
|
+
ptr, ptrs
|
199
|
+
reference, references
|
200
|
+
ref, refs
|
201
|
+
object, objects
|
202
|
+
obj, objs
|
203
|
+
character, characters
|
204
|
+
wcharacter, wcharacters
|
205
|
+
char, chars
|
206
|
+
wchar, wchars
|
207
|
+
string, strings
|
208
|
+
wstring, wstrings
|
209
|
+
str, strs
|
210
|
+
wstr, wstrs
|
211
|
+
handle, handles
|
212
|
+
|
213
|
+
|
214
|
+
Topic Type: Property
|
215
|
+
|
216
|
+
Plural: Properties
|
217
|
+
Can Group With: Functions
|
218
|
+
|
219
|
+
Keywords:
|
220
|
+
property, properties
|
221
|
+
prop, props
|
222
|
+
|
223
|
+
|
224
|
+
Topic Type: Type
|
225
|
+
|
226
|
+
Plural: Types
|
227
|
+
Can Group With: Variables, Constants, Macros, Enumerations
|
228
|
+
|
229
|
+
Keywords:
|
230
|
+
type, types
|
231
|
+
typedef, typedefs
|
232
|
+
|
233
|
+
|
234
|
+
Topic Type: Constant
|
235
|
+
|
236
|
+
Plural: Constants
|
237
|
+
Can Group With: Variables, Types, Macros, Enumerations
|
238
|
+
|
239
|
+
Keywords:
|
240
|
+
constant, constants
|
241
|
+
const, consts
|
242
|
+
|
243
|
+
|
244
|
+
Topic Type: Enumeration
|
245
|
+
|
246
|
+
Plural: Enumerations
|
247
|
+
Index: No
|
248
|
+
Can Group With: Variables, Types, Macros, Constants
|
249
|
+
|
250
|
+
Keywords:
|
251
|
+
enum, enums
|
252
|
+
enumeration, enumerations
|
253
|
+
|
254
|
+
|
255
|
+
Topic Type: Event
|
256
|
+
|
257
|
+
Plural: Events
|
258
|
+
Keywords:
|
259
|
+
event, events
|
260
|
+
|
261
|
+
|
262
|
+
Topic Type: Delegate
|
263
|
+
|
264
|
+
Plural: Delegates
|
265
|
+
Keywords:
|
266
|
+
delegate, delegates
|
267
|
+
|
268
|
+
|
269
|
+
Topic Type: Macro
|
270
|
+
|
271
|
+
Plural: Macros
|
272
|
+
Can Group With: Variables, Types, Constants
|
273
|
+
|
274
|
+
Keywords:
|
275
|
+
define, defines
|
276
|
+
def, defs
|
277
|
+
macro, macros
|
278
|
+
|
279
|
+
|
280
|
+
Topic Type: Database
|
281
|
+
|
282
|
+
Plural: Databases
|
283
|
+
Page Title If First: Yes
|
284
|
+
|
285
|
+
Keywords:
|
286
|
+
database, databases
|
287
|
+
db, dbs
|
288
|
+
|
289
|
+
|
290
|
+
Topic Type: Database Table
|
291
|
+
|
292
|
+
Plural: Database Tables
|
293
|
+
Scope: Start
|
294
|
+
Page Title If First: Yes
|
295
|
+
|
296
|
+
Keywords:
|
297
|
+
table, tables
|
298
|
+
database table, database tables
|
299
|
+
databasetable, databasetables
|
300
|
+
db table, db tables
|
301
|
+
dbtable, dbtables
|
302
|
+
|
303
|
+
|
304
|
+
Topic Type: Database View
|
305
|
+
|
306
|
+
Plural: Database Views
|
307
|
+
Scope: Start
|
308
|
+
Page Title If First: Yes
|
309
|
+
|
310
|
+
Keywords:
|
311
|
+
view, views
|
312
|
+
database view, database views
|
313
|
+
databaseview, databaseviews
|
314
|
+
db view, db views
|
315
|
+
dbview, dbviews
|
316
|
+
|
317
|
+
|
318
|
+
Topic Type: Database Index
|
319
|
+
|
320
|
+
Plural: Database Indexes
|
321
|
+
Keywords:
|
322
|
+
index, indexes
|
323
|
+
index, indices
|
324
|
+
database index, database indexes
|
325
|
+
database index, database indices
|
326
|
+
databaseindex, databaseindexes
|
327
|
+
databaseindex, databaseindices
|
328
|
+
db index, db indexes
|
329
|
+
db index, db indices
|
330
|
+
dbindex, dbindexes
|
331
|
+
dbindex, dbindices
|
332
|
+
key, keys
|
333
|
+
database key, database keys
|
334
|
+
databasekey, databasekeys
|
335
|
+
db key, db keys
|
336
|
+
dbkey, dbkeys
|
337
|
+
primary key, primary keys
|
338
|
+
primarykey, primarykeys
|
339
|
+
database primary key, database primary keys
|
340
|
+
databaseprimarykey, databaseprimarykeys
|
341
|
+
db primary key, db primary keys
|
342
|
+
dbprimarykey, dbprimarykeys
|
343
|
+
|
344
|
+
|
345
|
+
Topic Type: Database Cursor
|
346
|
+
|
347
|
+
Plural: Database Cursors
|
348
|
+
Keywords:
|
349
|
+
cursor, cursors
|
350
|
+
database cursor, database cursors
|
351
|
+
databasecursor, databasecursors
|
352
|
+
db cursor, db cursors
|
353
|
+
dbcursor, dbcursors
|
354
|
+
|
355
|
+
|
356
|
+
Topic Type: Database Trigger
|
357
|
+
|
358
|
+
Plural: Database Triggers
|
359
|
+
Keywords:
|
360
|
+
trigger, triggers
|
361
|
+
database trigger, database triggers
|
362
|
+
databasetrigger, databasetriggers
|
363
|
+
db trigger, db triggers
|
364
|
+
dbtrigger, dbtriggers
|
365
|
+
|
366
|
+
|
367
|
+
Topic Type: Cookie
|
368
|
+
|
369
|
+
Plural: Cookies
|
370
|
+
Scope: Always global
|
371
|
+
|
372
|
+
Keywords:
|
373
|
+
cookie, cookies
|
374
|
+
|
375
|
+
|
376
|
+
Topic Type: Build Target
|
377
|
+
|
378
|
+
Plural: Build Targets
|
379
|
+
Keywords:
|
380
|
+
target, targets
|
381
|
+
build target, build targets
|
382
|
+
buildtarget, buildtargets
|