gtksourceview3 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +59 -0
- data/ext/gtksourceview3/depend +6 -0
- data/ext/gtksourceview3/extconf.rb +67 -0
- data/ext/gtksourceview3/gtksourceview3.def +2 -0
- data/ext/gtksourceview3/rbgtksource.c +53 -0
- data/ext/gtksourceview3/rbgtksourcebuffer.c +318 -0
- data/ext/gtksourceview3/rbgtksourcegutter.c +82 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderer.c +143 -0
- data/ext/gtksourceview3/rbgtksourcegutterrendererpixbuf.c +42 -0
- data/ext/gtksourceview3/rbgtksourcegutterrenderertext.c +40 -0
- data/ext/gtksourceview3/rbgtksourcelanguage.c +124 -0
- data/ext/gtksourceview3/rbgtksourcelanguagemanager.c +114 -0
- data/ext/gtksourceview3/rbgtksourcemark.c +85 -0
- data/ext/gtksourceview3/rbgtksourcemarkattributes.c +77 -0
- data/ext/gtksourceview3/rbgtksourceprintcompositor.c +171 -0
- data/ext/gtksourceview3/rbgtksourcestyle.c +42 -0
- data/ext/gtksourceview3/rbgtksourcestylescheme.c +72 -0
- data/ext/gtksourceview3/rbgtksourcestyleschememanager.c +140 -0
- data/ext/gtksourceview3/rbgtksourceundomanager.c +83 -0
- data/ext/gtksourceview3/rbgtksourceview.c +94 -0
- data/ext/gtksourceview3/rbgtksourceview3conversions.h +50 -0
- data/ext/gtksourceview3/rbgtksourceview3private.h +53 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtksourceview3.so +0 -0
- data/lib/2.1/gtksourceview3.so +0 -0
- data/lib/2.2/gtksourceview3.so +0 -0
- data/lib/gtksourceview3.rb +20 -0
- data/lib/gtksourceview3/deprecated.rb +47 -0
- data/sample/sourcelanguagemanager.rb +21 -0
- data/sample/test.rb +32 -0
- data/test/run-test.rb +44 -0
- data/test/test_mark_attributes.rb +26 -0
- data/test/test_source_gutter_renderer.rb +33 -0
- data/test/test_source_language_manager.rb +46 -0
- data/test/test_source_view.rb +57 -0
- data/vendor/local/bin/libgtksourceview-3.0-1.dll +0 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/completion-providers/words/gtksourcecompletionwords.h +65 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksource.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcebuffer.h +213 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletion.h +142 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioncontext.h +95 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletioninfo.h +78 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionitem.h +70 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionproposal.h +97 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcecompletionprovider.h +137 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceencoding.h +54 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefile.h +115 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefileloader.h +122 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcefilesaver.h +147 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutter.h +90 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderer.h +229 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrendererpixbuf.h +87 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcegutterrenderertext.h +83 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguage.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcelanguagemanager.h +84 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemark.h +71 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcemarkattributes.h +100 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceprintcompositor.h +175 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchcontext.h +133 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcesearchsettings.h +85 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyle.h +45 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestylescheme.h +109 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcestyleschememanager.h +86 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourcetypes.h +101 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceundomanager.h +75 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceutils.h +34 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview-typebuiltins.h +88 -0
- data/vendor/local/include/gtksourceview-3.0/gtksourceview/gtksourceview.h +213 -0
- data/vendor/local/lib/girepository-1.0/GtkSource-3.0.typelib +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.dll.a +0 -0
- data/vendor/local/lib/libgtksourceview-3.0.la +41 -0
- data/vendor/local/lib/locale/ar/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/as/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ast/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/az/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/be/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bn_IN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/bs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ca@valencia/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cs/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/cy/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/da/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/de/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/dz/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/el/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en@shaw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_CA/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/en_GB/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eo/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/es/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/et/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/eu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/fr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ga/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/gu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/he/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/hu/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/id/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/it/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ja/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/kn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ko/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/lv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mai/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ml/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/mr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ms/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nb/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ne/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/nn/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/oc/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/or/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pa/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/pt_BR/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ro/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ru/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/rw/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/si/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sl/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sq/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sr@latin/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/sv/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ta/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/te/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tg/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/th/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/tr/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/ug/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/uk/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/vi/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/xh/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_CN/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_HK/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/locale/zh_TW/LC_MESSAGES/gtksourceview-3.0.mo +0 -0
- data/vendor/local/lib/pkgconfig/gtksourceview-3.0.pc +12 -0
- data/vendor/local/share/gir-1.0/GtkSource-3.0.gir +11360 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceBuffer.html +2143 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletion.html +1129 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionContext.html +397 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionInfo.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionItem.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProposal.html +572 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionProvider.html +750 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceCompletionWords.html +345 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceEncoding.html +366 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFile.html +563 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileLoader.html +769 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceFileSaver.html +962 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutter.html +490 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRenderer.html +1700 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererPixbuf.html +468 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceGutterRendererText.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguage.html +584 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceLanguageManager.html +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMark.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceMarkAttributes.html +897 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourcePrintCompositor.html +2149 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchContext.html +1116 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceSearchSettings.html +606 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyle.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleScheme.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceStyleSchemeManager.html +463 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceUndoManager.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/GtkSourceView.html +1990 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-0.html +43 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-10.html +195 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-12.html +39 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-14.html +299 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-3-4.html +35 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-deprecated.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/api-index-full.html +2187 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch01.html +119 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/ch02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0-GtkSourceUtils.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/gtksourceview-3.0.devhelp2 +601 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/index.sgml +882 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-reference.html +873 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/lang-tutorial.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/object-tree.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style-reference.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtksourceview-3.0/up.png +0 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/R.lang +2199 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/actionscript.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ada.lang +221 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ansforth94.lang +729 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/asp.lang +1097 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/automake.lang +330 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/awk.lang +138 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bennugd.lang +267 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bibtex.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/bluespec.lang +188 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/boo.lang +257 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/c.lang +332 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cg.lang +232 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/changelog.lang +93 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/chdr.lang +43 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cmake.lang +408 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cobol.lang +647 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cpp.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/csharp.lang +282 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/css.lang +542 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/cuda.lang +292 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/d.lang +318 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/def.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/desktop.lang +300 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/diff.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/docbook.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dosbatch.lang +167 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dot.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dpatch.lang +48 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/dtd.lang +140 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/eiffel.lang +239 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/erlang.lang +258 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fcl.lang +113 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/forth.lang +235 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fortran.lang +591 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/fsharp.lang +325 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gap.lang +85 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gdb-log.lang +152 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/glsl.lang +483 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/go.lang +275 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtk-doc.lang +91 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/gtkrc.lang +116 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haddock.lang +162 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell-literate.lang +59 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/haskell.lang +228 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/html.lang +281 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl-exelis.lang +620 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/idl.lang +154 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/imagej.lang +784 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ini.lang +95 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/j.lang +240 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/java.lang +190 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/javascript.lang +339 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/json.lang +123 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/julia.lang +378 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.dtd +73 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language.rng +373 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/language2.rng +482 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/latex.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lex.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/libtool.lang +56 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/llvm.lang +315 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/lua.lang +157 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/m4.lang +1375 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/makefile.lang +193 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mallard.lang +124 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/markdown.lang +402 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/matlab.lang +171 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mediawiki.lang +327 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/modelica.lang +262 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/mxml.lang +65 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nemerle.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/netrexx.lang +319 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/nsis.lang +88 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objc.lang +120 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/objj.lang +128 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocaml.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ocl.lang +139 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/octave.lang +859 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ooc.lang +265 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opal.lang +343 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/opencl.lang +600 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pascal.lang +268 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/perl.lang +1045 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/php.lang +363 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/pkgconfig.lang +62 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/po.lang +94 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/prolog.lang +249 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/protobuf.lang +101 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/puppet.lang +697 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python.lang +472 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/python3.lang +192 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rpmspec.lang +212 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/rst.lang +142 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/ruby.lang +750 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scala.lang +384 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scheme.lang +302 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/scilab.lang +209 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sh.lang +499 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sml.lang +201 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sparql.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sql.lang +618 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/sweave.lang +67 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/systemverilog.lang +263 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/t2t.lang +150 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/tcl.lang +146 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/texinfo.lang +448 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vala.lang +365 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vbnet.lang +245 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/verilog.lang +476 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/vhdl.lang +248 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xml.lang +220 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/xslt.lang +108 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yacc.lang +177 -0
- data/vendor/local/share/gtksourceview-3.0/language-specs/yaml.lang +214 -0
- data/vendor/local/share/gtksourceview-3.0/styles/classic.xml +121 -0
- data/vendor/local/share/gtksourceview-3.0/styles/cobalt.xml +148 -0
- data/vendor/local/share/gtksourceview-3.0/styles/kate.xml +171 -0
- data/vendor/local/share/gtksourceview-3.0/styles/oblivion.xml +129 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-dark.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/solarized-light.xml +101 -0
- data/vendor/local/share/gtksourceview-3.0/styles/styles.rng +142 -0
- data/vendor/local/share/gtksourceview-3.0/styles/tango.xml +130 -0
- data/vendor/local/share/license/gtksourceview/AUTHORS +13 -0
- data/vendor/local/share/license/gtksourceview/COPYING +504 -0
- metadata +389 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
This file is part of GtkSourceView
|
5
|
+
|
6
|
+
Author: Paolo Maggi <paolo.maggi@polito.it>
|
7
|
+
Copyright (C) 2003 Paolo Maggi <paolo.maggi@polito.it>
|
8
|
+
|
9
|
+
GtkSourceView is free software; you can redistribute it and/or
|
10
|
+
modify it under the terms of the GNU Lesser General Public
|
11
|
+
License as published by the Free Software Foundation; either
|
12
|
+
version 2.1 of the License, or (at your option) any later version.
|
13
|
+
|
14
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General Public
|
20
|
+
License along with this library; if not, write to the Free Software
|
21
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
22
|
+
|
23
|
+
-->
|
24
|
+
<language id="diff" _name="Diff" version="2.0" _section="Other">
|
25
|
+
<metadata>
|
26
|
+
<property name="mimetypes">text/x-diff;text/x-patch</property>
|
27
|
+
<property name="globs">*.diff;*.patch</property>
|
28
|
+
</metadata>
|
29
|
+
|
30
|
+
<styles>
|
31
|
+
<style id="added-line" _name="Added line"/> <!--Others 2-->
|
32
|
+
<style id="removed-line" _name="Removed line"/> <!--Others 3-->
|
33
|
+
<style id="changed-line" _name="Changed line"/> <!--Preprocessor-->
|
34
|
+
<style id="special-case" _name="Special case"/> <!--String-->
|
35
|
+
<style id="location" _name="Location"/> <!--Keyword-->
|
36
|
+
<style id="ignore" _name="Ignore" map-to="def:comment"/>
|
37
|
+
<style id="diff-file" _name=""/> <!--Data Type-->
|
38
|
+
</styles>
|
39
|
+
|
40
|
+
<definitions>
|
41
|
+
<define-regex id="diff-file">^(diff |\+\+\+ |Index: |==== |\*\*\* |--- )</define-regex>
|
42
|
+
|
43
|
+
<context id="diff">
|
44
|
+
<include>
|
45
|
+
<context id="diff-file" style-ref="diff-file" end-at-line-end="true">
|
46
|
+
<start>\%{diff-file}</start>
|
47
|
+
</context>
|
48
|
+
|
49
|
+
<context id="removed-line" style-ref="removed-line">
|
50
|
+
<match>^(<|-).*$</match>
|
51
|
+
</context>
|
52
|
+
|
53
|
+
<context id="added-line" style-ref="added-line">
|
54
|
+
<match>^(\+|>).*$</match>
|
55
|
+
</context>
|
56
|
+
|
57
|
+
<context id="changed-line" style-ref="changed-line">
|
58
|
+
<match>^\! .*$</match>
|
59
|
+
</context>
|
60
|
+
|
61
|
+
<context id="location" style-ref="location" end-at-line-end="true">
|
62
|
+
<start>^((@@)|[0-9]|\*\*\*\*)</start>
|
63
|
+
<include>
|
64
|
+
<context ref="def:escape"/>
|
65
|
+
</include>
|
66
|
+
</context>
|
67
|
+
|
68
|
+
<context id="special-case" style-ref="special-case">
|
69
|
+
<prefix>^</prefix>
|
70
|
+
<suffix>\b</suffix>
|
71
|
+
<keyword>Only in .*</keyword>
|
72
|
+
<keyword>Files .* and .* are identical$</keyword>
|
73
|
+
<keyword>Files .* and .* differ$</keyword>
|
74
|
+
<keyword>Binary files .* and .* differ$</keyword>
|
75
|
+
<keyword>File .* is a .* while file .* is a .*</keyword>
|
76
|
+
<keyword>No newline at end of file .*</keyword>
|
77
|
+
</context>
|
78
|
+
|
79
|
+
<context style-ref="ignore" end-at-line-end="true">
|
80
|
+
<start>^\S</start>
|
81
|
+
</context>
|
82
|
+
</include>
|
83
|
+
</context>
|
84
|
+
</definitions>
|
85
|
+
</language>
|
@@ -0,0 +1,476 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
This file is part of GtkSourceView
|
5
|
+
|
6
|
+
Author: Joachim Noreiko <jnoreiko@yahoo.com>
|
7
|
+
Copyright (C) 2006, 2007 Joachim Noreiko <jnoreiko@yahoo.com>
|
8
|
+
|
9
|
+
GtkSourceView is free software; you can redistribute it and/or
|
10
|
+
modify it under the terms of the GNU Lesser General Public
|
11
|
+
License as published by the Free Software Foundation; either
|
12
|
+
version 2.1 of the License, or (at your option) any later version.
|
13
|
+
|
14
|
+
GtkSourceView is distributed in the hope that it will be useful,
|
15
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
+
Lesser General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU Lesser General Public
|
20
|
+
License along with this library; if not, write to the Free Software
|
21
|
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
22
|
+
|
23
|
+
-->
|
24
|
+
<language id="docbook" _name="DocBook" version="2.0" _section="Markup">
|
25
|
+
<metadata>
|
26
|
+
<property name="mimetypes">application/docbook+xml</property>
|
27
|
+
<property name="globs">*.docbook</property>
|
28
|
+
<property name="block-comment-start"><!--</property>
|
29
|
+
<property name="block-comment-end">--></property>
|
30
|
+
</metadata>
|
31
|
+
|
32
|
+
<styles>
|
33
|
+
<style id="header-elements" _name="Header Elements" map-to="def:keyword"/>
|
34
|
+
<style id="formatting-elements" _name="Formatting Elements" map-to="def:keyword"/>
|
35
|
+
<style id="gui-elements" _name="GUI Elements" map-to="def:keyword"/>
|
36
|
+
<style id="structural-elements" _name="Structural Elements" map-to="def:keyword"/>
|
37
|
+
</styles>
|
38
|
+
|
39
|
+
<definitions>
|
40
|
+
|
41
|
+
<context id="header-elements" once-only="true" style-ref="header-elements">
|
42
|
+
<suffix>\b(?!\s*=)</suffix>
|
43
|
+
<keyword>abstract</keyword>
|
44
|
+
<keyword>articleinfo</keyword>
|
45
|
+
<keyword>article</keyword>
|
46
|
+
<keyword>bookinfo</keyword>
|
47
|
+
<keyword>authorgroup</keyword>
|
48
|
+
<keyword>author</keyword>
|
49
|
+
<keyword>affiliation</keyword>
|
50
|
+
<keyword>copyright</keyword>
|
51
|
+
<keyword>date</keyword>
|
52
|
+
<keyword>email</keyword>
|
53
|
+
<keyword>firstname</keyword>
|
54
|
+
<keyword>orgname</keyword>
|
55
|
+
<keyword>publishername</keyword>
|
56
|
+
<keyword>publisher</keyword>
|
57
|
+
<keyword>pubdate</keyword>
|
58
|
+
<keyword>pubsnumber</keyword>
|
59
|
+
<keyword>releaseinfo</keyword>
|
60
|
+
<keyword>surname</keyword>
|
61
|
+
<keyword>revdescription</keyword>
|
62
|
+
<keyword>revhistory</keyword>
|
63
|
+
<keyword>revision</keyword>
|
64
|
+
<keyword>revnumber</keyword>
|
65
|
+
</context>
|
66
|
+
|
67
|
+
<context id="formatting-elements" once-only="true" style-ref="formatting-elements">
|
68
|
+
<suffix>\b(?!\s*=)</suffix>
|
69
|
+
<keyword>caution</keyword>
|
70
|
+
<keyword>command</keyword>
|
71
|
+
<keyword>computeroutput</keyword>
|
72
|
+
<keyword>filename</keyword>
|
73
|
+
<keyword>firstterm</keyword>
|
74
|
+
<keyword>link</keyword>
|
75
|
+
<keyword>note</keyword>
|
76
|
+
<keyword>option</keyword>
|
77
|
+
<keyword>para</keyword>
|
78
|
+
<keyword>remark</keyword>
|
79
|
+
<keyword>replaceable</keyword>
|
80
|
+
<keyword>tip</keyword>
|
81
|
+
<keyword>ulink</keyword>
|
82
|
+
<keyword>variablelist</keyword>
|
83
|
+
<keyword>varlistentry</keyword>
|
84
|
+
<keyword>warning</keyword>
|
85
|
+
<keyword>xref</keyword>
|
86
|
+
</context>
|
87
|
+
|
88
|
+
<context id="gui-elements" once-only="true" style-ref="gui-elements">
|
89
|
+
<suffix>\b(?!\s*=)</suffix>
|
90
|
+
<keyword>accel</keyword>
|
91
|
+
<keyword>application</keyword>
|
92
|
+
<keyword>guibutton</keyword>
|
93
|
+
<keyword>guiicon</keyword>
|
94
|
+
<keyword>guilabel</keyword>
|
95
|
+
<keyword>guimenuitem</keyword>
|
96
|
+
<keyword>guimenu</keyword>
|
97
|
+
<keyword>guisubmenu</keyword>
|
98
|
+
<keyword>interface</keyword>
|
99
|
+
<keyword>keycap</keyword>
|
100
|
+
<keyword>keycombo</keyword>
|
101
|
+
<keyword>keysym</keyword>
|
102
|
+
<keyword>menuchoice</keyword>
|
103
|
+
</context>
|
104
|
+
|
105
|
+
<context id="structural-elements" once-only="true" style-ref="structural-elements">
|
106
|
+
<suffix>\b(?!\s*=)</suffix>
|
107
|
+
<keyword>appendix</keyword>
|
108
|
+
<keyword>book</keyword>
|
109
|
+
<keyword>chapter</keyword>
|
110
|
+
<keyword>anchor</keyword>
|
111
|
+
<keyword>citetitle</keyword>
|
112
|
+
<keyword>colspec</keyword>
|
113
|
+
<keyword>emphasis</keyword>
|
114
|
+
<keyword>entry</keyword>
|
115
|
+
<keyword>figure</keyword>
|
116
|
+
<keyword>glossary</keyword>
|
117
|
+
<keyword>glossdef</keyword>
|
118
|
+
<keyword>glossentry</keyword>
|
119
|
+
<keyword>glossterm</keyword>
|
120
|
+
<keyword>sect1</keyword>
|
121
|
+
<keyword>sect2</keyword>
|
122
|
+
<keyword>sect3</keyword>
|
123
|
+
<keyword>sect4</keyword>
|
124
|
+
<keyword>section</keyword>
|
125
|
+
|
126
|
+
<keyword>highlights</keyword>
|
127
|
+
<keyword>holder</keyword>
|
128
|
+
<keyword>imagedata</keyword>
|
129
|
+
<keyword>imageobject</keyword>
|
130
|
+
<keyword>indexterm</keyword>
|
131
|
+
<keyword>informaltable</keyword>
|
132
|
+
<keyword>inlinemediaobject</keyword>
|
133
|
+
<keyword>itemizedlist</keyword>
|
134
|
+
<keyword>literal</keyword>
|
135
|
+
<keyword>legalnotice</keyword>
|
136
|
+
<keyword>listitem</keyword>
|
137
|
+
<keyword>mediaobject</keyword>
|
138
|
+
<keyword>orderedlist</keyword>
|
139
|
+
<keyword>phrase</keyword>
|
140
|
+
<keyword>primary</keyword>
|
141
|
+
<keyword>programlisting</keyword>
|
142
|
+
|
143
|
+
<keyword>row</keyword>
|
144
|
+
<keyword>screen</keyword>
|
145
|
+
<keyword>screenshot</keyword>
|
146
|
+
<keyword>secondary</keyword>
|
147
|
+
<keyword>see</keyword>
|
148
|
+
<keyword>shortcut</keyword>
|
149
|
+
|
150
|
+
<keyword>table</keyword>
|
151
|
+
<keyword>tbody</keyword>
|
152
|
+
<keyword>term</keyword>
|
153
|
+
<keyword>tertiary</keyword>
|
154
|
+
<keyword>textobject</keyword>
|
155
|
+
<keyword>tgroup</keyword>
|
156
|
+
<keyword>thead</keyword>
|
157
|
+
<keyword>titleabbrev</keyword>
|
158
|
+
<keyword>title</keyword>
|
159
|
+
<keyword>uri</keyword>
|
160
|
+
<keyword>userinput</keyword>
|
161
|
+
<keyword>year</keyword>
|
162
|
+
|
163
|
+
<keyword>ackno</keyword>
|
164
|
+
<keyword>acronym</keyword>
|
165
|
+
<keyword>action</keyword>
|
166
|
+
<keyword>address</keyword>
|
167
|
+
<keyword>answer</keyword>
|
168
|
+
<keyword>appendixinfo</keyword>
|
169
|
+
<keyword>areaset</keyword>
|
170
|
+
<keyword>areaspec</keyword>
|
171
|
+
<keyword>area</keyword>
|
172
|
+
<keyword>arg</keyword>
|
173
|
+
<keyword>artpagenums</keyword>
|
174
|
+
<keyword>attribution</keyword>
|
175
|
+
<keyword>audiodata</keyword>
|
176
|
+
<keyword>audioobject</keyword>
|
177
|
+
<keyword>authorblurb</keyword>
|
178
|
+
<keyword>authorinitials</keyword>
|
179
|
+
<keyword>beginpage</keyword>
|
180
|
+
<keyword>bibliocoverage</keyword>
|
181
|
+
<keyword>bibliodiv</keyword>
|
182
|
+
<keyword>biblioentry</keyword>
|
183
|
+
<keyword>bibliography</keyword>
|
184
|
+
<keyword>bibliographyinfo</keyword>
|
185
|
+
<keyword>biblioid</keyword>
|
186
|
+
<keyword>bibliomisc</keyword>
|
187
|
+
<keyword>bibliomixed</keyword>
|
188
|
+
<keyword>bibliomset</keyword>
|
189
|
+
<keyword>bibliorelation</keyword>
|
190
|
+
<keyword>biblioset</keyword>
|
191
|
+
<keyword>bibliosource</keyword>
|
192
|
+
<keyword>blockinfo</keyword>
|
193
|
+
<keyword>blockquote</keyword>
|
194
|
+
<keyword>bridgehead</keyword>
|
195
|
+
<keyword>calloutlist</keyword>
|
196
|
+
<keyword>callout</keyword>
|
197
|
+
<keyword>caption</keyword>
|
198
|
+
<keyword>chapterinfo</keyword>
|
199
|
+
<keyword>citation</keyword>
|
200
|
+
<keyword>citebiblioid</keyword>
|
201
|
+
<keyword>citerefentry</keyword>
|
202
|
+
<keyword>city</keyword>
|
203
|
+
<keyword>classname</keyword>
|
204
|
+
<keyword>classsynopsis</keyword>
|
205
|
+
<keyword>classsynopsisinfo</keyword>
|
206
|
+
<keyword>cmdsynopsis</keyword>
|
207
|
+
<keyword>code</keyword>
|
208
|
+
<keyword>colgroup</keyword>
|
209
|
+
<keyword>collabname</keyword>
|
210
|
+
<keyword>collab</keyword>
|
211
|
+
<keyword>colophon</keyword>
|
212
|
+
<keyword>confdates</keyword>
|
213
|
+
<keyword>confgroup</keyword>
|
214
|
+
<keyword>confnum</keyword>
|
215
|
+
<keyword>confsponsor</keyword>
|
216
|
+
<keyword>conftitle</keyword>
|
217
|
+
<keyword>constant</keyword>
|
218
|
+
<keyword>constraintdef</keyword>
|
219
|
+
<keyword>constraint</keyword>
|
220
|
+
<keyword>constructorsynopsis</keyword>
|
221
|
+
<keyword>contractnum</keyword>
|
222
|
+
<keyword>contractsponsor</keyword>
|
223
|
+
<keyword>contrib</keyword>
|
224
|
+
<keyword>coref</keyword>
|
225
|
+
<keyword>corpauthor</keyword>
|
226
|
+
<keyword>corpcredit</keyword>
|
227
|
+
<keyword>corpname</keyword>
|
228
|
+
<keyword>country</keyword>
|
229
|
+
<keyword>database</keyword>
|
230
|
+
<keyword>dedication</keyword>
|
231
|
+
<keyword>destructorsynopsis</keyword>
|
232
|
+
<keyword>edition</keyword>
|
233
|
+
<keyword>editor</keyword>
|
234
|
+
<keyword>entrytbl</keyword>
|
235
|
+
<keyword>envar</keyword>
|
236
|
+
<keyword>epigraph</keyword>
|
237
|
+
<keyword>equation</keyword>
|
238
|
+
<keyword>errorcode</keyword>
|
239
|
+
<keyword>errorname</keyword>
|
240
|
+
<keyword>errortext</keyword>
|
241
|
+
<keyword>errortype</keyword>
|
242
|
+
<keyword>example</keyword>
|
243
|
+
<keyword>exceptionname</keyword>
|
244
|
+
<keyword>fax</keyword>
|
245
|
+
<keyword>fieldsynopsis</keyword>
|
246
|
+
<keyword>footnoteref</keyword>
|
247
|
+
<keyword>footnote</keyword>
|
248
|
+
<keyword>foreignphrase</keyword>
|
249
|
+
<keyword>formalpara</keyword>
|
250
|
+
<keyword>funcdef</keyword>
|
251
|
+
<keyword>funcparams</keyword>
|
252
|
+
<keyword>funcprototype</keyword>
|
253
|
+
<keyword>funcsynopsis</keyword>
|
254
|
+
<keyword>funcsynopsisinfo</keyword>
|
255
|
+
<keyword>function</keyword>
|
256
|
+
<keyword>glossaryinfo</keyword>
|
257
|
+
<keyword>glossdiv</keyword>
|
258
|
+
<keyword>glosslist</keyword>
|
259
|
+
<keyword>glosssee</keyword>
|
260
|
+
<keyword>glossseealso</keyword>
|
261
|
+
<keyword>graphicco</keyword>
|
262
|
+
<keyword>graphic</keyword>
|
263
|
+
<keyword>hardware</keyword>
|
264
|
+
<keyword>honorific</keyword>
|
265
|
+
<keyword>imageobjectco</keyword>
|
266
|
+
<keyword>important</keyword>
|
267
|
+
<keyword>indexdiv</keyword>
|
268
|
+
<keyword>indexentry</keyword>
|
269
|
+
<keyword>indexinfo</keyword>
|
270
|
+
<keyword>informalequation</keyword>
|
271
|
+
<keyword>informalexample</keyword>
|
272
|
+
<keyword>informalfigure</keyword>
|
273
|
+
<keyword>initializer</keyword>
|
274
|
+
<keyword>inlineequation</keyword>
|
275
|
+
<keyword>inlinegraphic</keyword>
|
276
|
+
<keyword>interfacename</keyword>
|
277
|
+
<keyword>invpartnumber</keyword>
|
278
|
+
<keyword>isbn</keyword>
|
279
|
+
<keyword>issn</keyword>
|
280
|
+
<keyword>issuenum</keyword>
|
281
|
+
<keyword>itermset</keyword>
|
282
|
+
<keyword>jobtitle</keyword>
|
283
|
+
<keyword>keycode</keyword>
|
284
|
+
<keyword>keywordset</keyword>
|
285
|
+
<keyword>keyword</keyword>
|
286
|
+
<keyword>lhs</keyword>
|
287
|
+
<keyword>lineage</keyword>
|
288
|
+
<keyword>lineannotation</keyword>
|
289
|
+
<keyword>literallayout</keyword>
|
290
|
+
<keyword>lot</keyword>
|
291
|
+
<keyword>lotentry</keyword>
|
292
|
+
<keyword>manvolnum</keyword>
|
293
|
+
<keyword>markup</keyword>
|
294
|
+
<keyword>medialabel</keyword>
|
295
|
+
<keyword>mediaobjectco</keyword>
|
296
|
+
<keyword>member</keyword>
|
297
|
+
<keyword>methodname</keyword>
|
298
|
+
<keyword>methodparam</keyword>
|
299
|
+
<keyword>methodsynopsis</keyword>
|
300
|
+
<keyword>modespec</keyword>
|
301
|
+
<keyword>modifier</keyword>
|
302
|
+
<keyword>mousebutton</keyword>
|
303
|
+
<keyword>msgaud</keyword>
|
304
|
+
<keyword>msgentry</keyword>
|
305
|
+
<keyword>msgexplan</keyword>
|
306
|
+
<keyword>msginfo</keyword>
|
307
|
+
<keyword>msglevel</keyword>
|
308
|
+
<keyword>msgmain</keyword>
|
309
|
+
<keyword>msgorig</keyword>
|
310
|
+
<keyword>msgrel</keyword>
|
311
|
+
<keyword>msgset</keyword>
|
312
|
+
<keyword>msgsub</keyword>
|
313
|
+
<keyword>msgtext</keyword>
|
314
|
+
<keyword>msg</keyword>
|
315
|
+
<keyword>nonterminal</keyword>
|
316
|
+
<keyword>objectinfo</keyword>
|
317
|
+
<keyword>olink</keyword>
|
318
|
+
<keyword>ooclass</keyword>
|
319
|
+
<keyword>ooexception</keyword>
|
320
|
+
<keyword>oointerface</keyword>
|
321
|
+
<keyword>optional</keyword>
|
322
|
+
<keyword>orgdiv</keyword>
|
323
|
+
<keyword>otheraddr</keyword>
|
324
|
+
<keyword>othercredit</keyword>
|
325
|
+
<keyword>othername</keyword>
|
326
|
+
<keyword>pagenums</keyword>
|
327
|
+
<keyword>paramdef</keyword>
|
328
|
+
<keyword>parameter</keyword>
|
329
|
+
<keyword>partinfo</keyword>
|
330
|
+
<keyword>partintro</keyword>
|
331
|
+
<keyword>part</keyword>
|
332
|
+
<keyword>personblurb</keyword>
|
333
|
+
<keyword>personname</keyword>
|
334
|
+
<keyword>phone</keyword>
|
335
|
+
<keyword>pob</keyword>
|
336
|
+
<keyword>postcode</keyword>
|
337
|
+
<keyword>prefaceinfo</keyword>
|
338
|
+
<keyword>preface</keyword>
|
339
|
+
<keyword>primaryie</keyword>
|
340
|
+
<keyword>printhistory</keyword>
|
341
|
+
<keyword>procedure</keyword>
|
342
|
+
<keyword>productionrecap</keyword>
|
343
|
+
<keyword>productionset</keyword>
|
344
|
+
<keyword>production</keyword>
|
345
|
+
<keyword>productname</keyword>
|
346
|
+
<keyword>productnumber</keyword>
|
347
|
+
<keyword>programlistingco</keyword>
|
348
|
+
<keyword>prompt</keyword>
|
349
|
+
<keyword>property</keyword>
|
350
|
+
<keyword>qandadiv</keyword>
|
351
|
+
<keyword>qandaentry</keyword>
|
352
|
+
<keyword>qandaset</keyword>
|
353
|
+
<keyword>question</keyword>
|
354
|
+
<keyword>quote</keyword>
|
355
|
+
<keyword>refclass</keyword>
|
356
|
+
<keyword>refdescriptor</keyword>
|
357
|
+
<keyword>refentryinfo</keyword>
|
358
|
+
<keyword>refentrytitle</keyword>
|
359
|
+
<keyword>refentry</keyword>
|
360
|
+
<keyword>referenceinfo</keyword>
|
361
|
+
<keyword>reference</keyword>
|
362
|
+
<keyword>refmeta</keyword>
|
363
|
+
<keyword>refmiscinfo</keyword>
|
364
|
+
<keyword>refname</keyword>
|
365
|
+
<keyword>refnamediv</keyword>
|
366
|
+
<keyword>refpurpose</keyword>
|
367
|
+
<keyword>refsect1</keyword>
|
368
|
+
<keyword>refsect1info</keyword>
|
369
|
+
<keyword>refsect2</keyword>
|
370
|
+
<keyword>refsect2info</keyword>
|
371
|
+
<keyword>refsect3</keyword>
|
372
|
+
<keyword>refsect3info</keyword>
|
373
|
+
<keyword>refsection</keyword>
|
374
|
+
<keyword>refsectioninfo</keyword>
|
375
|
+
<keyword>refsynopsisdivinfo</keyword>
|
376
|
+
<keyword>refsynopsisdiv</keyword>
|
377
|
+
<keyword>returnvalue</keyword>
|
378
|
+
<keyword>revremark</keyword>
|
379
|
+
<keyword>rhs</keyword>
|
380
|
+
<keyword>sbr</keyword>
|
381
|
+
<keyword>screenco</keyword>
|
382
|
+
<keyword>screeninfo</keyword>
|
383
|
+
<keyword>secondaryie</keyword>
|
384
|
+
<keyword>sect1info</keyword>
|
385
|
+
<keyword>sect2info</keyword>
|
386
|
+
<keyword>sect3info</keyword>
|
387
|
+
<keyword>sect4info</keyword>
|
388
|
+
<keyword>sect5info</keyword>
|
389
|
+
<keyword>sect5</keyword>
|
390
|
+
<keyword>sectioninfo</keyword>
|
391
|
+
<keyword>seealsoie</keyword>
|
392
|
+
<keyword>seealso</keyword>
|
393
|
+
<keyword>seeie</keyword>
|
394
|
+
<keyword>seglistitem</keyword>
|
395
|
+
<keyword>segmentedlist</keyword>
|
396
|
+
<keyword>segtitle</keyword>
|
397
|
+
<keyword>seg</keyword>
|
398
|
+
<keyword>seriesvolnums</keyword>
|
399
|
+
<keyword>setindexinfo</keyword>
|
400
|
+
<keyword>setindex</keyword>
|
401
|
+
<keyword>setinfo</keyword>
|
402
|
+
<keyword>set</keyword>
|
403
|
+
<keyword>sgmltag</keyword>
|
404
|
+
<keyword>shortaffil</keyword>
|
405
|
+
<keyword>sidebar</keyword>
|
406
|
+
<keyword>sidebarinfo</keyword>
|
407
|
+
<keyword>simpara</keyword>
|
408
|
+
<keyword>simplelist</keyword>
|
409
|
+
<keyword>simplemsgentry</keyword>
|
410
|
+
<keyword>simplesect</keyword>
|
411
|
+
<keyword>spanspec</keyword>
|
412
|
+
<keyword>state</keyword>
|
413
|
+
<keyword>stepalternatives</keyword>
|
414
|
+
<keyword>step</keyword>
|
415
|
+
<keyword>street</keyword>
|
416
|
+
<keyword>structfield</keyword>
|
417
|
+
<keyword>structname</keyword>
|
418
|
+
<keyword>subject</keyword>
|
419
|
+
<keyword>subjectset</keyword>
|
420
|
+
<keyword>subjectterm</keyword>
|
421
|
+
<keyword>subscript</keyword>
|
422
|
+
<keyword>substeps</keyword>
|
423
|
+
<keyword>subtitle</keyword>
|
424
|
+
<keyword>superscript</keyword>
|
425
|
+
<keyword>symbol</keyword>
|
426
|
+
<keyword>synopfragment</keyword>
|
427
|
+
<keyword>synopfragmentref</keyword>
|
428
|
+
<keyword>synopsis</keyword>
|
429
|
+
<keyword>systemitem</keyword>
|
430
|
+
<keyword>taskprerequisites</keyword>
|
431
|
+
<keyword>taskrelated</keyword>
|
432
|
+
<keyword>tasksummary</keyword>
|
433
|
+
<keyword>task</keyword>
|
434
|
+
<keyword>td</keyword>
|
435
|
+
<keyword>tertiaryie</keyword>
|
436
|
+
<keyword>textdata</keyword>
|
437
|
+
<keyword>tfoot</keyword>
|
438
|
+
<keyword>tocback</keyword>
|
439
|
+
<keyword>tocchap</keyword>
|
440
|
+
<keyword>tocentry</keyword>
|
441
|
+
<keyword>tocfront</keyword>
|
442
|
+
<keyword>toclevel</keyword>
|
443
|
+
<keyword>tocpart</keyword>
|
444
|
+
<keyword>toc</keyword>
|
445
|
+
<keyword>token</keyword>
|
446
|
+
<keyword>trademark</keyword>
|
447
|
+
<keyword>type</keyword>
|
448
|
+
<keyword>varargs</keyword>
|
449
|
+
<keyword>varname</keyword>
|
450
|
+
<keyword>videodata</keyword>
|
451
|
+
<keyword>videoobject</keyword>
|
452
|
+
<keyword>void</keyword>
|
453
|
+
<keyword>volumenum</keyword>
|
454
|
+
<keyword>wordasword</keyword>
|
455
|
+
</context>
|
456
|
+
|
457
|
+
<context id="docbook-tags">
|
458
|
+
<include>
|
459
|
+
<context ref="header-elements"/>
|
460
|
+
<context ref="formatting-elements"/>
|
461
|
+
<context ref="gui-elements"/>
|
462
|
+
<context ref="structural-elements"/>
|
463
|
+
<context ref="xml:element-name" original="true"/>
|
464
|
+
</include>
|
465
|
+
</context>
|
466
|
+
|
467
|
+
<replace id="xml:element-name" ref="docbook-tags"/>
|
468
|
+
|
469
|
+
<context id="docbook">
|
470
|
+
<include>
|
471
|
+
<context ref="xml:xml"/>
|
472
|
+
</include>
|
473
|
+
</context>
|
474
|
+
</definitions>
|
475
|
+
|
476
|
+
</language>
|