packages feed

highlighting-kate 0.5.15 → 0.6

raw patch · 130 files changed

+5664/−996 lines, 130 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Text.Highlighting.Kate.Types: AnnotationTok :: TokenType
+ Text.Highlighting.Kate.Types: AttributeTok :: TokenType
+ Text.Highlighting.Kate.Types: BuiltInTok :: TokenType
+ Text.Highlighting.Kate.Types: CommentVarTok :: TokenType
+ Text.Highlighting.Kate.Types: ConstantTok :: TokenType
+ Text.Highlighting.Kate.Types: ControlFlowTok :: TokenType
+ Text.Highlighting.Kate.Types: DocumentationTok :: TokenType
+ Text.Highlighting.Kate.Types: ExtensionTok :: TokenType
+ Text.Highlighting.Kate.Types: ImportTok :: TokenType
+ Text.Highlighting.Kate.Types: InformationTok :: TokenType
+ Text.Highlighting.Kate.Types: OperatorTok :: TokenType
+ Text.Highlighting.Kate.Types: PreprocessorTok :: TokenType
+ Text.Highlighting.Kate.Types: SpecialCharTok :: TokenType
+ Text.Highlighting.Kate.Types: SpecialStringTok :: TokenType
+ Text.Highlighting.Kate.Types: VariableTok :: TokenType
+ Text.Highlighting.Kate.Types: VerbatimStringTok :: TokenType
+ Text.Highlighting.Kate.Types: WarningTok :: TokenType
+ Text.Highlighting.Kate.Types: instance ToColor Int

Files

ParseSyntaxFiles.hs view
@@ -194,13 +194,30 @@        Just "dsDecVal" -> DecValTok        Just "dsBaseN" -> BaseNTok        Just "dsFloat" -> FloatTok+       Just "dsConstant" -> ConstantTok        Just "dsChar" -> CharTok+       Just "dsSpecialChar" -> SpecialCharTok        Just "dsString" -> StringTok+       Just "dsVerbatimString" -> VerbatimStringTok+       Just "dsSpecialString" -> SpecialStringTok+       Just "dsImport" -> ImportTok        Just "dsComment" -> CommentTok+       Just "dsDocumentation" -> DocumentationTok+       Just "dsAnnotation" -> AnnotationTok+       Just "dsCommentVar" -> CommentVarTok        Just "dsOthers" -> OtherTok-       Just "dsAlert" -> AlertTok        Just "dsFunction" -> FunctionTok+       Just "dsVariable" -> VariableTok+       Just "dsControlFlow" -> ControlFlowTok+       Just "dsOperator" -> OperatorTok+       Just "dsBuiltIn" -> BuiltInTok+       Just "dsExtension" -> ExtensionTok+       Just "dsPreprocessor" -> PreprocessorTok+       Just "dsAttribute" -> AttributeTok        Just "dsRegionMarker" -> RegionMarkerTok+       Just "dsInformation" -> InformationTok+       Just "dsWarning" -> WarningTok+       Just "dsAlert" -> AlertTok        Just "dsError" -> ErrorTok        _ -> NormalTok 
Text/Highlighting/Kate/Format/HTML.hs view
@@ -32,8 +32,17 @@ -- 'DecValTok' = @dv@, 'BaseNTok' = @bn@, 'FloatTok' = @fl@, -- 'CharTok' = @ch@, 'StringTok' = @st@, 'CommontTok' = @co@, -- 'OtherTok' = @ot@, 'AlertTok' = @al@, 'FunctionTok' = @fu@,--- 'RegionMarkerTok' = @re@, 'ErrorTok' = @er@. A 'NormalTok'--- is not marked up at all.+-- 'RegionMarkerTok' = @re@, 'ErrorTok' = @er@,+-- 'ConstantTok' = @cn@, 'SpecialCharTok' = @sc@,+-- 'VerbatimStringTok' = @vs@, 'SpecialStringTok' = @ss@,+-- 'ImportTok' = @im@, 'DocumentationTok' = @do@,+-- 'AnnotationTok' = @an@, 'CommentVarTok' = @cv@,+-- 'VariableTok' = @va@, 'ControlFlowTok' = @cf@,+-- 'OperatorTok' = @op@, 'BuiltInTok' = @bu@,+-- 'ExtensionTok' = @ex@, 'PreprocessorTok' = @pp@,+-- 'AttributeTok' = @at@, 'InformationTok' = @in@,+-- 'WarningTok' = @wa@.+-- A 'NormalTok' is not marked up at all. formatHtmlInline :: FormatOptions -> [SourceLine] -> Html formatHtmlInline opts = (H.code ! A.class_ (toValue $ unwords                                                     $ "sourceCode" : codeClasses opts))@@ -62,6 +71,23 @@ short FunctionTok       = "fu" short RegionMarkerTok   = "re" short ErrorTok          = "er"+short ConstantTok       = "cn"+short SpecialCharTok    = "sc"+short VerbatimStringTok = "vs"+short SpecialStringTok  = "ss"+short ImportTok         = "im"+short DocumentationTok  = "do"+short AnnotationTok     = "an"+short CommentVarTok     = "cv"+short VariableTok       = "va"+short ControlFlowTok    = "cf"+short OperatorTok       = "op"+short BuiltInTok        = "bu"+short ExtensionTok      = "ex"+short PreprocessorTok   = "pp"+short AttributeTok      = "at"+short InformationTok    = "in"+short WarningTok        = "wa" short NormalTok         = ""  sourceLineToHtml :: FormatOptions -> SourceLine -> Html@@ -124,10 +150,13 @@ toCss :: (TokenType, TokenStyle) -> String toCss (t,tf) = "code > span." ++ short t ++ " { "                 ++ colorspec ++ backgroundspec ++ weightspec ++ stylespec-                ++ decorationspec ++ "}"+                ++ decorationspec ++ "} /* " ++ showTokenType t ++ " */"   where colorspec = maybe "" (\col -> "color: " ++ fromColor col ++ "; ") $ tokenColor tf         backgroundspec = maybe "" (\col -> "background-color: " ++ fromColor col ++ "; ") $ tokenBackground tf         weightspec = if tokenBold tf then "font-weight: bold; " else ""         stylespec  = if tokenItalic tf then "font-style: italic; " else ""         decorationspec = if tokenUnderline tf then "text-decoration: underline; " else ""+        showTokenType t = case reverse (show t) of+                             'k':'o':'T':xs -> reverse xs+                             _              -> "" 
Text/Highlighting/Kate/Styles.hs view
@@ -15,26 +15,46 @@ where import Text.Highlighting.Kate.Types +color :: Int -> Maybe Color+color = toColor+ -- | Style based on pygments's default colors. pygments :: Style pygments = Style{     backgroundColor = Nothing   , defaultColor = Nothing-  , lineNumberColor = toColor "#aaaaaa"+  , lineNumberColor = color 0xaaaaaa   , lineNumberBackgroundColor = Nothing   , tokenStyles =-    [ (KeywordTok, defStyle{ tokenColor = toColor "#007020", tokenBold = True })-    , (DataTypeTok, defStyle{ tokenColor = toColor "#902000" })-    , (DecValTok, defStyle{ tokenColor = toColor "#40a070" })-    , (BaseNTok, defStyle{ tokenColor = toColor "#40a070" })-    , (FloatTok, defStyle{ tokenColor = toColor "#40a070" })-    , (CharTok, defStyle{ tokenColor = toColor "#4070a0" })-    , (StringTok, defStyle{ tokenColor = toColor "#4070a0" })-    , (CommentTok, defStyle{ tokenColor = toColor "#60a0b0", tokenItalic = True })-    , (OtherTok, defStyle{ tokenColor = toColor "#007020" })-    , (AlertTok, defStyle{ tokenColor = toColor "#ff0000", tokenBold = True })-    , (FunctionTok, defStyle{ tokenColor = toColor "#06287e" })-    , (ErrorTok, defStyle{ tokenColor = toColor "#ff0000", tokenBold = True })+    [ (KeywordTok, defStyle{ tokenColor = color 0x007020, tokenBold = True })+    , (DataTypeTok, defStyle{ tokenColor = color 0x902000 })+    , (DecValTok, defStyle{ tokenColor = color 0x40a070 })+    , (BaseNTok, defStyle{ tokenColor = color 0x40a070 })+    , (FloatTok, defStyle{ tokenColor = color 0x40a070 })+    , (CharTok, defStyle{ tokenColor = color 0x4070a0 })+    , (StringTok, defStyle{ tokenColor = color 0x4070a0 })+    , (CommentTok, defStyle{ tokenColor = color 0x60a0b0, tokenItalic = True })+    , (OtherTok, defStyle{ tokenColor = color 0x007020 })+    , (AlertTok, defStyle{ tokenColor = color 0xff0000, tokenBold = True })+    , (FunctionTok, defStyle{ tokenColor = color 0x06287e })+    , (ErrorTok, defStyle{ tokenColor = color 0xff0000, tokenBold = True })+    , (WarningTok, defStyle{ tokenColor = color 0x60a0b0, tokenItalic = True, tokenBold = True })+    , (ConstantTok, defStyle{ tokenColor = color 0x880000 })+    , (SpecialCharTok, defStyle{ tokenColor = color 0x4070a0 })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0x4070a0 })+    , (SpecialStringTok, defStyle{ tokenColor = color 0xBB6688 })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle{ tokenColor = color 0x19177C })+    , (ControlFlowTok, defStyle{ tokenColor = color 0x007020, tokenBold = True })+    , (OperatorTok, defStyle{ tokenColor = color 0x666666 })+    , (BuiltInTok, defStyle)+    , (ExtensionTok, defStyle)+    , (PreprocessorTok, defStyle{ tokenColor = color 0xBC7A00 })+    , (AttributeTok, defStyle{ tokenColor = color 0x7D9029 })+    , (DocumentationTok, defStyle{ tokenColor = color 0xBA2121, tokenItalic = True })+    , (AnnotationTok, defStyle{ tokenColor = color 0x60a0b0, tokenItalic = True, tokenBold = True })+    , (CommentVarTok, defStyle{ tokenColor = color 0x60a0b0, tokenItalic = True, tokenBold = True })+    , (InformationTok, defStyle{ tokenColor = color 0x60a0b0, tokenItalic = True, tokenBold = True })     ]   } @@ -44,64 +64,114 @@     backgroundColor = Nothing   , defaultColor = Nothing   , lineNumberColor = Nothing-  , lineNumberBackgroundColor = toColor "#dddddd"+  , lineNumberBackgroundColor = color 0xdddddd   , tokenStyles =     [ (KeywordTok, defStyle{ tokenBold = True })-    , (DataTypeTok, defStyle{ tokenColor = toColor "#800000" })-    , (DecValTok, defStyle{ tokenColor = toColor "#0000FF" })-    , (BaseNTok, defStyle{ tokenColor = toColor "#0000FF" })-    , (FloatTok, defStyle{ tokenColor = toColor "#800080" })-    , (CharTok, defStyle{ tokenColor = toColor "#FF00FF" })-    , (StringTok, defStyle{ tokenColor = toColor "#DD0000" })-    , (CommentTok, defStyle{ tokenColor = toColor "#808080", tokenItalic = True })-    , (AlertTok, defStyle{ tokenColor = toColor "#00ff00", tokenBold = True })-    , (FunctionTok, defStyle{ tokenColor = toColor "#000080" })-    , (ErrorTok, defStyle{ tokenColor = toColor "#ff0000", tokenBold = True })+    , (DataTypeTok, defStyle{ tokenColor = color 0x800000 })+    , (DecValTok, defStyle{ tokenColor = color 0x0000FF })+    , (BaseNTok, defStyle{ tokenColor = color 0x0000FF })+    , (FloatTok, defStyle{ tokenColor = color 0x800080 })+    , (CharTok, defStyle{ tokenColor = color 0xFF00FF })+    , (StringTok, defStyle{ tokenColor = color 0xDD0000 })+    , (CommentTok, defStyle{ tokenColor = color 0x808080, tokenItalic = True })+    , (AlertTok, defStyle{ tokenColor = color 0x00ff00, tokenBold = True })+    , (FunctionTok, defStyle{ tokenColor = color 0x000080 })+    , (ErrorTok, defStyle{ tokenColor = color 0xff0000, tokenBold = True })+    , (WarningTok, defStyle{ tokenColor = color 0xff0000, tokenBold = True })+    , (ConstantTok, defStyle{ tokenColor = color 0x000000 })+    , (SpecialCharTok, defStyle{ tokenColor = color 0xFF00FF })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0xDD0000 })+    , (SpecialStringTok, defStyle{ tokenColor = color 0xDD0000 })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle)+    , (ControlFlowTok, defStyle)+    , (OperatorTok, defStyle)+    , (BuiltInTok, defStyle)+    , (ExtensionTok, defStyle)+    , (PreprocessorTok, defStyle{ tokenBold = True })+    , (AttributeTok, defStyle)+    , (DocumentationTok, defStyle{ tokenColor = color 0x808080, tokenItalic = True })+    , (AnnotationTok, defStyle{ tokenColor = color 0x808080, tokenItalic = True, tokenBold = True })+    , (CommentVarTok, defStyle{ tokenColor = color 0x808080, tokenItalic = True, tokenBold = True })+    , (InformationTok, defStyle{ tokenColor = color 0x808080, tokenItalic = True, tokenBold = True })     ]   }  -- | Style based on pygments's tango colors. tango :: Style tango = Style{-    backgroundColor = toColor "#f8f8f8"+    backgroundColor = color 0xf8f8f8   , defaultColor = Nothing-  , lineNumberColor = toColor "#aaaaaa"+  , lineNumberColor = color 0xaaaaaa   , lineNumberBackgroundColor = Nothing   , tokenStyles =-    [ (KeywordTok, defStyle{ tokenColor = toColor "#204a87", tokenBold = True })-    , (DataTypeTok, defStyle{ tokenColor = toColor "#204a87" })-    , (DecValTok, defStyle{ tokenColor = toColor "#0000cf" })-    , (BaseNTok, defStyle{ tokenColor = toColor "#0000cf" })-    , (FloatTok, defStyle{ tokenColor = toColor "#0000cf" })-    , (CharTok, defStyle{ tokenColor = toColor "#4e9a06" })-    , (StringTok, defStyle{ tokenColor = toColor "#4e9a06" })-    , (CommentTok, defStyle{ tokenColor = toColor "#8f5902", tokenItalic = True })-    , (OtherTok, defStyle{ tokenColor = toColor "#8f5902" })-    , (AlertTok, defStyle{ tokenColor = toColor "#ef2929" })-    , (FunctionTok, defStyle{ tokenColor = toColor "#000000" })-    , (ErrorTok, defStyle{ tokenColor = toColor "a40000", tokenBold = True })+    [ (KeywordTok, defStyle{ tokenColor = color 0x204a87, tokenBold = True })+    , (DataTypeTok, defStyle{ tokenColor = color 0x204a87 })+    , (DecValTok, defStyle{ tokenColor = color 0x0000cf })+    , (BaseNTok, defStyle{ tokenColor = color 0x0000cf })+    , (FloatTok, defStyle{ tokenColor = color 0x0000cf })+    , (CharTok, defStyle{ tokenColor = color 0x4e9a06 })+    , (StringTok, defStyle{ tokenColor = color 0x4e9a06 })+    , (CommentTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True })+    , (OtherTok, defStyle{ tokenColor = color 0x8f5902 })+    , (AlertTok, defStyle{ tokenColor = color 0xef2929 })+    , (FunctionTok, defStyle{ tokenColor = color 0x000000 })+    , (ErrorTok, defStyle{ tokenColor = color 0xa40000, tokenBold = True })+    , (WarningTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True,tokenBold = True })+    , (ConstantTok, defStyle{ tokenColor = color 0x000000 })+    , (SpecialCharTok, defStyle{ tokenColor = color 0x000000 })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0x4e9a06 })+    , (SpecialStringTok, defStyle{ tokenColor = color 0x4e9a06 })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle{ tokenColor = color 0x000000 })+    , (ControlFlowTok, defStyle{ tokenColor = color 0x204a87, tokenBold = True })+    , (OperatorTok, defStyle{ tokenColor = color 0xce5c00, tokenBold = True })+    , (PreprocessorTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True} )+    , (ExtensionTok, defStyle)+    , (AttributeTok, defStyle{ tokenColor = color 0xc4a000 })+    , (DocumentationTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True, tokenBold = True })+    , (AnnotationTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True,tokenBold = True })+    , (CommentVarTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True,tokenBold = True })+    , (InformationTok, defStyle{ tokenColor = color 0x8f5902, tokenItalic = True,tokenBold = True })     ]   }  -- | Style based on ultraviolet's espresso_libre.css (dark background). espresso :: Style espresso = Style{-    backgroundColor = toColor "#2A211C"-  , defaultColor = toColor "#BDAE9D"-  , lineNumberColor = toColor "#BDAE9D"-  , lineNumberBackgroundColor = toColor "#2A211C"+    backgroundColor = color 0x2A211C+  , defaultColor = color 0xBDAE9D+  , lineNumberColor = color 0xBDAE9D+  , lineNumberBackgroundColor = color 0x2A211C   , tokenStyles =-    [ (KeywordTok, defStyle{ tokenColor = toColor "#43A8ED", tokenBold = True })+    [ (KeywordTok, defStyle{ tokenColor = color 0x43A8ED, tokenBold = True })     , (DataTypeTok, defStyle{ tokenUnderline = True })-    , (DecValTok, defStyle{ tokenColor = toColor "#44AA43" })-    , (BaseNTok, defStyle{ tokenColor = toColor "#44AA43" })-    , (FloatTok, defStyle{ tokenColor = toColor "#44AA43" })-    , (CharTok, defStyle{ tokenColor = toColor "#049B0A" })-    , (StringTok, defStyle{ tokenColor = toColor "#049B0A" })-    , (CommentTok, defStyle{ tokenColor = toColor "#0066FF", tokenItalic = True })-    , (AlertTok, defStyle{ tokenColor = toColor "#ffff00" })-    , (FunctionTok, defStyle{ tokenColor = toColor "#FF9358", tokenBold = True })-    , (ErrorTok, defStyle{ tokenColor = toColor "ffff00", tokenBold = True })+    , (DecValTok, defStyle{ tokenColor = color 0x44AA43 })+    , (BaseNTok, defStyle{ tokenColor = color 0x44AA43 })+    , (FloatTok, defStyle{ tokenColor = color 0x44AA43 })+    , (CharTok, defStyle{ tokenColor = color 0x049B0A })+    , (StringTok, defStyle{ tokenColor = color 0x049B0A })+    , (CommentTok, defStyle{ tokenColor = color 0x0066FF, tokenItalic = True })+    , (AlertTok, defStyle{ tokenColor = color 0xffff00 })+    , (FunctionTok, defStyle{ tokenColor = color 0xFF9358, tokenBold = True })+    , (ErrorTok, defStyle{ tokenColor = color 0xffff00, tokenBold = True })+    , (WarningTok, defStyle{ tokenColor = color 0xffff00, tokenBold = True })+    , (ConstantTok, defStyle)+    , (SpecialCharTok, defStyle{ tokenColor = color 0x049B0A })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0x049B0A })+    , (SpecialStringTok, defStyle{ tokenColor = color 0x049B0A })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle)+    , (ControlFlowTok, defStyle{ tokenColor = color 0x43A8ED, tokenBold = True })+    , (OperatorTok, defStyle)+    , (BuiltInTok, defStyle)+    , (ExtensionTok, defStyle)+    , (PreprocessorTok, defStyle{ tokenBold = True })+    , (AttributeTok, defStyle)+    , (DocumentationTok, defStyle{ tokenColor = color 0x0066FF, tokenItalic = True })+    , (AnnotationTok, defStyle{ tokenColor = color 0x0066FF, tokenItalic = True, tokenBold = True })+    , (CommentTok, defStyle{ tokenColor = color 0x0066FF, tokenItalic = True, tokenBold = True })+    , (InformationTok, defStyle{ tokenColor = color 0x0066FF, tokenItalic = True, tokenBold = True })     ]   } @@ -110,16 +180,33 @@ haddock = Style{     backgroundColor = Nothing   , defaultColor = Nothing-  , lineNumberColor = toColor "#aaaaaa"+  , lineNumberColor = color 0xaaaaaa   , lineNumberBackgroundColor = Nothing   , tokenStyles =-    [ (KeywordTok, defStyle{ tokenColor = toColor "#0000FF" })-    , (CharTok, defStyle{ tokenColor = toColor "#008080" })-    , (StringTok, defStyle{ tokenColor = toColor "#008080" })-    , (CommentTok, defStyle{ tokenColor = toColor "#008000" })-    , (OtherTok, defStyle{ tokenColor = toColor "#ff4000" })-    , (AlertTok, defStyle{ tokenColor = toColor "#ff0000" })-    , (ErrorTok, defStyle{ tokenColor = toColor "ff0000", tokenBold = True })+    [ (KeywordTok, defStyle{ tokenColor = color 0x0000FF })+    , (CharTok, defStyle{ tokenColor = color 0x008080 })+    , (StringTok, defStyle{ tokenColor = color 0x008080 })+    , (CommentTok, defStyle{ tokenColor = color 0x008000 })+    , (OtherTok, defStyle{ tokenColor = color 0xff4000 })+    , (AlertTok, defStyle{ tokenColor = color 0xff0000 })+    , (ErrorTok, defStyle{ tokenColor = color 0xff0000, tokenBold = True })+    , (WarningTok, defStyle{ tokenColor = color 0x008000, tokenBold = True })+    , (ConstantTok, defStyle)+    , (SpecialCharTok, defStyle{ tokenColor = color 0x008080 })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0x008080 })+    , (SpecialStringTok, defStyle{ tokenColor = color 0x008080 })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle)+    , (ControlFlowTok, defStyle{ tokenColor = color 0x0000FF })+    , (OperatorTok, defStyle)+    , (BuiltInTok, defStyle)+    , (ExtensionTok, defStyle)+    , (PreprocessorTok, defStyle{ tokenColor = color 0xff4000 })+    , (DocumentationTok, defStyle{ tokenColor = color 0x008000 })+    , (AnnotationTok, defStyle{ tokenColor = color 0x008000 })+    , (CommentVarTok, defStyle{ tokenColor = color 0x008000 })+    , (AttributeTok, defStyle)+    , (InformationTok, defStyle{ tokenColor = color 0x008000 })     ]   } @@ -136,28 +223,52 @@     , (CommentTok, defStyle{ tokenItalic = True })     , (AlertTok, defStyle{ tokenBold = True })     , (ErrorTok, defStyle{ tokenBold = True })+    , (WarningTok, defStyle{ tokenItalic = True })+    , (ControlFlowTok, defStyle{ tokenBold = True })+    , (PreprocessorTok, defStyle{ tokenBold = True })+    , (DocumentationTok, defStyle{ tokenItalic = True })+    , (AnnotationTok, defStyle{ tokenItalic = True })+    , (CommentVarTok, defStyle{ tokenItalic = True })+    , (InformationTok, defStyle{ tokenItalic = True })     ]   }  -- | Style based on the popular zenburn vim color scheme zenburn :: Style zenburn = Style{-    backgroundColor = toColor "#303030"-  , defaultColor = toColor "#cccccc"+    backgroundColor = color 0x303030+  , defaultColor = color 0xcccccc   , lineNumberColor = Nothing   , lineNumberBackgroundColor = Nothing   , tokenStyles =-    [ (KeywordTok, defStyle{ tokenColor = toColor "#f0dfaf" })-    , (DataTypeTok, defStyle{ tokenColor = toColor "#dfdfbf" })-    , (DecValTok, defStyle{ tokenColor = toColor "#dcdccc" })-    , (BaseNTok, defStyle{ tokenColor = toColor "#dca3a3" })-    , (FloatTok, defStyle{ tokenColor = toColor "#c0bed1" })-    , (CharTok, defStyle{ tokenColor = toColor "#dca3a3" })-    , (StringTok, defStyle{ tokenColor = toColor "#cc9393" })-    , (CommentTok, defStyle{ tokenColor = toColor "#7f9f7f" })-    , (OtherTok, defStyle{ tokenColor = toColor "#efef8f" })-    , (AlertTok, defStyle{ tokenColor = toColor "#ffcfaf" })-    , (FunctionTok, defStyle{ tokenColor = toColor "#efef8f" })-    , (ErrorTok, defStyle{ tokenColor = toColor "#c3bf9f" })+    [ (KeywordTok, defStyle{ tokenColor = color 0xf0dfaf })+    , (DataTypeTok, defStyle{ tokenColor = color 0xdfdfbf })+    , (DecValTok, defStyle{ tokenColor = color 0xdcdccc })+    , (BaseNTok, defStyle{ tokenColor = color 0xdca3a3 })+    , (FloatTok, defStyle{ tokenColor = color 0xc0bed1 })+    , (CharTok, defStyle{ tokenColor = color 0xdca3a3 })+    , (StringTok, defStyle{ tokenColor = color 0xcc9393 })+    , (CommentTok, defStyle{ tokenColor = color 0x7f9f7f })+    , (OtherTok, defStyle{ tokenColor = color 0xefef8f })+    , (AlertTok, defStyle{ tokenColor = color 0xffcfaf })+    , (FunctionTok, defStyle{ tokenColor = color 0xefef8f })+    , (ErrorTok, defStyle{ tokenColor = color 0xc3bf9f })+    , (WarningTok, defStyle{ tokenColor = color 0x7f9f7f, tokenBold = True })+    , (ConstantTok, defStyle{ tokenColor = color 0xdca3a3, tokenBold = True })+    , (SpecialCharTok, defStyle{ tokenColor = color 0xdca3a3 })+    , (VerbatimStringTok, defStyle{ tokenColor = color 0xcc9393 })+    , (SpecialStringTok, defStyle{ tokenColor = color 0xcc9393 })+    , (ImportTok, defStyle)+    , (VariableTok, defStyle)+    , (ControlFlowTok, defStyle{ tokenColor = color 0xf0dfaf })+    , (OperatorTok, defStyle{ tokenColor = color 0xf0efd0 })+    , (BuiltInTok, defStyle)+    , (ExtensionTok, defStyle)+    , (PreprocessorTok, defStyle{ tokenColor = color 0xffcfaf, tokenBold = True })+    , (AttributeTok, defStyle)+    , (DocumentationTok, defStyle{ tokenColor = color 0x7f9f7f })+    , (AnnotationTok, defStyle{ tokenColor = color 0x7f9f7f, tokenBold = True })+    , (CommentVarTok, defStyle{ tokenColor = color 0x7f9f7f, tokenBold = True })+    , (InformationTok, defStyle{ tokenColor = color 0x7f9f7f, tokenBold = True })     ]   }
Text/Highlighting/Kate/Syntax.hs view
@@ -69,6 +69,7 @@ import qualified Text.Highlighting.Kate.Syntax.Json as Json import qualified Text.Highlighting.Kate.Syntax.Jsp as Jsp import qualified Text.Highlighting.Kate.Syntax.Julia as Julia+import qualified Text.Highlighting.Kate.Syntax.Kotlin as Kotlin import qualified Text.Highlighting.Kate.Syntax.Latex as Latex import qualified Text.Highlighting.Kate.Syntax.Lex as Lex import qualified Text.Highlighting.Kate.Syntax.Lilypond as Lilypond@@ -135,11 +136,11 @@  -- | List of supported languages. languages :: [String]-languages = ["Abc","Actionscript","Ada","Agda","Alert","Alert_indent","Apache","Asn1","Asp","Awk","Bash","Bibtex","Boo","C","Changelog","Clojure","Cmake","Coffee","Coldfusion","Commonlisp","Cpp","Cs","Css","Curry","D","Diff","Djangotemplate","Dockerfile","Dot","Doxygen","Doxygenlua","Dtd","Eiffel","Email","Erlang","Fasm","Fortran","Fsharp","Gcc","Glsl","Gnuassembler","Go","Haskell","Haxe","Html","Idris","Ini","Isocpp","Java","Javadoc","Javascript","Json","Jsp","Julia","Latex","Lex","Lilypond","LiterateCurry","LiterateHaskell","Lua","M4","Makefile","Mandoc","Markdown","Mathematica","Matlab","Maxima","Mediawiki","Metafont","Mips","Modelines","Modula2","Modula3","Monobasic","Nasm","Noweb","Objectivec","Objectivecpp","Ocaml","Octave","Opencl","Pascal","Perl","Php","Pike","Postscript","Prolog","Pure","Python","R","Relaxng","Relaxngcompact","Rest","Rhtml","Roff","Ruby","Rust","Scala","Scheme","Sci","Sed","Sgml","Sql","SqlMysql","SqlPostgresql","Tcl","Tcsh","Texinfo","Verilog","Vhdl","Xml","Xorg","Xslt","Xul","Yacc","Yaml","Zsh"]+languages = ["Abc","Actionscript","Ada","Agda","Alert","Alert_indent","Apache","Asn1","Asp","Awk","Bash","Bibtex","Boo","C","Changelog","Clojure","Cmake","Coffee","Coldfusion","Commonlisp","Cpp","Cs","Css","Curry","D","Diff","Djangotemplate","Dockerfile","Dot","Doxygen","Doxygenlua","Dtd","Eiffel","Email","Erlang","Fasm","Fortran","Fsharp","Gcc","Glsl","Gnuassembler","Go","Haskell","Haxe","Html","Idris","Ini","Isocpp","Java","Javadoc","Javascript","Json","Jsp","Julia","Kotlin","Latex","Lex","Lilypond","LiterateCurry","LiterateHaskell","Lua","M4","Makefile","Mandoc","Markdown","Mathematica","Matlab","Maxima","Mediawiki","Metafont","Mips","Modelines","Modula2","Modula3","Monobasic","Nasm","Noweb","Objectivec","Objectivecpp","Ocaml","Octave","Opencl","Pascal","Perl","Php","Pike","Postscript","Prolog","Pure","Python","R","Relaxng","Relaxngcompact","Rest","Rhtml","Roff","Ruby","Rust","Scala","Scheme","Sci","Sed","Sgml","Sql","SqlMysql","SqlPostgresql","Tcl","Tcsh","Texinfo","Verilog","Vhdl","Xml","Xorg","Xslt","Xul","Yacc","Yaml","Zsh"]  -- | List of language extensions. languageExtensions :: [(String, String)]-languageExtensions = [("Abc", Abc.syntaxExtensions), ("Actionscript", Actionscript.syntaxExtensions), ("Ada", Ada.syntaxExtensions), ("Agda", Agda.syntaxExtensions), ("Alert", Alert.syntaxExtensions), ("Alert_indent", Alert_indent.syntaxExtensions), ("Apache", Apache.syntaxExtensions), ("Asn1", Asn1.syntaxExtensions), ("Asp", Asp.syntaxExtensions), ("Awk", Awk.syntaxExtensions), ("Bash", Bash.syntaxExtensions), ("Bibtex", Bibtex.syntaxExtensions), ("Boo", Boo.syntaxExtensions), ("C", C.syntaxExtensions), ("Changelog", Changelog.syntaxExtensions), ("Clojure", Clojure.syntaxExtensions), ("Cmake", Cmake.syntaxExtensions), ("Coffee", Coffee.syntaxExtensions), ("Coldfusion", Coldfusion.syntaxExtensions), ("Commonlisp", Commonlisp.syntaxExtensions), ("Cpp", Cpp.syntaxExtensions), ("Cs", Cs.syntaxExtensions), ("Css", Css.syntaxExtensions), ("Curry", Curry.syntaxExtensions), ("D", D.syntaxExtensions), ("Diff", Diff.syntaxExtensions), ("Djangotemplate", Djangotemplate.syntaxExtensions), ("Dockerfile", Dockerfile.syntaxExtensions), ("Dot", Dot.syntaxExtensions), ("Doxygen", Doxygen.syntaxExtensions), ("Doxygenlua", Doxygenlua.syntaxExtensions), ("Dtd", Dtd.syntaxExtensions), ("Eiffel", Eiffel.syntaxExtensions), ("Email", Email.syntaxExtensions), ("Erlang", Erlang.syntaxExtensions), ("Fasm", Fasm.syntaxExtensions), ("Fortran", Fortran.syntaxExtensions), ("Fsharp", Fsharp.syntaxExtensions), ("Gcc", Gcc.syntaxExtensions), ("Glsl", Glsl.syntaxExtensions), ("Gnuassembler", Gnuassembler.syntaxExtensions), ("Go", Go.syntaxExtensions), ("Haskell", Haskell.syntaxExtensions), ("Haxe", Haxe.syntaxExtensions), ("Html", Html.syntaxExtensions), ("Idris", Idris.syntaxExtensions), ("Ini", Ini.syntaxExtensions), ("Isocpp", Isocpp.syntaxExtensions), ("Java", Java.syntaxExtensions), ("Javadoc", Javadoc.syntaxExtensions), ("Javascript", Javascript.syntaxExtensions), ("Json", Json.syntaxExtensions), ("Jsp", Jsp.syntaxExtensions), ("Julia", Julia.syntaxExtensions), ("Latex", Latex.syntaxExtensions), ("Lex", Lex.syntaxExtensions), ("Lilypond", Lilypond.syntaxExtensions), ("LiterateCurry", LiterateCurry.syntaxExtensions), ("LiterateHaskell", LiterateHaskell.syntaxExtensions), ("Lua", Lua.syntaxExtensions), ("M4", M4.syntaxExtensions), ("Makefile", Makefile.syntaxExtensions), ("Mandoc", Mandoc.syntaxExtensions), ("Markdown", Markdown.syntaxExtensions), ("Mathematica", Mathematica.syntaxExtensions), ("Matlab", Matlab.syntaxExtensions), ("Maxima", Maxima.syntaxExtensions), ("Mediawiki", Mediawiki.syntaxExtensions), ("Metafont", Metafont.syntaxExtensions), ("Mips", Mips.syntaxExtensions), ("Modelines", Modelines.syntaxExtensions), ("Modula2", Modula2.syntaxExtensions), ("Modula3", Modula3.syntaxExtensions), ("Monobasic", Monobasic.syntaxExtensions), ("Nasm", Nasm.syntaxExtensions), ("Noweb", Noweb.syntaxExtensions), ("Objectivec", Objectivec.syntaxExtensions), ("Objectivecpp", Objectivecpp.syntaxExtensions), ("Ocaml", Ocaml.syntaxExtensions), ("Octave", Octave.syntaxExtensions), ("Opencl", Opencl.syntaxExtensions), ("Pascal", Pascal.syntaxExtensions), ("Perl", Perl.syntaxExtensions), ("Php", Php.syntaxExtensions), ("Pike", Pike.syntaxExtensions), ("Postscript", Postscript.syntaxExtensions), ("Prolog", Prolog.syntaxExtensions), ("Pure", Pure.syntaxExtensions), ("Python", Python.syntaxExtensions), ("R", R.syntaxExtensions), ("Relaxng", Relaxng.syntaxExtensions), ("Relaxngcompact", Relaxngcompact.syntaxExtensions), ("Rest", Rest.syntaxExtensions), ("Rhtml", Rhtml.syntaxExtensions), ("Roff", Roff.syntaxExtensions), ("Ruby", Ruby.syntaxExtensions), ("Rust", Rust.syntaxExtensions), ("Scala", Scala.syntaxExtensions), ("Scheme", Scheme.syntaxExtensions), ("Sci", Sci.syntaxExtensions), ("Sed", Sed.syntaxExtensions), ("Sgml", Sgml.syntaxExtensions), ("Sql", Sql.syntaxExtensions), ("SqlMysql", SqlMysql.syntaxExtensions), ("SqlPostgresql", SqlPostgresql.syntaxExtensions), ("Tcl", Tcl.syntaxExtensions), ("Tcsh", Tcsh.syntaxExtensions), ("Texinfo", Texinfo.syntaxExtensions), ("Verilog", Verilog.syntaxExtensions), ("Vhdl", Vhdl.syntaxExtensions), ("Xml", Xml.syntaxExtensions), ("Xorg", Xorg.syntaxExtensions), ("Xslt", Xslt.syntaxExtensions), ("Xul", Xul.syntaxExtensions), ("Yacc", Yacc.syntaxExtensions), ("Yaml", Yaml.syntaxExtensions), ("Zsh", Zsh.syntaxExtensions)]+languageExtensions = [("Abc", Abc.syntaxExtensions), ("Actionscript", Actionscript.syntaxExtensions), ("Ada", Ada.syntaxExtensions), ("Agda", Agda.syntaxExtensions), ("Alert", Alert.syntaxExtensions), ("Alert_indent", Alert_indent.syntaxExtensions), ("Apache", Apache.syntaxExtensions), ("Asn1", Asn1.syntaxExtensions), ("Asp", Asp.syntaxExtensions), ("Awk", Awk.syntaxExtensions), ("Bash", Bash.syntaxExtensions), ("Bibtex", Bibtex.syntaxExtensions), ("Boo", Boo.syntaxExtensions), ("C", C.syntaxExtensions), ("Changelog", Changelog.syntaxExtensions), ("Clojure", Clojure.syntaxExtensions), ("Cmake", Cmake.syntaxExtensions), ("Coffee", Coffee.syntaxExtensions), ("Coldfusion", Coldfusion.syntaxExtensions), ("Commonlisp", Commonlisp.syntaxExtensions), ("Cpp", Cpp.syntaxExtensions), ("Cs", Cs.syntaxExtensions), ("Css", Css.syntaxExtensions), ("Curry", Curry.syntaxExtensions), ("D", D.syntaxExtensions), ("Diff", Diff.syntaxExtensions), ("Djangotemplate", Djangotemplate.syntaxExtensions), ("Dockerfile", Dockerfile.syntaxExtensions), ("Dot", Dot.syntaxExtensions), ("Doxygen", Doxygen.syntaxExtensions), ("Doxygenlua", Doxygenlua.syntaxExtensions), ("Dtd", Dtd.syntaxExtensions), ("Eiffel", Eiffel.syntaxExtensions), ("Email", Email.syntaxExtensions), ("Erlang", Erlang.syntaxExtensions), ("Fasm", Fasm.syntaxExtensions), ("Fortran", Fortran.syntaxExtensions), ("Fsharp", Fsharp.syntaxExtensions), ("Gcc", Gcc.syntaxExtensions), ("Glsl", Glsl.syntaxExtensions), ("Gnuassembler", Gnuassembler.syntaxExtensions), ("Go", Go.syntaxExtensions), ("Haskell", Haskell.syntaxExtensions), ("Haxe", Haxe.syntaxExtensions), ("Html", Html.syntaxExtensions), ("Idris", Idris.syntaxExtensions), ("Ini", Ini.syntaxExtensions), ("Isocpp", Isocpp.syntaxExtensions), ("Java", Java.syntaxExtensions), ("Javadoc", Javadoc.syntaxExtensions), ("Javascript", Javascript.syntaxExtensions), ("Json", Json.syntaxExtensions), ("Jsp", Jsp.syntaxExtensions), ("Julia", Julia.syntaxExtensions), ("Kotlin", Kotlin.syntaxExtensions), ("Latex", Latex.syntaxExtensions), ("Lex", Lex.syntaxExtensions), ("Lilypond", Lilypond.syntaxExtensions), ("LiterateCurry", LiterateCurry.syntaxExtensions), ("LiterateHaskell", LiterateHaskell.syntaxExtensions), ("Lua", Lua.syntaxExtensions), ("M4", M4.syntaxExtensions), ("Makefile", Makefile.syntaxExtensions), ("Mandoc", Mandoc.syntaxExtensions), ("Markdown", Markdown.syntaxExtensions), ("Mathematica", Mathematica.syntaxExtensions), ("Matlab", Matlab.syntaxExtensions), ("Maxima", Maxima.syntaxExtensions), ("Mediawiki", Mediawiki.syntaxExtensions), ("Metafont", Metafont.syntaxExtensions), ("Mips", Mips.syntaxExtensions), ("Modelines", Modelines.syntaxExtensions), ("Modula2", Modula2.syntaxExtensions), ("Modula3", Modula3.syntaxExtensions), ("Monobasic", Monobasic.syntaxExtensions), ("Nasm", Nasm.syntaxExtensions), ("Noweb", Noweb.syntaxExtensions), ("Objectivec", Objectivec.syntaxExtensions), ("Objectivecpp", Objectivecpp.syntaxExtensions), ("Ocaml", Ocaml.syntaxExtensions), ("Octave", Octave.syntaxExtensions), ("Opencl", Opencl.syntaxExtensions), ("Pascal", Pascal.syntaxExtensions), ("Perl", Perl.syntaxExtensions), ("Php", Php.syntaxExtensions), ("Pike", Pike.syntaxExtensions), ("Postscript", Postscript.syntaxExtensions), ("Prolog", Prolog.syntaxExtensions), ("Pure", Pure.syntaxExtensions), ("Python", Python.syntaxExtensions), ("R", R.syntaxExtensions), ("Relaxng", Relaxng.syntaxExtensions), ("Relaxngcompact", Relaxngcompact.syntaxExtensions), ("Rest", Rest.syntaxExtensions), ("Rhtml", Rhtml.syntaxExtensions), ("Roff", Roff.syntaxExtensions), ("Ruby", Ruby.syntaxExtensions), ("Rust", Rust.syntaxExtensions), ("Scala", Scala.syntaxExtensions), ("Scheme", Scheme.syntaxExtensions), ("Sci", Sci.syntaxExtensions), ("Sed", Sed.syntaxExtensions), ("Sgml", Sgml.syntaxExtensions), ("Sql", Sql.syntaxExtensions), ("SqlMysql", SqlMysql.syntaxExtensions), ("SqlPostgresql", SqlPostgresql.syntaxExtensions), ("Tcl", Tcl.syntaxExtensions), ("Tcsh", Tcsh.syntaxExtensions), ("Texinfo", Texinfo.syntaxExtensions), ("Verilog", Verilog.syntaxExtensions), ("Vhdl", Vhdl.syntaxExtensions), ("Xml", Xml.syntaxExtensions), ("Xorg", Xorg.syntaxExtensions), ("Xslt", Xslt.syntaxExtensions), ("Xul", Xul.syntaxExtensions), ("Yacc", Yacc.syntaxExtensions), ("Yaml", Yaml.syntaxExtensions), ("Zsh", Zsh.syntaxExtensions)]  -- | Returns a list of languages appropriate for the given file extension. languagesByExtension :: String -> [String]@@ -155,7 +156,7 @@ -- extension (if unique). -- The parsers read the input lazily and parse line by line; -- results are returned immediately.--- Supported languages: @abc@, @actionscript@, @ada@, @agda@, @alert@, @alert_indent@, @apache@, @asn1@, @asp@, @awk@, @bash@, @bibtex@, @boo@, @c@, @changelog@, @clojure@, @cmake@, @coffee@, @coldfusion@, @commonlisp@, @cpp@, @cs@, @css@, @curry@, @d@, @diff@, @djangotemplate@, @dockerfile@, @dot@, @doxygen@, @doxygenlua@, @dtd@, @eiffel@, @email@, @erlang@, @fasm@, @fortran@, @fsharp@, @gcc@, @glsl@, @gnuassembler@, @go@, @haskell@, @haxe@, @html@, @idris@, @ini@, @isocpp@, @java@, @javadoc@, @javascript@, @json@, @jsp@, @julia@, @latex@, @lex@, @lilypond@, @literatecurry@, @literatehaskell@, @lua@, @m4@, @makefile@, @mandoc@, @markdown@, @mathematica@, @matlab@, @maxima@, @mediawiki@, @metafont@, @mips@, @modelines@, @modula2@, @modula3@, @monobasic@, @nasm@, @noweb@, @objectivec@, @objectivecpp@, @ocaml@, @octave@, @opencl@, @pascal@, @perl@, @php@, @pike@, @postscript@, @prolog@, @pure@, @python@, @r@, @relaxng@, @relaxngcompact@, @rest@, @rhtml@, @roff@, @ruby@, @rust@, @scala@, @scheme@, @sci@, @sed@, @sgml@, @sql@, @sqlmysql@, @sqlpostgresql@, @tcl@, @tcsh@, @texinfo@, @verilog@, @vhdl@, @xml@, @xorg@, @xslt@, @xul@, @yacc@, @yaml@, @zsh@.+-- Supported languages: @abc@, @actionscript@, @ada@, @agda@, @alert@, @alert_indent@, @apache@, @asn1@, @asp@, @awk@, @bash@, @bibtex@, @boo@, @c@, @changelog@, @clojure@, @cmake@, @coffee@, @coldfusion@, @commonlisp@, @cpp@, @cs@, @css@, @curry@, @d@, @diff@, @djangotemplate@, @dockerfile@, @dot@, @doxygen@, @doxygenlua@, @dtd@, @eiffel@, @email@, @erlang@, @fasm@, @fortran@, @fsharp@, @gcc@, @glsl@, @gnuassembler@, @go@, @haskell@, @haxe@, @html@, @idris@, @ini@, @isocpp@, @java@, @javadoc@, @javascript@, @json@, @jsp@, @julia@, @kotlin@, @latex@, @lex@, @lilypond@, @literatecurry@, @literatehaskell@, @lua@, @m4@, @makefile@, @mandoc@, @markdown@, @mathematica@, @matlab@, @maxima@, @mediawiki@, @metafont@, @mips@, @modelines@, @modula2@, @modula3@, @monobasic@, @nasm@, @noweb@, @objectivec@, @objectivecpp@, @ocaml@, @octave@, @opencl@, @pascal@, @perl@, @php@, @pike@, @postscript@, @prolog@, @pure@, @python@, @r@, @relaxng@, @relaxngcompact@, @rest@, @rhtml@, @roff@, @ruby@, @rust@, @scala@, @scheme@, @sci@, @sed@, @sgml@, @sql@, @sqlmysql@, @sqlpostgresql@, @tcl@, @tcsh@, @texinfo@, @verilog@, @vhdl@, @xml@, @xorg@, @xslt@, @xul@, @yacc@, @yaml@, @zsh@. highlightAs :: String         -- ^ Language syntax (e.g. "haskell") or extension (e.g. "hs").             -> String         -- ^ Source code to highlight             -> [SourceLine]   -- ^ List of highlighted source lines@@ -221,6 +222,7 @@         "json" -> Json.highlight         "jsp" -> Jsp.highlight         "julia" -> Julia.highlight+        "kotlin" -> Kotlin.highlight         "latex" -> Latex.highlight         "lex" -> Lex.highlight         "lilypond" -> Lilypond.highlight
Text/Highlighting/Kate/Syntax/Alert.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file alert.xml, version 1.09, by Dominik Haumann (dhdev@gmx.de) -}+   highlighting file alert.xml, version 1.11, by Dominik Haumann (dhdev@gmx.de) -}  module Text.Highlighting.Kate.Syntax.Alert           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -63,7 +63,15 @@   parseRules ("Alerts","Normal Text") =-  (((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_alerts'5fhi >>= withAttribute AlertTok))+  (((pString False "{{{" >>= withAttribute RegionMarkerTok))+   <|>+   ((pString False "}}}" >>= withAttribute RegionMarkerTok))+   <|>+   ((pString False "BEGIN" >>= withAttribute RegionMarkerTok))+   <|>+   ((pString False "END" >>= withAttribute RegionMarkerTok))+   <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_alerts'5fhi >>= withAttribute AlertTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_alerts'5fmid >>= withAttribute AlertTok))    <|>
Text/Highlighting/Kate/Syntax/C.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file c.xml, version 1.45, by  -}+   highlighting file c.xml, version 1.46, by  -}  module Text.Highlighting.Kate.Syntax.C           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -55,6 +55,7 @@       ("C","Commentar 1") -> (popContext) >> pEndLine       ("C","Commentar 2") -> return ()       ("C","AfterHash") -> (popContext) >> pEndLine+      ("C","Include") -> (popContext) >> pEndLine       ("C","Preprocessor") -> (popContext) >> pEndLine       ("C","Define") -> (popContext) >> pEndLine       ("C","Commentar/Preprocessor") -> return ()@@ -74,12 +75,13 @@  regex_'23'5cs'2aif'5cs'2b0'5cs'2a'24 = compileRegex True "#\\s*if\\s+0\\s*$" regex_0b'5b01'5d'2b'5bul'5d'7b0'2c3'7d = compileRegex True "0b[01]+[ul]{0,3}"+regex_'23'5cs'2a'28'3f'3ainclude'7cinclude'5fnext'29 = compileRegex True "#\\s*(?:include|include_next)" regex_'23'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'5cs'2b'5cS'29 = compileRegex True "#\\s*if(?:def|ndef)?(?=\\s+\\S)" regex_'23'5cs'2aendif = compileRegex True "#\\s*endif" regex_'23'5cs'2adefine'2e'2a'28'28'3f'3d'5c'5c'29'29 = compileRegex True "#\\s*define.*((?=\\\\))" regex_'23'5cs'2apragma'5cs'2bmark'5cs'2b'2d'5cs'2a'24 = compileRegex True "#\\s*pragma\\s+mark\\s+-\\s*$" regex_'23'5cs'2apragma'5cs'2bmark = compileRegex True "#\\s*pragma\\s+mark"-regex_'23'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cinclude'28'3f'3a'5fnext'29'3f'7cdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 = compileRegex True "#\\s*(?:el(?:se|if)|include(?:_next)?|define|undef|line|error|warning|pragma)"+regex_'23'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 = compileRegex True "#\\s*(?:el(?:se|if)|define|undef|line|error|warning|pragma)" regex_'23'5cs'2b'5b0'2d9'5d'2b = compileRegex True "#\\s+[0-9]+" regex_'23'5cs'2aif = compileRegex True "#\\s*if" regex_'23'5cs'2ael'28'3f'3ase'7cif'29 = compileRegex True "#\\s*el(?:se|if)"@@ -170,8 +172,10 @@    (currentContext >>= \x -> guard (x == ("C","Commentar 2")) >> pDefault >>= withAttribute CommentTok))  parseRules ("C","AfterHash") =-  (((pFirstNonSpace >> pRegExpr regex_'23'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'5cs'2b'5cS'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))+  (((pFirstNonSpace >> pRegExpr regex_'23'5cs'2a'28'3f'3ainclude'7cinclude'5fnext'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Include"))    <|>+   ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'5cs'2b'5cS'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))+   <|>    ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2aendif >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))    <|>    ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2adefine'2e'2a'28'28'3f'3d'5c'5c'29'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Define"))@@ -180,18 +184,25 @@    <|>    ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2apragma'5cs'2bmark >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))    <|>-   ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cinclude'28'3f'3a'5fnext'29'3f'7cdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))+   ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))    <|>    ((pFirstNonSpace >> pRegExpr regex_'23'5cs'2b'5b0'2d9'5d'2b >>= withAttribute OtherTok) >>~ pushContext ("C","Preprocessor"))    <|>    (currentContext >>= \x -> guard (x == ("C","AfterHash")) >> pDefault >>= withAttribute ErrorTok)) -parseRules ("C","Preprocessor") =+parseRules ("C","Include") =   (((pLineContinue >>= withAttribute OtherTok))    <|>    ((pRangeDetect '"' '"' >>= withAttribute OtherTok))    <|>    ((pRangeDetect '<' '>' >>= withAttribute OtherTok))+   <|>+   ((parseRules ("C","Preprocessor")))+   <|>+   (currentContext >>= \x -> guard (x == ("C","Include")) >> pDefault >>= withAttribute OtherTok))++parseRules ("C","Preprocessor") =+  (((pLineContinue >>= withAttribute OtherTok))    <|>    ((Text.Highlighting.Kate.Syntax.Doxygen.parseExpression (Just ("Doxygen","")) >>= ((withAttribute OtherTok) . snd)))    <|>
Text/Highlighting/Kate/Syntax/Css.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file css.xml, version 2.09, by Wilbert Berendsen (wilbert@kde.nl) -}+   highlighting file css.xml, version 2.10, by Wilbert Berendsen (wilbert@kde.nl) -}  module Text.Highlighting.Kate.Syntax.Css           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -81,7 +81,7 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_properties = Set.fromList $ words $ "azimuth background background-attachment background-break background-clip background-color background-image background-position background-origin background-repeat border border-bottom border-bottom-color border-bottom-style border-bottom-width border-collapse border-color border-left border-left-color border-left-style border-left-width border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-style border-top-width border-width bottom caption-side clear clip color content counter-increment counter-reset cue cue-after cue-before cursor direction display elevation empty-cells float font font-family font-size font-size-adjust font-stretch font-style font-variant font-weight font-stretch height left letter-spacing line-height list-style list-style-image list-style-keyword list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top marker-offset max-height max-width min-height min-width orphans outline outline-color outline-style outline-width overflow padding padding-bottom padding-left padding-right padding-top page page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position quotes richness right size speak speak-header speak-numeral speak-punctuation speech-rate stress table-layout text-align text-decoration text-decoration-color text-indent text-shadow text-transform top unicode-bidi vertical-align visibility voice-family volume white-space widows width word-spacing z-index animation-name animation-duration animation-iteration animation-direction animation-delay animation-play-state animation-fill-mode animation-timing-function background-size border-bottom-image border-bottom-left-image border-bottom-left-radius border-bottom-right-image border-bottom-right-radius border-collapse border-corner-image border-image border-left-image border-radius border-right-image border-top-image border-top-left-image border-top-left-radius border-top-right-image border-top-right-radius box-align box-direction box-flex box-shadow box-sizing column-count column-fill column-gap column-rule-color column-rule-style column-rule-width column-span column-wisth hyphens linear-gradient opacity outline outline-offset overflow-x overflow-y pointer-events resize rotation rotation-point table-layout text-overflow text-shadow text-wrap transform-origin transition transition-property transition-duration word-wrap -moz-animation-name -moz-animation-duration -moz-animation-iteration -moz-animation-direction -moz-animation-delay -moz-animation-play-state -moz-animation-fill-mode -moz-background-size -moz-border-image -moz-border-bottom-colors -moz-border-left-colors -moz-border-radius -moz-border-radius-topleft -moz-border-radius-topright -moz-border-radius-bottomleft -moz-border-radius-bottomright -moz-border-right-colors -moz-border-top-colors -moz-box -moz-box-flex -moz-box-shadow -moz-box-sizing -moz-column-count -moz-column-gap -moz-hyphens -moz-linear-gradient -moz-opacity -moz-outline-style -moz-perspective -moz-radial-gradient -moz-resize -moz-transform -moz-transform-origin -moz-transform-style -moz-transition -moz-transition-property -moz-transition-duration -o-background-size -o-linear-gradient -o-text-overflow -o-transition -o-transform-origin konq_bgpos_x konq_bgpos_y -khtml-background-size -khtml-border-top-left-radius -khtml-border-top-right-radius -khtml-border-bottom-left-radius -khtml-border-bottom-right-radius -khtml-border-radius -khtml-box-shadow -khtml-opacity -webkit-appearance -webkit-animation-name -webkit-animation-duration -webkit-animation-iteration -webkit-animation-direction -webkit-animation-delay -webkit-animation-play-state -webkit-animation-fill-mode -webkit-background-size -webkit-border-image -webkit-border-bottom-colors -webkit-border-left-colors -webkit-border-radius -webkit-border-right-colors -webkit-border-top-colors -webkit-border-top-left-radius -webkit-border-top-right-radius -webkit-border-bottom-left-radius -webkit-border-bottom-right-radius -webkit-border-radius-bottomleft -webkit-border-radius-bottomright -webkit-box-flex -webkit-box-reflect -webkit-box-shadow -webkit-box-sizing -webkit-column-count -webkit-column-gap -webkit-hyphens -webkit-linear-gradient -webkit-gradient -webkit-perspective -webkit-text-fill-color -webkit-text-stroke-color -webkit-text-stroke-width -webkit-text-size-adjust -webkit-transform -webkit-transform-origin -webkit-transform-style -webkit-transition -webkit-transition-property -webkit-transition-duration filter zoom -ms-animation-name -ms-animation-duration -ms-animation-iteration -ms-animation-direction -ms-animation-delay -ms-animation-play-state -ms-animation-fill-mode -ms-box-sizing -ms-filter -ms-interpolation-mode -ms-linear-gradient -ms-text-size-adjust -ms-transform -ms-transition font-family font-size font-stretch font-style font-variant font-weight unicode-range units-per-em src panose-1 stemv stemh slope cap-height x-height ascent descent widths bbox definition-src baseline centerline mathline topline"+list_properties = Set.fromList $ words $ "azimuth background background-attachment background-break background-clip background-color background-image background-position background-origin background-repeat border border-bottom border-bottom-color border-bottom-style border-bottom-width border-collapse border-color border-left border-left-color border-left-style border-left-width border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-style border-top-width border-width bottom caption-side clear clip color content counter-increment counter-reset cue cue-after cue-before cursor direction display elevation empty-cells float font font-family font-size font-size-adjust font-stretch font-style font-variant font-weight font-stretch height left letter-spacing line-height list-style list-style-image list-style-keyword list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top marker-offset max-height max-width min-height min-width orphans outline outline-color outline-style outline-width overflow padding padding-bottom padding-left padding-right padding-top page page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position quotes richness right size speak speak-header speak-numeral speak-punctuation speech-rate stress table-layout text-align text-decoration text-decoration-color text-indent text-shadow text-transform top unicode-bidi vertical-align visibility voice-family volume white-space widows width word-spacing z-index animation-name animation-duration animation-iteration animation-direction animation-delay animation-play-state animation-fill-mode animation-timing-function background-size border-bottom-image border-bottom-left-image border-bottom-left-radius border-bottom-right-image border-bottom-right-radius border-collapse border-corner-image border-image border-left-image border-radius border-right-image border-top-image border-top-left-image border-top-left-radius border-top-right-image border-top-right-radius box-align box-direction box-flex box-shadow box-sizing column-count column-fill column-gap column-rule-color column-rule-style column-rule-width column-span column-width hyphens linear-gradient opacity outline outline-offset overflow-x overflow-y pointer-events resize rotation rotation-point table-layout text-overflow text-shadow text-wrap transform-origin transition transition-property transition-duration word-wrap -moz-animation-name -moz-animation-duration -moz-animation-iteration -moz-animation-direction -moz-animation-delay -moz-animation-play-state -moz-animation-fill-mode -moz-background-size -moz-border-image -moz-border-bottom-colors -moz-border-left-colors -moz-border-radius -moz-border-radius-topleft -moz-border-radius-topright -moz-border-radius-bottomleft -moz-border-radius-bottomright -moz-border-right-colors -moz-border-top-colors -moz-box -moz-box-flex -moz-box-shadow -moz-box-sizing -moz-column-count -moz-column-gap -moz-hyphens -moz-linear-gradient -moz-opacity -moz-outline-style -moz-perspective -moz-radial-gradient -moz-resize -moz-transform -moz-transform-origin -moz-transform-style -moz-transition -moz-transition-property -moz-transition-duration -o-background-size -o-linear-gradient -o-text-overflow -o-transition -o-transform-origin konq_bgpos_x konq_bgpos_y -khtml-background-size -khtml-border-top-left-radius -khtml-border-top-right-radius -khtml-border-bottom-left-radius -khtml-border-bottom-right-radius -khtml-border-radius -khtml-box-shadow -khtml-opacity -webkit-appearance -webkit-animation-name -webkit-animation-duration -webkit-animation-iteration -webkit-animation-direction -webkit-animation-delay -webkit-animation-play-state -webkit-animation-fill-mode -webkit-background-size -webkit-border-image -webkit-border-bottom-colors -webkit-border-left-colors -webkit-border-radius -webkit-border-right-colors -webkit-border-top-colors -webkit-border-top-left-radius -webkit-border-top-right-radius -webkit-border-bottom-left-radius -webkit-border-bottom-right-radius -webkit-border-radius-bottomleft -webkit-border-radius-bottomright -webkit-box-flex -webkit-box-reflect -webkit-box-shadow -webkit-box-sizing -webkit-column-count -webkit-column-gap -webkit-hyphens -webkit-linear-gradient -webkit-gradient -webkit-perspective -webkit-text-fill-color -webkit-text-stroke-color -webkit-text-stroke-width -webkit-text-size-adjust -webkit-transform -webkit-transform-origin -webkit-transform-style -webkit-transition -webkit-transition-property -webkit-transition-duration filter zoom -ms-animation-name -ms-animation-duration -ms-animation-iteration -ms-animation-direction -ms-animation-delay -ms-animation-play-state -ms-animation-fill-mode -ms-box-sizing -ms-filter -ms-interpolation-mode -ms-linear-gradient -ms-text-size-adjust -ms-transform -ms-transition font-family font-size font-stretch font-style font-variant font-weight unicode-range units-per-em src panose-1 stemv stemh slope cap-height x-height ascent descent widths bbox definition-src baseline centerline mathline topline" list_types = Set.fromList $ words $ "inherit none hidden dotted dashed solid double groove ridge inset outset xx-small x-small small medium large x-large xx-large smaller larger italic oblique small-caps normal bold bolder lighter light 100 200 300 400 500 600 700 800 900 transparent repeat repeat-x repeat-y no-repeat baseline sub super top text-top middle bottom text-bottom left right center justify konq-center disc circle square box decimal decimal-leading-zero lower-roman upper-roman lower-greek lower-alpha lower-latin upper-alpha upper-latin hebrew armenian georgian cjk-ideographic hiragana katakana hiragana-iroha katakana-iroha inline inline-block block list-item run-in compact marker table inline-table table-row-group table-header-group table-footer-group table-row table-column-group table-column table-cell table-caption auto crosshair default pointer move e-resize ne-resize nw-resize n-resize se-resize sw-resize s-resize w-resize text wait help above absolute always avoid below bidi-override blink both capitalize caption clip close-quote collapse condensed crop cross ellipsis ellipsis-word embed expanded extra-condensed extra-expanded fixed hand hide higher icon inside invert landscape level line-through loud lower lowercase ltr menu message-box mix narrower no-close-quote no-open-quote nowrap open-quote outside overline portrait pre pre-line pre-wrap relative rtl scroll semi-condensed semi-expanded separate show small-caption static static-position status-bar thick thin ultra-condensed ultra-expanded underline uppercase visible wider break serif sans-serif cursive fantasy monospace border-box content-box -epub-hyphens" list_colors = Set.fromList $ words $ "aqua black blue cyan fuchsia gray green lime maroon navy olive purple red silver teal white yellow activeborder activecaption appworkspace background buttonface buttonhighlight buttonshadow buttontext captiontext graytext highlight highlighttext inactiveborder inactivecaption inactivecaptiontext infobackground infotext menu menutext scrollbar threeddarkshadow threedface threedhighlight threedlightshadow threedshadow window windowframe windowtext" list_paren = Set.fromList $ words $ "url attr rect rgb rgba hsl hsla counter counters local format expression"
Text/Highlighting/Kate/Syntax/Doxygen.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file doxygen.xml, version 1.37, by Dominik Haumann (dhdev@gmx.de) -}+   highlighting file doxygen.xml, version 1.38, by Dominik Haumann (dhdev@gmx.de) -}  module Text.Highlighting.Kate.Syntax.Doxygen           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -108,6 +108,7 @@ regex_'2f'5c'2a'5cs'2a'40'5c'7d'5cs'2a'5c'2a'2f = compileRegex True "/\\*\\s*@\\}\\s*\\*/" regex_'5b'40'5c'5c'5d'5b'5e'40'5c'5c_'5ct'5d'2b = compileRegex True "[@\\\\][^@\\\\ \\t]+" regex_'3c'5c'2f'3f'5ba'2dzA'2dZ'5f'3a'5d'5ba'2dzA'2dZ0'2d9'2e'5f'3a'2d'5d'2a = compileRegex True "<\\/?[a-zA-Z_:][a-zA-Z0-9._:-]*"+regex_'5b'40'5c'5c'5d'28'5b'5e'40'5c'5c_'5ct'5c'2a'5d'7c'5c'2a'28'3f'21'2f'29'29'2b = compileRegex True "[@\\\\]([^@\\\\ \\t\\*]|\\*(?!/))+" regex_'5c'5c'28'3c'7c'3e'29 = compileRegex True "\\\\(<|>)" regex_'5cS'28'3f'3d'28'5b'5d'5b'2c'3f'3b'28'29'5d'7c'5c'2e'24'7c'5c'2e'3f'5cs'29'29 = compileRegex True "\\S(?=([][,?;()]|\\.$|\\.?\\s))" regex_'5cS = compileRegex True "\\S"@@ -199,7 +200,7 @@    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}" list_TagWordString >>= withAttribute KeywordTok) >>~ pushContext ("Doxygen","ML_TagWordString"))    <|>-   ((pRegExpr regex_'5b'40'5c'5c'5d'5b'5e'40'5c'5c_'5ct'5d'2b >>= withAttribute NormalTok))+   ((pRegExpr regex_'5b'40'5c'5c'5d'28'5b'5e'40'5c'5c_'5ct'5c'2a'5d'7c'5c'2a'28'3f'21'2f'29'29'2b >>= withAttribute NormalTok))    <|>    ((pDetectIdentifier >>= withAttribute CommentTok))    <|>
Text/Highlighting/Kate/Syntax/Haskell.hs view
@@ -83,7 +83,7 @@ regex_'2d'2d'5b'5e'5c'2d'21'23'5c'24'25'26'5c'2a'5c'2b'2f'3c'3d'3e'5c'3f'5c'40'5c'5e'5c'7c'7e'5c'2e'3a'5d'2e'2a'24 = compileRegex True "--[^\\-!#\\$%&\\*\\+/<=>\\?\\@\\^\\|~\\.:].*$" regex_import'5cs'2b = compileRegex True "import\\s+" regex_'5c'7b'23 = compileRegex True "\\{#"-regex_'23 = compileRegex True "#"+regex_'28'28'5cs'2a'23'5ba'2dzA'2dZ'5d'29'7c'23'29 = compileRegex True "((\\s*#[a-zA-Z])|#)" regex_'28'3a'3a'7c'3d'3e'7c'5c'2d'3e'7c'3c'5c'2d'29 = compileRegex True "(::|=>|\\->|<\\-)" regex_'5cs'2a'5ba'2dz'5d'5ba'2dzA'2dZ0'2d9'5f'27'5d'2a'5cs'2a'28'3f'3d'3a'3a'5b'5e'5c'2d'21'23'5c'24'25'26'5c'2a'5c'2b'2f'3c'3d'3e'5c'3f'5c'40'5c'5e'5c'7c'7e'5c'2e'3a'5d'29 = compileRegex True "\\s*[a-z][a-zA-Z0-9_']*\\s*(?=::[^\\-!#\\$%&\\*\\+/<=>\\?\\@\\^\\|~\\.:])" regex_'5cs'2a'28'5c'28'5b'5c'2d'21'23'5c'24'25'26'5c'2a'5c'2b'2f'3c'3d'3e'5c'3f'5c'40'5c'5e'5c'7c'7e'5c'2e'3a'5d'2a'5c'29'29'2a'5cs'2a'28'3f'3d'3a'3a'5b'5e'5c'2d'21'23'5c'24'25'26'5c'2a'5c'2b'2f'3c'3d'3e'5c'3f'5c'40'5c'5e'5c'7c'7e'5c'2e'3a'5d'29 = compileRegex True "\\s*(\\([\\-!#\\$%&\\*\\+/<=>\\?\\@\\^\\|~\\.:]*\\))*\\s*(?=::[^\\-!#\\$%&\\*\\+/<=>\\?\\@\\^\\|~\\.:])"@@ -118,7 +118,7 @@    <|>    ((pRegExpr regex_'5c'7b'23 >>= withAttribute StringTok) >>~ pushContext ("Haskell","c2hs directive"))    <|>-   ((pRegExpr regex_'23 >>= withAttribute StringTok) >>~ pushContext ("Haskell","c2hs include"))+   ((pColumn 0 >> pRegExpr regex_'28'28'5cs'2a'23'5ba'2dzA'2dZ'5d'29'7c'23'29 >>= withAttribute StringTok) >>~ pushContext ("Haskell","c2hs include"))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_keywords >>= withAttribute KeywordTok))    <|>
Text/Highlighting/Kate/Syntax/Isocpp.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file isocpp.xml, version 2.4, by Alex Turbov (i.zaufi@gmail.com) -}+   highlighting file isocpp.xml, version 2.5, by Alex Turbov (i.zaufi@gmail.com) -}  module Text.Highlighting.Kate.Syntax.Isocpp           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -71,6 +71,7 @@       ("ISO C++","Comment 1") -> (popContext) >> pEndLine       ("ISO C++","Comment 2") -> return ()       ("ISO C++","AfterHash") -> (popContext) >> pEndLine+      ("ISO C++","Include") -> (popContext) >> pEndLine       ("ISO C++","Preprocessor") -> (popContext) >> pEndLine       ("ISO C++","Define") -> (popContext) >> pEndLine       ("ISO C++","Comment/Preprocessor") -> return ()@@ -101,7 +102,7 @@ regex_operator'5cs'2a'22'22_'5b'5f0'2d9A'2dZa'2dz'5d'2a'5cb = compileRegex True "operator\\s*\"\" [_0-9A-Za-z]*\\b" regex_'5b'5c'2b'5c'2d'5d'3f0x'5b0'2d9A'2dFa'2df'5d'28'27'3f'5b0'2d9A'2dFa'2df'5d'2b'29'2a'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb = compileRegex True "[\\+\\-]?0x[0-9A-Fa-f]('?[0-9A-Fa-f]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\\b" regex_0'5bBb'5d'5b01'5d'28'27'3f'5b01'5d'2b'29'2a'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb = compileRegex True "0[Bb][01]('?[01]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\\b"-regex_'5b'5c'2b'5c'2d'5d'3f'28'5b0'2d9'5d'2b'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'7c'28'5b0'2d9'5d'2a'5c'2e'5b0'2d9'5d'2b'7c'5b0'2d9'5d'2b'5c'2e'5b0'2d9'5d'2a'29'28'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'29'3f'29'5bFfLl'5d'3f = compileRegex True "[\\+\\-]?([0-9]+[Ee][\\+\\-]?[0-9]+|([0-9]*\\.[0-9]+|[0-9]+\\.[0-9]*)([Ee][\\+\\-]?[0-9]+)?)[FfLl]?"+regex_'5b'5c'2b'5c'2d'5d'3f'28'5b0'2d9'5d'2b'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'7c'28'5b0'2d9'5d'2b'5c'2e'7c'5c'2e'5b0'2d9'5d'2b'7c'5b0'2d9'5d'2b'5c'2e'5b0'2d9'5d'2b'29'28'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'29'3f'29'5bFfLl'5d'3f = compileRegex True "[\\+\\-]?([0-9]+[Ee][\\+\\-]?[0-9]+|([0-9]+\\.|\\.[0-9]+|[0-9]+\\.[0-9]+)([Ee][\\+\\-]?[0-9]+)?)[FfLl]?" regex_'5b'5c'2b'5c'2d'5d'3f0'27'3f'5b0'2d7'5d'28'27'3f'5b0'2d7'5d'2b'29'2a'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb = compileRegex True "[\\+\\-]?0'?[0-7]('?[0-7]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\\b" regex_'5b'5c'2b'5c'2d'5d'3f'280'7c'5b1'2d9'5d'28'27'3f'5b0'2d9'5d'2b'29'2a'29'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb = compileRegex True "[\\+\\-]?(0|[1-9]('?[0-9]+)*)([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\\b" regex_'5b'5c'2b'5c'2d'5d'3f'280x'3f'7c'5b1'2d9'5d'5b0'2d9'5d'2a'29'5b0'2d9A'2dZa'2dz'5d'5b'5f0'2d9A'2dZa'2dz'5d'2a'5cb = compileRegex True "[\\+\\-]?(0x?|[1-9][0-9]*)[0-9A-Za-z][_0-9A-Za-z]*\\b"@@ -127,10 +128,11 @@ regex_'25'5b'5e'22diouxXeEfFgGaAcsP'25'5cs'5d'2a'5bdiouxXeEfFgGaAcsP'25'5d = compileRegex True "%[^\"diouxXeEfFgGaAcsP%\\s]*[diouxXeEfFgGaAcsP%]" regex_'5f'5b'5f0'2d9A'2dZ'2da'2dz'5d'2a'5cb = compileRegex True "_[_0-9A-Z-a-z]*\\b" regex_'2e'2a = compileRegex True ".*"+regex_'23'5cs'2a'28'3f'3ainclude'7cinclude'5fnext'29 = compileRegex True "#\\s*(?:include|include_next)" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'28'3f'3a'5c'28'7c'5cs'2b'29'5cS'29 = compileRegex True "(#|%\\:|\\?\\?=)\\s*if(?:def|ndef)?(?=(?:\\(|\\s+)\\S)" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aendif = compileRegex True "(#|%\\:|\\?\\?=)\\s*endif" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28cmake'29'3fdefine'2e'2a'28'28'3f'3d'5c'5c'29'29 = compileRegex True "(#|%\\:|\\?\\?=)\\s*(cmake)?define.*((?=\\\\))"-regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cinclude'28'3f'3a'5fnext'29'3f'7c'28cmake'29'3fdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 = compileRegex True "(#|%\\:|\\?\\?=)\\s*(?:el(?:se|if)|include(?:_next)?|(cmake)?define|undef|line|error|warning|pragma)"+regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7c'28cmake'29'3fdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 = compileRegex True "(#|%\\:|\\?\\?=)\\s*(?:el(?:se|if)|(cmake)?define|undef|line|error|warning|pragma)" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2b'5b0'2d9'5d'2b = compileRegex True "(#|%\\:|\\?\\?=)\\s+[0-9]+" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aif = compileRegex True "(#|%\\:|\\?\\?=)\\s*if" regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2ael'28'3f'3ase'7cif'29 = compileRegex True "(#|%\\:|\\?\\?=)\\s*el(?:se|if)"@@ -173,7 +175,7 @@    <|>    ((pRegExpr regex_0'5bBb'5d'5b01'5d'28'27'3f'5b01'5d'2b'29'2a'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb >>= withAttribute BaseNTok))    <|>-   ((pRegExpr regex_'5b'5c'2b'5c'2d'5d'3f'28'5b0'2d9'5d'2b'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'7c'28'5b0'2d9'5d'2a'5c'2e'5b0'2d9'5d'2b'7c'5b0'2d9'5d'2b'5c'2e'5b0'2d9'5d'2a'29'28'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'29'3f'29'5bFfLl'5d'3f >>= withAttribute FloatTok))+   ((pRegExpr regex_'5b'5c'2b'5c'2d'5d'3f'28'5b0'2d9'5d'2b'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'7c'28'5b0'2d9'5d'2b'5c'2e'7c'5c'2e'5b0'2d9'5d'2b'7c'5b0'2d9'5d'2b'5c'2e'5b0'2d9'5d'2b'29'28'5bEe'5d'5b'5c'2b'5c'2d'5d'3f'5b0'2d9'5d'2b'29'3f'29'5bFfLl'5d'3f >>= withAttribute FloatTok))    <|>    ((pRegExpr regex_'5b'5c'2b'5c'2d'5d'3f0'27'3f'5b0'2d7'5d'28'27'3f'5b0'2d7'5d'2b'29'2a'28'5bUu'5d'5bLl'5d'7b0'2c2'7d'7c'5bLl'5d'7b0'2c2'7d'5bUu'5d'3f'7c'5f'5b'5f0'2d9A'2dZa'2dz'5d'2a'29'3f'5cb >>= withAttribute BaseNTok))    <|>@@ -425,28 +427,37 @@    (currentContext >>= \x -> guard (x == ("ISO C++","Comment 2")) >> pDefault >>= withAttribute CommentTok))  parseRules ("ISO C++","AfterHash") =-  (((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'28'3f'3a'5c'28'7c'5cs'2b'29'5cS'29 >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))+  (((pFirstNonSpace >> pRegExpr regex_'23'5cs'2a'28'3f'3ainclude'7cinclude'5fnext'29 >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Include"))    <|>+   ((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aif'28'3f'3adef'7cndef'29'3f'28'3f'3d'28'3f'3a'5c'28'7c'5cs'2b'29'5cS'29 >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))+   <|>    ((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2aendif >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))    <|>    ((pFirstNonSpace >> lookAhead (pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28cmake'29'3fdefine'2e'2a'28'28'3f'3d'5c'5c'29'29) >> pushContext ("ISO C++","Define") >> currentContext >>= parseRules))    <|>-   ((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7cinclude'28'3f'3a'5fnext'29'3f'7c'28cmake'29'3fdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))+   ((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2a'28'3f'3ael'28'3f'3ase'7cif'29'7c'28cmake'29'3fdefine'7cundef'7cline'7cerror'7cwarning'7cpragma'29 >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))    <|>    ((pFirstNonSpace >> pRegExpr regex_'28'23'7c'25'5c'3a'7c'5c'3f'5c'3f'3d'29'5cs'2b'5b0'2d9'5d'2b >>= withAttribute OtherTok) >>~ pushContext ("ISO C++","Preprocessor"))    <|>    (currentContext >>= \x -> guard (x == ("ISO C++","AfterHash")) >> pDefault >>= withAttribute ErrorTok)) +parseRules ("ISO C++","Include") =+  (((pLineContinue >>= withAttribute OtherTok))+   <|>+   ((pRangeDetect '"' '"' >>= withAttribute OtherTok))+   <|>+   ((pRangeDetect '<' '>' >>= withAttribute OtherTok))+   <|>+   ((parseRules ("ISO C++","Preprocessor")))+   <|>+   (currentContext >>= \x -> guard (x == ("ISO C++","Include")) >> pDefault >>= withAttribute OtherTok))+ parseRules ("ISO C++","Preprocessor") =   (((pLineContinue >>= withAttribute OtherTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_StdMacros >>= withAttribute OtherTok))    <|>    ((Text.Highlighting.Kate.Syntax.Gcc.parseExpression (Just ("GCCExtensions","GNUMacros")) >>= ((withAttribute OtherTok) . snd)))-   <|>-   ((pRangeDetect '"' '"' >>= withAttribute OtherTok))-   <|>-   ((pRangeDetect '<' '>' >>= withAttribute OtherTok))    <|>    ((Text.Highlighting.Kate.Syntax.Doxygen.parseExpression (Just ("Doxygen","")) >>= ((withAttribute OtherTok) . snd)))    <|>
Text/Highlighting/Kate/Syntax/Javascript.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file javascript.xml, version 1.22, by Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net) -}+   highlighting file javascript.xml, version 1.23, by Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net) -}  module Text.Highlighting.Kate.Syntax.Javascript           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -58,6 +58,9 @@       ("JavaScript","Object") -> return ()       ("JavaScript","String") -> (popContext) >> pEndLine       ("JavaScript","String SQ") -> (popContext) >> pEndLine+      ("JavaScript","Template") -> return ()+      ("JavaScript","RawTemplate") -> return ()+      ("JavaScript","Substitution") -> return ()       ("JavaScript","Comment") -> (popContext) >> pEndLine       ("JavaScript","Multi/inline Comment") -> return ()       ("JavaScript","Regular Expression") -> return ()@@ -74,8 +77,10 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_keywords = Set.fromList $ words $ "break case catch const continue debugger default delete do else finally for function if in instanceof new return switch this throw try typeof var void while with"-list_reserved = Set.fromList $ words $ "class enum export extends import super implements interface let package private protected public static yield"+list_controlflow = Set.fromList $ words $ "break case catch continue debugger do else finally for if return switch throw try while with"+list_keywords = Set.fromList $ words $ "const delete function in instanceof new this typeof var void"+list_reserved = Set.fromList $ words $ "class enum extends super implements interface let private protected public static yield"+list_module = Set.fromList $ words $ "import from as default export package" list_primitives = Set.fromList $ words $ "Infinity NaN false null true undefined"  regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'2e'29 = compileRegex True "[a-zA-Z_$][\\w$]*(?=\\s*\\.)"@@ -112,16 +117,24 @@    <|>    ((pAnyChar "])" >>= withAttribute NormalTok) >>~ pushContext ("JavaScript","NoRegExp"))    <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_controlflow >>= withAttribute ControlFlowTok))+   <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_keywords >>= withAttribute KeywordTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_reserved >>= withAttribute KeywordTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_primitives >>= withAttribute KeywordTok) >>~ pushContext ("JavaScript","NoRegExp"))    <|>-   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'2e'29 >>= withAttribute OtherTok) >>~ pushContext ("JavaScript","Object Member"))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_module >>= withAttribute ImportTok))    <|>-   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'28'29 >>= withAttribute FunctionTok) >>~ pushContext ("JavaScript","NoRegExp"))+   ((pDetectChar False '`' >>= withAttribute VerbatimStringTok) >>~ pushContext ("JavaScript","Template"))    <|>+   ((pString False "String.raw`" >>= withAttribute VerbatimStringTok) >>~ pushContext ("JavaScript","RawTemplate"))+   <|>+   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'2e'29 >>= withAttribute VariableTok) >>~ pushContext ("JavaScript","Object Member"))+   <|>+   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'28'29 >>= withAttribute AttributeTok) >>~ pushContext ("JavaScript","NoRegExp"))+   <|>    ((pDetectChar False '.' >>= withAttribute NormalTok) >>~ pushContext ("JavaScript","Object Member"))    <|>    ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a >>= withAttribute NormalTok) >>~ pushContext ("JavaScript","NoRegExp"))@@ -136,22 +149,22 @@    <|>    ((pDetect2Chars False '/' '*' >>= withAttribute CommentTok) >>~ pushContext ("JavaScript","Multi/inline Comment"))    <|>-   ((pDetectChar False '/' >>= withAttribute OtherTok) >>~ pushContext ("JavaScript","(regex caret first check)"))+   ((pDetectChar False '/' >>= withAttribute SpecialStringTok) >>~ pushContext ("JavaScript","(regex caret first check)"))    <|>-   ((pDetectChar False '{' >>= withAttribute NormalTok) >>~ pushContext ("JavaScript","Object"))+   ((pDetectChar False '{' >>= withAttribute OperatorTok) >>~ pushContext ("JavaScript","Object"))    <|>-   ((pDetectChar False '?' >>= withAttribute NormalTok) >>~ pushContext ("JavaScript","Conditional Expression"))+   ((pDetectChar False '?' >>= withAttribute OperatorTok) >>~ pushContext ("JavaScript","Conditional Expression"))    <|>-   ((pAnyChar ":!%&+,-/.*<=>?|~^;" >>= withAttribute NormalTok))+   ((pAnyChar ":!%&+,-/.*<=>?|~^;" >>= withAttribute OperatorTok))    <|>    (currentContext >>= \x -> guard (x == ("JavaScript","Normal")) >> pDefault >>= withAttribute NormalTok))  parseRules ("JavaScript","Object Member") =   (((pDetectChar False '.' >>= withAttribute NormalTok))    <|>-   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'2e'29 >>= withAttribute OtherTok) >>~ pushContext ("JavaScript","Object Member"))+   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'28'3f'3d'5cs'2a'5c'2e'29 >>= withAttribute VariableTok) >>~ pushContext ("JavaScript","Object Member"))    <|>-   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a >>= withAttribute FunctionTok))+   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a >>= withAttribute AttributeTok))    <|>    ((parseRules ("JavaScript","NoRegExp")))    <|>@@ -180,14 +193,14 @@    <|>    ((pRegExpr regex_'5ba'2dzA'2dZ'5f'24'5d'5b'5cw'24'5d'2a'5cs'2a'28'3f'3d'3a'29 >>= withAttribute DataTypeTok))    <|>-   ((pDetectChar False '}' >>= withAttribute NormalTok) >>~ (popContext))+   ((pDetectChar False '}' >>= withAttribute OperatorTok) >>~ (popContext))    <|>    ((parseRules ("JavaScript","Normal")))    <|>    (currentContext >>= \x -> guard (x == ("JavaScript","Object")) >> pDefault >>= withAttribute NormalTok))  parseRules ("JavaScript","String") =-  (((pHlCStringChar >>= withAttribute CharTok))+  (((pHlCStringChar >>= withAttribute SpecialCharTok))    <|>    ((pLineContinue >>= withAttribute StringTok))    <|>@@ -196,7 +209,7 @@    (currentContext >>= \x -> guard (x == ("JavaScript","String")) >> pDefault >>= withAttribute StringTok))  parseRules ("JavaScript","String SQ") =-  (((pHlCStringChar >>= withAttribute CharTok))+  (((pHlCStringChar >>= withAttribute SpecialCharTok))    <|>    ((pLineContinue >>= withAttribute StringTok))    <|>@@ -204,6 +217,29 @@    <|>    (currentContext >>= \x -> guard (x == ("JavaScript","String SQ")) >> pDefault >>= withAttribute StringTok)) +parseRules ("JavaScript","Template") =+  (((pHlCStringChar >>= withAttribute SpecialCharTok))+   <|>+   ((pDetect2Chars False '\\' '`' >>= withAttribute SpecialCharTok))+   <|>+   ((pDetect2Chars False '$' '{' >>= withAttribute SpecialCharTok) >>~ pushContext ("JavaScript","Substitution"))+   <|>+   ((pDetectChar False '`' >>= withAttribute VerbatimStringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("JavaScript","Template")) >> pDefault >>= withAttribute VerbatimStringTok))++parseRules ("JavaScript","RawTemplate") =+  (((pDetectChar False '`' >>= withAttribute VerbatimStringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("JavaScript","RawTemplate")) >> pDefault >>= withAttribute VerbatimStringTok))++parseRules ("JavaScript","Substitution") =+  (((pDetectChar False '}' >>= withAttribute SpecialCharTok) >>~ (popContext))+   <|>+   ((parseRules ("JavaScript","Normal")))+   <|>+   (currentContext >>= \x -> guard (x == ("JavaScript","Substitution")) >> pDefault >>= withAttribute NormalTok))+ parseRules ("JavaScript","Comment") =   (((Text.Highlighting.Kate.Syntax.Alert.parseExpression (Just ("Alerts","")) >>= ((withAttribute CommentTok) . snd)))    <|>@@ -221,40 +257,40 @@    (currentContext >>= \x -> guard (x == ("JavaScript","Multi/inline Comment")) >> pDefault >>= withAttribute CommentTok))  parseRules ("JavaScript","Regular Expression") =-  (((pRegExpr regex_'2f'5cw'2a >>= withAttribute OtherTok) >>~ (popContext >> popContext))+  (((pRegExpr regex_'2f'5cw'2a >>= withAttribute SpecialStringTok) >>~ (popContext >> popContext))    <|>-   ((pRegExpr regex_'5c'7b'5b'5cd'2c_'5d'2b'5c'7d >>= withAttribute FloatTok))+   ((pRegExpr regex_'5c'7b'5b'5cd'2c_'5d'2b'5c'7d >>= withAttribute SpecialCharTok))    <|>-   ((pRegExpr regex_'5c'5c'5bbB'5d >>= withAttribute FloatTok))+   ((pRegExpr regex_'5c'5c'5bbB'5d >>= withAttribute SpecialCharTok))    <|>-   ((pRegExpr regex_'5c'5c'5bnrtvfDdSsWw'5d >>= withAttribute BaseNTok))+   ((pRegExpr regex_'5c'5c'5bnrtvfDdSsWw'5d >>= withAttribute SpecialCharTok))    <|>-   ((pDetectChar False '[' >>= withAttribute BaseNTok) >>~ pushContext ("JavaScript","(charclass caret first check)"))+   ((pDetectChar False '[' >>= withAttribute SpecialCharTok) >>~ pushContext ("JavaScript","(charclass caret first check)"))    <|>-   ((pRegExpr regex_'5c'5c'2e >>= withAttribute FloatTok))+   ((pRegExpr regex_'5c'5c'2e >>= withAttribute SpecialCharTok))    <|>-   ((pRegExpr regex_'5c'24'28'3f'3d'2f'29 >>= withAttribute FloatTok))+   ((pRegExpr regex_'5c'24'28'3f'3d'2f'29 >>= withAttribute SpecialCharTok))    <|>-   ((pAnyChar "?+*()|" >>= withAttribute FloatTok))+   ((pAnyChar "?+*()|" >>= withAttribute SpecialCharTok))    <|>-   (currentContext >>= \x -> guard (x == ("JavaScript","Regular Expression")) >> pDefault >>= withAttribute OtherTok))+   (currentContext >>= \x -> guard (x == ("JavaScript","Regular Expression")) >> pDefault >>= withAttribute SpecialStringTok))  parseRules ("JavaScript","Regular Expression Character Class") =-  (((pRegExpr regex_'5c'5c'5b'5c'5b'5c'5d'5d >>= withAttribute BaseNTok))+  (((pRegExpr regex_'5c'5c'5b'5c'5b'5c'5d'5d >>= withAttribute SpecialCharTok))    <|>-   ((pRegExpr regex_'5c'5c'2e >>= withAttribute FloatTok))+   ((pRegExpr regex_'5c'5c'2e >>= withAttribute SpecialCharTok))    <|>-   ((pDetectChar False ']' >>= withAttribute BaseNTok) >>~ (popContext >> popContext))+   ((pDetectChar False ']' >>= withAttribute SpecialCharTok) >>~ (popContext >> popContext))    <|>-   (currentContext >>= \x -> guard (x == ("JavaScript","Regular Expression Character Class")) >> pDefault >>= withAttribute BaseNTok))+   (currentContext >>= \x -> guard (x == ("JavaScript","Regular Expression Character Class")) >> pDefault >>= withAttribute SpecialCharTok))  parseRules ("JavaScript","(regex caret first check)") =-  (((pDetectChar False '^' >>= withAttribute FloatTok) >>~ pushContext ("JavaScript","Regular Expression"))+  (((pDetectChar False '^' >>= withAttribute SpecialCharTok) >>~ pushContext ("JavaScript","Regular Expression"))    <|>    (pushContext ("JavaScript","Regular Expression") >> currentContext >>= parseRules))  parseRules ("JavaScript","(charclass caret first check)") =-  (((pDetectChar False '^' >>= withAttribute FloatTok) >>~ pushContext ("JavaScript","Regular Expression Character Class"))+  (((pDetectChar False '^' >>= withAttribute SpecialCharTok) >>~ pushContext ("JavaScript","Regular Expression Character Class"))    <|>    (pushContext ("JavaScript","Regular Expression Character Class") >> currentContext >>= parseRules)) 
+ Text/Highlighting/Kate/Syntax/Kotlin.hs view
@@ -0,0 +1,185 @@+{- This module was generated from data in the Kate syntax+   highlighting file kotlin.xml, version 1.0, by Sebastien Soudan (sebastien.soudan@gmail.com) -}++module Text.Highlighting.Kate.Syntax.Kotlin+          (highlight, parseExpression, syntaxName, syntaxExtensions)+where+import Text.Highlighting.Kate.Types+import Text.Highlighting.Kate.Common+import qualified Text.Highlighting.Kate.Syntax.Javadoc+import Text.ParserCombinators.Parsec hiding (State)+import Control.Monad.State+import Data.Char (isSpace)+import qualified Data.Set as Set++-- | Full name of language.+syntaxName :: String+syntaxName = "Kotlin"++-- | Filename extensions for this language.+syntaxExtensions :: String+syntaxExtensions = "*.kt"++-- | Highlight source code using this syntax definition.+highlight :: String -> [SourceLine]+highlight input = evalState (mapM parseSourceLine $ lines input) startingState++parseSourceLine :: String -> State SyntaxState SourceLine+parseSourceLine = mkParseSourceLine (parseExpression Nothing)++-- | Parse an expression using appropriate local context.+parseExpression :: Maybe (String,String)+                -> KateParser Token+parseExpression mbcontext = do+  (lang,cont) <- maybe currentContext return mbcontext+  result <- parseRules (lang,cont)+  optional $ do eof+                updateState $ \st -> st{ synStPrevChar = '\n' }+                pEndLine+  return result++startingState = SyntaxState {synStContexts = [("Kotlin","Normal")], synStLineNumber = 0, synStPrevChar = '\n', synStPrevNonspace = False, synStContinuation = False, synStCaseSensitive = True, synStKeywordCaseSensitive = True, synStCaptures = []}++pEndLine = do+  updateState $ \st -> st{ synStPrevNonspace = False }+  context <- currentContext+  contexts <- synStContexts `fmap` getState+  st <- getState+  if length contexts >= 2+    then case context of+      _ | synStContinuation st -> updateState $ \st -> st{ synStContinuation = False }+      ("Kotlin","Normal") -> return ()+      ("Kotlin","String") -> (popContext) >> pEndLine+      ("Kotlin","Printf") -> (popContext) >> pEndLine+      ("Kotlin","PrintfString") -> (popContext) >> pEndLine+      ("Kotlin","Member") -> (popContext) >> pEndLine+      ("Kotlin","Commentar 1") -> (popContext) >> pEndLine+      ("Kotlin","Commentar 2") -> return ()+      _ -> return ()+    else return ()++withAttribute attr txt = do+  when (null txt) $ fail "Parser matched no text"+  updateState $ \st -> st { synStPrevChar = last txt+                          , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }+  return (attr, txt)++list_kotlin2 = Set.fromList $ words $ "Unit Any Array Nothing MutableIterator MutableIterable MutableCollection MutableSet MutableList MutableListIterator MutableMap MutableEntry IntArray javaClass javaMethod"+list_java15 = Set.fromList $ words $ "ACTIVE ACTIVITY_COMPLETED ACTIVITY_REQUIRED ARG_IN ARG_INOUT ARG_OUT AWTError AWTEvent AWTEventListener AWTEventListenerProxy AWTEventMulticaster AWTException AWTKeyStroke AWTPermission AbstractAction AbstractBorder AbstractButton AbstractCellEditor AbstractCollection AbstractColorChooserPanel AbstractDocument AbstractDocument.AttributeContext AbstractDocument.Content AbstractDocument.ElementEdit AbstractExecutorService AbstractInterruptibleChannel AbstractLayoutCache AbstractLayoutCache.NodeDimensions AbstractList AbstractListModel AbstractMap AbstractMethodError AbstractPreferences AbstractQueue AbstractQueuedSynchronizer AbstractSelectableChannel AbstractSelectionKey AbstractSelector AbstractSequentialList AbstractSet AbstractSpinnerModel AbstractTableModel AbstractUndoableEdit AbstractWriter AccessControlContext AccessControlException AccessController AccessException Accessible AccessibleAction AccessibleAttributeSequence AccessibleBundle AccessibleComponent AccessibleContext AccessibleEditableText AccessibleExtendedComponent AccessibleExtendedTable AccessibleExtendedText AccessibleHyperlink AccessibleHypertext AccessibleIcon AccessibleKeyBinding AccessibleObject AccessibleRelation AccessibleRelationSet AccessibleResourceBundle AccessibleRole AccessibleSelection AccessibleState AccessibleStateSet AccessibleStreamable AccessibleTable AccessibleTableModelChange AccessibleText AccessibleTextSequence AccessibleValue AccountException AccountExpiredException AccountLockedException AccountNotFoundException Acl AclEntry AclNotFoundException Action ActionEvent ActionListener ActionMap ActionMapUIResource Activatable ActivateFailedException ActivationDesc ActivationException ActivationGroup ActivationGroupDesc ActivationGroupDesc.CommandEnvironment ActivationGroupID ActivationGroup_Stub ActivationID ActivationInstantiator ActivationMonitor ActivationSystem Activator ActiveEvent ActivityCompletedException ActivityRequiredException AdapterActivator AdapterActivatorOperations AdapterAlreadyExists AdapterAlreadyExistsHelper AdapterInactive AdapterInactiveHelper AdapterManagerIdHelper AdapterNameHelper AdapterNonExistent AdapterNonExistentHelper AdapterStateHelper AddressHelper Adjustable AdjustmentEvent AdjustmentListener Adler32 AffineTransform AffineTransformOp AlgorithmParameterGenerator AlgorithmParameterGeneratorSpi AlgorithmParameterSpec AlgorithmParameters AlgorithmParametersSpi AllPermission AlphaComposite AlreadyBound AlreadyBoundException AlreadyBoundHelper AlreadyBoundHolder AlreadyConnectedException AncestorEvent AncestorListener AnnotatedElement Annotation Annotation AnnotationFormatError AnnotationTypeMismatchException Any AnyHolder AnySeqHelper AnySeqHelper AnySeqHolder AppConfigurationEntry AppConfigurationEntry.LoginModuleControlFlag Appendable Applet AppletContext AppletInitializer AppletStub ApplicationException Arc2D Arc2D.Double Arc2D.Float Area AreaAveragingScaleFilter ArithmeticException Array Array ArrayBlockingQueue ArrayIndexOutOfBoundsException ArrayList ArrayStoreException ArrayType Arrays AssertionError AsyncBoxView AsynchronousCloseException AtomicBoolean AtomicInteger AtomicIntegerArray AtomicIntegerFieldUpdater AtomicLong AtomicLongArray AtomicLongFieldUpdater AtomicMarkableReference AtomicReference AtomicReferenceArray AtomicReferenceFieldUpdater AtomicStampedReference Attr Attribute Attribute Attribute AttributeChangeNotification AttributeChangeNotificationFilter AttributeException AttributeInUseException AttributeList AttributeList AttributeList AttributeListImpl AttributeModificationException AttributeNotFoundException AttributeSet AttributeSet AttributeSet.CharacterAttribute AttributeSet.ColorAttribute AttributeSet.FontAttribute AttributeSet.ParagraphAttribute AttributeSetUtilities AttributeValueExp AttributedCharacterIterator AttributedCharacterIterator.Attribute AttributedString Attributes Attributes Attributes Attributes.Name Attributes2 Attributes2Impl AttributesImpl AudioClip AudioFileFormat AudioFileFormat.Type AudioFileReader AudioFileWriter AudioFormat AudioFormat.Encoding AudioInputStream AudioPermission AudioSystem AuthPermission AuthProvider AuthenticationException AuthenticationException AuthenticationNotSupportedException Authenticator Authenticator.RequestorType AuthorizeCallback Autoscroll BAD_CONTEXT BAD_INV_ORDER BAD_OPERATION BAD_PARAM BAD_POLICY BAD_POLICY_TYPE BAD_POLICY_VALUE BAD_QOS BAD_TYPECODE BMPImageWriteParam BackingStoreException BadAttributeValueExpException BadBinaryOpValueExpException BadKind BadLocationException BadPaddingException BadStringOperationException BandCombineOp BandedSampleModel BaseRowSet BasicArrowButton BasicAttribute BasicAttributes BasicBorders BasicBorders.ButtonBorder BasicBorders.FieldBorder BasicBorders.MarginBorder BasicBorders.MenuBarBorder BasicBorders.RadioButtonBorder BasicBorders.RolloverButtonBorder BasicBorders.SplitPaneBorder BasicBorders.ToggleButtonBorder BasicButtonListener BasicButtonUI BasicCheckBoxMenuItemUI BasicCheckBoxUI BasicColorChooserUI BasicComboBoxEditor BasicComboBoxEditor.UIResource BasicComboBoxRenderer BasicComboBoxRenderer.UIResource BasicComboBoxUI BasicComboPopup BasicControl BasicDesktopIconUI BasicDesktopPaneUI BasicDirectoryModel BasicEditorPaneUI BasicFileChooserUI BasicFormattedTextFieldUI BasicGraphicsUtils BasicHTML BasicIconFactory BasicInternalFrameTitlePane BasicInternalFrameUI BasicLabelUI BasicListUI BasicLookAndFeel BasicMenuBarUI BasicMenuItemUI BasicMenuUI BasicOptionPaneUI BasicOptionPaneUI.ButtonAreaLayout BasicPanelUI BasicPasswordFieldUI BasicPermission BasicPopupMenuSeparatorUI BasicPopupMenuUI BasicProgressBarUI BasicRadioButtonMenuItemUI BasicRadioButtonUI BasicRootPaneUI BasicScrollBarUI BasicScrollPaneUI BasicSeparatorUI BasicSliderUI BasicSpinnerUI BasicSplitPaneDivider BasicSplitPaneUI BasicStroke BasicTabbedPaneUI BasicTableHeaderUI BasicTableUI BasicTextAreaUI BasicTextFieldUI BasicTextPaneUI BasicTextUI BasicTextUI.BasicCaret BasicTextUI.BasicHighlighter BasicToggleButtonUI BasicToolBarSeparatorUI BasicToolBarUI BasicToolTipUI BasicTreeUI BasicViewportUI BatchUpdateException BeanContext BeanContextChild BeanContextChildComponentProxy BeanContextChildSupport BeanContextContainerProxy BeanContextEvent BeanContextMembershipEvent BeanContextMembershipListener BeanContextProxy BeanContextServiceAvailableEvent BeanContextServiceProvider BeanContextServiceProviderBeanInfo BeanContextServiceRevokedEvent BeanContextServiceRevokedListener BeanContextServices BeanContextServicesListener BeanContextServicesSupport BeanContextServicesSupport.BCSSServiceProvider BeanContextSupport BeanContextSupport.BCSIterator BeanDescriptor BeanInfo Beans BevelBorder Bidi BigDecimal BigInteger BinaryRefAddr BindException Binding Binding BindingHelper BindingHolder BindingIterator BindingIteratorHelper BindingIteratorHolder BindingIteratorOperations BindingIteratorPOA BindingListHelper BindingListHolder BindingType BindingTypeHelper BindingTypeHolder BitSet Blob BlockView BlockingQueue Book Boolean BooleanControl BooleanControl.Type BooleanHolder BooleanSeqHelper BooleanSeqHolder Border BorderFactory BorderLayout BorderUIResource BorderUIResource.BevelBorderUIResource BorderUIResource.CompoundBorderUIResource BorderUIResource.EmptyBorderUIResource BorderUIResource.EtchedBorderUIResource BorderUIResource.LineBorderUIResource BorderUIResource.MatteBorderUIResource BorderUIResource.TitledBorderUIResource BoundedRangeModel Bounds Bounds Box Box.Filler BoxLayout BoxView BoxedValueHelper BreakIterator BrokenBarrierException Buffer BufferCapabilities BufferCapabilities.FlipContents BufferOverflowException BufferStrategy BufferUnderflowException BufferedImage BufferedImageFilter BufferedImageOp BufferedInputStream BufferedOutputStream BufferedReader BufferedWriter Button ButtonGroup ButtonModel ButtonUI Byte ByteArrayInputStream ByteArrayOutputStream ByteBuffer ByteChannel ByteHolder ByteLookupTable ByteOrder CDATASection CMMException CODESET_INCOMPATIBLE COMM_FAILURE CRC32 CRL CRLException CRLSelector CSS CSS.Attribute CTX_RESTRICT_SCOPE CacheRequest CacheResponse CachedRowSet Calendar Callable CallableStatement Callback CallbackHandler CancelablePrintJob CancellationException CancelledKeyException CannotProceed CannotProceedException CannotProceedHelper CannotProceedHolder CannotRedoException CannotUndoException Canvas CardLayout Caret CaretEvent CaretListener CellEditor CellEditorListener CellRendererPane CertPath CertPath.CertPathRep CertPathBuilder CertPathBuilderException CertPathBuilderResult CertPathBuilderSpi CertPathParameters CertPathTrustManagerParameters CertPathValidator CertPathValidatorException CertPathValidatorResult CertPathValidatorSpi CertSelector CertStore CertStoreException CertStoreParameters CertStoreSpi Certificate Certificate Certificate Certificate.CertificateRep CertificateEncodingException CertificateEncodingException CertificateException CertificateException CertificateExpiredException CertificateExpiredException CertificateFactory CertificateFactorySpi CertificateNotYetValidException CertificateNotYetValidException CertificateParsingException CertificateParsingException ChangeEvent ChangeListener ChangedCharSetException Channel ChannelBinding Channels CharArrayReader CharArrayWriter CharBuffer CharConversionException CharHolder CharSeqHelper CharSeqHolder CharSequence Character Character.Subset Character.UnicodeBlock CharacterCodingException CharacterData CharacterIterator Charset CharsetDecoder CharsetEncoder CharsetProvider Checkbox CheckboxGroup CheckboxMenuItem CheckedInputStream CheckedOutputStream Checksum Choice ChoiceCallback ChoiceFormat Chromaticity Cipher CipherInputStream CipherOutputStream CipherSpi Class ClassCastException ClassCircularityError ClassDefinition ClassDesc ClassFileTransformer ClassFormatError ClassLoader ClassLoaderRepository ClassLoadingMXBean ClassNotFoundException ClientRequestInfo ClientRequestInfoOperations ClientRequestInterceptor ClientRequestInterceptorOperations Clip Clipboard ClipboardOwner Clob CloneNotSupportedException Cloneable Closeable ClosedByInterruptException ClosedChannelException ClosedSelectorException CodeSets CodeSigner CodeSource Codec CodecFactory CodecFactoryHelper CodecFactoryOperations CodecOperations CoderMalfunctionError CoderResult CodingErrorAction CollationElementIterator CollationKey Collator Collection CollectionCertStoreParameters Collections Color ColorChooserComponentFactory ColorChooserUI ColorConvertOp ColorModel ColorSelectionModel ColorSpace ColorSupported ColorType ColorUIResource ComboBoxEditor ComboBoxModel ComboBoxUI ComboPopup Comment CommunicationException Comparable Comparator CompilationMXBean Compiler CompletionService CompletionStatus CompletionStatusHelper Component ComponentAdapter ComponentColorModel ComponentEvent ComponentIdHelper ComponentInputMap ComponentInputMapUIResource ComponentListener ComponentOrientation ComponentSampleModel ComponentUI ComponentView Composite CompositeContext CompositeData CompositeDataSupport CompositeName CompositeType CompositeView CompoundBorder CompoundControl CompoundControl.Type CompoundEdit CompoundName Compression ConcurrentHashMap ConcurrentLinkedQueue ConcurrentMap ConcurrentModificationException Condition Configuration ConfigurationException ConfirmationCallback ConnectException ConnectException ConnectIOException Connection ConnectionEvent ConnectionEventListener ConnectionPendingException ConnectionPoolDataSource ConsoleHandler Constructor Container ContainerAdapter ContainerEvent ContainerListener ContainerOrderFocusTraversalPolicy ContentHandler ContentHandler ContentHandlerFactory ContentModel Context Context ContextList ContextNotEmptyException ContextualRenderedImageFactory Control Control Control.Type ControlFactory ControllerEventListener ConvolveOp CookieHandler CookieHolder Copies CopiesSupported CopyOnWriteArrayList CopyOnWriteArraySet CountDownLatch CounterMonitor CounterMonitorMBean CredentialException CredentialExpiredException CredentialNotFoundException CropImageFilter CubicCurve2D CubicCurve2D.Double CubicCurve2D.Float Currency Current Current Current CurrentHelper CurrentHelper CurrentHelper CurrentHolder CurrentOperations CurrentOperations CurrentOperations Cursor CustomMarshal CustomValue Customizer CyclicBarrier DATA_CONVERSION DESKeySpec DESedeKeySpec DGC DHGenParameterSpec DHKey DHParameterSpec DHPrivateKey DHPrivateKeySpec DHPublicKey DHPublicKeySpec DISCARDING DOMConfiguration DOMError DOMErrorHandler DOMException DOMImplementation DOMImplementationLS DOMImplementationList DOMImplementationRegistry DOMImplementationSource DOMLocator DOMLocator DOMResult DOMSource DOMStringList DSAKey DSAKeyPairGenerator DSAParameterSpec DSAParams DSAPrivateKey DSAPrivateKeySpec DSAPublicKey DSAPublicKeySpec DTD DTDConstants DTDHandler DataBuffer DataBufferByte DataBufferDouble DataBufferFloat DataBufferInt DataBufferShort DataBufferUShort DataFlavor DataFormatException DataInput DataInputStream DataInputStream DataLine DataLine.Info DataOutput DataOutputStream DataOutputStream DataSource DataTruncation DatabaseMetaData DatagramChannel DatagramPacket DatagramSocket DatagramSocketImpl DatagramSocketImplFactory DatatypeConfigurationException DatatypeConstants DatatypeConstants.Field DatatypeFactory Date Date DateFormat DateFormat.Field DateFormatSymbols DateFormatter DateTimeAtCompleted DateTimeAtCreation DateTimeAtProcessing DateTimeSyntax DebugGraphics DecimalFormat DecimalFormatSymbols DeclHandler DefaultBoundedRangeModel DefaultButtonModel DefaultCaret DefaultCellEditor DefaultColorSelectionModel DefaultComboBoxModel DefaultDesktopManager DefaultEditorKit DefaultEditorKit.BeepAction DefaultEditorKit.CopyAction DefaultEditorKit.CutAction DefaultEditorKit.DefaultKeyTypedAction DefaultEditorKit.InsertBreakAction DefaultEditorKit.InsertContentAction DefaultEditorKit.InsertTabAction DefaultEditorKit.PasteAction DefaultFocusManager DefaultFocusTraversalPolicy DefaultFormatter DefaultFormatterFactory DefaultHandler DefaultHandler2 DefaultHighlighter DefaultHighlighter.DefaultHighlightPainter DefaultKeyboardFocusManager DefaultListCellRenderer DefaultListCellRenderer.UIResource DefaultListModel DefaultListSelectionModel DefaultLoaderRepository DefaultLoaderRepository DefaultMenuLayout DefaultMetalTheme DefaultMutableTreeNode DefaultPersistenceDelegate DefaultSingleSelectionModel DefaultStyledDocument DefaultStyledDocument.AttributeUndoableEdit DefaultStyledDocument.ElementSpec DefaultTableCellRenderer DefaultTableCellRenderer.UIResource DefaultTableColumnModel DefaultTableModel DefaultTextUI DefaultTreeCellEditor DefaultTreeCellRenderer DefaultTreeModel DefaultTreeSelectionModel DefinitionKind DefinitionKindHelper Deflater DeflaterOutputStream DelayQueue Delayed Delegate Delegate Delegate DelegationPermission Deprecated Descriptor DescriptorAccess DescriptorSupport DesignMode DesktopIconUI DesktopManager DesktopPaneUI Destination DestroyFailedException Destroyable Dialog Dictionary DigestException DigestInputStream DigestOutputStream Dimension Dimension2D DimensionUIResource DirContext DirObjectFactory DirStateFactory DirStateFactory.Result DirectColorModel DirectoryManager DisplayMode DnDConstants Doc DocAttribute DocAttributeSet DocFlavor DocFlavor.BYTE_ARRAY DocFlavor.CHAR_ARRAY DocFlavor.INPUT_STREAM DocFlavor.READER DocFlavor.SERVICE_FORMATTED DocFlavor.STRING DocFlavor.URL DocPrintJob Document Document DocumentBuilder DocumentBuilderFactory DocumentEvent DocumentEvent.ElementChange DocumentEvent.EventType DocumentFilter DocumentFilter.FilterBypass DocumentFragment DocumentHandler DocumentListener DocumentName DocumentParser DocumentType Documented DomainCombiner DomainManager DomainManagerOperations Double DoubleBuffer DoubleHolder DoubleSeqHelper DoubleSeqHolder DragGestureEvent DragGestureListener DragGestureRecognizer DragSource DragSourceAdapter DragSourceContext DragSourceDragEvent DragSourceDropEvent DragSourceEvent DragSourceListener DragSourceMotionListener Driver DriverManager DriverPropertyInfo DropTarget DropTarget.DropTargetAutoScroller DropTargetAdapter DropTargetContext DropTargetDragEvent DropTargetDropEvent DropTargetEvent DropTargetListener DuplicateFormatFlagsException DuplicateName DuplicateNameHelper Duration DynAny DynAny DynAnyFactory DynAnyFactoryHelper DynAnyFactoryOperations DynAnyHelper DynAnyOperations DynAnySeqHelper DynArray DynArray DynArrayHelper DynArrayOperations DynEnum DynEnum DynEnumHelper DynEnumOperations DynFixed DynFixed DynFixedHelper DynFixedOperations DynSequence DynSequence DynSequenceHelper DynSequenceOperations DynStruct DynStruct DynStructHelper DynStructOperations DynUnion DynUnion DynUnionHelper DynUnionOperations DynValue DynValue DynValueBox DynValueBoxOperations DynValueCommon DynValueCommonOperations DynValueHelper DynValueOperations DynamicImplementation DynamicImplementation DynamicMBean ECField ECFieldF2m ECFieldFp ECGenParameterSpec ECKey ECParameterSpec ECPoint ECPrivateKey ECPrivateKeySpec ECPublicKey ECPublicKeySpec ENCODING_CDR_ENCAPS EOFException EditorKit Element Element Element ElementIterator ElementType Ellipse2D Ellipse2D.Double Ellipse2D.Float EllipticCurve EmptyBorder EmptyStackException EncodedKeySpec Encoder Encoding EncryptedPrivateKeyInfo Entity Entity EntityReference EntityResolver EntityResolver2 Enum EnumConstantNotPresentException EnumControl EnumControl.Type EnumMap EnumSet EnumSyntax Enumeration Environment Error ErrorHandler ErrorListener ErrorManager EtchedBorder Event EventContext EventDirContext EventHandler EventListener EventListenerList EventListenerProxy EventObject EventQueue EventSetDescriptor Exception ExceptionDetailMessage ExceptionInInitializerError ExceptionList ExceptionListener Exchanger ExecutionException Executor ExecutorCompletionService ExecutorService Executors ExemptionMechanism ExemptionMechanismException ExemptionMechanismSpi ExpandVetoException ExportException Expression ExtendedRequest ExtendedResponse Externalizable FREE_MEM FactoryConfigurationError FailedLoginException FeatureDescriptor Fidelity Field FieldNameHelper FieldNameHelper FieldPosition FieldView File FileCacheImageInputStream FileCacheImageOutputStream FileChannel FileChannel.MapMode FileChooserUI FileDescriptor FileDialog FileFilter FileFilter FileHandler FileImageInputStream FileImageOutputStream FileInputStream FileLock FileLockInterruptionException FileNameMap FileNotFoundException FileOutputStream FilePermission FileReader FileSystemView FileView FileWriter FilenameFilter Filter FilterInputStream FilterOutputStream FilterReader FilterWriter FilteredImageSource FilteredRowSet Finishings FixedHeightLayoutCache FixedHolder FlatteningPathIterator FlavorEvent FlavorException FlavorListener FlavorMap FlavorTable Float FloatBuffer FloatControl FloatControl.Type FloatHolder FloatSeqHelper FloatSeqHolder FlowLayout FlowView FlowView.FlowStrategy Flushable FocusAdapter FocusEvent FocusListener FocusManager FocusTraversalPolicy Font FontFormatException FontMetrics FontRenderContext FontUIResource FormSubmitEvent FormSubmitEvent.MethodType FormView Format Format.Field FormatConversionProvider FormatFlagsConversionMismatchException FormatMismatch FormatMismatchHelper Formattable FormattableFlags Formatter Formatter FormatterClosedException ForwardRequest ForwardRequest ForwardRequestHelper ForwardRequestHelper Frame Future FutureTask GSSContext GSSCredential GSSException GSSManager GSSName GZIPInputStream GZIPOutputStream GapContent GarbageCollectorMXBean GatheringByteChannel GaugeMonitor GaugeMonitorMBean GeneralPath GeneralSecurityException GenericArrayType GenericDeclaration GenericSignatureFormatError GlyphJustificationInfo GlyphMetrics GlyphVector GlyphView GlyphView.GlyphPainter GradientPaint GraphicAttribute Graphics Graphics2D GraphicsConfigTemplate GraphicsConfiguration GraphicsDevice GraphicsEnvironment GrayFilter GregorianCalendar GridBagConstraints GridBagLayout GridLayout Group Guard GuardedObject HOLDING HTML HTML.Attribute HTML.Tag HTML.UnknownTag HTMLDocument HTMLDocument.Iterator HTMLEditorKit HTMLEditorKit.HTMLFactory HTMLEditorKit.HTMLTextAction HTMLEditorKit.InsertHTMLTextAction HTMLEditorKit.LinkController HTMLEditorKit.Parser HTMLEditorKit.ParserCallback HTMLFrameHyperlinkEvent HTMLWriter Handler HandlerBase HandshakeCompletedEvent HandshakeCompletedListener HasControls HashAttributeSet HashDocAttributeSet HashMap HashPrintJobAttributeSet HashPrintRequestAttributeSet HashPrintServiceAttributeSet HashSet Hashtable HeadlessException HierarchyBoundsAdapter HierarchyBoundsListener HierarchyEvent HierarchyListener Highlighter Highlighter.Highlight Highlighter.HighlightPainter HostnameVerifier HttpRetryException HttpURLConnection HttpsURLConnection HyperlinkEvent HyperlinkEvent.EventType HyperlinkListener ICC_ColorSpace ICC_Profile ICC_ProfileGray ICC_ProfileRGB IDLEntity IDLType IDLTypeHelper IDLTypeOperations ID_ASSIGNMENT_POLICY_ID ID_UNIQUENESS_POLICY_ID IIOByteBuffer IIOException IIOImage IIOInvalidTreeException IIOMetadata IIOMetadataController IIOMetadataFormat IIOMetadataFormatImpl IIOMetadataNode IIOParam IIOParamController IIOReadProgressListener IIOReadUpdateListener IIOReadWarningListener IIORegistry IIOServiceProvider IIOWriteProgressListener IIOWriteWarningListener IMPLICIT_ACTIVATION_POLICY_ID IMP_LIMIT INACTIVE INITIALIZE INTERNAL INTF_REPOS INVALID_ACTIVITY INVALID_TRANSACTION INV_FLAG INV_IDENT INV_OBJREF INV_POLICY IOException IOR IORHelper IORHolder IORInfo IORInfoOperations IORInterceptor IORInterceptorOperations IORInterceptor_3_0 IORInterceptor_3_0Helper IORInterceptor_3_0Holder IORInterceptor_3_0Operations IRObject IRObjectOperations Icon IconUIResource IconView IdAssignmentPolicy IdAssignmentPolicyOperations IdAssignmentPolicyValue IdUniquenessPolicy IdUniquenessPolicyOperations IdUniquenessPolicyValue IdentifierHelper Identity IdentityHashMap IdentityScope IllegalAccessError IllegalAccessException IllegalArgumentException IllegalBlockSizeException IllegalBlockingModeException IllegalCharsetNameException IllegalClassFormatException IllegalComponentStateException IllegalFormatCodePointException IllegalFormatConversionException IllegalFormatException IllegalFormatFlagsException IllegalFormatPrecisionException IllegalFormatWidthException IllegalMonitorStateException IllegalPathStateException IllegalSelectorException IllegalStateException IllegalThreadStateException Image ImageCapabilities ImageConsumer ImageFilter ImageGraphicAttribute ImageIO ImageIcon ImageInputStream ImageInputStreamImpl ImageInputStreamSpi ImageObserver ImageOutputStream ImageOutputStreamImpl ImageOutputStreamSpi ImageProducer ImageReadParam ImageReader ImageReaderSpi ImageReaderWriterSpi ImageTranscoder ImageTranscoderSpi ImageTypeSpecifier ImageView ImageWriteParam ImageWriter ImageWriterSpi ImagingOpException ImplicitActivationPolicy ImplicitActivationPolicyOperations ImplicitActivationPolicyValue IncompatibleClassChangeError IncompleteAnnotationException InconsistentTypeCode InconsistentTypeCode InconsistentTypeCodeHelper IndexColorModel IndexOutOfBoundsException IndexedPropertyChangeEvent IndexedPropertyDescriptor IndirectionException Inet4Address Inet6Address InetAddress InetSocketAddress Inflater InflaterInputStream InheritableThreadLocal Inherited InitialContext InitialContextFactory InitialContextFactoryBuilder InitialDirContext InitialLdapContext InlineView InputContext InputEvent InputMap InputMapUIResource InputMethod InputMethodContext InputMethodDescriptor InputMethodEvent InputMethodHighlight InputMethodListener InputMethodRequests InputMismatchException InputSource InputStream InputStream InputStream InputStreamReader InputSubset InputVerifier Insets InsetsUIResource InstanceAlreadyExistsException InstanceNotFoundException InstantiationError InstantiationException Instrument Instrumentation InsufficientResourcesException IntBuffer IntHolder Integer IntegerSyntax Interceptor InterceptorOperations InternalError InternalFrameAdapter InternalFrameEvent InternalFrameFocusTraversalPolicy InternalFrameListener InternalFrameUI InternationalFormatter InterruptedException InterruptedIOException InterruptedNamingException InterruptibleChannel IntrospectionException IntrospectionException Introspector Invalid InvalidActivityException InvalidAddress InvalidAddressHelper InvalidAddressHolder InvalidAlgorithmParameterException InvalidApplicationException InvalidAttributeIdentifierException InvalidAttributeValueException InvalidAttributeValueException InvalidAttributesException InvalidClassException InvalidDnDOperationException InvalidKeyException InvalidKeyException InvalidKeySpecException InvalidMarkException InvalidMidiDataException InvalidName InvalidName InvalidName InvalidNameException InvalidNameHelper InvalidNameHelper InvalidNameHolder InvalidObjectException InvalidOpenTypeException InvalidParameterException InvalidParameterSpecException InvalidPolicy InvalidPolicyHelper InvalidPreferencesFormatException InvalidPropertiesFormatException InvalidRelationIdException InvalidRelationServiceException InvalidRelationTypeException InvalidRoleInfoException InvalidRoleValueException InvalidSearchControlsException InvalidSearchFilterException InvalidSeq InvalidSlot InvalidSlotHelper InvalidTargetObjectTypeException InvalidTransactionException InvalidTypeForEncoding InvalidTypeForEncodingHelper InvalidValue InvalidValue InvalidValueHelper InvocationEvent InvocationHandler InvocationTargetException InvokeHandler IstringHelper ItemEvent ItemListener ItemSelectable Iterable Iterator IvParameterSpec JApplet JButton JCheckBox JCheckBoxMenuItem JColorChooser JComboBox JComboBox.KeySelectionManager JComponent JDesktopPane JDialog JEditorPane JFileChooser JFormattedTextField JFormattedTextField.AbstractFormatter JFormattedTextField.AbstractFormatterFactory JFrame JInternalFrame JInternalFrame.JDesktopIcon JLabel JLayeredPane JList JMException JMRuntimeException JMXAuthenticator JMXConnectionNotification JMXConnector JMXConnectorFactory JMXConnectorProvider JMXConnectorServer JMXConnectorServerFactory JMXConnectorServerMBean JMXConnectorServerProvider JMXPrincipal JMXProviderException JMXServerErrorException JMXServiceURL JMenu JMenuBar JMenuItem JOptionPane JPEGHuffmanTable JPEGImageReadParam JPEGImageWriteParam JPEGQTable JPanel JPasswordField JPopupMenu JPopupMenu.Separator JProgressBar JRadioButton JRadioButtonMenuItem JRootPane JScrollBar JScrollPane JSeparator JSlider JSpinner JSpinner.DateEditor JSpinner.DefaultEditor JSpinner.ListEditor JSpinner.NumberEditor JSplitPane JTabbedPane JTable JTable.PrintMode JTableHeader JTextArea JTextComponent JTextComponent.KeyBinding JTextField JTextPane JToggleButton JToggleButton.ToggleButtonModel JToolBar JToolBar.Separator JToolTip JTree JTree.DynamicUtilTreeNode JTree.EmptySelectionModel JViewport JWindow JarEntry JarException JarFile JarInputStream JarOutputStream JarURLConnection JdbcRowSet JobAttributes JobAttributes.DefaultSelectionType JobAttributes.DestinationType JobAttributes.DialogType JobAttributes.MultipleDocumentHandlingType JobAttributes.SidesType JobHoldUntil JobImpressions JobImpressionsCompleted JobImpressionsSupported JobKOctets JobKOctetsProcessed JobKOctetsSupported JobMediaSheets JobMediaSheetsCompleted JobMediaSheetsSupported JobMessageFromOperator JobName JobOriginatingUserName JobPriority JobPrioritySupported JobSheets JobState JobStateReason JobStateReasons JoinRowSet Joinable KerberosKey KerberosPrincipal KerberosTicket Kernel Key KeyAdapter KeyAgreement KeyAgreementSpi KeyAlreadyExistsException KeyEvent KeyEventDispatcher KeyEventPostProcessor KeyException KeyFactory KeyFactorySpi KeyGenerator KeyGeneratorSpi KeyListener KeyManagementException KeyManager KeyManagerFactory KeyManagerFactorySpi KeyPair KeyPairGenerator KeyPairGeneratorSpi KeyRep KeyRep.Type KeySpec KeyStore KeyStore.Builder KeyStore.CallbackHandlerProtection KeyStore.Entry KeyStore.LoadStoreParameter KeyStore.PasswordProtection KeyStore.PrivateKeyEntry KeyStore.ProtectionParameter KeyStore.SecretKeyEntry KeyStore.TrustedCertificateEntry KeyStoreBuilderParameters KeyStoreException KeyStoreSpi KeyStroke KeyboardFocusManager Keymap LDAPCertStoreParameters LIFESPAN_POLICY_ID LOCATION_FORWARD LSException LSInput LSLoadEvent LSOutput LSParser LSParserFilter LSProgressEvent LSResourceResolver LSSerializer LSSerializerFilter Label LabelUI LabelView LanguageCallback LastOwnerException LayeredHighlighter LayeredHighlighter.LayerPainter LayoutFocusTraversalPolicy LayoutManager LayoutManager2 LayoutQueue LdapContext LdapName LdapReferralException Lease Level LexicalHandler LifespanPolicy LifespanPolicyOperations LifespanPolicyValue LimitExceededException Line Line.Info Line2D Line2D.Double Line2D.Float LineBorder LineBreakMeasurer LineEvent LineEvent.Type LineListener LineMetrics LineNumberInputStream LineNumberReader LineUnavailableException LinkException LinkLoopException LinkRef LinkageError LinkedBlockingQueue LinkedHashMap LinkedHashSet LinkedList List List ListCellRenderer ListDataEvent ListDataListener ListIterator ListModel ListResourceBundle ListSelectionEvent ListSelectionListener ListSelectionModel ListUI ListView ListenerNotFoundException LoaderHandler LocalObject Locale LocateRegistry Locator Locator2 Locator2Impl LocatorImpl Lock LockSupport LogManager LogRecord LogStream Logger LoggingMXBean LoggingPermission LoginContext LoginException LoginModule Long LongBuffer LongHolder LongLongSeqHelper LongLongSeqHolder LongSeqHelper LongSeqHolder LookAndFeel LookupOp LookupTable MARSHAL MBeanAttributeInfo MBeanConstructorInfo MBeanException MBeanFeatureInfo MBeanInfo MBeanNotificationInfo MBeanOperationInfo MBeanParameterInfo MBeanPermission MBeanRegistration MBeanRegistrationException MBeanServer MBeanServerBuilder MBeanServerConnection MBeanServerDelegate MBeanServerDelegateMBean MBeanServerFactory MBeanServerForwarder MBeanServerInvocationHandler MBeanServerNotification MBeanServerNotificationFilter MBeanServerPermission MBeanTrustPermission MGF1ParameterSpec MLet MLetMBean Mac MacSpi MalformedInputException MalformedLinkException MalformedObjectNameException MalformedParameterizedTypeException MalformedURLException ManageReferralControl ManagementFactory ManagementPermission ManagerFactoryParameters Manifest Map Map.Entry MappedByteBuffer MarshalException MarshalledObject MaskFormatter MatchResult Matcher Math MathContext MatteBorder Media MediaName MediaPrintableArea MediaSize MediaSize.Engineering MediaSize.ISO MediaSize.JIS MediaSize.NA MediaSize.Other MediaSizeName MediaTracker MediaTray Member MemoryCacheImageInputStream MemoryCacheImageOutputStream MemoryHandler MemoryImageSource MemoryMXBean MemoryManagerMXBean MemoryNotificationInfo MemoryPoolMXBean MemoryType MemoryUsage Menu MenuBar MenuBarUI MenuComponent MenuContainer MenuDragMouseEvent MenuDragMouseListener MenuElement MenuEvent MenuItem MenuItemUI MenuKeyEvent MenuKeyListener MenuListener MenuSelectionManager MenuShortcut MessageDigest MessageDigestSpi MessageFormat MessageFormat.Field MessageProp MetaEventListener MetaMessage MetalBorders MetalBorders.ButtonBorder MetalBorders.Flush3DBorder MetalBorders.InternalFrameBorder MetalBorders.MenuBarBorder MetalBorders.MenuItemBorder MetalBorders.OptionDialogBorder MetalBorders.PaletteBorder MetalBorders.PopupMenuBorder MetalBorders.RolloverButtonBorder MetalBorders.ScrollPaneBorder MetalBorders.TableHeaderBorder MetalBorders.TextFieldBorder MetalBorders.ToggleButtonBorder MetalBorders.ToolBarBorder MetalButtonUI MetalCheckBoxIcon MetalCheckBoxUI MetalComboBoxButton MetalComboBoxEditor MetalComboBoxEditor.UIResource MetalComboBoxIcon MetalComboBoxUI MetalDesktopIconUI MetalFileChooserUI MetalIconFactory MetalIconFactory.FileIcon16 MetalIconFactory.FolderIcon16 MetalIconFactory.PaletteCloseIcon MetalIconFactory.TreeControlIcon MetalIconFactory.TreeFolderIcon MetalIconFactory.TreeLeafIcon MetalInternalFrameTitlePane MetalInternalFrameUI MetalLabelUI MetalLookAndFeel MetalMenuBarUI MetalPopupMenuSeparatorUI MetalProgressBarUI MetalRadioButtonUI MetalRootPaneUI MetalScrollBarUI MetalScrollButton MetalScrollPaneUI MetalSeparatorUI MetalSliderUI MetalSplitPaneUI MetalTabbedPaneUI MetalTextFieldUI MetalTheme MetalToggleButtonUI MetalToolBarUI MetalToolTipUI MetalTreeUI Method MethodDescriptor MidiChannel MidiDevice MidiDevice.Info MidiDeviceProvider MidiEvent MidiFileFormat MidiFileReader MidiFileWriter MidiMessage MidiSystem MidiUnavailableException MimeTypeParseException MinimalHTMLWriter MissingFormatArgumentException MissingFormatWidthException MissingResourceException Mixer Mixer.Info MixerProvider ModelMBean ModelMBeanAttributeInfo ModelMBeanConstructorInfo ModelMBeanInfo ModelMBeanInfoSupport ModelMBeanNotificationBroadcaster ModelMBeanNotificationInfo ModelMBeanOperationInfo ModificationItem Modifier Monitor MonitorMBean MonitorNotification MonitorSettingException MouseAdapter MouseDragGestureRecognizer MouseEvent MouseInfo MouseInputAdapter MouseInputListener MouseListener MouseMotionAdapter MouseMotionListener MouseWheelEvent MouseWheelListener MultiButtonUI MultiColorChooserUI MultiComboBoxUI MultiDesktopIconUI MultiDesktopPaneUI MultiDoc MultiDocPrintJob MultiDocPrintService MultiFileChooserUI MultiInternalFrameUI MultiLabelUI MultiListUI MultiLookAndFeel MultiMenuBarUI MultiMenuItemUI MultiOptionPaneUI MultiPanelUI MultiPixelPackedSampleModel MultiPopupMenuUI MultiProgressBarUI MultiRootPaneUI MultiScrollBarUI MultiScrollPaneUI MultiSeparatorUI MultiSliderUI MultiSpinnerUI MultiSplitPaneUI MultiTabbedPaneUI MultiTableHeaderUI MultiTableUI MultiTextUI MultiToolBarUI MultiToolTipUI MultiTreeUI MultiViewportUI MulticastSocket MultipleComponentProfileHelper MultipleComponentProfileHolder MultipleDocumentHandling MultipleMaster MutableAttributeSet MutableComboBoxModel MutableTreeNode NON_EXISTENT NO_IMPLEMENT NO_MEMORY NO_PERMISSION NO_RESOURCES NO_RESPONSE NVList Name NameAlreadyBoundException NameCallback NameClassPair NameComponent NameComponentHelper NameComponentHolder NameDynAnyPair NameDynAnyPairHelper NameDynAnyPairSeqHelper NameHelper NameHolder NameList NameNotFoundException NameParser NameValuePair NameValuePair NameValuePairHelper NameValuePairHelper NameValuePairSeqHelper NamedNodeMap NamedValue NamespaceChangeListener NamespaceContext NamespaceSupport Naming NamingContext NamingContextExt NamingContextExtHelper NamingContextExtHolder NamingContextExtOperations NamingContextExtPOA NamingContextHelper NamingContextHolder NamingContextOperations NamingContextPOA NamingEnumeration NamingEvent NamingException NamingExceptionEvent NamingListener NamingManager NamingSecurityException NavigationFilter NavigationFilter.FilterBypass NegativeArraySizeException NetPermission NetworkInterface NoClassDefFoundError NoConnectionPendingException NoContext NoContextHelper NoInitialContextException NoPermissionException NoRouteToHostException NoServant NoServantHelper NoSuchAlgorithmException NoSuchAttributeException NoSuchElementException NoSuchFieldError NoSuchFieldException NoSuchMethodError NoSuchMethodException NoSuchObjectException NoSuchPaddingException NoSuchProviderException Node NodeChangeEvent NodeChangeListener NodeList NonReadableChannelException NonWritableChannelException NoninvertibleTransformException NotActiveException NotBoundException NotCompliantMBeanException NotContextException NotEmpty NotEmptyHelper NotEmptyHolder NotFound NotFoundHelper NotFoundHolder NotFoundReason NotFoundReasonHelper NotFoundReasonHolder NotOwnerException NotSerializableException NotYetBoundException NotYetConnectedException Notation Notification NotificationBroadcaster NotificationBroadcasterSupport NotificationEmitter NotificationFilter NotificationFilterSupport NotificationListener NotificationResult NullCipher NullPointerException Number NumberFormat NumberFormat.Field NumberFormatException NumberFormatter NumberOfDocuments NumberOfInterveningJobs NumberUp NumberUpSupported NumericShaper OAEPParameterSpec OBJECT_NOT_EXIST OBJ_ADAPTER OMGVMCID ORB ORB ORBIdHelper ORBInitInfo ORBInitInfoOperations ORBInitializer ORBInitializerOperations ObjID Object Object ObjectAlreadyActive ObjectAlreadyActiveHelper ObjectChangeListener ObjectFactory ObjectFactoryBuilder ObjectHelper ObjectHolder ObjectIdHelper ObjectIdHelper ObjectImpl ObjectImpl ObjectInput ObjectInputStream ObjectInputStream.GetField ObjectInputValidation ObjectInstance ObjectName ObjectNotActive ObjectNotActiveHelper ObjectOutput ObjectOutputStream ObjectOutputStream.PutField ObjectReferenceFactory ObjectReferenceFactoryHelper ObjectReferenceFactoryHolder ObjectReferenceTemplate ObjectReferenceTemplateHelper ObjectReferenceTemplateHolder ObjectReferenceTemplateSeqHelper ObjectReferenceTemplateSeqHolder ObjectStreamClass ObjectStreamConstants ObjectStreamException ObjectStreamField ObjectView Observable Observer OceanTheme OctetSeqHelper OctetSeqHolder Oid OpenDataException OpenMBeanAttributeInfo OpenMBeanAttributeInfoSupport OpenMBeanConstructorInfo OpenMBeanConstructorInfoSupport OpenMBeanInfo OpenMBeanInfoSupport OpenMBeanOperationInfo OpenMBeanOperationInfoSupport OpenMBeanParameterInfo OpenMBeanParameterInfoSupport OpenType OpenType OperatingSystemMXBean Operation OperationNotSupportedException OperationsException Option OptionPaneUI OptionalDataException OrientationRequested OutOfMemoryError OutputDeviceAssigned OutputKeys OutputStream OutputStream OutputStream OutputStreamWriter OverlappingFileLockException OverlayLayout Override Owner PBEKey PBEKeySpec PBEParameterSpec PDLOverrideSupported PERSIST_STORE PKCS8EncodedKeySpec PKIXBuilderParameters PKIXCertPathBuilderResult PKIXCertPathChecker PKIXCertPathValidatorResult PKIXParameters POA POAHelper POAManager POAManagerOperations POAOperations PRIVATE_MEMBER PSSParameterSpec PSource PSource.PSpecified PUBLIC_MEMBER Pack200 Pack200.Packer Pack200.Unpacker Package PackedColorModel PageAttributes PageAttributes.ColorType PageAttributes.MediaType PageAttributes.OrientationRequestedType PageAttributes.OriginType PageAttributes.PrintQualityType PageFormat PageRanges Pageable PagedResultsControl PagedResultsResponseControl PagesPerMinute PagesPerMinuteColor Paint PaintContext PaintEvent Panel PanelUI Paper ParagraphView ParagraphView Parameter ParameterBlock ParameterDescriptor ParameterMetaData ParameterMode ParameterModeHelper ParameterModeHolder ParameterizedType ParseException ParsePosition Parser Parser ParserAdapter ParserConfigurationException ParserDelegator ParserFactory PartialResultException PasswordAuthentication PasswordCallback PasswordView Patch PathIterator Pattern PatternSyntaxException Permission Permission PermissionCollection Permissions PersistenceDelegate PersistentMBean PhantomReference Pipe Pipe.SinkChannel Pipe.SourceChannel PipedInputStream PipedOutputStream PipedReader PipedWriter PixelGrabber PixelInterleavedSampleModel PlainDocument PlainView Point Point2D Point2D.Double Point2D.Float PointerInfo Policy Policy Policy PolicyError PolicyErrorCodeHelper PolicyErrorHelper PolicyErrorHolder PolicyFactory PolicyFactoryOperations PolicyHelper PolicyHolder PolicyListHelper PolicyListHolder PolicyNode PolicyOperations PolicyQualifierInfo PolicyTypeHelper Polygon PooledConnection Popup PopupFactory PopupMenu PopupMenuEvent PopupMenuListener PopupMenuUI Port Port.Info PortUnreachableException PortableRemoteObject PortableRemoteObjectDelegate Position Position.Bias Predicate PreferenceChangeEvent PreferenceChangeListener Preferences PreferencesFactory PreparedStatement PresentationDirection Principal Principal PrincipalHolder PrintEvent PrintException PrintGraphics PrintJob PrintJobAdapter PrintJobAttribute PrintJobAttributeEvent PrintJobAttributeListener PrintJobAttributeSet PrintJobEvent PrintJobListener PrintQuality PrintRequestAttribute PrintRequestAttributeSet PrintService PrintServiceAttribute PrintServiceAttributeEvent PrintServiceAttributeListener PrintServiceAttributeSet PrintServiceLookup PrintStream PrintWriter Printable PrinterAbortException PrinterException PrinterGraphics PrinterIOException PrinterInfo PrinterIsAcceptingJobs PrinterJob PrinterLocation PrinterMakeAndModel PrinterMessageFromOperator PrinterMoreInfo PrinterMoreInfoManufacturer PrinterName PrinterResolution PrinterState PrinterStateReason PrinterStateReasons PrinterURI PriorityBlockingQueue PriorityQueue PrivateClassLoader PrivateCredentialPermission PrivateKey PrivateMLet PrivilegedAction PrivilegedActionException PrivilegedExceptionAction Process ProcessBuilder ProcessingInstruction ProfileDataException ProfileIdHelper ProgressBarUI ProgressMonitor ProgressMonitorInputStream Properties PropertyChangeEvent PropertyChangeListener PropertyChangeListenerProxy PropertyChangeSupport PropertyDescriptor PropertyEditor PropertyEditorManager PropertyEditorSupport PropertyPermission PropertyResourceBundle PropertyVetoException ProtectionDomain ProtocolException Provider Provider.Service ProviderException Proxy Proxy Proxy.Type ProxySelector PublicKey PushbackInputStream PushbackReader QName QuadCurve2D QuadCurve2D.Double QuadCurve2D.Float Query QueryEval QueryExp Queue QueuedJobCount RC2ParameterSpec RC5ParameterSpec REBIND REQUEST_PROCESSING_POLICY_ID RGBImageFilter RMIClassLoader RMIClassLoaderSpi RMIClientSocketFactory RMIConnection RMIConnectionImpl RMIConnectionImpl_Stub RMIConnector RMIConnectorServer RMICustomMaxStreamFormat RMIFailureHandler RMIIIOPServerImpl RMIJRMPServerImpl RMISecurityException RMISecurityManager RMIServer RMIServerImpl RMIServerImpl_Stub RMIServerSocketFactory RMISocketFactory RSAKey RSAKeyGenParameterSpec RSAMultiPrimePrivateCrtKey RSAMultiPrimePrivateCrtKeySpec RSAOtherPrimeInfo RSAPrivateCrtKey RSAPrivateCrtKeySpec RSAPrivateKey RSAPrivateKeySpec RSAPublicKey RSAPublicKeySpec RTFEditorKit Random RandomAccess RandomAccessFile Raster RasterFormatException RasterOp Rdn ReadOnlyBufferException ReadWriteLock Readable ReadableByteChannel Reader RealmCallback RealmChoiceCallback Receiver Rectangle Rectangle2D Rectangle2D.Double Rectangle2D.Float RectangularShape ReentrantLock ReentrantReadWriteLock ReentrantReadWriteLock.ReadLock ReentrantReadWriteLock.WriteLock Ref RefAddr Reference Reference ReferenceQueue ReferenceUriSchemesSupported Referenceable ReferralException ReflectPermission ReflectionException RefreshFailedException Refreshable Region RegisterableService Registry RegistryHandler RejectedExecutionException RejectedExecutionHandler Relation RelationException RelationNotFoundException RelationNotification RelationService RelationServiceMBean RelationServiceNotRegisteredException RelationSupport RelationSupportMBean RelationType RelationTypeNotFoundException RelationTypeSupport RemarshalException Remote RemoteCall RemoteException RemoteObject RemoteObjectInvocationHandler RemoteRef RemoteServer RemoteStub RenderContext RenderableImage RenderableImageOp RenderableImageProducer RenderedImage RenderedImageFactory Renderer RenderingHints RenderingHints.Key RepaintManager ReplicateScaleFilter RepositoryIdHelper Request RequestInfo RequestInfoOperations RequestProcessingPolicy RequestProcessingPolicyOperations RequestProcessingPolicyValue RequestingUserName RequiredModelMBean RescaleOp ResolutionSyntax ResolveResult Resolver ResourceBundle ResponseCache ResponseHandler Result ResultSet ResultSetMetaData Retention RetentionPolicy ReverbType Robot Role RoleInfo RoleInfoNotFoundException RoleList RoleNotFoundException RoleResult RoleStatus RoleUnresolved RoleUnresolvedList RootPaneContainer RootPaneUI RoundRectangle2D RoundRectangle2D.Double RoundRectangle2D.Float RoundingMode RowMapper RowSet RowSetEvent RowSetInternal RowSetListener RowSetMetaData RowSetMetaDataImpl RowSetReader RowSetWarning RowSetWriter RuleBasedCollator RunTime RunTimeOperations Runnable Runtime RuntimeErrorException RuntimeException RuntimeMBeanException RuntimeMXBean RuntimeOperationsException RuntimePermission SAXException SAXNotRecognizedException SAXNotSupportedException SAXParseException SAXParser SAXParserFactory SAXResult SAXSource SAXTransformerFactory SERVANT_RETENTION_POLICY_ID SQLData SQLException SQLInput SQLInputImpl SQLOutput SQLOutputImpl SQLPermission SQLWarning SSLContext SSLContextSpi SSLEngine SSLEngineResult SSLEngineResult.HandshakeStatus SSLEngineResult.Status SSLException SSLHandshakeException SSLKeyException SSLPeerUnverifiedException SSLPermission SSLProtocolException SSLServerSocket SSLServerSocketFactory SSLSession SSLSessionBindingEvent SSLSessionBindingListener SSLSessionContext SSLSocket SSLSocketFactory SUCCESSFUL SYNC_WITH_TRANSPORT SYSTEM_EXCEPTION SampleModel Sasl SaslClient SaslClientFactory SaslException SaslServer SaslServerFactory Savepoint Scanner ScatteringByteChannel ScheduledExecutorService ScheduledFuture ScheduledThreadPoolExecutor Schema SchemaFactory SchemaFactoryLoader SchemaViolationException ScrollBarUI ScrollPane ScrollPaneAdjustable ScrollPaneConstants ScrollPaneLayout ScrollPaneLayout.UIResource ScrollPaneUI Scrollable Scrollbar SealedObject SearchControls SearchResult SecretKey SecretKeyFactory SecretKeyFactorySpi SecretKeySpec SecureCacheResponse SecureClassLoader SecureRandom SecureRandomSpi Security SecurityException SecurityManager SecurityPermission Segment SelectableChannel SelectionKey Selector SelectorProvider Semaphore SeparatorUI Sequence SequenceInputStream Sequencer Sequencer.SyncMode SerialArray SerialBlob SerialClob SerialDatalink SerialException SerialJavaObject SerialRef SerialStruct Serializable SerializablePermission Servant ServantActivator ServantActivatorHelper ServantActivatorOperations ServantActivatorPOA ServantAlreadyActive ServantAlreadyActiveHelper ServantLocator ServantLocatorHelper ServantLocatorOperations ServantLocatorPOA ServantManager ServantManagerOperations ServantNotActive ServantNotActiveHelper ServantObject ServantRetentionPolicy ServantRetentionPolicyOperations ServantRetentionPolicyValue ServerCloneException ServerError ServerException ServerIdHelper ServerNotActiveException ServerRef ServerRequest ServerRequestInfo ServerRequestInfoOperations ServerRequestInterceptor ServerRequestInterceptorOperations ServerRuntimeException ServerSocket ServerSocketChannel ServerSocketFactory ServiceContext ServiceContextHelper ServiceContextHolder ServiceContextListHelper ServiceContextListHolder ServiceDetail ServiceDetailHelper ServiceIdHelper ServiceInformation ServiceInformationHelper ServiceInformationHolder ServiceNotFoundException ServicePermission ServiceRegistry ServiceRegistry.Filter ServiceUI ServiceUIFactory ServiceUnavailableException Set SetOfIntegerSyntax SetOverrideType SetOverrideTypeHelper Severity Shape ShapeGraphicAttribute SheetCollate Short ShortBuffer ShortBufferException ShortHolder ShortLookupTable ShortMessage ShortSeqHelper ShortSeqHolder Sides Signature SignatureException SignatureSpi SignedObject Signer SimpleAttributeSet SimpleBeanInfo SimpleDateFormat SimpleDoc SimpleFormatter SimpleTimeZone SimpleType SinglePixelPackedSampleModel SingleSelectionModel Size2DSyntax SizeLimitExceededException SizeRequirements SizeSequence Skeleton SkeletonMismatchException SkeletonNotFoundException SliderUI Socket SocketAddress SocketChannel SocketException SocketFactory SocketHandler SocketImpl SocketImplFactory SocketOptions SocketPermission SocketSecurityException SocketTimeoutException SoftBevelBorder SoftReference SortControl SortKey SortResponseControl SortedMap SortedSet SortingFocusTraversalPolicy Soundbank SoundbankReader SoundbankResource Source SourceDataLine SourceLocator SpinnerDateModel SpinnerListModel SpinnerModel SpinnerNumberModel SpinnerUI SplitPaneUI Spring SpringLayout SpringLayout.Constraints SslRMIClientSocketFactory SslRMIServerSocketFactory Stack StackOverflowError StackTraceElement StandardMBean StartTlsRequest StartTlsResponse State StateEdit StateEditable StateFactory Statement Statement StreamCorruptedException StreamHandler StreamPrintService StreamPrintServiceFactory StreamResult StreamSource StreamTokenizer Streamable StreamableValue StrictMath String StringBuffer StringBufferInputStream StringBuilder StringCharacterIterator StringContent StringHolder StringIndexOutOfBoundsException StringMonitor StringMonitorMBean StringNameHelper StringReader StringRefAddr StringSelection StringSeqHelper StringSeqHolder StringTokenizer StringValueExp StringValueHelper StringWriter Stroke Struct StructMember StructMemberHelper Stub StubDelegate StubNotFoundException Style StyleConstants StyleConstants.CharacterConstants StyleConstants.ColorConstants StyleConstants.FontConstants StyleConstants.ParagraphConstants StyleContext StyleSheet StyleSheet.BoxPainter StyleSheet.ListPainter StyledDocument StyledEditorKit StyledEditorKit.AlignmentAction StyledEditorKit.BoldAction StyledEditorKit.FontFamilyAction StyledEditorKit.FontSizeAction StyledEditorKit.ForegroundAction StyledEditorKit.ItalicAction StyledEditorKit.StyledTextAction StyledEditorKit.UnderlineAction Subject SubjectDelegationPermission SubjectDomainCombiner SupportedValuesAttribute SuppressWarnings SwingConstants SwingPropertyChangeSupport SwingUtilities SyncFactory SyncFactoryException SyncFailedException SyncProvider SyncProviderException SyncResolver SyncScopeHelper SynchronousQueue SynthConstants SynthContext SynthGraphicsUtils SynthLookAndFeel SynthPainter SynthStyle SynthStyleFactory Synthesizer SysexMessage System SystemColor SystemException SystemFlavorMap TAG_ALTERNATE_IIOP_ADDRESS TAG_CODE_SETS TAG_INTERNET_IOP TAG_JAVA_CODEBASE TAG_MULTIPLE_COMPONENTS TAG_ORB_TYPE TAG_POLICIES TAG_RMI_CUSTOM_MAX_STREAM_FORMAT TCKind THREAD_POLICY_ID TIMEOUT TRANSACTION_MODE TRANSACTION_REQUIRED TRANSACTION_ROLLEDBACK TRANSACTION_UNAVAILABLE TRANSIENT TRANSPORT_RETRY TabExpander TabSet TabStop TabableView TabbedPaneUI TableCellEditor TableCellRenderer TableColumn TableColumnModel TableColumnModelEvent TableColumnModelListener TableHeaderUI TableModel TableModelEvent TableModelListener TableUI TableView TabularData TabularDataSupport TabularType TagElement TaggedComponent TaggedComponentHelper TaggedComponentHolder TaggedProfile TaggedProfileHelper TaggedProfileHolder Target TargetDataLine TargetedNotification Templates TemplatesHandler Text TextAction TextArea TextAttribute TextComponent TextEvent TextField TextHitInfo TextInputCallback TextLayout TextLayout.CaretPolicy TextListener TextMeasurer TextOutputCallback TextSyntax TextUI TexturePaint Thread Thread.State Thread.UncaughtExceptionHandler ThreadDeath ThreadFactory ThreadGroup ThreadInfo ThreadLocal ThreadMXBean ThreadPolicy ThreadPolicyOperations ThreadPolicyValue ThreadPoolExecutor ThreadPoolExecutor.AbortPolicy ThreadPoolExecutor.CallerRunsPolicy ThreadPoolExecutor.DiscardOldestPolicy ThreadPoolExecutor.DiscardPolicy Throwable Tie TileObserver Time TimeLimitExceededException TimeUnit TimeZone TimeoutException Timer Timer Timer TimerAlarmClockNotification TimerMBean TimerNotification TimerTask Timestamp Timestamp TitledBorder TooManyListenersException ToolBarUI ToolTipManager ToolTipUI Toolkit Track TransactionRequiredException TransactionRolledbackException TransactionService TransactionalWriter TransferHandler Transferable TransformAttribute Transformer TransformerConfigurationException TransformerException TransformerFactory TransformerFactoryConfigurationError TransformerHandler Transmitter Transparency TreeCellEditor TreeCellRenderer TreeExpansionEvent TreeExpansionListener TreeMap TreeModel TreeModelEvent TreeModelListener TreeNode TreePath TreeSelectionEvent TreeSelectionListener TreeSelectionModel TreeSet TreeUI TreeWillExpandListener TrustAnchor TrustManager TrustManagerFactory TrustManagerFactorySpi Type TypeCode TypeCodeHolder TypeInfo TypeInfoProvider TypeMismatch TypeMismatch TypeMismatch TypeMismatchHelper TypeMismatchHelper TypeNotPresentException TypeVariable Types UID UIDefaults UIDefaults.ActiveValue UIDefaults.LazyInputMap UIDefaults.LazyValue UIDefaults.ProxyLazyValue UIManager UIManager.LookAndFeelInfo UIResource ULongLongSeqHelper ULongLongSeqHolder ULongSeqHelper ULongSeqHolder UNKNOWN UNKNOWN UNSUPPORTED_POLICY UNSUPPORTED_POLICY_VALUE URI URIException URIResolver URISyntax URISyntaxException URL URLClassLoader URLConnection URLDecoder URLEncoder URLStreamHandler URLStreamHandlerFactory URLStringHelper USER_EXCEPTION UShortSeqHelper UShortSeqHolder UTFDataFormatException UUID UndeclaredThrowableException UndoManager UndoableEdit UndoableEditEvent UndoableEditListener UndoableEditSupport UnexpectedException UnicastRemoteObject UnionMember UnionMemberHelper UnknownEncoding UnknownEncodingHelper UnknownError UnknownException UnknownFormatConversionException UnknownFormatFlagsException UnknownGroupException UnknownHostException UnknownHostException UnknownObjectException UnknownServiceException UnknownUserException UnknownUserExceptionHelper UnknownUserExceptionHolder UnmappableCharacterException UnmarshalException UnmodifiableClassException UnmodifiableSetException UnrecoverableEntryException UnrecoverableKeyException Unreferenced UnresolvedAddressException UnresolvedPermission UnsatisfiedLinkError UnsolicitedNotification UnsolicitedNotificationEvent UnsolicitedNotificationListener UnsupportedAddressTypeException UnsupportedAudioFileException UnsupportedCallbackException UnsupportedCharsetException UnsupportedClassVersionError UnsupportedEncodingException UnsupportedFlavorException UnsupportedLookAndFeelException UnsupportedOperationException UserDataHandler UserException Util UtilDelegate Utilities VMID VM_ABSTRACT VM_CUSTOM VM_NONE VM_TRUNCATABLE Validator ValidatorHandler ValueBase ValueBaseHelper ValueBaseHolder ValueExp ValueFactory ValueHandler ValueHandlerMultiFormat ValueInputStream ValueMember ValueMemberHelper ValueOutputStream VariableHeightLayoutCache Vector VerifyError VersionSpecHelper VetoableChangeListener VetoableChangeListenerProxy VetoableChangeSupport View ViewFactory ViewportLayout ViewportUI VirtualMachineError Visibility VisibilityHelper VoiceStatus Void VolatileImage WCharSeqHelper WCharSeqHolder WStringSeqHelper WStringSeqHolder WStringValueHelper WeakHashMap WeakReference WebRowSet WildcardType Window WindowAdapter WindowConstants WindowEvent WindowFocusListener WindowListener WindowStateListener WrappedPlainView WritableByteChannel WritableRaster WritableRenderedImage WriteAbortedException Writer WrongAdapter WrongAdapterHelper WrongPolicy WrongPolicyHelper WrongTransaction WrongTransactionHelper WrongTransactionHolder X500Principal X500PrivateCredential X509CRL X509CRLEntry X509CRLSelector X509CertSelector X509Certificate X509Certificate X509EncodedKeySpec X509ExtendedKeyManager X509Extension X509KeyManager X509TrustManager XAConnection XADataSource XAException XAResource XMLConstants XMLDecoder XMLEncoder XMLFilter XMLFilterImpl XMLFormatter XMLGregorianCalendar XMLParseException XMLReader XMLReaderAdapter XMLReaderFactory XPath XPathConstants XPathException XPathExpression XPathExpressionException XPathFactory XPathFactoryConfigurationException XPathFunction XPathFunctionException XPathFunctionResolver XPathVariableResolver Xid XmlReader XmlWriter ZipEntry ZipException ZipFile ZipInputStream ZipOutputStream ZoneView _BindingIteratorImplBase _BindingIteratorStub _DynAnyFactoryStub _DynAnyStub _DynArrayStub _DynEnumStub _DynFixedStub _DynSequenceStub _DynStructStub _DynUnionStub _DynValueStub _IDLTypeStub _NamingContextExtStub _NamingContextImplBase _NamingContextStub _PolicyStub _Remote_Stub _ServantActivatorStub _ServantLocatorStub"+list_keywords = Set.fromList $ words $ "abstract as by catch class do else false final finally for if is import internal lazy null object open out override package private protected public ref return super this throw trait true try typealias val var when while with out in data class"+list_types = Set.fromList $ words $ "Boolean Byte Char Double Float Int Long Short Unit"++regex_'2f'2f'5cs'2aBEGIN'2e'2a'24 = compileRegex True "//\\s*BEGIN.*$"+regex_'2f'2f'5cs'2aEND'2e'2a'24 = compileRegex True "//\\s*END.*$"+regex_'5c'2e'28format'7cprintf'29'5cb = compileRegex True "\\.(format|printf)\\b"+regex_'5cb'5b'5f'5cw'5d'5b'5f'5cw'5cd'5d'2a'28'3f'3d'5b'5cs'5d'2a'28'2f'5c'2a'5cs'2a'5cd'2b'5cs'2a'5c'2a'2f'5cs'2a'29'3f'5b'28'5d'29 = compileRegex True "\\b[_\\w][_\\w\\d]*(?=[\\s]*(/\\*\\s*\\d+\\s*\\*/\\s*)?[(])"+regex_'5b'2e'5d'7b1'2c1'7d = compileRegex True "[.]{1,1}"+regex_'25'28'5cd'2b'5c'24'29'3f'28'2d'7c'23'7c'5c'2b'7c'5c_'7c0'7c'2c'7c'5c'28'29'2a'5cd'2a'28'5c'2e'5cd'2b'29'3f'5ba'2dhosxA'2dCEGHSX'5d = compileRegex True "%(\\d+\\$)?(-|#|\\+|\\ |0|,|\\()*\\d*(\\.\\d+)?[a-hosxA-CEGHSX]"+regex_'25'28'5cd'2b'5c'24'29'3f'28'2d'7c'23'7c'5c'2b'7c'5c_'7c0'7c'2c'7c'5c'28'29'2a'5cd'2a'28t'7cT'29'28a'7cA'7cb'7cB'7cc'7cC'7cd'7cD'7ce'7cF'7ch'7cH'7cI'7cj'7ck'7cl'7cL'7cm'7cM'7cN'7cp'7cP'7cQ'7cr'7cR'7cs'7cS'7cT'7cy'7cY'7cz'7cZ'29 = compileRegex True "%(\\d+\\$)?(-|#|\\+|\\ |0|,|\\()*\\d*(t|T)(a|A|b|B|c|C|d|D|e|F|h|H|I|j|k|l|L|m|M|N|p|P|Q|r|R|s|S|T|y|Y|z|Z)"+regex_'25'28'25'7cn'29 = compileRegex True "%(%|n)"+regex_'5cb'5b'5fa'2dzA'2dZ'5d'5cw'2a'28'3f'3d'5b'5cs'5d'2a'29 = compileRegex True "\\b[_a-zA-Z]\\w*(?=[\\s]*)"++parseRules ("Kotlin","Normal") =+  (((Text.Highlighting.Kate.Syntax.Javadoc.parseExpression (Just ("Javadoc",""))))+   <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_keywords >>= withAttribute KeywordTok))+   <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_types >>= withAttribute DataTypeTok))+   <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_java15 >>= withAttribute NormalTok))+   <|>+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_kotlin2 >>= withAttribute NormalTok))+   <|>+   (withChildren (pFloat >>= withAttribute FloatTok) ((pAnyChar "fF" >>= withAttribute FloatTok)))+   <|>+   ((pHlCHex >>= withAttribute BaseNTok))+   <|>+   (withChildren (pInt >>= withAttribute DecValTok) (((pString False "ULL" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "LUL" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "LLU" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "UL" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "LU" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "LL" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "U" >>= withAttribute DecValTok))+                                                     <|>+                                                     ((pString False "L" >>= withAttribute DecValTok))))+   <|>+   ((pHlCChar >>= withAttribute CharTok))+   <|>+   ((pRegExpr regex_'2f'2f'5cs'2aBEGIN'2e'2a'24 >>= withAttribute DecValTok))+   <|>+   ((pRegExpr regex_'2f'2f'5cs'2aEND'2e'2a'24 >>= withAttribute DecValTok))+   <|>+   ((pDetectChar False '"' >>= withAttribute StringTok) >>~ pushContext ("Kotlin","String"))+   <|>+   ((pRegExpr regex_'5c'2e'28format'7cprintf'29'5cb >>= withAttribute FunctionTok) >>~ pushContext ("Kotlin","Printf"))+   <|>+   ((pDetect2Chars False '/' '/' >>= withAttribute CommentTok) >>~ pushContext ("Kotlin","Commentar 1"))+   <|>+   ((pDetect2Chars False '/' '*' >>= withAttribute CommentTok) >>~ pushContext ("Kotlin","Commentar 2"))+   <|>+   ((pDetectChar False '{' >>= withAttribute NormalTok))+   <|>+   ((pDetectChar False '}' >>= withAttribute NormalTok))+   <|>+   ((pRegExpr regex_'5cb'5b'5f'5cw'5d'5b'5f'5cw'5cd'5d'2a'28'3f'3d'5b'5cs'5d'2a'28'2f'5c'2a'5cs'2a'5cd'2b'5cs'2a'5c'2a'2f'5cs'2a'29'3f'5b'28'5d'29 >>= withAttribute FunctionTok))+   <|>+   ((pRegExpr regex_'5b'2e'5d'7b1'2c1'7d >>= withAttribute NormalTok) >>~ pushContext ("Kotlin","Member"))+   <|>+   ((pAnyChar ":!%&()+,-/.*<=>?[]|~^;" >>= withAttribute NormalTok))+   <|>+   (currentContext >>= \x -> guard (x == ("Kotlin","Normal")) >> pDefault >>= withAttribute NormalTok))++parseRules ("Kotlin","String") =+  (((pLineContinue >>= withAttribute StringTok))+   <|>+   ((pHlCStringChar >>= withAttribute CharTok))+   <|>+   ((pDetectChar False '"' >>= withAttribute StringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("Kotlin","String")) >> pDefault >>= withAttribute StringTok))++parseRules ("Kotlin","Printf") =+  (((pDetectChar False ';' >>= withAttribute NormalTok) >>~ (popContext))+   <|>+   ((pDetectChar False '"' >>= withAttribute StringTok) >>~ pushContext ("Kotlin","PrintfString"))+   <|>+   (currentContext >>= \x -> guard (x == ("Kotlin","Printf")) >> pDefault >>= withAttribute NormalTok))++parseRules ("Kotlin","PrintfString") =+  (((pLineContinue >>= withAttribute StringTok))+   <|>+   ((pHlCStringChar >>= withAttribute CharTok))+   <|>+   ((pDetectChar False '"' >>= withAttribute StringTok) >>~ (popContext))+   <|>+   ((pRegExpr regex_'25'28'5cd'2b'5c'24'29'3f'28'2d'7c'23'7c'5c'2b'7c'5c_'7c0'7c'2c'7c'5c'28'29'2a'5cd'2a'28'5c'2e'5cd'2b'29'3f'5ba'2dhosxA'2dCEGHSX'5d >>= withAttribute CharTok))+   <|>+   ((pRegExpr regex_'25'28'5cd'2b'5c'24'29'3f'28'2d'7c'23'7c'5c'2b'7c'5c_'7c0'7c'2c'7c'5c'28'29'2a'5cd'2a'28t'7cT'29'28a'7cA'7cb'7cB'7cc'7cC'7cd'7cD'7ce'7cF'7ch'7cH'7cI'7cj'7ck'7cl'7cL'7cm'7cM'7cN'7cp'7cP'7cQ'7cr'7cR'7cs'7cS'7cT'7cy'7cY'7cz'7cZ'29 >>= withAttribute CharTok))+   <|>+   ((pRegExpr regex_'25'28'25'7cn'29 >>= withAttribute CharTok))+   <|>+   (currentContext >>= \x -> guard (x == ("Kotlin","PrintfString")) >> pDefault >>= withAttribute StringTok))++parseRules ("Kotlin","Member") =+  (((pRegExpr regex_'5cb'5b'5fa'2dzA'2dZ'5d'5cw'2a'28'3f'3d'5b'5cs'5d'2a'29 >>= withAttribute FunctionTok) >>~ (popContext))+   <|>+   ((popContext) >> currentContext >>= parseRules))++parseRules ("Kotlin","Commentar 1") =+  (currentContext >>= \x -> guard (x == ("Kotlin","Commentar 1")) >> pDefault >>= withAttribute CommentTok)++parseRules ("Kotlin","Commentar 2") =+  (((pDetect2Chars False '*' '/' >>= withAttribute CommentTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("Kotlin","Commentar 2")) >> pDefault >>= withAttribute CommentTok))++parseRules ("Javadoc", _) = Text.Highlighting.Kate.Syntax.Javadoc.parseExpression Nothing++parseRules x = parseRules ("Kotlin","Normal") <|> fail ("Unknown context" ++ show x)
Text/Highlighting/Kate/Syntax/Maxima.hs view
@@ -73,7 +73,7 @@ parseRules ("Maxima","Normal Text") =   (((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_MaximaFunction >>= withAttribute FunctionTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_MaximaVariable >>= withAttribute NormalTok))+   ((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_MaximaVariable >>= withAttribute VariableTok))    <|>    ((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_MaximaKeyword >>= withAttribute KeywordTok))    <|>@@ -101,7 +101,7 @@    (currentContext >>= \x -> guard (x == ("Maxima","String")) >> pDefault >>= withAttribute StringTok))  parseRules ("Maxima","Comment") =-  (((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_SpecialComment >>= withAttribute NormalTok))+  (((pKeyword " \n\t.():!+,-<=>&*/;?[]^{|}~\\@#" list_SpecialComment >>= withAttribute SpecialStringTok))    <|>    ((pDetectSpaces >>= withAttribute CommentTok))    <|>
Text/Highlighting/Kate/Syntax/Perl.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file perl.xml, version 1.30, by Anders Lund (anders@alweb.dk) -}+   highlighting file perl.xml, version 1.31, by Anders Lund (anders@alweb.dk) -}  module Text.Highlighting.Kate.Syntax.Perl           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -129,7 +129,7 @@  regex_'23'21'5c'2f'2e'2a = compileRegex True "#!\\/.*" regex_'5cbsub'5cs'2b = compileRegex True "\\bsub\\s+"-regex_'5c'3d'28'3f'3ahead'5b1'2d6'5d'7cover'7cback'7citem'7cfor'7cbegin'7cend'7cpod'29'28'5cs'7c'24'29 = compileRegex True "\\=(?:head[1-6]|over|back|item|for|begin|end|pod)(\\s|$)"+regex_'5c'3d'5cw'2b'28'5cs'7c'24'29 = compileRegex True "\\=\\w+(\\s|$)" regex_'5cb'5c'2d'3f0'5bxX'5d'28'5b0'2d9a'2dfA'2dF'5d'7c'5f'5b0'2d9a'2dfA'2dF'5d'29'2b = compileRegex True "\\b\\-?0[xX]([0-9a-fA-F]|_[0-9a-fA-F])+" regex_'5cb'5c'2d'3f0'5bbB'5d'28'5b01'5d'7c'5f'5b01'5d'29'2b = compileRegex True "\\b\\-?0[bB]([01]|_[01])+" regex_'5cb'5c'2d'3f0'5b1'2d7'5d'28'5b0'2d7'5d'7c'5f'5b0'2d7'5d'29'2a = compileRegex True "\\b\\-?0[1-7]([0-7]|_[0-7])*"@@ -227,7 +227,7 @@    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_pragmas >>= withAttribute KeywordTok))    <|>-   ((pColumn 0 >> pRegExpr regex_'5c'3d'28'3f'3ahead'5b1'2d6'5d'7cover'7cback'7citem'7cfor'7cbegin'7cend'7cpod'29'28'5cs'7c'24'29 >>= withAttribute CommentTok) >>~ pushContext ("Perl","pod"))+   ((pColumn 0 >> pRegExpr regex_'5c'3d'5cw'2b'28'5cs'7c'24'29 >>= withAttribute CommentTok) >>~ pushContext ("Perl","pod"))    <|>    ((pDetectSpaces >>= withAttribute NormalTok))    <|>
Text/Highlighting/Kate/Syntax/Php.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file php.xml, version 1.44, by  -}+   highlighting file php.xml, version 1.47, by  -}  module Text.Highlighting.Kate.Syntax.Php           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -85,7 +85,7 @@   return (attr, txt)  list_control_structures = Set.fromList $ words $ "as case default if else elseif while do for foreach break continue switch declare return require include require_once include_once endif endwhile endfor endforeach endswitch"-list_keywords = Set.fromList $ words $ "abstract callable catch class clone const exception extends final function global implements instanceof insteadof interface new self static parent private protected public throw try trait and or xor var namespace use"+list_keywords = Set.fromList $ words $ "abstract callable catch class clone const exception extends final finally function global implements instanceof insteadof interface new self static parent private protected public throw try trait and or xor var namespace use yield" list_constants = Set.fromList $ words $ "__line__ __file__ __dir__ __function__ __class__ __method__ __namespace__ __trait__ __compiler_halt_offset__ abday_1 abday_2 abday_3 abday_4 abday_5 abday_6 abday_7 abmon_1 abmon_10 abmon_11 abmon_12 abmon_2 abmon_3 abmon_4 abmon_5 abmon_6 abmon_7 abmon_8 abmon_9 af_inet af_inet6 af_unix alt_digits am_str assert_active assert_bail assert_callback assert_quiet_eval assert_warning cal_dow_dayno cal_dow_long cal_dow_short cal_easter_always_gregorian cal_easter_always_julian cal_easter_default cal_easter_roman cal_french cal_gregorian cal_jewish cal_jewish_add_alafim cal_jewish_add_alafim_geresh cal_jewish_add_gereshayim cal_julian cal_month_french cal_month_gregorian_long cal_month_gregorian_short cal_month_jewish cal_month_julian_long cal_month_julian_short cal_num_cals case_lower case_upper char_max cit_call_tostring cit_catch_get_child cl_expunge codeset connection_aborted connection_normal connection_timeout count_normal count_recursive cp_move cp_uid credits_all credits_docs credits_fullpage credits_general credits_group credits_modules credits_qa credits_sapi crncystr crypt_blowfish crypt_ext_des crypt_md5 crypt_salt_length crypt_std_des curlauth_any curlauth_anysafe curlauth_basic curlauth_digest curlauth_gssnegotiate curlauth_ntlm curlclosepolicy_callback curlclosepolicy_least_recently_used curlclosepolicy_least_traffic curlclosepolicy_oldest curlclosepolicy_slowest curle_aborted_by_callback curle_bad_calling_order curle_bad_content_encoding curle_bad_function_argument curle_bad_password_entered curle_couldnt_connect curle_couldnt_resolve_host curle_couldnt_resolve_proxy curle_failed_init curle_file_couldnt_read_file curle_ftp_access_denied curle_ftp_bad_download_resume curle_ftp_cant_get_host curle_ftp_cant_reconnect curle_ftp_couldnt_get_size curle_ftp_couldnt_retr_file curle_ftp_couldnt_set_ascii curle_ftp_couldnt_set_binary curle_ftp_couldnt_stor_file curle_ftp_couldnt_use_rest curle_ftp_port_failed curle_ftp_quote_error curle_ftp_user_password_incorrect curle_ftp_weird_227_format curle_ftp_weird_pass_reply curle_ftp_weird_pasv_reply curle_ftp_weird_server_reply curle_ftp_weird_user_reply curle_ftp_write_error curle_function_not_found curle_got_nothing curle_http_not_found curle_http_port_failed curle_http_post_error curle_http_range_error curle_ldap_cannot_bind curle_ldap_search_failed curle_library_not_found curle_malformat_user curle_obsolete curle_ok curle_operation_timeouted curle_out_of_memory curle_partial_file curle_read_error curle_recv_error curle_send_error curle_share_in_use curle_ssl_cacert curle_ssl_certproblem curle_ssl_cipher curle_ssl_connect_error curle_ssl_engine_notfound curle_ssl_engine_setfailed curle_ssl_peer_certificate curle_telnet_option_syntax curle_too_many_redirects curle_unknown_telnet_option curle_unsupported_protocol curle_url_malformat curle_url_malformat_user curle_write_error curlinfo_connect_time curlinfo_content_length_download curlinfo_content_length_upload curlinfo_content_type curlinfo_effective_url curlinfo_filetime curlinfo_header_out curlinfo_header_size curlinfo_http_code curlinfo_namelookup_time curlinfo_pretransfer_time curlinfo_redirect_count curlinfo_redirect_time curlinfo_request_size curlinfo_size_download curlinfo_size_upload curlinfo_speed_download curlinfo_speed_upload curlinfo_ssl_verifyresult curlinfo_starttransfer_time curlinfo_total_time curlmsg_done curlm_bad_easy_handle curlm_bad_handle curlm_call_multi_perform curlm_internal_error curlm_ok curlm_out_of_memory curlopt_binarytransfer curlopt_buffersize curlopt_cainfo curlopt_capath curlopt_closepolicy curlopt_connecttimeout curlopt_cookie curlopt_cookiefile curlopt_cookiejar curlopt_crlf curlopt_customrequest curlopt_dns_cache_timeout curlopt_dns_use_global_cache curlopt_egdsocket curlopt_encoding curlopt_failonerror curlopt_file curlopt_filetime curlopt_followlocation curlopt_forbid_reuse curlopt_fresh_connect curlopt_ftpappend curlopt_ftpascii curlopt_ftplistonly curlopt_ftpport curlopt_ftp_use_eprt curlopt_ftp_use_epsv curlopt_header curlopt_headerfunction curlopt_http200aliases curlopt_httpauth curlopt_httpget curlopt_httpheader curlopt_httpproxytunnel curlopt_http_version curlopt_infile curlopt_infilesize curlopt_interface curlopt_krb4level curlopt_low_speed_limit curlopt_low_speed_time curlopt_maxconnects curlopt_maxredirs curlopt_mute curlopt_netrc curlopt_nobody curlopt_noprogress curlopt_nosignal curlopt_passwdfunction curlopt_port curlopt_post curlopt_postfields curlopt_postquote curlopt_proxy curlopt_proxyauth curlopt_proxyport curlopt_proxytype curlopt_proxyuserpwd curlopt_put curlopt_quote curlopt_random_file curlopt_range curlopt_readdata curlopt_readfunction curlopt_referer curlopt_resume_from curlopt_returntransfer curlopt_sslcert curlopt_sslcertpasswd curlopt_sslcerttype curlopt_sslengine curlopt_sslengine_default curlopt_sslkey curlopt_sslkeypasswd curlopt_sslkeytype curlopt_sslversion curlopt_ssl_cipher_list curlopt_ssl_verifyhost curlopt_ssl_verifypeer curlopt_stderr curlopt_timecondition curlopt_timeout curlopt_timevalue curlopt_transfertext curlopt_unrestricted_auth curlopt_upload curlopt_url curlopt_useragent curlopt_userpwd curlopt_verbose curlopt_writefunction curlopt_writeheader curlproxy_http curlproxy_socks5 curlversion_now curl_http_version_1_0 curl_http_version_1_1 curl_http_version_none curl_netrc_ignored curl_netrc_optional curl_netrc_required curl_timecond_ifmodsince curl_timecond_ifunmodsince curl_timecond_lastmod curl_version_ipv6 curl_version_kerberos4 curl_version_libz curl_version_ssl c_explicit_abstract c_final c_implicit_abstract date_atom date_cookie date_iso8601 date_rfc1036 date_rfc1123 date_rfc2822 date_rfc3339 date_rfc822 date_rfc850 date_rss date_w3c day_1 day_2 day_3 day_4 day_5 day_6 day_7 dbx_cmp_asc dbx_cmp_desc dbx_cmp_native dbx_cmp_number dbx_cmp_text dbx_colnames_lowercase dbx_colnames_unchanged dbx_colnames_uppercase dbx_fbsql dbx_mssql dbx_mysql dbx_oci8 dbx_odbc dbx_persistent dbx_pgsql dbx_result_assoc dbx_result_index dbx_result_info dbx_result_unbuffered dbx_sqlite dbx_sybasect default_include_path directory_separator dns_a dns_aaaa dns_all dns_any dns_cname dns_hinfo dns_mx dns_naptr dns_ns dns_ptr dns_soa dns_srv dns_txt domstring_size_err dom_hierarchy_request_err dom_index_size_err dom_inuse_attribute_err dom_invalid_access_err dom_invalid_character_err dom_invalid_modification_err dom_invalid_state_err dom_namespace_err dom_not_found_err dom_not_supported_err dom_no_data_allowed_err dom_no_modification_allowed_err dom_php_err dom_syntax_err dom_validation_err dom_wrong_document_err d_fmt d_t_fmt enc7bit enc8bit encbase64 encbinary encother encquotedprintable ent_compat ent_noquotes ent_quotes era era_d_fmt era_d_t_fmt era_t_fmt exif_use_mbstring extr_if_exists extr_overwrite extr_prefix_all extr_prefix_if_exists extr_prefix_invalid extr_prefix_same extr_refs extr_skip e_all e_compile_error e_compile_warning e_core_error e_core_warning e_deprecated e_error e_notice e_parse e_recoverable_error e_strict e_user_deprecated e_user_error e_user_notice e_user_warning e_warning false famacknowledge famchanged famcreated famdeleted famendexist famexists fammoved famstartexecuting famstopexecuting file_append file_ignore_new_lines file_no_default_context file_skip_empty_lines file_use_include_path fnm_casefold fnm_noescape fnm_pathname fnm_period force_deflate force_gzip ftp_ascii ftp_autoresume ftp_autoseek ftp_binary ftp_failed ftp_finished ftp_image ftp_moredata ftp_text ftp_timeout_sec ft_internal ft_not ft_peek ft_prefetchtext ft_uid f_dupfd f_getfd f_getfl f_getlk f_getown f_rdlck f_setfl f_setlk f_setlkw f_setown f_unlck f_wrlck gd_bundled glob_brace glob_mark glob_nocheck glob_noescape glob_nosort glob_onlydir gmp_round_minusinf gmp_round_plusinf gmp_round_zero hash_hmac html_entities html_specialchars iconv_impl iconv_mime_decode_continue_on_error iconv_mime_decode_strict iconv_version imagetype_bmp imagetype_gif imagetype_iff imagetype_jb2 imagetype_jp2 imagetype_jpc imagetype_jpeg imagetype_jpeg2000 imagetype_jpx imagetype_png imagetype_psd imagetype_swf imagetype_tiff_ii imagetype_tiff_mm imagetype_wbmp imagetype_xbm imap_closetimeout imap_opentimeout imap_readtimeout imap_writetimeout img_arc_chord img_arc_edged img_arc_nofill img_arc_pie img_arc_rounded img_color_brushed img_color_styled img_color_styledbrushed img_color_tiled img_color_transparent img_effect_alphablend img_effect_normal img_effect_overlay img_effect_replace img_filter_brightness img_filter_colorize img_filter_contrast img_filter_edgedetect img_filter_emboss img_filter_gaussian_blur img_filter_grayscale img_filter_mean_removal img_filter_negate img_filter_selective_blur img_filter_smooth img_gd2_compressed img_gd2_raw img_gif img_jpeg img_jpg img_png img_wbmp img_xpm inf info_all info_configuration info_credits info_environment info_general info_license info_modules info_variables ini_all ini_perdir ini_system ini_user latt_haschildren latt_hasnochildren latt_marked latt_noinferiors latt_noselect latt_referral latt_unmarked lc_all lc_collate lc_ctype lc_messages lc_monetary lc_numeric lc_time ldap_deref_always ldap_deref_finding ldap_deref_never ldap_deref_searching ldap_opt_client_controls ldap_opt_debug_level ldap_opt_deref ldap_opt_error_number ldap_opt_error_string ldap_opt_host_name ldap_opt_matched_dn ldap_opt_protocol_version ldap_opt_referrals ldap_opt_restart ldap_opt_server_controls ldap_opt_sizelimit ldap_opt_timelimit libxml_compact libxml_dotted_version libxml_dtdattr libxml_dtdload libxml_dtdvalid libxml_err_error libxml_err_fatal libxml_err_none libxml_err_warning libxml_noblanks libxml_nocdata libxml_noemptytag libxml_noent libxml_noerror libxml_nonet libxml_nowarning libxml_noxmldecl libxml_nsclean libxml_version libxml_xinclude lock_ex lock_nb lock_sh lock_un log_alert log_auth log_authpriv log_cons log_crit log_cron log_daemon log_debug log_emerg log_err log_info log_kern log_local0 log_local1 log_local2 log_local3 log_local4 log_local5 log_local6 log_local7 log_lpr log_mail log_ndelay log_news log_notice log_nowait log_odelay log_perror log_pid log_syslog log_user log_uucp log_warning mb_case_lower mb_case_title mb_case_upper mb_overload_mail mb_overload_regex mb_overload_string mcrypt_3des mcrypt_arcfour mcrypt_arcfour_iv mcrypt_blowfish mcrypt_blowfish_compat mcrypt_cast_128 mcrypt_cast_256 mcrypt_crypt mcrypt_decrypt mcrypt_des mcrypt_dev_random mcrypt_dev_urandom mcrypt_encrypt mcrypt_enigna mcrypt_gost mcrypt_idea mcrypt_loki97 mcrypt_mars mcrypt_mode_cbc mcrypt_mode_cfb mcrypt_mode_ecb mcrypt_mode_nofb mcrypt_mode_ofb mcrypt_mode_stream mcrypt_panama mcrypt_rand mcrypt_rc2 mcrypt_rc6 mcrypt_rijndael_128 mcrypt_rijndael_192 mcrypt_rijndael_256 mcrypt_safer128 mcrypt_safer64 mcrypt_saferplus mcrypt_serpent mcrypt_skipjack mcrypt_threeway mcrypt_tripledes mcrypt_twofish mcrypt_wake mcrypt_xtea mhash_adler32 mhash_crc32 mhash_crc32b mhash_gost mhash_haval128 mhash_haval160 mhash_haval192 mhash_haval224 mhash_haval256 mhash_md2 mhash_md4 mhash_md5 mhash_ripemd128 mhash_ripemd160 mhash_ripemd256 mhash_ripemd320 mhash_sha1 mhash_sha224 mhash_sha256 mhash_sha384 mhash_sha512 mhash_snefru128 mhash_snefru256 mhash_tiger mhash_tiger128 mhash_tiger160 mhash_whirlpool mon_1 mon_10 mon_11 mon_12 mon_2 mon_3 mon_4 mon_5 mon_6 mon_7 mon_8 mon_9 msg_dontroute msg_except msg_ipc_nowait msg_noerror msg_oob msg_peek msg_waitall mysqli_assoc mysqli_auto_increment_flag mysqli_blob_flag mysqli_both mysqli_client_compress mysqli_client_found_rows mysqli_client_ignore_space mysqli_client_interactive mysqli_client_no_schema mysqli_client_ssl mysqli_group_flag mysqli_init_command mysqli_multiple_key_flag mysqli_not_null_flag mysqli_no_data mysqli_num mysqli_num_flag mysqli_opt_connect_timeout mysqli_opt_local_infile mysqli_part_key_flag mysqli_pri_key_flag mysqli_read_default_file mysqli_read_default_group mysqli_report_all mysqli_report_error mysqli_report_index mysqli_report_off mysqli_report_strict mysqli_rpl_admin mysqli_rpl_master mysqli_rpl_slave mysqli_set_flag mysqli_stmt_attr_update_max_length mysqli_store_result mysqli_timestamp_flag mysqli_type_blob mysqli_type_char mysqli_type_date mysqli_type_datetime mysqli_type_decimal mysqli_type_double mysqli_type_enum mysqli_type_float mysqli_type_geometry mysqli_type_int24 mysqli_type_interval mysqli_type_long mysqli_type_longlong mysqli_type_long_blob mysqli_type_medium_blob mysqli_type_newdate mysqli_type_null mysqli_type_set mysqli_type_short mysqli_type_string mysqli_type_time mysqli_type_timestamp mysqli_type_tiny mysqli_type_tiny_blob mysqli_type_var_string mysqli_type_year mysqli_unique_key_flag mysqli_unsigned_flag mysqli_use_result mysqli_zerofill_flag mysql_assoc mysql_both mysql_client_compress mysql_client_ignore_space mysql_client_interactive mysql_client_ssl mysql_num m_1_pi m_2_pi m_2_sqrtpi m_abstract m_e m_final m_ln10 m_ln2 m_log10e m_log2e m_pi m_pi_2 m_pi_4 m_private m_protected m_public m_sqrt1_2 m_sqrt2 m_static nan ncurses_all_mouse_events ncurses_a_altcharset ncurses_a_blink ncurses_a_bold ncurses_a_chartext ncurses_a_dim ncurses_a_invis ncurses_a_normal ncurses_a_protect ncurses_a_reverse ncurses_a_standout ncurses_a_underline ncurses_button1_clicked ncurses_button1_double_clicked ncurses_button1_pressed ncurses_button1_released ncurses_button1_triple_clicked ncurses_button2_clicked ncurses_button2_double_clicked ncurses_button2_pressed ncurses_button2_released ncurses_button2_triple_clicked ncurses_button3_clicked ncurses_button3_double_clicked ncurses_button3_pressed ncurses_button3_released ncurses_button3_triple_clicked ncurses_button4_clicked ncurses_button4_double_clicked ncurses_button4_pressed ncurses_button4_released ncurses_button4_triple_clicked ncurses_button_alt ncurses_button_ctrl ncurses_button_shift ncurses_color_black ncurses_color_blue ncurses_color_cyan ncurses_color_green ncurses_color_magenta ncurses_color_red ncurses_color_white ncurses_color_yellow ncurses_key_a1 ncurses_key_a3 ncurses_key_b2 ncurses_key_backspace ncurses_key_beg ncurses_key_btab ncurses_key_c1 ncurses_key_c3 ncurses_key_cancel ncurses_key_catab ncurses_key_clear ncurses_key_close ncurses_key_command ncurses_key_copy ncurses_key_create ncurses_key_ctab ncurses_key_dc ncurses_key_dl ncurses_key_down ncurses_key_eic ncurses_key_end ncurses_key_enter ncurses_key_eol ncurses_key_eos ncurses_key_exit ncurses_key_f0 ncurses_key_f1 ncurses_key_f10 ncurses_key_f11 ncurses_key_f12 ncurses_key_f2 ncurses_key_f3 ncurses_key_f4 ncurses_key_f5 ncurses_key_f6 ncurses_key_f7 ncurses_key_f8 ncurses_key_f9 ncurses_key_find ncurses_key_help ncurses_key_ic ncurses_key_il ncurses_key_left ncurses_key_ll ncurses_key_mark ncurses_key_message ncurses_key_mouse ncurses_key_move ncurses_key_next ncurses_key_npage ncurses_key_open ncurses_key_options ncurses_key_ppage ncurses_key_previous ncurses_key_print ncurses_key_redo ncurses_key_reference ncurses_key_refresh ncurses_key_replace ncurses_key_reset ncurses_key_resize ncurses_key_restart ncurses_key_resume ncurses_key_right ncurses_key_save ncurses_key_sbeg ncurses_key_scancel ncurses_key_scommand ncurses_key_scopy ncurses_key_screate ncurses_key_sdc ncurses_key_sdl ncurses_key_select ncurses_key_send ncurses_key_seol ncurses_key_sexit ncurses_key_sf ncurses_key_sfind ncurses_key_shelp ncurses_key_shome ncurses_key_sic ncurses_key_sleft ncurses_key_smessage ncurses_key_smove ncurses_key_snext ncurses_key_soptions ncurses_key_sprevious ncurses_key_sprint ncurses_key_sr ncurses_key_sredo ncurses_key_sreplace ncurses_key_sreset ncurses_key_sright ncurses_key_srsume ncurses_key_ssave ncurses_key_ssuspend ncurses_key_stab ncurses_key_sundo ncurses_key_suspend ncurses_key_undo ncurses_key_up ncurses_report_mouse_position nil noexpr null oci_assoc oci_both oci_b_bfile oci_b_bin oci_b_blob oci_b_cfilee oci_b_clob oci_b_cursor oci_b_int oci_b_nty oci_b_num oci_b_rowid oci_commit_on_success oci_cred_ext oci_default oci_describe_only oci_dtype_file oci_dtype_lob oci_dtype_rowid oci_fetchstatement_by_column oci_fetchstatement_by_row oci_lob_buffer_free oci_no_auto_commit oci_num oci_return_lobs oci_return_nulls oci_seek_cur oci_seek_end oci_seek_set oci_sysdba oci_sysoper oci_temp_blob oci_temp_clob odbc_binmode_convert odbc_binmode_passthru odbc_binmode_return odbc_type openssl_algo_md2 openssl_algo_md4 openssl_algo_md5 openssl_algo_sha1 openssl_cipher_3des openssl_cipher_des openssl_cipher_rc2_128 openssl_cipher_rc2_40 openssl_cipher_rc2_64 openssl_keytype_dh openssl_keytype_dsa openssl_keytype_rsa openssl_no_padding openssl_pkcs1_oaep_padding openssl_pkcs1_padding openssl_sslv23_padding op_anonymous op_debug op_expunge op_halfopen op_prototype op_readonly op_secure op_shortcache op_silent o_append o_async o_creat o_excl o_ndelay o_noctty o_nonblock o_rdonly o_rdwr o_sync o_trunc o_wronly pathinfo_basename pathinfo_dirname pathinfo_extension pathinfo_filename path_separator pear_extension_dir pear_install_dir pgsql_assoc pgsql_bad_response pgsql_both pgsql_command_ok pgsql_connection_bad pgsql_connection_ok pgsql_connect_force_new pgsql_conv_force_null pgsql_conv_ignore_default pgsql_conv_ignore_not_null pgsql_copy_in pgsql_copy_out pgsql_dml_async pgsql_dml_exec pgsql_dml_no_conv pgsql_dml_string pgsql_empty_query pgsql_fatal_error pgsql_nonfatal_error pgsql_num pgsql_seek_cur pgsql_seek_end pgsql_seek_set pgsql_status_long pgsql_status_string pgsql_tuples_ok php_binary_read php_bindir php_config_file_path php_config_file_scan_dir php_datadir php_eol php_extension_dir php_libdir php_localstatedir php_normal_read php_os php_output_handler_cont php_output_handler_end php_output_handler_start php_prefix php_sapi php_shlib_suffix php_sysconfdir php_url_fragment php_url_host php_url_pass php_url_path php_url_port php_url_query php_url_scheme php_url_user php_version pkcs7_binary pkcs7_detached pkcs7_noattr pkcs7_nocerts pkcs7_nochain pkcs7_nointern pkcs7_nosigs pkcs7_noverify pkcs7_text pm_str preg_grep_invert preg_offset_capture preg_pattern_order preg_set_order preg_split_delim_capture preg_split_no_empty preg_split_offset_capture prio_pgrp prio_process prio_user psfs_err_fatal psfs_feed_me psfs_flag_flush_close psfs_flag_flush_inc psfs_flag_normal psfs_pass_on p_private p_protected p_public p_static radixchar rit_child_first rit_leaves_only rit_self_first sa_all sa_messages sa_recent sa_uidnext sa_uidvalidity sa_unseen seek_cur seek_end seek_set se_free se_noprefetch se_uid sigabrt sigalrm sigbaby sigbus sigchld sigcld sigcont sigfpe sighup sigill sigint sigio sigiot sigkill sigpipe sigpoll sigprof sigpwr sigquit sigsegv sigstkflt sigstop sigsys sigterm sigtrap sigtstp sigttin sigttou sigurg sigusr1 sigusr2 sigvtalrm sigwinch sigxcpu sigxfsz sig_dfl sig_err sig_ign snmp_bit_str snmp_counter snmp_counter64 snmp_integer snmp_ipaddress snmp_null snmp_object_id snmp_octet_str snmp_opaque snmp_timeticks snmp_uinteger snmp_unsigned snmp_value_library snmp_value_object snmp_value_plain soap_1_1 soap_1_2 soap_actor_next soap_actor_none soap_actor_unlimatereceiver soap_compression_accept soap_compression_deflate soap_compression_gzip soap_document soap_encoded soap_enc_array soap_enc_object soap_functions_all soap_literal soap_persistence_request soap_persistence_session soap_rpc socket_e2big socket_eacces socket_eaddrinuse socket_eaddrnotavail socket_eadv socket_eafnosupport socket_eagain socket_ealready socket_ebade socket_ebadf socket_ebadfd socket_ebadmsg socket_ebadr socket_ebadrqc socket_ebadslt socket_ebusy socket_echrng socket_ecomm socket_econnaborted socket_econnrefused socket_econnreset socket_edestaddrreq socket_edquot socket_eexist socket_efault socket_ehostdown socket_ehostunreach socket_eidrm socket_einprogress socket_eintr socket_einval socket_eio socket_eisconn socket_eisdir socket_eisnam socket_el2hlt socket_el2nsync socket_el3hlt socket_el3rst socket_elnrng socket_eloop socket_emediumtype socket_emfile socket_emlink socket_emsgsize socket_emultihop socket_enametoolong socket_enetdown socket_enetreset socket_enetunreach socket_enfile socket_enoano socket_enobufs socket_enocsi socket_enodata socket_enodev socket_enoent socket_enolck socket_enolink socket_enomedium socket_enomem socket_enomsg socket_enonet socket_enoprotoopt socket_enospc socket_enosr socket_enostr socket_enosys socket_enotblk socket_enotconn socket_enotdir socket_enotempty socket_enotsock socket_enotty socket_enotuniq socket_enxio socket_eopnotsupp socket_eperm socket_epfnosupport socket_epipe socket_eproto socket_eprotonosupport socket_eprototype socket_eremchg socket_eremote socket_eremoteio socket_erestart socket_erofs socket_eshutdown socket_esocktnosupport socket_espipe socket_esrmnt socket_estrpipe socket_etime socket_etimedout socket_etoomanyrefs socket_eunatch socket_eusers socket_ewouldblock socket_exdev socket_exfull sock_dgram sock_raw sock_rdm sock_seqpacket sock_stream sol_socket sol_tcp sol_udp somaxconn sortarrival sortcc sortdate sortfrom sortsize sortsubject sortto sort_asc sort_desc sort_flag_case sort_locale_string sort_natural sort_numeric sort_regular sort_string so_broadcast so_debug so_dontroute so_error so_free so_keepalive so_linger so_noserver so_oobinline so_rcvbuf so_rcvlowat so_rcvtimeo so_reuseaddr so_sndbuf so_sndlowat so_sndtimeo so_type sqlite3_assoc sqlite3_blob sqlite3_both sqlite3_float sqlite3_integer sqlite3_null sqlite3_num sqlite3_open_create sqlite3_open_readonly sqlite3_open_readwrite sqlite3_text sqlite_abort sqlite_assoc sqlite_auth sqlite_both sqlite_busy sqlite_cantopen sqlite_constraint sqlite_corrupt sqlite_done sqlite_empty sqlite_error sqlite_format sqlite_full sqlite_internal sqlite_interrupt sqlite_ioerr sqlite_locked sqlite_mismatch sqlite_misuse sqlite_nolfs sqlite_nomem sqlite_notfound sqlite_num sqlite_ok sqlite_perm sqlite_protocol sqlite_readonly sqlite_row sqlite_schema sqlite_toobig sqlt_afc sqlt_avc sqlt_bdouble sqlt_bfilee sqlt_bfloat sqlt_bin sqlt_blob sqlt_cfilee sqlt_chr sqlt_clob sqlt_flt sqlt_int sqlt_lbi sqlt_lng sqlt_lvc sqlt_nty sqlt_num sqlt_odt sqlt_rdd sqlt_rset sqlt_str sqlt_uin sqlt_vcs sql_bigint sql_binary sql_bit sql_char sql_concurrency sql_concur_lock sql_concur_read_only sql_concur_rowver sql_concur_values sql_cursor_dynamic sql_cursor_forward_only sql_cursor_keyset_driven sql_cursor_static sql_cursor_type sql_cur_use_driver sql_cur_use_if_needed sql_cur_use_odbc sql_date sql_decimal sql_double sql_fetch_first sql_fetch_next sql_float sql_integer sql_keyset_size sql_longvarbinary sql_longvarchar sql_numeric sql_odbc_cursors sql_real sql_smallint sql_time sql_timestamp sql_tinyint sql_varbinary sql_varchar stderr stdin stdout stream_client_async_connect stream_client_connect stream_client_persistent stream_enforce_safe_mode stream_filter_all stream_filter_read stream_filter_write stream_ignore_url stream_mkdir_recursive stream_must_seek stream_notify_auth_required stream_notify_auth_result stream_notify_completed stream_notify_connect stream_notify_failure stream_notify_file_size_is stream_notify_mime_type_is stream_notify_progress stream_notify_redirected stream_notify_resolve stream_notify_severity_err stream_notify_severity_info stream_notify_severity_warn stream_oob stream_peek stream_report_errors stream_server_bind stream_server_listen stream_url_stat_link stream_url_stat_quiet stream_use_path str_pad_both str_pad_left str_pad_right st_set st_silent st_uid sunfuncs_ret_double sunfuncs_ret_string sunfuncs_ret_timestamp s_irgrp s_iroth s_irusr s_irwxg s_irwxo s_irwxu s_iwgrp s_iwoth s_iwusr s_ixgrp s_ixoth s_ixusr thousep true typeapplication typeaudio typeimage typemessage typemodel typemultipart typeother typetext typevideo t_abstract t_and_equal t_array t_array_cast t_as t_bad_character t_boolean_and t_boolean_or t_bool_cast t_break t_case t_catch t_character t_class t_class_c t_clone t_close_tag t_comment t_concat_equal t_const t_constant_encapsed_string t_continue t_curly_open t_dec t_declare t_default t_div_equal t_dnumber t_do t_doc_comment t_dollar_open_curly_braces t_double_arrow t_double_cast t_double_colon t_echo t_else t_elseif t_empty t_encapsed_and_whitespace t_enddeclare t_endfor t_endforeach t_endif t_endswitch t_endwhile t_end_heredoc t_eval t_exit t_extends t_file t_final t_fmt t_fmt_ampm t_for t_foreach t_function t_func_c t_global t_if t_implements t_inc t_include t_include_once t_inline_html t_instanceof t_interface t_int_cast t_isset t_is_equal t_is_greater_or_equal t_is_identical t_is_not_equal t_is_not_identical t_is_smaller_or_equal t_line t_list t_lnumber t_logical_and t_logical_or t_logical_xor t_method_c t_minus_equal t_mod_equal t_mul_equal t_new t_num_string t_object_cast t_object_operator t_open_tag t_open_tag_with_echo t_or_equal t_paamayim_nekudotayim t_plus_equal t_print t_private t_protected t_public t_require t_require_once t_return t_sl t_sl_equal t_sr t_sr_equal t_start_heredoc t_static t_string t_string_cast t_string_varname t_switch t_throw t_try t_unset t_unset_cast t_use t_var t_variable t_while t_whitespace t_xor_equal unknown_type upload_err_cant_write upload_err_form_size upload_err_ini_size upload_err_no_file upload_err_no_tmp_dir upload_err_ok upload_err_partial wnohang wuntraced x509_purpose_any x509_purpose_crl_sign x509_purpose_ns_ssl_server x509_purpose_smime_encrypt x509_purpose_smime_sign x509_purpose_ssl_client x509_purpose_ssl_server xml_attribute_cdata xml_attribute_decl_node xml_attribute_entity xml_attribute_enumeration xml_attribute_id xml_attribute_idref xml_attribute_idrefs xml_attribute_nmtoken xml_attribute_nmtokens xml_attribute_node xml_attribute_notation xml_cdata_section_node xml_comment_node xml_document_frag_node xml_document_node xml_document_type_node xml_dtd_node xml_element_decl_node xml_element_node xml_entity_decl_node xml_entity_node xml_entity_ref_node xml_error_async_entity xml_error_attribute_external_entity_ref xml_error_bad_char_ref xml_error_binary_entity_ref xml_error_duplicate_attribute xml_error_external_entity_handling xml_error_incorrect_encoding xml_error_invalid_token xml_error_junk_after_doc_element xml_error_misplaced_xml_pi xml_error_none xml_error_no_elements xml_error_no_memory xml_error_param_entity_ref xml_error_partial_char xml_error_recursive_entity_ref xml_error_syntax xml_error_tag_mismatch xml_error_unclosed_cdata_section xml_error_unclosed_token xml_error_undefined_entity xml_error_unknown_encoding xml_html_document_node xml_local_namespace xml_namespace_decl_node xml_notation_node xml_option_case_folding xml_option_skip_tagstart xml_option_skip_white xml_option_target_encoding xml_pi_node xml_sax_impl xml_text_node xsd_1999_namespace xsd_1999_timeinstant xsd_anytype xsd_anyuri xsd_base64binary xsd_boolean xsd_byte xsd_date xsd_datetime xsd_decimal xsd_double xsd_duration xsd_entities xsd_entity xsd_float xsd_gday xsd_gmonth xsd_gmonthday xsd_gyear xsd_gyearmonth xsd_hexbinary xsd_id xsd_idref xsd_idrefs xsd_int xsd_integer xsd_language xsd_long xsd_name xsd_namespace xsd_ncname xsd_negativeinteger xsd_nmtoken xsd_nmtokens xsd_nonnegativeinteger xsd_nonpositiveinteger xsd_normalizedstring xsd_notation xsd_positiveinteger xsd_qname xsd_short xsd_string xsd_time xsd_token xsd_unsignedbyte xsd_unsignedint xsd_unsignedlong xsd_unsignedshort xsl_clone_always xsl_clone_auto xsl_clone_never yesexpr yperr_badargs yperr_baddb yperr_busy yperr_domain yperr_key yperr_map yperr_nodom yperr_nomore yperr_pmap yperr_resrc yperr_rpc yperr_vers yperr_ypbind yperr_yperr yperr_ypserv zend_thread_safe false null true" list_special'5fmethods = Set.fromList $ words $ "__autoload __call __clone __construct __destruct __get __halt_compiler __isset __set __set_state __sleep __tostring __unset __wakeup" list_functions = Set.fromList $ words $ "_ abs acos acosh addcslashes addslashes apache_get_modules apache_get_version apache_getenv apache_lookup_uri apache_note apache_request_headers apache_response_headers apache_setenv array array_change_key_case array_chunk array_combine array_count_values array_diff array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_fill array_fill_keys array_filter array_flip array_intersect array_intersect_assoc array_intersect_key array_intersect_uassoc array_intersect_ukey array_key_exists array_keys array_map array_merge array_merge_recursive array_multisort array_pad array_pop array_product array_push array_rand array_reduce array_replace array_replace_recursive array_reverse array_search array_shift array_slice array_splice array_sum array_udiff array_udiff_assoc array_udiff_uassoc array_uintersect array_uintersect_assoc array_uintersect_uassoc array_unique array_unshift array_values array_walk array_walk_recursive arsort ascii2ebcdic asin asinh asort aspell_check aspell_check_raw aspell_new aspell_suggest assert assert_options atan atan2 atanh base64_decode base64_encode base_convert basename bcadd bccomp bcdiv bcmod bcmul bcpow bcpowmod bcscale bcsqrt bcsub bin2hex bind_textdomain_codeset bindec bindtextdomain bzclose bzcompress bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite cal_days_in_month cal_from_jd cal_info cal_to_jd call_user_func call_user_func_array ccvs_add ccvs_auth ccvs_command ccvs_count ccvs_delete ccvs_done ccvs_init ccvs_lookup ccvs_new ccvs_report ccvs_return ccvs_reverse ccvs_sale ccvs_status ccvs_textvalue ccvs_void ceil chdir checkdate checkdnsrr chgrp chmod chop chown chr chroot chunk_split class_exists class_implements class_parents clearstatcache closedir closelog com com_addref com_get com_invoke com_isenum com_load com_load_typelib com_propget com_propput com_propset com_release com_set compact connection_aborted connection_status connection_timeout constant convert_cyr_string convert_uudecode convert_uuencode copy cos cosh count count_chars cpdf_add_annotation cpdf_add_outline cpdf_arc cpdf_begin_text cpdf_circle cpdf_clip cpdf_close cpdf_closepath cpdf_closepath_fill_stroke cpdf_closepath_stroke cpdf_continue_text cpdf_curveto cpdf_end_text cpdf_fill cpdf_fill_stroke cpdf_finalize cpdf_finalize_page cpdf_global_set_document_limits cpdf_import_jpeg cpdf_lineto cpdf_moveto cpdf_newpath cpdf_open cpdf_output_buffer cpdf_page_init cpdf_place_inline_image cpdf_rect cpdf_restore cpdf_rlineto cpdf_rmoveto cpdf_rotate cpdf_rotate_text cpdf_save cpdf_save_to_file cpdf_scale cpdf_set_action_url cpdf_set_char_spacing cpdf_set_creator cpdf_set_current_page cpdf_set_font cpdf_set_font_directories cpdf_set_font_map_file cpdf_set_horiz_scaling cpdf_set_keywords cpdf_set_leading cpdf_set_page_animation cpdf_set_subject cpdf_set_text_matrix cpdf_set_text_pos cpdf_set_text_rendering cpdf_set_text_rise cpdf_set_title cpdf_set_viewer_preferences cpdf_set_word_spacing cpdf_setdash cpdf_setflat cpdf_setgray cpdf_setgray_fill cpdf_setgray_stroke cpdf_setlinecap cpdf_setlinejoin cpdf_setlinewidth cpdf_setmiterlimit cpdf_setrgbcolor cpdf_setrgbcolor_fill cpdf_setrgbcolor_stroke cpdf_show cpdf_show_xy cpdf_stringwidth cpdf_stroke cpdf_text cpdf_translate crack_check crack_closedict crack_getlastmessage crack_opendict crc32 create_function crypt ctype_alnum ctype_alpha ctype_cntrl ctype_digit ctype_graph ctype_lower ctype_print ctype_punct ctype_space ctype_upper ctype_xdigit curl_close curl_copy_handle curl_errno curl_error curl_exec curl_getinfo curl_init curl_multi_add_handle curl_multi_close curl_multi_exec curl_multi_getcontent curl_multi_info_read curl_multi_init curl_multi_remove_handle curl_multi_select curl_setopt curl_setopt_array curl_version current cybercash_base64_decode cybercash_base64_encode cybercash_decr cybercash_encr cybermut_creerformulairecm cybermut_creerreponsecm cybermut_testmac cyrus_authenticate cyrus_bind cyrus_close cyrus_connect cyrus_query cyrus_unbind date date_add date_create date_create_from_format date_date_set date_default_timezone_get date_default_timezone_set date_diff date_format date_get_last_errors date_interval_create_from_date_string date_interval_format date_isodate_set date_modify date_offset_get date_parse date_parse_from_format date_sub date_sun_info date_sunrise date_sunset date_time_ set date_timestamp_get date_timestamp_set date_timezone_get date_timezone_set dba_close dba_delete dba_exists dba_fetch dba_firstkey dba_handlers dba_insert dba_key_split dba_list dba_nextkey dba_open dba_optimize dba_popen dba_replace dba_sync dbase_add_record dbase_close dbase_create dbase_delete_record dbase_get_header_info dbase_get_record dbase_get_record_with_names dbase_numfields dbase_numrecords dbase_open dbase_pack dbase_replace_record dblist dbmclose dbmdelete dbmexists dbmfetch dbmfirstkey dbminsert dbmnextkey dbmopen dbmreplace dbplus_add dbplus_aql dbplus_chdir dbplus_close dbplus_curr dbplus_errcode dbplus_errno dbplus_find dbplus_first dbplus_flush dbplus_freealllocks dbplus_freelock dbplus_freerlocks dbplus_getlock dbplus_getunique dbplus_info dbplus_last dbplus_lockrel dbplus_next dbplus_open dbplus_prev dbplus_rchperm dbplus_rcreate dbplus_rcrtexact dbplus_rcrtlike dbplus_resolve dbplus_restorepos dbplus_rkeys dbplus_ropen dbplus_rquery dbplus_rrename dbplus_rsecindex dbplus_runlink dbplus_rzap dbplus_savepos dbplus_setindex dbplus_setindexbynumber dbplus_sql dbplus_tcl dbplus_tremove dbplus_undo dbplus_undoprepare dbplus_unlockrel dbplus_unselect dbplus_update dbplus_xlockrel dbplus_xunlockrel dbx_close dbx_compare dbx_connect dbx_error dbx_escape_string dbx_fetch_row dbx_query dbx_sort dcgettext dcngettext debug_backtrace debug_print_backtrace debug_zval_dump decbin dechex decoct define define_syslog_variables defined deg2rad dgettext die dio_close dio_fcntl dio_open dio_read dio_seek dio_stat dio_tcsetattr dio_truncate dio_write dir dirname disk_free_space disk_total_space diskfreespace dl dngettext dns_check_record dns_get_mx dns_get_record dom_import_simplexml domxml_add_root domxml_attributes domxml_children domxml_dumpmem domxml_get_attribute domxml_new_child domxml_new_xmldoc domxml_node domxml_node_set_content domxml_node_unlink_node domxml_root domxml_set_attribute domxml_version doubleval each easter_date easter_days ebcdic2ascii echo empty end error_get_last error_log error_reporting escapeshellarg escapeshellcmd eval exec exif_imagetype exif_read_data exif_tagname exif_thumbnail exit exp explode expm1 extension_loaded extract ezmlm_hash fam_cancel_monitor fam_close fam_monitor_collection fam_monitor_directory fam_monitor_file fam_next_event fam_open fam_pending fam_resume_monitor fam_suspend_monitor fbsql_affected_rows fbsql_autocommit fbsql_change_user fbsql_close fbsql_commit fbsql_connect fbsql_create_blob fbsql_create_clob fbsql_create_db fbsql_data_seek fbsql_database fbsql_database_password fbsql_db_query fbsql_db_status fbsql_drop_db fbsql_errno fbsql_error fbsql_fetch_array fbsql_fetch_assoc fbsql_fetch_field fbsql_fetch_lengths fbsql_fetch_object fbsql_fetch_row fbsql_field_flags fbsql_field_len fbsql_field_name fbsql_field_seek fbsql_field_table fbsql_field_type fbsql_free_result fbsql_get_autostart_info fbsql_hostname fbsql_insert_id fbsql_list_dbs fbsql_list_fields fbsql_list_tables fbsql_next_result fbsql_num_fields fbsql_num_rows fbsql_password fbsql_pconnect fbsql_query fbsql_read_blob fbsql_read_clob fbsql_result fbsql_rollback fbsql_select_db fbsql_set_lob_mode fbsql_set_transaction fbsql_start_db fbsql_stop_db fbsql_tablename fbsql_username fbsql_warnings fclose fdf_add_template fdf_close fdf_create fdf_get_file fdf_get_status fdf_get_value fdf_next_field_name fdf_open fdf_save fdf_set_ap fdf_set_encoding fdf_set_file fdf_set_flags fdf_set_javascript_action fdf_set_opt fdf_set_status fdf_set_submit_form_action fdf_set_value feof fflush fgetc fgetcsv fgets fgetss file file_exists file_get_contents file_put_contents fileatime filectime filegroup fileinode filemtime fileowner fileperms filepro filepro_fieldcount filepro_fieldname filepro_fieldtype filepro_fieldwidth filepro_retrieve filepro_rowcount filesize filetype filter_has_var filter_id filter_input filter_input_array filter_list filter_var filter_var_array floatval flock floor flush fmod fnmatch fopen forward_static_call forward_static_call_array fpassthru fprintf fputcsv fputs fread frenchtojd fribidi_log2vis fscanf fseek fsockopen fstat ftell ftok ftp_alloc ftp_cdup ftp_chdir ftp_chmod ftp_close ftp_connect ftp_delete ftp_exec ftp_fget ftp_fput ftp_get ftp_get_option ftp_login ftp_mdtm ftp_mkdir ftp_nb_continue ftp_nb_fget ftp_nb_fput ftp_nb_get ftp_nb_put ftp_nlist ftp_pasv ftp_put ftp_pwd ftp_quit ftp_raw ftp_rawlist ftp_rename ftp_rmdir ftp_set_option ftp_site ftp_size ftp_ssl_connect ftp_systype ftruncate func_get_arg func_get_args func_num_args function_exists fwrite gc_collect_cycles gc_disable gc_enable gc_enabled gd_info get_called_class get_browser get_cfg_var get_class get_class_methods get_class_vars get_current_user get_declared_classes get_declared_interfaces get_defined_constants get_defined_functions get_defined_vars get_extension_funcs get_headers get_html_translation_table get_include_path get_included_files get_loaded_extensions get_magic_quotes_gpc get_magic_quotes_runtime get_meta_tags get_object_vars get_parent_class get_required_files get_resource_type getallheaders getcwd getdate getenv gethostbyaddr gethostbyname gethostbynamel gethostname getimagesize getlastmod getmxrr getmygid getmyinode getmypid getmyuid getopt getprotobyname getprotobynumber getrandmax getrusage getservbyname getservbyport gettext gettimeofday gettype glob gmdate gmmktime gmp_abs gmp_add gmp_and gmp_clrbit gmp_cmp gmp_com gmp_div gmp_div_q gmp_div_qr gmp_div_r gmp_divexact gmp_fact gmp_gcd gmp_gcdext gmp_hamdist gmp_init gmp_intval gmp_invert gmp_jacobi gmp_legendre gmp_mod gmp_mul gmp_neg gmp_or gmp_perfect_square gmp_popcount gmp_pow gmp_powm gmp_prob_prime gmp_random gmp_scan0 gmp_scan1 gmp_setbit gmp_sign gmp_sqrt gmp_sqrtrem gmp_strval gmp_sub gmp_xor gmstrftime gregoriantojd gzclose gzcompress gzdeflate gzencode gzeof gzfile gzgetc gzgets gzgetss gzinflate gzopen gzpassthru gzputs gzread gzrewind gzseek gztell gzuncompress gzwrite hash hash_algos hash_copy hash_file hash_final hash_hmac hash_hmac_file hash_init hash_update hash_update_file hash_update_stream header header_remove headers_list headers_sent hebrev hebrevc hexdec highlight_file highlight_string html_entity_decode htmlentities htmlspecialchars htmlspecialchars_decode http_build_query hw_array2objrec hw_changeobject hw_children hw_childrenobj hw_close hw_connect hw_connection_info hw_cp hw_deleteobject hw_docbyanchor hw_docbyanchorobj hw_document_attributes hw_document_bodytag hw_document_content hw_document_setcontent hw_document_size hw_dummy hw_edittext hw_error hw_errormsg hw_free_document hw_getanchors hw_getanchorsobj hw_getandlock hw_getchildcoll hw_getchildcollobj hw_getchilddoccoll hw_getchilddoccollobj hw_getobject hw_getobjectbyquery hw_getobjectbyquerycoll hw_getobjectbyquerycollobj hw_getobjectbyqueryobj hw_getparents hw_getparentsobj hw_getrellink hw_getremote hw_getremotechildren hw_getsrcbydestobj hw_gettext hw_getusername hw_identify hw_incollections hw_info hw_inscoll hw_insdoc hw_insertanchors hw_insertdocument hw_insertobject hw_mapid hw_modifyobject hw_mv hw_new_document hw_objrec2array hw_output_document hw_pconnect hw_pipedocument hw_root hw_setlinkroot hw_stat hw_unlock hw_who hypot ibase_blob_add ibase_blob_cancel ibase_blob_close ibase_blob_create ibase_blob_echo ibase_blob_get ibase_blob_import ibase_blob_info ibase_blob_open ibase_close ibase_commit ibase_connect ibase_errmsg ibase_execute ibase_fetch_object ibase_fetch_row ibase_field_info ibase_free_query ibase_free_result ibase_num_fields ibase_pconnect ibase_prepare ibase_query ibase_rollback ibase_timefmt ibase_trans icap_close icap_create_calendar icap_delete_calendar icap_delete_event icap_fetch_event icap_list_alarms icap_list_events icap_open icap_rename_calendar icap_reopen icap_snooze icap_store_event iconv iconv_get_encoding iconv_mime_decode iconv_mime_decode_headers iconv_mime_encode iconv_set_encoding iconv_strlen iconv_strpos iconv_strrpos iconv_substr idate ifx_affected_rows ifx_blobinfile_mode ifx_byteasvarchar ifx_close ifx_connect ifx_copy_blob ifx_create_blob ifx_create_char ifx_do ifx_error ifx_errormsg ifx_fetch_row ifx_fieldproperties ifx_fieldtypes ifx_free_blob ifx_free_char ifx_free_result ifx_get_blob ifx_get_char ifx_getsqlca ifx_htmltbl_result ifx_nullformat ifx_num_fields ifx_num_rows ifx_pconnect ifx_prepare ifx_query ifx_textasvarchar ifx_update_blob ifx_update_char ifxus_close_slob ifxus_create_slob ifxus_free_slob ifxus_open_slob ifxus_read_slob ifxus_seek_slob ifxus_tell_slob ifxus_write_slob ignore_user_abort image2wbmp image_type_to_extension image_type_to_mime_type imagealphablending imageantialias imagearc imagechar imagecharup imagecolorallocate imagecolorallocatealpha imagecolorat imagecolorclosest imagecolorclosestalpha imagecolorclosesthwb imagecolordeallocate imagecolorexact imagecolorexactalpha imagecolormatch imagecolorresolve imagecolorresolvealpha imagecolorset imagecolorsforindex imagecolorstotal imagecolortransparent imageconvolution imagecopy imagecopymerge imagecopymergegray imagecopyresampled imagecopyresized imagecreate imagecreatefromgd imagecreatefromgd2 imagecreatefromgd2part imagecreatefromgif imagecreatefromjpeg imagecreatefrompng imagecreatefromstring imagecreatefromwbmp imagecreatefromxbm imagecreatefromxpm imagecreatetruecolor imagedashedline imagedestroy imageellipse imagefill imagefilledarc imagefilledellipse imagefilledpolygon imagefilledrectangle imagefilltoborder imagefilter imagefontheight imagefontwidth imageftbbox imagefttext imagegammacorrect imagegd imagegd2 imagegif imageinterlace imageistruecolor imagejpeg imagelayereffect imageline imageloadfont imagepalettecopy imagepng imagepolygon imagepsbbox imagepsencodefont imagepsextendfont imagepsfreefont imagepsloadfont imagepsslantfont imagepstext imagerectangle imagerotate imagesavealpha imagesetbrush imagesetpixel imagesetstyle imagesetthickness imagesettile imagestring imagestringup imagesx imagesy imagetruecolortopalette imagettfbbox imagettftext imagetypes imagewbmp imagexbm imap_8bit imap_alerts imap_append imap_base64 imap_binary imap_body imap_bodystruct imap_check imap_clearflag_full imap_close imap_create imap_createmailbox imap_delete imap_deletemailbox imap_errors imap_expunge imap_fetch_overview imap_fetchbody imap_fetchheader imap_fetchstructure imap_fetchtext imap_get_quota imap_get_quotaroot imap_getacl imap_getmailboxes imap_getsubscribed imap_header imap_headerinfo imap_headers imap_last_error imap_list imap_listmailbox imap_listsubscribed imap_lsub imap_mail imap_mail_compose imap_mail_copy imap_mail_move imap_mailboxmsginfo imap_mime_header_decode imap_msgno imap_num_msg imap_num_recent imap_open imap_ping imap_popen imap_qprint imap_rename imap_renamemailbox imap_reopen imap_rfc822_parse_adrlist imap_rfc822_parse_headers imap_rfc822_write_address imap_scan imap_scanmailbox imap_search imap_set_quota imap_setacl imap_setflag_full imap_sort imap_status imap_subscribe imap_thread imap_timeout imap_uid imap_undelete imap_unsubscribe imap_utf7_decode imap_utf7_encode imap_utf8 implode import_request_variables in_array include include_once inet_ntop inet_pton ingres_autocommit ingres_close ingres_commit ingres_connect ingres_fetch_array ingres_fetch_object ingres_fetch_row ingres_field_length ingres_field_name ingres_field_nullable ingres_field_precision ingres_field_scale ingres_field_type ingres_num_fields ingres_num_rows ingres_pconnect ingres_query ingres_rollback ini_alter ini_get ini_get_all ini_restore ini_set interface_exists intval ip2long iptcembed iptcparse ircg_channel_mode ircg_disconnect ircg_fetch_error_msg ircg_get_username ircg_html_encode ircg_ignore_add ircg_ignore_del ircg_is_conn_alive ircg_join ircg_kick ircg_lookup_format_messages ircg_msg ircg_nick ircg_nickname_escape ircg_nickname_unescape ircg_notice ircg_part ircg_pconnect ircg_register_format_messages ircg_set_current ircg_set_file ircg_set_on_die ircg_topic ircg_whois is_a is_array is_bool is_callable is_dir is_double is_executable is_file is_finite is_float is_infinite is_int is_integer is_link is_long is_nan is_null is_numeric is_object is_readable is_real is_resource is_scalar is_string is_subclass_of is_uploaded_file is_writable is_writeable isset iterator_apply iterator_count iterator_to_array java_last_exception_clear java_last_exception_get jddayofweek jdmonthname jdtofrench jdtogregorian jdtojewish jdtojulian jdtounix jewishtojd join jpeg2wbmp json_decode json_encode json_last_error juliantojd key key_exists krsort ksort lcfirst lcg_value lchgrp lchown ldap_8859_to_t61 ldap_add ldap_bind ldap_close ldap_compare ldap_connect ldap_count_entries ldap_delete ldap_dn2ufn ldap_err2str ldap_errno ldap_error ldap_explode_dn ldap_first_attribute ldap_first_entry ldap_first_reference ldap_free_result ldap_get_attributes ldap_get_dn ldap_get_entries ldap_get_option ldap_get_values ldap_get_values_len ldap_list ldap_mod_add ldap_mod_del ldap_mod_replace ldap_modify ldap_next_attribute ldap_next_entry ldap_next_reference ldap_parse_reference ldap_parse_result ldap_read ldap_rename ldap_search ldap_set_option ldap_set_rebind_proc ldap_sort ldap_start_tls ldap_t61_to_8859 ldap_unbind levenshtein libxml_clear_errors libxml_get_errors libxml_get_last_error libxml_set_streams_context libxml_set_streams_context libxml_use_internal_errors link linkinfo list localeconv localtime log log10 log1p long2ip lstat ltrim magic_quotes_runtime mail mailparse_determine_best_xfer_encoding mailparse_msg_create mailparse_msg_extract_part mailparse_msg_extract_part_file mailparse_msg_free mailparse_msg_get_part mailparse_msg_get_part_data mailparse_msg_get_structure mailparse_msg_parse mailparse_msg_parse_file mailparse_rfc822_parse_addresses mailparse_stream_encode mailparse_uudecode_all max mb_check_encoding mb_convert_case mb_convert_encoding mb_convert_kana mb_convert_variables mb_decode_mimeheader mb_decode_numericentity mb_detect_encoding mb_detect_order mb_encode_mimeheader mb_encode_numericentity mb_encoding_aliases mb_ereg mb_ereg_match mb_ereg_replace mb_ereg_search mb_ereg_search_getpos mb_ereg_search_getregs mb_ereg_search_init mb_ereg_search_pos mb_ereg_search_regs mb_ereg_search_setpos mb_eregi mb_eregi_replace mb_get_info mb_http_input mb_http_output mb_internal_encoding mb_language mb_list_encodings mb_output_handler mb_parse_str mb_preferred_mime_name mb_regex_encoding mb_regex_set_options mb_send_mail mb_split mb_strcut mb_strimwidth mb_stripos mb_stristr mb_strlen mb_strpos mb_strrchr mb_strrichr mb_strripos mb_strrpos mb_strstr mb_strtolower mb_strtoupper mb_strwidth mb_substitute_character mb_substr mb_substr_count mcal_append_event mcal_close mcal_create_calendar mcal_date_compare mcal_date_valid mcal_day_of_week mcal_day_of_year mcal_days_in_month mcal_delete_calendar mcal_delete_event mcal_event_add_attribute mcal_event_init mcal_event_set_alarm mcal_event_set_category mcal_event_set_class mcal_event_set_description mcal_event_set_end mcal_event_set_recur_daily mcal_event_set_recur_monthly_mday mcal_event_set_recur_monthly_wday mcal_event_set_recur_none mcal_event_set_recur_weekly mcal_event_set_recur_yearly mcal_event_set_start mcal_event_set_title mcal_expunge mcal_fetch_current_stream_event mcal_fetch_event mcal_is_leap_year mcal_list_alarms mcal_list_events mcal_next_recurrence mcal_open mcal_popen mcal_rename_calendar mcal_reopen mcal_snooze mcal_store_event mcal_time_valid mcal_week_of_year mcrypt_cbc mcrypt_cfb mcrypt_create_iv mcrypt_decrypt mcrypt_enc_get_algorithms_name mcrypt_enc_get_block_size mcrypt_enc_get_iv_size mcrypt_enc_get_key_size mcrypt_enc_get_modes_name mcrypt_enc_get_supported_key_sizes mcrypt_enc_is_block_algorithm mcrypt_enc_is_block_algorithm_mode mcrypt_enc_is_block_mode mcrypt_enc_self_test mcrypt_encrypt mcrypt_generic mcrypt_generic_deinit mcrypt_generic_end mcrypt_generic_init mcrypt_get_block_size mcrypt_get_cipher_name mcrypt_get_iv_size mcrypt_get_key_size mcrypt_list_algorithms mcrypt_list_modes mcrypt_module_close mcrypt_module_get_algo_block_size mcrypt_module_get_algo_key_size mcrypt_module_get_supported_key_sizes mcrypt_module_is_block_algorithm mcrypt_module_is_block_algorithm_mode mcrypt_module_is_block_mode mcrypt_module_open mcrypt_module_self_test mcrypt_ofb md5 md5_file mdecrypt_generic memory_get_peak_usage memory_get_usage metaphone method_exists mhash mhash_count mhash_get_block_size mhash_get_hash_name mhash_keygen_s2k microtime min ming_setcubicthreshold ming_setscale ming_useswfversion mkdir mktime money_format move_uploaded_file msession_connect msession_count msession_create msession_destroy msession_disconnect msession_find msession_get msession_get_array msession_getdata msession_inc msession_list msession_listvar msession_lock msession_plugin msession_randstr msession_set msession_set_array msession_setdata msession_timeout msession_uniq msession_unlock msg_get_queue msg_receive msg_remove_queue msg_send msg_set_queue msg_stat_queue msql msql_affected_rows msql_close msql_connect msql_create_db msql_createdb msql_data_seek msql_dbname msql_drop_db msql_dropdb msql_error msql_fetch_array msql_fetch_field msql_fetch_object msql_fetch_row msql_field_seek msql_fieldflags msql_fieldlen msql_fieldname msql_fieldtable msql_fieldtype msql_free_result msql_freeresult msql_list_dbs msql_list_fields msql_list_tables msql_listdbs msql_listfields msql_listtables msql_num_fields msql_num_rows msql_numfields msql_numrows msql_pconnect msql_query msql_regcase msql_result msql_select_db msql_selectdb msql_tablename mssql_bind mssql_close mssql_connect mssql_data_seek mssql_execute mssql_fetch_array mssql_fetch_assoc mssql_fetch_batch mssql_fetch_field mssql_fetch_object mssql_fetch_row mssql_field_length mssql_field_name mssql_field_seek mssql_field_type mssql_free_result mssql_get_last_message mssql_guid_string mssql_init mssql_min_error_severity mssql_min_message_severity mssql_next_result mssql_num_fields mssql_num_rows mssql_pconnect mssql_query mssql_result mssql_rows_affected mssql_select_db mt_getrandmax mt_rand mt_srand muscat_close muscat_get muscat_give muscat_setup muscat_setup_net mysql mysql_affected_rows mysql_client_encoding mysql_close mysql_connect mysql_data_seek mysql_db_name mysql_db_query mysql_errno mysql_error mysql_escape_string mysql_fetch_array mysql_fetch_assoc mysql_fetch_field mysql_fetch_lengths mysql_fetch_object mysql_fetch_row mysql_field_flags mysql_field_len mysql_field_name mysql_field_seek mysql_field_table mysql_field_type mysql_free_result mysql_get_client_info mysql_get_host_info mysql_get_proto_info mysql_get_server_info mysql_info mysql_insert_id mysql_list_dbs mysql_list_processes mysql_num_fields mysql_num_rows mysql_pconnect mysql_ping mysql_query mysql_real_escape_string mysql_result mysql_select_db mysql_set_charset mysql_stat mysql_table_name mysql_thread_id mysql_unbuffered_query mysqli_affected_rows mysqli_autocommit mysqli_bind_param mysqli_bind_result mysqli_change_user mysqli_character_set_name mysqli_client_encoding mysqli_close mysqli_commit mysqli_connect mysqli_connect_errno mysqli_connect_error mysqli_data_seek mysqli_debug mysqli_dump_debug_info mysqli_errno mysqli_error mysqli_escape_string mysqli_execute mysqli_fetch mysqli_fetch_array mysqli_fetch_assoc mysqli_fetch_field mysqli_fetch_field_direct mysqli_fetch_fields mysqli_fetch_lengths mysqli_fetch_object mysqli_fetch_row mysqli_field_count mysqli_field_seek mysqli_field_tell mysqli_free_result mysqli_get_cache_stats mysqli_get_client_info mysqli_get_client_stats mysqli_get_client_version mysqli_get_host_info mysqli_get_metadata mysqli_get_proto_info mysqli_get_server_info mysqli_get_server_version mysqli_info mysqli_init mysqli_insert_id mysqli_kill mysqli_more_results mysqli_multi_query mysqli_next_result mysqli_num_fields mysqli_num_rows mysqli_options mysqli_param_count mysqli_ping mysqli_prepare mysqli_query mysqli_real_connect mysqli_real_escape_string mysqli_real_query mysqli_refresh mysqli_report mysqli_rollback mysqli_select_db mysqli_send_long_data mysqli_set_charset mysqli_set_local_infile_default mysqli_set_local_infile_handler mysqli_set_opt mysqli_sqlstate mysqli_ssl_set mysqli_stat mysqli_stmt_affected_rows mysqli_stmt_attr_get mysqli_stmt_attr_set mysqli_stmt_bind_param mysqli_stmt_bind_result mysqli_stmt_close mysqli_stmt_data_seek mysqli_stmt_errno mysqli_stmt_error mysqli_stmt_execute mysqli_stmt_fetch mysqli_stmt_field_count mysqli_stmt_free_result mysqli_stmt_get_warnings mysqli_stmt_init mysqli_stmt_insert_id mysqli_stmt_num_rows mysqli_stmt_param_count mysqli_stmt_prepare mysqli_stmt_reset mysqli_stmt_result_metadata mysqli_stmt_send_long_data mysqli_stmt_sqlstate mysqli_stmt_store_result mysqli_store_result mysqli_thread_id mysqli_thread_safe mysqli_use_result mysqli_warning_count natcasesort natsort ncurses_addch ncurses_addchnstr ncurses_addchstr ncurses_addnstr ncurses_addstr ncurses_assume_default_colors ncurses_attroff ncurses_attron ncurses_attrset ncurses_baudrate ncurses_beep ncurses_bkgd ncurses_bkgdset ncurses_border ncurses_bottom_panel ncurses_can_change_color ncurses_cbreak ncurses_clear ncurses_clrtobot ncurses_clrtoeol ncurses_color_content ncurses_color_set ncurses_curs_set ncurses_def_prog_mode ncurses_def_shell_mode ncurses_define_key ncurses_del_panel ncurses_delay_output ncurses_delch ncurses_deleteln ncurses_delwin ncurses_doupdate ncurses_echo ncurses_echochar ncurses_end ncurses_erase ncurses_erasechar ncurses_filter ncurses_flash ncurses_flushinp ncurses_getch ncurses_getmaxyx ncurses_getmouse ncurses_getyx ncurses_halfdelay ncurses_has_colors ncurses_has_ic ncurses_has_il ncurses_has_key ncurses_hide_panel ncurses_hline ncurses_inch ncurses_init ncurses_init_color ncurses_init_pair ncurses_insch ncurses_insdelln ncurses_insertln ncurses_insstr ncurses_instr ncurses_isendwin ncurses_keyok ncurses_keypad ncurses_killchar ncurses_longname ncurses_meta ncurses_mouse_trafo ncurses_mouseinterval ncurses_mousemask ncurses_move ncurses_move_panel ncurses_mvaddch ncurses_mvaddchnstr ncurses_mvaddchstr ncurses_mvaddnstr ncurses_mvaddstr ncurses_mvcur ncurses_mvdelch ncurses_mvgetch ncurses_mvhline ncurses_mvinch ncurses_mvvline ncurses_mvwaddstr ncurses_napms ncurses_new_panel ncurses_newpad ncurses_newwin ncurses_nl ncurses_nocbreak ncurses_noecho ncurses_nonl ncurses_noqiflush ncurses_noraw ncurses_pair_content ncurses_panel_above ncurses_panel_below ncurses_panel_window ncurses_pnoutrefresh ncurses_prefresh ncurses_putp ncurses_qiflush ncurses_raw ncurses_refresh ncurses_replace_panel ncurses_reset_prog_mode ncurses_reset_shell_mode ncurses_resetty ncurses_savetty ncurses_scr_dump ncurses_scr_init ncurses_scr_restore ncurses_scr_set ncurses_scrl ncurses_show_panel ncurses_slk_attr ncurses_slk_attroff ncurses_slk_attron ncurses_slk_attrset ncurses_slk_clear ncurses_slk_color ncurses_slk_init ncurses_slk_noutrefresh ncurses_slk_refresh ncurses_slk_restore ncurses_slk_set ncurses_slk_touch ncurses_standend ncurses_standout ncurses_start_color ncurses_termattrs ncurses_termname ncurses_timeout ncurses_top_panel ncurses_typeahead ncurses_ungetch ncurses_ungetmouse ncurses_update_panels ncurses_use_default_colors ncurses_use_env ncurses_use_extended_names ncurses_vidattr ncurses_vline ncurses_waddch ncurses_waddstr ncurses_wattroff ncurses_wattron ncurses_wattrset ncurses_wborder ncurses_wclear ncurses_wcolor_set ncurses_werase ncurses_wgetch ncurses_whline ncurses_wmouse_trafo ncurses_wmove ncurses_wnoutrefresh ncurses_wrefresh ncurses_wstandend ncurses_wstandout ncurses_wvline next ngettext nl2br nl_langinfo notes_body notes_copy_db notes_create_db notes_create_note notes_drop_db notes_find_note notes_header_info notes_list_msgs notes_mark_read notes_mark_unread notes_nav_create notes_search notes_unread notes_version number_format ob_clean ob_end_clean ob_end_flush ob_flush ob_get_clean ob_get_contents ob_get_flush ob_get_length ob_get_level ob_get_status ob_gzhandler ob_iconv_handler ob_implicit_flush ob_list_handlers ob_start oci_bind_array_by_name oci_bind_by_name oci_cancel oci_close oci_commit oci_connect oci_define_by_name oci_error oci_execute oci_fetch oci_fetch_all oci_fetch_array oci_fetch_assoc oci_fetch_object oci_fetch_row oci_field_is_null oci_field_name oci_field_precision oci_field_scale oci_field_size oci_field_type oci_field_type_raw oci_free_statement oci_internal_debug oci_lob_copy oci_lob_is_equal oci_new_collection oci_new_connect oci_new_cursor oci_new_descriptor oci_num_fields oci_num_rows oci_parse oci_password_change oci_pconnect oci_result oci_rollback oci_server_version oci_set_action oci_set_client_identifier oci_set_client_info oci_set_edition oci_set_module_name oci_set_prefetch oci_statement_type ocibindbyname ocicancel ocicollappend ocicollassign ocicollassignelem ocicollgetelem ocicollmax ocicollsize ocicolltrim ocicolumnisnull ocicolumnname ocicolumnprecision ocicolumnscale ocicolumnsize ocicolumntype ocicolumntyperaw ocicommit ocidefinebyname ocierror ociexecute ocifetch ocifetchstatement ocifreecollection ocifreecursor ocifreedesc ocifreestatement ociinternaldebug ociloadlob ocilogoff ocilogon ocinewcollection ocinewcursor ocinewdescriptor ocinlogon ocinumcols ociparse ociplogon ociresult ocirollback ocirowcount ocisavelob ocisavelobfile ociserverversion ocisetprefetch ocistatementtype ociwritelobtofile octdec odbc_autocommit odbc_binmode odbc_close odbc_close_all odbc_columnprivileges odbc_columns odbc_commit odbc_connect odbc_cursor odbc_data_source odbc_do odbc_error odbc_errormsg odbc_exec odbc_execute odbc_fetch_array odbc_fetch_into odbc_fetch_object odbc_fetch_row odbc_field_len odbc_field_name odbc_field_num odbc_field_precision odbc_field_scale odbc_field_type odbc_foreignkeys odbc_free_result odbc_gettypeinfo odbc_longreadlen odbc_next_result odbc_num_fields odbc_num_rows odbc_pconnect odbc_prepare odbc_primarykeys odbc_procedurecolumns odbc_procedures odbc_result odbc_result_all odbc_rollback odbc_setoption odbc_specialcolumns odbc_statistics odbc_tableprivileges odbc_tables opendir openlog openssl_csr_export openssl_csr_export_to_file openssl_csr_new openssl_csr_sign openssl_error_string openssl_free_key openssl_get_privatekey openssl_get_publickey openssl_open openssl_pkcs7_decrypt openssl_pkcs7_encrypt openssl_pkcs7_sign openssl_pkcs7_verify openssl_pkey_export openssl_pkey_export_to_file openssl_pkey_free openssl_pkey_get_private openssl_pkey_get_public openssl_pkey_new openssl_private_decrypt openssl_private_encrypt openssl_public_decrypt openssl_public_encrypt openssl_seal openssl_sign openssl_verify openssl_x509_check_private_key openssl_x509_checkpurpose openssl_x509_export openssl_x509_export_to_file openssl_x509_free openssl_x509_parse openssl_x509_read ord output_add_rewrite_var output_reset_rewrite_vars overload ovrimos_close ovrimos_commit ovrimos_connect ovrimos_cursor ovrimos_exec ovrimos_execute ovrimos_fetch_into ovrimos_fetch_row ovrimos_field_len ovrimos_field_name ovrimos_field_num ovrimos_field_type ovrimos_free_result ovrimos_longreadlen ovrimos_num_fields ovrimos_num_rows ovrimos_prepare ovrimos_result ovrimos_result_all ovrimos_rollback pack parse_ini_file parse_ini_string parse_str parse_url passthru pathinfo pclose pcntl_alarm pcntl_exec pcntl_fork pcntl_getpriority pcntl_setpriority pcntl_signal pcntl_wait pcntl_waitpid pcntl_wexitstatus pcntl_wifexited pcntl_wifsignaled pcntl_wifstopped pcntl_wstopsig pcntl_wtermsig pdf_add_annotation pdf_add_bookmark pdf_add_launchlink pdf_add_locallink pdf_add_note pdf_add_outline pdf_add_pdflink pdf_add_thumbnail pdf_add_weblink pdf_arc pdf_arcn pdf_attach_file pdf_begin_page pdf_begin_pattern pdf_begin_template pdf_circle pdf_clip pdf_close pdf_close_image pdf_close_pdi pdf_close_pdi_page pdf_closepath pdf_closepath_fill_stroke pdf_closepath_stroke pdf_concat pdf_continue_text pdf_curveto pdf_delete pdf_end_page pdf_end_pattern pdf_end_template pdf_endpath pdf_fill pdf_fill_stroke pdf_findfont pdf_get_buffer pdf_get_font pdf_get_fontname pdf_get_fontsize pdf_get_image_height pdf_get_image_width pdf_get_majorversion pdf_get_minorversion pdf_get_parameter pdf_get_pdi_parameter pdf_get_pdi_value pdf_get_value pdf_initgraphics pdf_lineto pdf_makespotcolor pdf_moveto pdf_new pdf_open pdf_open_ccitt pdf_open_file pdf_open_gif pdf_open_image pdf_open_image_file pdf_open_jpeg pdf_open_memory_image pdf_open_pdi pdf_open_pdi_page pdf_open_png pdf_open_tiff pdf_place_image pdf_place_pdi_page pdf_rect pdf_restore pdf_rotate pdf_save pdf_scale pdf_set_border_color pdf_set_border_dash pdf_set_border_style pdf_set_char_spacing pdf_set_duration pdf_set_font pdf_set_horiz_scaling pdf_set_info pdf_set_info_author pdf_set_info_creator pdf_set_info_keywords pdf_set_info_subject pdf_set_info_title pdf_set_leading pdf_set_parameter pdf_set_text_pos pdf_set_text_rendering pdf_set_text_rise pdf_set_transition pdf_set_value pdf_set_word_spacing pdf_setcolor pdf_setdash pdf_setflat pdf_setfont pdf_setgray pdf_setgray_fill pdf_setgray_stroke pdf_setlinecap pdf_setlinejoin pdf_setlinewidth pdf_setmatrix pdf_setmiterlimit pdf_setpolydash pdf_setrgbcolor pdf_setrgbcolor_fill pdf_setrgbcolor_stroke pdf_show pdf_show_boxed pdf_show_xy pdf_skew pdf_stringwidth pdf_stroke pdf_translate pfpro_cleanup pfpro_init pfpro_process pfpro_process_raw pfpro_version pdo_drivers pfsockopen pg_affected_rows pg_cancel_query pg_client_encoding pg_clientencoding pg_close pg_cmdtuples pg_connect pg_connection_busy pg_connection_reset pg_connection_status pg_convert pg_copy_from pg_copy_to pg_dbname pg_delete pg_end_copy pg_errormessage pg_escape_bytea pg_escape_string pg_exec pg_fetch_all pg_fetch_array pg_fetch_assoc pg_fetch_object pg_fetch_result pg_fetch_row pg_field_is_null pg_field_name pg_field_num pg_field_prtlen pg_field_size pg_field_type pg_fieldisnull pg_fieldname pg_fieldnum pg_fieldprtlen pg_fieldsize pg_fieldtype pg_free_result pg_freeresult pg_get_notify pg_get_pid pg_get_result pg_getlastoid pg_host pg_insert pg_last_error pg_last_notice pg_last_oid pg_lo_close pg_lo_create pg_lo_export pg_lo_import pg_lo_open pg_lo_read pg_lo_read_all pg_lo_seek pg_lo_tell pg_lo_unlink pg_lo_write pg_loclose pg_locreate pg_loexport pg_loimport pg_loopen pg_loread pg_loreadall pg_lounlink pg_lowrite pg_meta_data pg_num_fields pg_num_rows pg_numfields pg_numrows pg_options pg_parameter_status pg_pconnect pg_ping pg_port pg_put_line pg_query pg_result pg_result_error pg_result_seek pg_result_status pg_select pg_send_query pg_set_client_encoding pg_setclientencoding pg_trace pg_tty pg_unescape_bytea pg_untrace pg_update pg_version php_egg_logo_guid php_ini_loaded_file php_ini_scanned_files php_logo_guid php_real_logo_guid php_sapi_name php_strip_whitespace php_uname phpcredits phpinfo phpversion pi png2wbmp popen pos posix_ctermid posix_errno posix_get_last_error posix_getcwd posix_getegid posix_geteuid posix_getgid posix_getgrgid posix_getgrnam posix_getgroups posix_getlogin posix_getpgid posix_getpgrp posix_getpid posix_getppid posix_getpwnam posix_getpwuid posix_getrlimit posix_getsid posix_getuid posix_isatty posix_kill posix_mkfifo posix_setegid posix_seteuid posix_setgid posix_setpgid posix_setsid posix_setuid posix_strerror posix_times posix_ttyname posix_uname pow preg_filter preg_grep preg_last_error preg_match preg_match_all preg_quote preg_replace preg_replace_callback preg_split prev print print_r printer_abort printer_close printer_create_brush printer_create_dc printer_create_font printer_create_pen printer_delete_brush printer_delete_dc printer_delete_font printer_delete_pen printer_draw_bmp printer_draw_chord printer_draw_elipse printer_draw_line printer_draw_pie printer_draw_rectangle printer_draw_roundrect printer_draw_text printer_end_doc printer_end_page printer_get_option printer_list printer_logical_fontheight printer_open printer_select_brush printer_select_font printer_select_pen printer_set_option printer_start_doc printer_start_page printer_write printf proc_close proc_get_status proc_nice proc_open proc_terminate property_exists pspell_add_to_personal pspell_add_to_session pspell_check pspell_clear_session pspell_config_create pspell_config_ignore pspell_config_mode pspell_config_personal pspell_config_repl pspell_config_runtogether pspell_config_save_repl pspell_new pspell_new_config pspell_new_personal pspell_save_wordlist pspell_store_replacement pspell_suggest putenv qdom_error qdom_tree quoted_printable_decode quoted_printable_encode quotemeta rad2deg rand range rawurldecode rawurlencode read_exif_data readdir readfile readgzfile readline readline_add_history readline_clear_history readline_completion_function readline_info readline_list_history readline_read_history readline_write_history readlink realpath realpath_cache_get realpath_cache_size recode recode_file recode_string register_shutdown_function register_tick_function rename require require_once reset restore_error_handler restore_exception_handler restore_include_path rewind rewinddir rmdir round rsort rtrim scandir sem_acquire sem_get sem_release sem_remove serialize sesam_affected_rows sesam_commit sesam_connect sesam_diagnostic sesam_disconnect sesam_errormsg sesam_execimm sesam_fetch_array sesam_fetch_result sesam_fetch_row sesam_field_array sesam_field_name sesam_free_result sesam_num_fields sesam_query sesam_rollback sesam_seek_row sesam_settransaction session_cache_expire session_cache_limiter session_commit session_decode session_destroy session_encode session_get_cookie_params session_id session_is_registered session_module_name session_name session_regenerate_id session_register session_save_path session_set_cookie_params session_set_save_handler session_start session_unregister session_unset session_write_close set_error_handler set_exception_handler set_file_buffer set_include_path set_magic_quotes_runtime set_socket_blocking set_time_limit setcookie setlocale setrawcookie settype sha1 sha1_file sha256 sha256_file shell_exec shm_attach shm_detach shm_get_var shm_put_var shm_remove shm_remove_var shmop_close shmop_delete shmop_open shmop_read shmop_size shmop_write show_source shuffle similar_text simplexml_import_dom simplexml_load_file simplexml_load_string sin sinh sizeof sleep snmp3_get snmp3_getnext snmp3_real_walk snmp3_set snmp3_walk snmp_get_quick_print snmp_get_valueretrieval snmp_read_mib snmp_set_enum_print snmp_set_oid_numeric_print snmp_set_quick_print snmp_set_valueretrieval snmpget snmpgetnext snmprealwalk snmpset snmpwalk snmpwalkoid socket_accept socket_bind socket_clear_error socket_close socket_connect socket_create socket_create_listen socket_create_pair socket_get_option socket_get_status socket_getopt socket_getpeername socket_getsockname socket_last_error socket_listen socket_read socket_recv socket_recvfrom socket_select socket_send socket_sendto socket_set_block socket_set_blocking socket_set_nonblock socket_set_option socket_set_timeout socket_setopt socket_shutdown socket_strerror socket_write sort soundex spl_autoload spl_autoload_call spl_autoload_extensions spl_autoload_functions spl_autoload_register spl_autoload_unregister spl_classes spl_object_hash sprintf sqlite_array_query sqlite_busy_timeout sqlite_changes sqlite_close sqlite_column sqlite_create_aggregate sqlite_create_function sqlite_current sqlite_error_string sqlite_escape_string sqlite_exec sqlite_factory sqlite_fetch_all sqlite_fetch_array sqlite_fetch_column_types sqlite_fetch_object sqlite_fetch_single sqlite_fetch_string sqlite_field_name sqlite_has_more sqlite_has_prev sqlite_last_error sqlite_last_insert_rowid sqlite_libencoding sqlite_libversion sqlite_next sqlite_num_fields sqlite_num_rows sqlite_open sqlite_popen sqlite_prev sqlite_query sqlite_rewind sqlite_seek sqlite_single_query sqlite_udf_decode_binary sqlite_udf_encode_binary sqlite_unbuffered_query sqlite_valid sqrt srand sscanf stat str_getcsv str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split str_word_count strcasecmp strchr strcmp strcoll strcspn stream_bucket_append stream_bucket_make_writeable stream_bucket_new stream_bucket_prepend stream_context_create stream_context_get_default stream_context_get_options stream_context_get_params stream_context_set_default stream_context_set_option stream_context_set_params stream_copy_to_stream stream_filter_append stream_filter_prepend stream_filter_register stream_filter_remove stream_get_contents stream_get_filters stream_get_line stream_get_meta_data stream_get_transports stream_get_wrappers stream_is_local stream_register_wrapper stream_resolve_include_path stream_select stream_set_blocking stream_set_read_buffer stream_set_timeout stream_set_write_buffer stream_socket_accept stream_socket_client stream_socket_enable_crypto stream_socket_get_name stream_socket_pair stream_socket_recvfrom stream_socket_sendto stream_socket_server stream_socket_shutdown stream_supports_lock stream_wrapper_register stream_wrapper_restore stream_wrapper_unregister strftime strip_tags stripcslashes stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk strpos strptime strrchr strrev strripos strrpos strspn strstr strtok strtolower strtotime strtoupper strtr strval substr substr_compare substr_count substr_replace suhosin_encrypt_cookie suhosin_get_raw_cookies swf_actiongeturl swf_actiongotoframe swf_actiongotolabel swf_actionnextframe swf_actionplay swf_actionprevframe swf_actionsettarget swf_actionstop swf_actiontogglequality swf_actionwaitforframe swf_addbuttonrecord swf_addcolor swf_closefile swf_definebitmap swf_definefont swf_defineline swf_definepoly swf_definerect swf_definetext swf_endbutton swf_enddoaction swf_endshape swf_endsymbol swf_fontsize swf_fontslant swf_fonttracking swf_getbitmapinfo swf_getfontinfo swf_getframe swf_labelframe swf_lookat swf_modifyobject swf_mulcolor swf_nextid swf_oncondition swf_openfile swf_ortho swf_ortho2 swf_perspective swf_placeobject swf_polarview swf_popmatrix swf_posround swf_pushmatrix swf_removeobject swf_rotate swf_scale swf_setfont swf_setframe swf_shapearc swf_shapecurveto swf_shapecurveto3 swf_shapefillbitmapclip swf_shapefillbitmaptile swf_shapefilloff swf_shapefillsolid swf_shapelinesolid swf_shapelineto swf_shapemoveto swf_showframe swf_startbutton swf_startdoaction swf_startshape swf_startsymbol swf_textwidth swf_translate swf_viewport swfaction swfbitmap swfbitmap.getheight swfbitmap.getwidth swfbutton swfbutton.addaction swfbutton.addshape swfbutton.setaction swfbutton.setdown swfbutton.sethit swfbutton.setover swfbutton.setup swfbutton_keypress swfdisplayitem swfdisplayitem.addcolor swfdisplayitem.move swfdisplayitem.moveto swfdisplayitem.multcolor swfdisplayitem.remove swfdisplayitem.rotate swfdisplayitem.rotateto swfdisplayitem.scale swfdisplayitem.scaleto swfdisplayitem.setdepth swfdisplayitem.setname swfdisplayitem.setratio swfdisplayitem.skewx swfdisplayitem.skewxto swfdisplayitem.skewy swfdisplayitem.skewyto swffill swffill.moveto swffill.rotateto swffill.scaleto swffill.skewxto swffill.skewyto swffont swffont.getwidth swfgradient swfgradient.addentry swfmorph swfmorph.getshape1 swfmorph.getshape2 swfmovie swfmovie.add swfmovie.nextframe swfmovie.output swfmovie.remove swfmovie.save swfmovie.setbackground swfmovie.setdimension swfmovie.setframes swfmovie.setrate swfmovie.streammp3 swfshape swfshape.addfill swfshape.drawcurve swfshape.drawcurveto swfshape.drawline swfshape.drawlineto swfshape.movepen swfshape.movepento swfshape.setleftfill swfshape.setline swfshape.setrightfill swfsprite swfsprite.add swfsprite.nextframe swfsprite.remove swfsprite.setframes swftext swftext.addstring swftext.getwidth swftext.moveto swftext.setcolor swftext.setfont swftext.setheight swftext.setspacing swftextfield swftextfield.addstring swftextfield.align swftextfield.setbounds swftextfield.setcolor swftextfield.setfont swftextfield.setheight swftextfield.setindentation swftextfield.setleftmargin swftextfield.setlinespacing swftextfield.setmargins swftextfield.setname swftextfield.setrightmargin sybase_affected_rows sybase_close sybase_connect sybase_data_seek sybase_fetch_array sybase_fetch_field sybase_fetch_object sybase_fetch_row sybase_field_seek sybase_free_result sybase_get_last_message sybase_min_client_severity sybase_min_error_severity sybase_min_message_severity sybase_min_server_severity sybase_num_fields sybase_num_rows sybase_pconnect sybase_query sybase_result sybase_select_db symlink sys_get_temp_dir sys_getloadavg syslog system tan tanh tempnam textdomain time time_nanosleep time_sleep_until timezone_abbreviations_list timezone_identifiers_list timezone_location_get timezone_name_from_abbr timezone_name_get timezone_offset_get timezone_open timezone_transitions_get timezone_version_get tmpfile token_get_all token_name touch trigger_error trim uasort ucfirst ucwords udm_add_search_limit udm_alloc_agent udm_api_version udm_cat_list udm_cat_path udm_check_charset udm_check_stored udm_clear_search_limits udm_close_stored udm_crc32 udm_errno udm_error udm_find udm_free_agent udm_free_ispell_data udm_free_res udm_get_doc_count udm_get_res_field udm_get_res_param udm_load_ispell_data udm_open_stored udm_set_agent_param uksort umask uniqid unixtojd unlink unpack unregister_tick_function unserialize unset urldecode urlencode use_soap_error_handler user_error usleep usort utf8_decode utf8_encode var_dump var_export variant version_compare vfprintf virtual vpopmail_add_alias_domain vpopmail_add_alias_domain_ex vpopmail_add_domain vpopmail_add_domain_ex vpopmail_add_user vpopmail_alias_add vpopmail_alias_del vpopmail_alias_del_domain vpopmail_alias_get vpopmail_alias_get_all vpopmail_auth_user vpopmail_del_domain vpopmail_del_domain_ex vpopmail_del_user vpopmail_error vpopmail_passwd vpopmail_set_user_quota vprintf vsprintf w32api_deftype w32api_init_dtype w32api_invoke_function w32api_register_function w32api_set_call_method wddx_add_vars wddx_deserialize wddx_packet_end wddx_packet_start wddx_serialize_value wddx_serialize_vars wordwrap xdebug_break xdebug_call_class xdebug_call_file xdebug_call_function xdebug_call_line xdebug_clear_aggr_profiling_data xdebug_debug_zval xdebug_debug_zval_stdout xdebug_disable xdebug_dump_aggr_profiling_data xdebug_dump_superglobals xdebug_enable xdebug_get_code_coverage xdebug_get_collected_errors xdebug_get_declared_vars xdebug_get_formatted_function_stack xdebug_get_function_count xdebug_get_function_stack xdebug_get_headers xdebug_get_profiler_filename xdebug_get_stack_depth xdebug_get_tracefile_name xdebug_is_enabled xdebug_memory_usage xdebug_peak_memory_usage xdebug_print_function_stack xdebug_start_code_coverage xdebug_start_error_collection xdebug_start_trace xdebug_stop_code_coverage xdebug_stop_error_collection xdebug_stop_trace xdebug_time_index xdebug_var_dump xml_error_string xml_get_current_byte_index xml_get_current_column_number xml_get_current_line_number xml_get_error_code xml_parse xml_parse_into_struct xml_parser_create xml_parser_create_ns xml_parser_free xml_parser_get_option xml_parser_set_option xml_set_character_data_handler xml_set_default_handler xml_set_element_handler xml_set_end_namespace_decl_handler xml_set_external_entity_ref_handler xml_set_notation_decl_handler xml_set_object xml_set_processing_instruction_handler xml_set_start_namespace_decl_handler xml_set_unparsed_entity_decl_handler xmldoc xmldocfile xmlrpc_decode xmlrpc_decode_request xmlrpc_encode xmlrpc_encode_request xmlrpc_get_type xmlrpc_is_fault xmlrpc_parse_method_descriptions xmlrpc_server_add_introspection_data xmlrpc_server_call_method xmlrpc_server_create xmlrpc_server_destroy xmlrpc_server_register_introspection_callback xmlrpc_server_register_method xmlrpc_set_type xmltree xmlwriter_end_attribute xmlwriter_end_cdata xmlwriter_end_comment xmlwriter_end_document xmlwriter_end_dtd xmlwriter_end_dtd_attlist xmlwriter_end_dtd_element xmlwriter_end_dtd_entity xmlwriter_end_element xmlwriter_end_pi xmlwriter_flush xmlwriter_full_end_element xmlwriter_open_memory xmlwriter_open_uri xmlwriter_output_memory xmlwriter_set_indent xmlwriter_set_indent_string xmlwriter_start_attribute xmlwriter_start_attribute_ns xmlwriter_start_cdata xmlwriter_start_comment xmlwriter_start_document xmlwriter_start_dtd xmlwriter_start_dtd_attlist xmlwriter_start_dtd_element xmlwriter_start_dtd_entity xmlwriter_start_element xmlwriter_start_element_ns xmlwriter_start_pi xmlwriter_text xmlwriter_write_attribute xmlwriter_write_attribute_ns xmlwriter_write_cdata xmlwriter_write_comment xmlwriter_write_dtd xmlwriter_write_dtd_attlist xmlwriter_write_dtd_element xmlwriter_write_dtd_entity xmlwriter_write_element xmlwriter_write_element_ns xmlwriter_write_pi xmlwriter_write_raw xpath_eval xpath_eval_expression xpath_new_context xptr_eval xptr_new_context xslt_create xslt_errno xslt_error xslt_free xslt_process xslt_set_base xslt_set_encoding xslt_set_error_handler xslt_set_log xslt_set_sax_handler xslt_set_sax_handlers xslt_set_scheme_handler xslt_set_scheme_handlers yaz_addinfo yaz_ccl_conf yaz_ccl_parse yaz_close yaz_connect yaz_database yaz_element yaz_errno yaz_error yaz_hits yaz_itemorder yaz_present yaz_range yaz_record yaz_scan yaz_scan_result yaz_search yaz_sort yaz_syntax yaz_wait yp_all yp_cat yp_err_string yp_errno yp_first yp_get_default_domain yp_master yp_match yp_next yp_order zend_logo_guid zend_version zip_close zip_entry_close zip_entry_compressedsize zip_entry_compressionmethod zip_entry_filesize zip_entry_name zip_entry_open zip_entry_read zip_open zip_read zlib_get_coding_type"@@ -115,6 +115,7 @@ regex_'3c'3c'3c'27'28'5bA'2dZa'2dz'5f'5d'5bA'2dZa'2dz0'2d9'5f'5d'2a'29'27 = compileRegex True "<<<'([A-Za-z_][A-Za-z0-9_]*)'" regex_'5c'24'2b'5ba'2dzA'2dZ'5f'5cx7f'2d'5cxff'5d'5ba'2dzA'2dZ0'2d9'5f'5cx7f'2d'5cxff'5d'2a = compileRegex True "\\$+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*" regex_'5b0123456789'5d'2a'5c'2e'5c'2e'5c'2e'5b0123456789'5d'2a = compileRegex True "[0123456789]*\\.\\.\\.[0123456789]*"+regex_0'5bbB'5d'5b01'5d'2b = compileRegex True "0[bB][01]+" regex_'5c'5c'5b0'2d7'5d'7b1'2c3'7d = compileRegex True "\\\\[0-7]{1,3}" regex_'5c'5cx'5b0'2d9A'2dFa'2df'5d'7b1'2c2'7d = compileRegex True "\\\\x[0-9A-Fa-f]{1,2}" regex_'5c'24'5ba'2dzA'2dZ'5f'5cx7f'2d'5cxff'5d'5ba'2dzA'2dZ0'2d9'5f'5cx7f'2d'5cxff'5d'2a'28'5c'5b'5ba'2dzA'2dZ0'2d9'5f'5d'2a'5c'5d'29'2a = compileRegex True "\\$[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*(\\[[a-zA-Z0-9_]*\\])*"@@ -215,6 +216,8 @@    ((pRegExpr regex_'5c'24'2b'5ba'2dzA'2dZ'5f'5cx7f'2d'5cxff'5d'5ba'2dzA'2dZ0'2d9'5f'5cx7f'2d'5cxff'5d'2a >>= withAttribute KeywordTok))    <|>    ((pRegExpr regex_'5b0123456789'5d'2a'5c'2e'5c'2e'5c'2e'5b0123456789'5d'2a >>= withAttribute StringTok))+   <|>+   ((pRegExpr regex_0'5bbB'5d'5b01'5d'2b >>= withAttribute BaseNTok))    <|>    ((pHlCOct >>= withAttribute BaseNTok))    <|>
Text/Highlighting/Kate/Syntax/Python.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file python.xml, version 2.23, by Michael Bueker -}+   highlighting file python.xml, version 2.25, by Michael Bueker -}  module Text.Highlighting.Kate.Syntax.Python           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -81,7 +81,7 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_prep = Set.fromList $ words $ "import from as"+list_import = Set.fromList $ words $ "import from as" list_defs = Set.fromList $ words $ "class def del global lambda nonlocal" list_operators = Set.fromList $ words $ "and in is not or" list_flow = Set.fromList $ words $ "assert break continue elif else except finally for if pass raise return try while with yield"@@ -98,25 +98,23 @@ regex_'5c'7b'28'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5b0'2d9'5d'2b'29'28'5c'2e'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5c'5b'5b'5e_'5c'5d'5d'2b'5c'5d'29'2a'28'21'5brs'5d'29'3f'28'3a'28'5b'5e'7d'5d'3f'5b'3c'3e'3d'5e'5d'29'3f'5b_'2b'2d'5d'3f'23'3f0'3f'5b0'2d9'5d'2a'28'5c'2e'5b0'2d9'5d'2b'29'3f'5bbcdeEfFgGnosxX'25'5d'3f'29'3f'5c'7d = compileRegex True "\\{([a-zA-Z0-9_]+|[0-9]+)(\\.[a-zA-Z0-9_]+|\\[[^ \\]]+\\])*(![rs])?(:([^}]?[<>=^])?[ +-]?#?0?[0-9]*(\\.[0-9]+)?[bcdeEfFgGnosxX%]?)?\\}"  parseRules ("Python","Normal") =-  (((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_prep >>= withAttribute CharTok))+  (((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_import >>= withAttribute ImportTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_defs >>= withAttribute KeywordTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_operators >>= withAttribute NormalTok))-   <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" Set.empty >>= withAttribute KeywordTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_operators >>= withAttribute OperatorTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_flow >>= withAttribute KeywordTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_flow >>= withAttribute ControlFlowTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_builtinfuncs >>= withAttribute DataTypeTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_builtinfuncs >>= withAttribute BuiltInTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_specialvars >>= withAttribute OtherTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_specialvars >>= withAttribute VariableTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_bindings >>= withAttribute OtherTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_bindings >>= withAttribute ExtensionTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_exceptions >>= withAttribute OtherTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_exceptions >>= withAttribute PreprocessorTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_overloaders >>= withAttribute OtherTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\#'" list_overloaders >>= withAttribute FunctionTok))    <|>    ((pRegExpr regex_'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'7b2'2c'7d >>= withAttribute NormalTok))    <|>@@ -142,9 +140,9 @@    <|>    ((parseRules ("Python","StringVariants")))    <|>-   ((pAnyChar "+*/%\\|=;\\!<>!^&~-" >>= withAttribute NormalTok))+   ((pAnyChar "+*/%\\|=;\\!<>!^&~-" >>= withAttribute OperatorTok))    <|>-   ((pFirstNonSpace >> pRegExpr regex_'40'5b'5fa'2dzA'2dZ'5d'5b'5c'2e'5fa'2dzA'2dZ0'2d9'5d'2a >>= withAttribute OtherTok))+   ((pFirstNonSpace >> pRegExpr regex_'40'5b'5fa'2dzA'2dZ'5d'5b'5c'2e'5fa'2dzA'2dZ0'2d9'5d'2a >>= withAttribute AttributeTok))    <|>    (currentContext >>= \x -> guard (x == ("Python","Normal")) >> pDefault >>= withAttribute NormalTok)) @@ -183,21 +181,21 @@    <|>    ((pString False "u\"" >>= withAttribute StringTok) >>~ pushContext ("Python","Single Q-string"))    <|>-   ((pString False "r'''" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Tripple A-string"))+   ((pString False "r'''" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Tripple A-string"))    <|>-   ((pString False "ur'''" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Tripple A-string"))+   ((pString False "ur'''" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Tripple A-string"))    <|>-   ((pString False "r\"\"\"" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Tripple Q-string"))+   ((pString False "r\"\"\"" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Tripple Q-string"))    <|>-   ((pString False "ur\"\"\"" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Tripple Q-string"))+   ((pString False "ur\"\"\"" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Tripple Q-string"))    <|>-   ((pString False "r'" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw A-string"))+   ((pString False "r'" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw A-string"))    <|>-   ((pString False "ur'" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw A-string"))+   ((pString False "ur'" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw A-string"))    <|>-   ((pString False "r\"" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Q-string"))+   ((pString False "r\"" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Q-string"))    <|>-   ((pString False "ur\"" >>= withAttribute StringTok) >>~ pushContext ("Python","Raw Q-string"))+   ((pString False "ur\"" >>= withAttribute VerbatimStringTok) >>~ pushContext ("Python","Raw Q-string"))    <|>    (currentContext >>= \x -> guard (x == ("Python","StringVariants")) >> pDefault >>= withAttribute NormalTok)) @@ -313,15 +311,15 @@    (currentContext >>= \x -> guard (x == ("Python","Single Q-comment")) >> pDefault >>= withAttribute CommentTok))  parseRules ("Python","stringformat") =-  (((pRegExpr regex_'25'28'28'5c'28'5ba'2dzA'2dZ0'2d9'5f'5d'2b'5c'29'29'3f'5b'230'5c'2d_'2b'5d'3f'28'5b1'2d9'5d'5b0'2d9'5d'2a'7c'5c'2a'29'3f'28'5c'2e'28'5b1'2d9'5d'5b0'2d9'5d'2a'7c'5c'2a'29'29'3f'5bhlL'5d'3f'5bcrsdiouxXeEfFgG'25'5d'7cprog'7cdefault'29 >>= withAttribute OtherTok))+  (((pRegExpr regex_'25'28'28'5c'28'5ba'2dzA'2dZ0'2d9'5f'5d'2b'5c'29'29'3f'5b'230'5c'2d_'2b'5d'3f'28'5b1'2d9'5d'5b0'2d9'5d'2a'7c'5c'2a'29'3f'28'5c'2e'28'5b1'2d9'5d'5b0'2d9'5d'2a'7c'5c'2a'29'29'3f'5bhlL'5d'3f'5bcrsdiouxXeEfFgG'25'5d'7cprog'7cdefault'29 >>= withAttribute SpecialCharTok))    <|>-   ((pRegExpr regex_'5c'7b'28'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5b0'2d9'5d'2b'29'28'5c'2e'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5c'5b'5b'5e_'5c'5d'5d'2b'5c'5d'29'2a'28'21'5brs'5d'29'3f'28'3a'28'5b'5e'7d'5d'3f'5b'3c'3e'3d'5e'5d'29'3f'5b_'2b'2d'5d'3f'23'3f0'3f'5b0'2d9'5d'2a'28'5c'2e'5b0'2d9'5d'2b'29'3f'5bbcdeEfFgGnosxX'25'5d'3f'29'3f'5c'7d >>= withAttribute OtherTok))+   ((pRegExpr regex_'5c'7b'28'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5b0'2d9'5d'2b'29'28'5c'2e'5ba'2dzA'2dZ0'2d9'5f'5d'2b'7c'5c'5b'5b'5e_'5c'5d'5d'2b'5c'5d'29'2a'28'21'5brs'5d'29'3f'28'3a'28'5b'5e'7d'5d'3f'5b'3c'3e'3d'5e'5d'29'3f'5b_'2b'2d'5d'3f'23'3f0'3f'5b0'2d9'5d'2a'28'5c'2e'5b0'2d9'5d'2b'29'3f'5bbcdeEfFgGnosxX'25'5d'3f'29'3f'5c'7d >>= withAttribute SpecialCharTok))    <|>-   ((pDetect2Chars False '{' '{' >>= withAttribute OtherTok))+   ((pDetect2Chars False '{' '{' >>= withAttribute SpecialCharTok))    <|>-   ((pDetect2Chars False '}' '}' >>= withAttribute OtherTok))+   ((pDetect2Chars False '}' '}' >>= withAttribute SpecialCharTok))    <|>-   (currentContext >>= \x -> guard (x == ("Python","stringformat")) >> pDefault >>= withAttribute OtherTok))+   (currentContext >>= \x -> guard (x == ("Python","stringformat")) >> pDefault >>= withAttribute SpecialCharTok))  parseRules ("Python","Tripple A-string") =   (((pHlCStringChar >>= withAttribute CharTok))@@ -333,13 +331,13 @@    (currentContext >>= \x -> guard (x == ("Python","Tripple A-string")) >> pDefault >>= withAttribute StringTok))  parseRules ("Python","Raw Tripple A-string") =-  (((pHlCStringChar >>= withAttribute StringTok))+  (((pHlCStringChar >>= withAttribute VerbatimStringTok))    <|>    ((parseRules ("Python","stringformat")))    <|>    ((pString False "'''" >>= withAttribute StringTok) >>~ (popContext >> popContext))    <|>-   (currentContext >>= \x -> guard (x == ("Python","Raw Tripple A-string")) >> pDefault >>= withAttribute StringTok))+   (currentContext >>= \x -> guard (x == ("Python","Raw Tripple A-string")) >> pDefault >>= withAttribute VerbatimStringTok))  parseRules ("Python","Tripple Q-string") =   (((pHlCStringChar >>= withAttribute CharTok))@@ -351,13 +349,13 @@    (currentContext >>= \x -> guard (x == ("Python","Tripple Q-string")) >> pDefault >>= withAttribute StringTok))  parseRules ("Python","Raw Tripple Q-string") =-  (((pHlCStringChar >>= withAttribute StringTok))+  (((pHlCStringChar >>= withAttribute VerbatimStringTok))    <|>    ((parseRules ("Python","stringformat")))    <|>    ((pString False "\"\"\"" >>= withAttribute StringTok) >>~ (popContext >> popContext))    <|>-   (currentContext >>= \x -> guard (x == ("Python","Raw Tripple Q-string")) >> pDefault >>= withAttribute StringTok))+   (currentContext >>= \x -> guard (x == ("Python","Raw Tripple Q-string")) >> pDefault >>= withAttribute VerbatimStringTok))  parseRules ("Python","Single A-string") =   (((pHlCStringChar >>= withAttribute CharTok))@@ -378,22 +376,22 @@    (currentContext >>= \x -> guard (x == ("Python","Single Q-string")) >> pDefault >>= withAttribute StringTok))  parseRules ("Python","Raw A-string") =-  (((pHlCStringChar >>= withAttribute StringTok))+  (((pHlCStringChar >>= withAttribute VerbatimStringTok))    <|>    ((parseRules ("Python","stringformat")))    <|>-   ((pDetectChar False '\'' >>= withAttribute StringTok) >>~ (popContext >> popContext))+   ((pDetectChar False '\'' >>= withAttribute VerbatimStringTok) >>~ (popContext >> popContext))    <|>-   (currentContext >>= \x -> guard (x == ("Python","Raw A-string")) >> pDefault >>= withAttribute StringTok))+   (currentContext >>= \x -> guard (x == ("Python","Raw A-string")) >> pDefault >>= withAttribute VerbatimStringTok))  parseRules ("Python","Raw Q-string") =-  (((pHlCStringChar >>= withAttribute StringTok))+  (((pHlCStringChar >>= withAttribute VerbatimStringTok))    <|>    ((parseRules ("Python","stringformat")))    <|>-   ((pDetectChar False '"' >>= withAttribute StringTok) >>~ (popContext >> popContext))+   ((pDetectChar False '"' >>= withAttribute VerbatimStringTok) >>~ (popContext >> popContext))    <|>-   (currentContext >>= \x -> guard (x == ("Python","Raw Q-string")) >> pDefault >>= withAttribute StringTok))+   (currentContext >>= \x -> guard (x == ("Python","Raw Q-string")) >> pDefault >>= withAttribute VerbatimStringTok))  parseRules ("Alerts", _) = Text.Highlighting.Kate.Syntax.Alert.parseExpression Nothing parseRules ("Modelines", _) = Text.Highlighting.Kate.Syntax.Modelines.parseExpression Nothing
Text/Highlighting/Kate/Syntax/Ruby.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file ruby.xml, version 1.27, by Stefan Lang (langstefan@gmx.at), Sebastian Vuorinen (sebastian.vuorinen@helsinki.fi), Robin Pedersen (robinpeder@gmail.com), Miquel Sabaté (mikisabate@gmail.com) -}+   highlighting file ruby.xml, version 1.29, by Stefan Lang (langstefan@gmx.at), Sebastian Vuorinen (sebastian.vuorinen@helsinki.fi), Robin Pedersen (robinpeder@gmail.com), Miquel Sabaté (mikisabate@gmail.com) -}  module Text.Highlighting.Kate.Syntax.Ruby           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -18,7 +18,7 @@  -- | Filename extensions for this language. syntaxExtensions :: String-syntaxExtensions = "*.rb;*.rjs;*.rxml;*.xml.erb;*.js.erb;*.rake;Rakefile;Gemfile;*.gemspec"+syntaxExtensions = "*.rb;*.rjs;*.rxml;*.xml.erb;*.js.erb;*.rake;Rakefile;Gemfile;*.gemspec;Vagrantfile"  -- | Highlight source code using this syntax definition. highlight :: String -> [SourceLine]@@ -182,6 +182,8 @@ regex_'2f'3d'5cs = compileRegex True "/=\\s" regex_'3a'28'40'7b1'2c2'7d'7c'5c'24'29'3f'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ0'2d9'5f'5d'2a'5b'3d'3f'21'5d'3f = compileRegex True ":(@{1,2}|\\$)?[a-zA-Z_][a-zA-Z0-9_]*[=?!]?" regex_'3a'5c'5b'5c'5d'3d'3f = compileRegex True ":\\[\\]=?"+regex_'28'40'7b1'2c2'7d'7c'5c'24'29'3f'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ0'2d9'5f'5d'2a'5b'3d'3f'21'5d'3f'3a_ = compileRegex True "(@{1,2}|\\$)?[a-zA-Z_][a-zA-Z0-9_]*[=?!]?: "+regex_'5c'5b'5c'5d'3d'3f'3a_ = compileRegex True "\\[\\]=?: " regex_'23'5cs'2aBEGIN'2e'2a'24 = compileRegex True "#\\s*BEGIN.*$" regex_'23'5cs'2aEND'2e'2a'24 = compileRegex True "#\\s*END.*$" regex_'40'5ba'2dzA'2dZ'5f0'2d9'5d'2b = compileRegex True "@[a-zA-Z_0-9]+"@@ -356,6 +358,10 @@    ((pRegExpr regex_'3a'28'40'7b1'2c2'7d'7c'5c'24'29'3f'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ0'2d9'5f'5d'2a'5b'3d'3f'21'5d'3f >>= withAttribute StringTok) >>~ pushContext ("Ruby","check_div_1"))    <|>    ((pRegExpr regex_'3a'5c'5b'5c'5d'3d'3f >>= withAttribute StringTok) >>~ pushContext ("Ruby","check_div_1"))+   <|>+   ((pRegExpr regex_'28'40'7b1'2c2'7d'7c'5c'24'29'3f'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ0'2d9'5f'5d'2a'5b'3d'3f'21'5d'3f'3a_ >>= withAttribute StringTok) >>~ pushContext ("Ruby","check_div_1"))+   <|>+   ((pRegExpr regex_'5c'5b'5c'5d'3d'3f'3a_ >>= withAttribute StringTok) >>~ pushContext ("Ruby","check_div_1"))    <|>    ((pDetectChar False '"' >>= withAttribute StringTok) >>~ pushContext ("Ruby","Quoted String"))    <|>
Text/Highlighting/Kate/Syntax/Rust.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file rust.xml, version 0.9, by  -}+   highlighting file rust.xml, version 1.1, by  -}  module Text.Highlighting.Kate.Syntax.Rust           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -17,7 +17,7 @@  -- | Filename extensions for this language. syntaxExtensions :: String-syntaxExtensions = "*.rs;*.rc"+syntaxExtensions = "*.rs"  -- | Highlight source code using this syntax definition. highlight :: String -> [SourceLine]@@ -52,6 +52,9 @@       ("Rust","Function") -> return ()       ("Rust","Type") -> return ()       ("Rust","String") -> return ()+      ("Rust","RawString") -> return ()+      ("Rust","RawHashed1") -> return ()+      ("Rust","RawHashed2") -> return ()       ("Rust","Character") -> (popContext) >> pEndLine       ("Rust","CharEscape") -> (popContext) >> pEndLine       ("Rust","Commentar 1") -> (popContext) >> pEndLine@@ -67,12 +70,12 @@  list_fn = Set.fromList $ words $ "fn" list_type = Set.fromList $ words $ "type"-list_keywords = Set.fromList $ words $ "as break continue do drop else enum extern for if impl let loop match mod mut priv pub ref return static struct super trait unsafe use while"-list_traits = Set.fromList $ words $ "Const Copy Send Owned Sized Eq Ord Num Ptr Drop Add Sub Mul Quot Rem Neg BitAnd BitOr BitXor Shl Shr Index Not"-list_types = Set.fromList $ words $ "bool int uint i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 float char str Either Option Result Self"+list_keywords = Set.fromList $ words $ "abstract alignof as become box break const continue crate do else enum extern final for if impl in let loop macro match mod move mut offsetof override priv proc pub pure ref return Self self sizeof static struct super trait type typeof unsafe unsized use virtual where while yield"+list_traits = Set.fromList $ words $ "AsSlice CharExt Clone Copy Debug Decodable Default Display DoubleEndedIterator Drop Encodable Eq Default Extend Fn FnMut FnOnce FromPrimitive Hash Iterator IteratorExt MutPtrExt Ord PartialEq PartialOrd PtrExt Rand Send Sized SliceConcatExt SliceExt Str StrExt Sync ToString"+list_types = Set.fromList $ words $ "bool int isize uint usize i8 i16 i32 i64 u8 u16 u32 u64 f32 f64 float char str Option Result Self Box Vec String" list_ctypes = Set.fromList $ words $ "c_float c_double c_void FILE fpos_t DIR dirent c_char c_schar c_uchar c_short c_ushort c_int c_uint c_long c_ulong size_t ptrdiff_t clock_t time_t c_longlong c_ulonglong intptr_t uintptr_t off_t dev_t ino_t pid_t mode_t ssize_t" list_self = Set.fromList $ words $ "self"-list_constants = Set.fromList $ words $ "true false Some None Left Right Ok Err Success Failure Cons Nil"+list_constants = Set.fromList $ words $ "true false Some None Ok Err Success Failure Cons Nil" list_cconstants = Set.fromList $ words $ "EXIT_FAILURE EXIT_SUCCESS RAND_MAX EOF SEEK_SET SEEK_CUR SEEK_END _IOFBF _IONBF _IOLBF BUFSIZ FOPEN_MAX FILENAME_MAX L_tmpnam TMP_MAX O_RDONLY O_WRONLY O_RDWR O_APPEND O_CREAT O_EXCL O_TRUNC S_IFIFO S_IFCHR S_IFBLK S_IFDIR S_IFREG S_IFMT S_IEXEC S_IWRITE S_IREAD S_IRWXU S_IXUSR S_IWUSR S_IRUSR F_OK R_OK W_OK X_OK STDIN_FILENO STDOUT_FILENO STDERR_FILENO"  regex_0x'5b0'2d9a'2dfA'2dF'5f'5d'2b'28'5biu'5d'288'7c16'7c32'7c64'29'3f'29'3f = compileRegex True "0x[0-9a-fA-F_]+([iu](8|16|32|64)?)?"@@ -84,6 +87,7 @@ regex_'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'21 = compileRegex True "[a-zA-Z_][a-zA-Z_0-9]*!" regex_'27'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'28'3f'21'27'29 = compileRegex True "'[a-zA-Z_][a-zA-Z_0-9]*(?!')" regex_x'5b0'2d9a'2dfA'2dF'5d'7b2'7d = compileRegex True "x[0-9a-fA-F]{2}"+regex_u'5c'7b'5b0'2d9a'2dfA'2dF'5d'7b1'2c6'7d'5c'7d = compileRegex True "u\\{[0-9a-fA-F]{1,6}\\}" regex_u'5b0'2d9a'2dfA'2dF'5d'7b4'7d = compileRegex True "u[0-9a-fA-F]{4}" regex_U'5b0'2d9a'2dfA'2dF'5d'7b8'7d = compileRegex True "U[0-9a-fA-F]{8}" regex_'2e = compileRegex True "."@@ -97,17 +101,17 @@    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_keywords >>= withAttribute KeywordTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_types >>= withAttribute KeywordTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_types >>= withAttribute DataTypeTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_traits >>= withAttribute KeywordTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_traits >>= withAttribute BuiltInTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_ctypes >>= withAttribute NormalTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_ctypes >>= withAttribute DataTypeTok))    <|>    ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_self >>= withAttribute KeywordTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_constants >>= withAttribute KeywordTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_constants >>= withAttribute ConstantTok))    <|>-   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_cconstants >>= withAttribute NormalTok))+   ((pKeyword " \n\t.():!+,-<=>%&*/;?[]^{|}~\\" list_cconstants >>= withAttribute ConstantTok))    <|>    ((pDetect2Chars False '/' '/' >>= withAttribute CommentTok) >>~ pushContext ("Rust","Commentar 1"))    <|>@@ -123,11 +127,13 @@    <|>    ((pRegExpr regex_'5b0'2d9'5d'5b0'2d9'5f'5d'2a'28'5biu'5d'288'7c16'7c32'7c64'29'3f'29'3f >>= withAttribute DecValTok))    <|>-   ((pDetect2Chars False '#' '[' >>= withAttribute OtherTok) >>~ pushContext ("Rust","Attribute"))+   ((pDetect2Chars False '#' '[' >>= withAttribute AttributeTok) >>~ pushContext ("Rust","Attribute"))    <|>+   ((pString False "#![" >>= withAttribute AttributeTok) >>~ pushContext ("Rust","Attribute"))+   <|>    ((pRegExpr regex_'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'3a'3a >>= withAttribute NormalTok))    <|>-   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'21 >>= withAttribute OtherTok))+   ((pRegExpr regex_'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'21 >>= withAttribute PreprocessorTok))    <|>    ((pRegExpr regex_'27'5ba'2dzA'2dZ'5f'5d'5ba'2dzA'2dZ'5f0'2d9'5d'2a'28'3f'21'27'29 >>= withAttribute OtherTok))    <|>@@ -135,6 +141,12 @@    <|>    ((pDetectChar False '}' >>= withAttribute NormalTok))    <|>+   ((pDetect2Chars False 'r' '"' >>= withAttribute StringTok) >>~ pushContext ("Rust","RawString"))+   <|>+   ((pString False "r##\"" >>= withAttribute StringTok) >>~ pushContext ("Rust","RawHashed2"))+   <|>+   ((pString False "r#\"" >>= withAttribute StringTok) >>~ pushContext ("Rust","RawHashed1"))+   <|>    ((pDetectChar False '"' >>= withAttribute StringTok) >>~ pushContext ("Rust","String"))    <|>    ((pDetectChar False '\'' >>= withAttribute CharTok) >>~ pushContext ("Rust","Character"))@@ -148,11 +160,11 @@    (currentContext >>= \x -> guard (x == ("Rust","Normal")) >> pDefault >>= withAttribute NormalTok))  parseRules ("Rust","Attribute") =-  (((pDetectChar False ']' >>= withAttribute OtherTok) >>~ (popContext))+  (((pDetectChar False ']' >>= withAttribute AttributeTok) >>~ (popContext))    <|>    ((parseRules ("Rust","Normal")))    <|>-   (currentContext >>= \x -> guard (x == ("Rust","Attribute")) >> pDefault >>= withAttribute OtherTok))+   (currentContext >>= \x -> guard (x == ("Rust","Attribute")) >> pDefault >>= withAttribute AttributeTok))  parseRules ("Rust","Function") =   (((pDetectSpaces >>= withAttribute NormalTok))@@ -170,36 +182,53 @@    <|>    ((pDetectChar False '<' >>= withAttribute NormalTok) >>~ (popContext))    <|>+   ((pDetectChar False ';' >>= withAttribute NormalTok) >>~ (popContext))+   <|>    (currentContext >>= \x -> guard (x == ("Rust","Type")) >> pDefault >>= withAttribute NormalTok))  parseRules ("Rust","String") =-  (((pLineContinue >>= withAttribute StringTok))-   <|>-   ((pDetectChar False '\\' >>= withAttribute CharTok) >>~ pushContext ("Rust","CharEscape"))+  (((pDetectChar False '\\' >>= withAttribute SpecialCharTok) >>~ pushContext ("Rust","CharEscape"))    <|>    ((pDetectChar False '"' >>= withAttribute StringTok) >>~ (popContext))    <|>    (currentContext >>= \x -> guard (x == ("Rust","String")) >> pDefault >>= withAttribute StringTok)) +parseRules ("Rust","RawString") =+  (((pDetectChar False '"' >>= withAttribute StringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("Rust","RawString")) >> pDefault >>= withAttribute StringTok))++parseRules ("Rust","RawHashed1") =+  (((pDetect2Chars False '"' '#' >>= withAttribute StringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("Rust","RawHashed1")) >> pDefault >>= withAttribute StringTok))++parseRules ("Rust","RawHashed2") =+  (((pString False "\"##" >>= withAttribute StringTok) >>~ (popContext))+   <|>+   (currentContext >>= \x -> guard (x == ("Rust","RawHashed2")) >> pDefault >>= withAttribute StringTok))+ parseRules ("Rust","Character") =-  (((pDetectChar False '\\' >>= withAttribute CharTok) >>~ pushContext ("Rust","CharEscape"))+  (((pDetectChar False '\\' >>= withAttribute SpecialCharTok) >>~ pushContext ("Rust","CharEscape"))    <|>    ((pDetectChar False '\'' >>= withAttribute CharTok) >>~ (popContext))    <|>    (currentContext >>= \x -> guard (x == ("Rust","Character")) >> pDefault >>= withAttribute CharTok))  parseRules ("Rust","CharEscape") =-  (((pAnyChar "nrt\\'\"" >>= withAttribute CharTok) >>~ (popContext))+  (((pAnyChar "nrt\\'\"" >>= withAttribute SpecialCharTok) >>~ (popContext))    <|>-   ((pRegExpr regex_x'5b0'2d9a'2dfA'2dF'5d'7b2'7d >>= withAttribute CharTok) >>~ (popContext))+   ((pRegExpr regex_x'5b0'2d9a'2dfA'2dF'5d'7b2'7d >>= withAttribute SpecialCharTok) >>~ (popContext))    <|>-   ((pRegExpr regex_u'5b0'2d9a'2dfA'2dF'5d'7b4'7d >>= withAttribute CharTok) >>~ (popContext))+   ((pRegExpr regex_u'5c'7b'5b0'2d9a'2dfA'2dF'5d'7b1'2c6'7d'5c'7d >>= withAttribute SpecialCharTok) >>~ (popContext))    <|>-   ((pRegExpr regex_U'5b0'2d9a'2dfA'2dF'5d'7b8'7d >>= withAttribute CharTok) >>~ (popContext))+   ((pRegExpr regex_u'5b0'2d9a'2dfA'2dF'5d'7b4'7d >>= withAttribute SpecialCharTok) >>~ (popContext))    <|>+   ((pRegExpr regex_U'5b0'2d9a'2dfA'2dF'5d'7b8'7d >>= withAttribute SpecialCharTok) >>~ (popContext))+   <|>    ((pRegExpr regex_'2e >>= withAttribute ErrorTok) >>~ (popContext))    <|>-   (currentContext >>= \x -> guard (x == ("Rust","CharEscape")) >> pDefault >>= withAttribute CharTok))+   (currentContext >>= \x -> guard (x == ("Rust","CharEscape")) >> pDefault >>= withAttribute SpecialCharTok))  parseRules ("Rust","Commentar 1") =   (currentContext >>= \x -> guard (x == ("Rust","Commentar 1")) >> pDefault >>= withAttribute CommentTok)
Text/Highlighting/Kate/Syntax/Sql.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file sql.xml, version 1.16, by Yury Lebedev (yurylebedev@mail.ru) -}+   highlighting file sql.xml, version 1.17, by Yury Lebedev (yurylebedev@mail.ru) -}  module Text.Highlighting.Kate.Syntax.Sql           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -63,10 +63,10 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_keywords = Set.fromList $ words $ "access account add admin administer advise after agent all all_rows allocate alter analyze ancillary and any archive archivelog as asc assertion associate at attribute attributes audit authenticated authid authorization autoallocate autoextend automatic backup become before begin behalf between binding bitmap block block_range body bound both break broadcast btitle buffer_pool build bulk by cache cache_instances call cancel cascade case category chained change check checkpoint child choose chunk class clear clone close close_cached_open_cursors cluster coalesce column columns column_value comment commit committed compatibility compile complete composite_limit compress compute connect connect_time consider consistent constant constraint constraints container contents context continue controlfile copy cost cpu_per_call cpu_per_session create create_stored_outlines cross cube current cursor cycle dangling data database datafile datafiles dba ddl deallocate debug declare default deferrable deferred definer degree delete demand desc determines dictionary dimension directory disable disassociate disconnect diskgroup dismount distinct distributed domain drop dynamic each else elsif empty enable end enforce entry escape estimate events except exception exceptions exchange excluding exclusive exec execute exists expire explain explosion extends extent extents externally failed_login_attempts false fast file filter first_rows flagger flashback flush following for force foreign freelist freelists fresh from full function functions generated global globally global_name grant group groups hash hashkeys having header heap hierarchy hour id identified identifier idgenerators idle_time if immediate in including increment incremental index indexed indexes indextype indextypes indicator initial initialized initially initrans inner insert instance instances instead intermediate intersect into invalidate is isolation isolation_level java join keep key kill label layer leading left less level library like limit link list local locator lock locked logfile logging logical_reads_per_call logical_reads_per_session logoff logon loop manage managed management master materialized maxarchlogs maxdatafiles maxextents maxinstances maxlogfiles maxloghistory maxlogmembers maxsize maxtrans maxvalue method member merge minimize minimum minextents minus minute minvalue mode modify monitoring mount move movement mts_dispatchers multiset named natural needed nested nested_table_id network never new next nls_calendar nls_characterset nls_comp nls_currency nls_date_format nls_date_language nls_iso_currency nls_lang nls_language nls_numeric_characters nls_sort nls_special_chars nls_territory no noarchivelog noaudit nocache nocompress nocycle noforce nologging nomaxvalue nominimize nominvalue nomonitoring none noorder nooverride noparallel norely noresetlogs noreverse normal nosegment nosort not nothing novalidate nowait null nulls objno objno_reuse of off offline oid oidindex old on online only opcode open operator optimal optimizer_goal option or order organization out outer outline over overflow overlaps own package packages parallel parameters parent partition partitions partition_hash partition_range password password_grace_time password_life_time password_lock_time password_reuse_max password_reuse_time password_verify_function pctfree pctincrease pctthreshold pctused pctversion percent permanent plan plsql_debug post_transaction prebuilt preceding prepare present preserve previous primary prior private private_sga privilege privileges procedure profile public purge query queue quota random range rba read reads rebuild records_per_block recover recoverable recovery recycle reduced references referencing refresh rely rename replace reset resetlogs resize resolve resolver resource restrict restricted resume return returning reuse reverse revoke rewrite right role roles rollback rollup row rownum rows rule sample savepoint scan scan_instances schema scn scope sd_all sd_inhibit sd_show segment seg_block seg_file select selectivity sequence serializable servererror session session_cached_cursors sessions_per_user set share shared shared_pool shrink shutdown singletask size skip skip_unusable_indexes snapshot some sort source specification split sql_trace standby start startup statement_id statistics static stop storage store structure submultiset subpartition subpartitions successful summary supplemental suspend switch sys_op_bitvec sys_op_enforce_not_null$ sys_op_noexpand sys_op_ntcimg$ synonym sysdba sysoper system table tables tablespace tablespace_no tabno tempfile temporary than the then thread through timeout timezone_hour timezone_minute time_zone to toplevel trace tracing trailing transaction transitional trigger triggers true truncate type types unarchived unbound unbounded undo uniform union unique unlimited unlock unrecoverable until unusable unused upd_indexes updatable update uppper usage use use_stored_outlines user_defined using validate validation values view when whenever where while with without work write"+list_keywords = Set.fromList $ words $ "access account add admin administer advise after agent all allocate all_rows alter analyze ancillary and any archive archivelog as asc assertion associate at attribute attributes audit authenticated authid authorization autoallocate autoextend automatic backup become before begin behalf between binding bitmap block block_range body both bound break broadcast btitle buffer_pool build bulk by cache cache_instances call cancel cascade case category chained change check checkpoint child choose chunk class clear clone close close_cached_open_cursors cluster coalesce column columns column_value comment commit committed compatibility compile complete composite_limit compress compute connect connect_time consider consistent constant constraint constraints container contents context continue controlfile copy cost cpu_per_call cpu_per_session create create_stored_outlines cross cube current cursor cycle dangling data database datafile datafiles dba ddl deallocate debug declare default deferrable deferred definer degree delete demand desc determines dictionary dimension directory disable disassociate disconnect diskgroup dismount distinct distributed domain drop dynamic each else elsif empty enable end enforce entry escape estimate events except exception exceptions exchange excluding exclusive exec execute exists expire explain explosion extends extent extents externally failed_login_attempts false fast file filter first_rows flagger flashback flush following for force foreign freelist freelists fresh from full function functions generated global globally global_name grant group groups hash hashkeys having header heap hierarchy hour id identified identifier idgenerators idle_time if immediate in including increment incremental index indexed indexes indextype indextypes indicator initial initialized initially initrans inner insert instance instances instead intermediate intersect into invalidate is isolation isolation_level java join keep key kill label layer leading left less level library like limit link list local locator lock locked logfile logging logical_reads_per_call logical_reads_per_session logoff logon loop manage managed management master materialized maxarchlogs maxdatafiles maxextents maxinstances maxlogfiles maxloghistory maxlogmembers maxsize maxtrans maxvalue member merge method minextents minimize minimum minus minute minvalue mode modify monitoring mount move movement mts_dispatchers multiset named natural needed nested nested_table_id network never new next nls_calendar nls_characterset nls_comp nls_currency nls_date_format nls_date_language nls_iso_currency nls_lang nls_language nls_numeric_characters nls_sort nls_special_chars nls_territory no noarchivelog noaudit nocache nocompress nocycle noforce nologging nomaxvalue nominimize nominvalue nomonitoring none noorder nooverride noparallel norely noresetlogs noreverse normal nosegment nosort not nothing novalidate nowait null nulls objno objno_reuse of off offline oid oidindex old on online only opcode open operator optimal optimizer_goal option or order organization out outer outline over overflow overlaps own package packages parallel parameters parent partition partitions partition_hash partition_range password password_grace_time password_life_time password_lock_time password_reuse_max password_reuse_time password_verify_function pctfree pctincrease pctthreshold pctused pctversion percent permanent plan plsql_debug post_transaction prebuilt preceding prepare present preserve previous primary prior private private_sga privilege privileges procedure profile public purge query queue quota random range rba read reads rebuild records_per_block recover recoverable recovery recycle reduced references referencing refresh rely rename replace reset resetlogs resize resolve resolver resource restrict restricted resume return returning reuse reverse revoke rewrite right role roles rollback rollup row rownum rows rule sample savepoint scan scan_instances schema scn scope sd_all sd_inhibit sd_show segment seg_block seg_file select selectivity sequence serializable servererror session sessions_per_user session_cached_cursors set share shared shared_pool shrink shutdown singletask size skip skip_unusable_indexes snapshot some sort source specification split sql_trace standby start startup statement_id static statistics stop storage store structure submultiset subpartition subpartitions successful summary supplemental suspend switch synonym sysdba sysoper system sys_op_bitvec sys_op_enforce_not_null$ sys_op_noexpand sys_op_ntcimg$ table tables tablespace tablespace_no tabno tempfile temporary than the then thread through timeout timezone_hour timezone_minute time_zone to toplevel trace tracing trailing transaction transitional trigger triggers true truncate type types unarchived unbound unbounded undo uniform union unique unlimited unlock unrecoverable until unusable unused updatable update upd_indexes uppper usage use user_defined use_stored_outlines using validate validation values view when whenever where while with without work write" list_operators = Set.fromList $ words $ "+ - * / || = != <> < <= > >= ~= ^= := => ** .." list_functions = Set.fromList $ words $ "abs acos add_months ascii asciistr asin atan atan2 avg bfilename bin_to_num bitand cardinality cast ceil chartorowid chr coalesce collect compose concat convert corr corr_k corr_s cos cosh count covar_pop covar_samp cume_dist current_date current_timestamp cv dbtimezone decode decompose dense_rank depth deref dump empty_blob empty_clob existsnode exp extract extractvalue first first_value floor from_tz greatest group_id grouping grouping_id hextoraw initcap instr instrb lag last last_day last_value lead least length lengthb ln lnnvl localtimestamp log lower lpad ltrim make_ref max median min mod months_between nanvl nchr new_time next_day nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower nls_upper nlssort ntile nullif numtodsinterval numtoyminterval nvl nvl2 ora_hash ora_rowscn percent_rank percentile_cont percentile_disc power powermultiset powermultiset_by_cardinality presentnnv presentv rank ratio_to_report rawtohex rawtonhex ref reftohex regexp_instr regexp_like regexp_replace regexp_substr regr_slope regr_intercept regr_count regr_r2 regr_avgx regr_avgy regr_sxx regr_syy regr_sxy remainder round row_number rowidtochar rowidtonchar rpad rtrim scn_to_timestamp sessiontimezone sign sin sinh soundex sqrt stats_binomial_test stats_crosstab stats_f_test stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_one stats_t_test_paired stats_t_test_indep stats_t_test_indepu stats_wsr_test stddev stddev_pop stddev_samp substr substrb sum sys_connect_by_path sys_context sys_dburigen sys_extract_utc sys_guid sys_typeid sys_xmlagg sys_xmlgen sysdate systimestamp tan tanh timestamp_to_scn to_binary_double to_binary_float to_char to_clob to_date to_dsinterval to_lob to_multi_byte to_nchar to_nclob to_number to_single_byte to_timestamp to_timestamp_tz to_yminterval translate treat trim trunc tz_offset uid unistr updatexml upper user userenv value var_pop var_samp variance vsize width_bucket xmlagg xmlcolattval xmlconcat xmlelement xmlforest xmlsequence xmltransform"-list_types = Set.fromList $ words $ "anydata anydataset anytype array bfile binary_double binary_float binary_integer blob boolean cfile char character clob date day dburitype dec decimal double float flob httpuritype int integer interval lob long mlslabel month national nchar nclob number numeric nvarchar object pls_integer precision raw record real rowid second single smallint time timestamp urifactorytype uritype urowid varchar varchar2 varying varray xmltype year zone"+list_types = Set.fromList $ words $ "anydata anydataset anytype array bfile binary_double binary_float binary_integer blob boolean cfile char character clob date day dburitype dec decimal double float flob httpuritype int integer interval lob long mlslabel month national nchar nclob number numeric nvarchar object pls_integer precision raw real record rowid second single smallint time timestamp urifactorytype uritype urowid varchar varchar2 varray varying xmltype year zone"  regex_'25'28'3f'3abulk'5f'28'3f'3aexceptions'7crowcount'29'7cfound'7cisopen'7cnotfound'7crowcount'7crowtype'7ctype'29'5cb = compileRegex False "%(?:bulk_(?:exceptions|rowcount)|found|isopen|notfound|rowcount|rowtype|type)\\b" regex_rem'5cb = compileRegex False "rem\\b"
Text/Highlighting/Kate/Syntax/SqlMysql.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file sql-mysql.xml, version 1.15, by Shane Wright (me@shanewright.co.uk) -}+   highlighting file sql-mysql.xml, version 1.16, by Shane Wright (me@shanewright.co.uk) -}  module Text.Highlighting.Kate.Syntax.SqlMysql           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -63,10 +63,10 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_keywords = Set.fromList $ words $ "access add all alter analyze and as asc auto_increment bdb berkeleydb between both by cascade case change charset column columns constraint create cross current_date current_time current_timestamp database databases day_hour day_minute day_second dec default delayed delete desc describe distinct distinctrow drop else enclosed escaped exists explain fields for foreign from fulltext function grant group having high_priority if ignore in index infile inner innodb insert interval into is join key keys kill leading left like limit lines load lock low_priority master_server_id match mrg_myisam natural national not null numeric on optimize option optionally or order outer outfile partial precision primary privileges procedure purge read references regexp rename replace require restrict returns revoke right rlike select set show soname sql_big_result sql_calc_found_rows sql_small_result ssl starting straight_join striped table tables terminated then to trailing truncate type union unique unlock unsigned update usage use user_resources using values varying when where while with write xor year_month zerofill"+list_keywords = Set.fromList $ words $ "access add all alter analyze and as asc auto_increment bdb berkeleydb between both by cascade case change charset column columns constraint create cross current_date current_time current_timestamp database databases day_hour day_minute day_second dec default delayed delete desc describe distinct distinctrow drop else enclosed escaped exists explain fields for foreign from fulltext function grant group having high_priority if ignore in index infile inner innodb insert interval into is join key keys kill leading left like limit lines load lock low_priority master_server_id match mrg_myisam national natural not null numeric on optimize option optionally or order outer outfile partial precision primary privileges procedure purge read references regexp rename replace require restrict returns revoke right rlike select set show soname sql_big_result sql_calc_found_rows sql_small_result ssl starting straight_join striped table tables terminated then to trailing truncate type union unique unlock unsigned update usage use user_resources using values varying when where while with write xor year_month zerofill" list_operators = Set.fromList $ words $ "+ - * / || = != <> < <= > >= ~= ^= := => ** .."-list_functions = Set.fromList $ words $ "ascii ord conv bin oct hex char concat concat_ws length octet_length char_length character_length bit_length locate position instr lpad rpad left right substring substring_index mid ltrim rtrim trim soundex space replace repeat reverse insert elt field find_in_set make_set export_set lcase lower ucase upper load_file quote abs sign mod floor ceiling round exp ln log log2 log10 pow power sqrt pi cos sin tan acos asin atan atan2 cot rand least greatest degrees radians dayofweek weekday dayofmonth dayofyear month dayname monthname quarter week year yearweek hour minute second period_add period_diff date_add date_sub adddate subdate extract to_days from_days date_format time_format curdate current_date curtime current_time now sysdate current_timestamp unix_timestamp from_unixtime sec_to_time time_to_sec cast convert bit_count database user system_user session_user password encrypt encode decode md5 sha1 sha aes_encrypt aes_decrypt des_encrypt des_decrypt last_insert_id format version connection_id get_lock release_lock is_free_lock benchmark inet_ntoa inet_aton master_pos_wait found_rows count avg min max sum std stddev bit_or bit_and"-list_types = Set.fromList $ words $ "char character varchar binary varbinary tinyblob mediumblob blob longblob tinytext mediumtext text longtext enum bit bool boolean tinyint smallint mediumint middleint int integer bigint float double real decimal dec fixed numeric long serial date datetime time timestamp year"+list_functions = Set.fromList $ words $ "ascii bin bit_length char character_length char_length concat concat_ws conv elt export_set field find_in_set hex insert instr lcase left length load_file locate lower lpad ltrim make_set mid oct octet_length ord position quote repeat replace reverse right rpad rtrim soundex space substring substring_index trim ucase upper abs acos asin atan atan2 ceiling cos cot degrees exp floor greatest least ln log log10 log2 mod pi pow power radians rand round sign sin sqrt tan adddate curdate current_date current_time current_timestamp curtime date_add date_format date_sub dayname dayofmonth dayofweek dayofyear extract from_days from_unixtime hour minute month monthname now period_add period_diff quarter second sec_to_time subdate sysdate time_format time_to_sec to_days unix_timestamp week weekday year yearweek cast convert aes_decrypt aes_encrypt benchmark bit_count connection_id database decode des_decrypt des_encrypt encode encrypt format found_rows get_lock inet_aton inet_ntoa is_free_lock last_insert_id master_pos_wait md5 password release_lock session_user sha sha1 system_user user version avg bit_and bit_or count max min std stddev sum"+list_types = Set.fromList $ words $ "binary blob char character enum longblob longtext mediumblob mediumtext text tinyblob tinytext varbinary varchar bigint bit bool boolean dec decimal double fixed float int integer long mediumint middleint numeric tinyint real serial smallint date datetime time timestamp year"  regex_SET'28'3f'3d'5cs'2a'5c'28'29 = compileRegex False "SET(?=\\s*\\()" regex_'5cbCHARACTER_SET'5cb = compileRegex False "\\bCHARACTER SET\\b"
Text/Highlighting/Kate/Syntax/SqlPostgresql.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file sql-postgresql.xml, version 1.12, by Shane Wright (me@shanewright.co.uk) -}+   highlighting file sql-postgresql.xml, version 1.13, by Shane Wright (me@shanewright.co.uk) -}  module Text.Highlighting.Kate.Syntax.SqlPostgresql           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -65,10 +65,10 @@                           , synStPrevNonspace = synStPrevNonspace st || not (all isSpace txt) }   return (attr, txt) -list_keywords = Set.fromList $ words $ "abort access action add admin after aggregate alias all allocate alter analyse analyze any are as asc asensitive assertion assignment asymmetric at atomic authorization backward before begin between binary both breadth by c cache call called cardinality cascade cascaded case cast catalog catalog_name chain char_length character_length character_set_catalog character_set_name character_set_schema characteristics check checked checkpoint class class_origin clob close cluster coalesce cobol collate collation collation_catalog collation_name collation_schema column column_name command_function command_function_code comment commit committed completion condition_number connect connection connection_name constraint constraint_catalog constraint_name constraint_schema constraints constructor contains continue convert copy corresponding count create createdb createuser cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cursor_name cycle data database date datetime_interval_code datetime_interval_precision day deallocate dec decimal declare default deferrable deferred defined definer delete delimiters depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect dispatch distinct do domain double drop dynamic dynamic_function dynamic_function_code each else encoding encrypted end end-exec equals escape every except exception exclusive exec execute existing exists explain external fetch final first for force foreign fortran forward found free freeze from full function g general generated get global go goto grant granted group grouping handler having hierarchy hold host hour identity ignore ilike immediate immutable implementation in increment index indicator infix inherits initialize initially inner inout input insensitive insert instance instantiable instead intersect interval into invoker is isnull isolation iterate join k key key_member key_type lancompiler language large last lateral leading left length less level like limit listen load local localtime localtimestamp location locator lock lower m map match max maxvalue message_length message_octet_length message_text method min minute minvalue mod mode modifies modify module month more move mumps name names national natural new next no nocreatedb nocreateuser none not nothing notify notnull null nullable nullif number numeric object octet_length of off offset oids old on only open operation operator option options order ordinality out outer output overlaps overlay overriding owner pad parameter parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema parameters partial pascal password path pendant pli position postfix precision prefix preorder prepare preserve primary prior privileges procedural procedure public read reads real recursive ref references referencing reindex relative rename repeatable replace reset restrict result return returned_length returned_octet_length returned_sqlstate returns revoke right role rollback rollup routine routine_catalog routine_name routine_schema row row_count rows rule savepoint scale schema schema_name scope scroll search second section security select self sensitive sequence serializable server_name session session_user set setof sets share show similar simple size some source space specific specific_name specifictype sql sqlcode sqlerror sqlexception sqlstate sqlwarning stable start state statement static statistics stdin stdout structure style subclass_origin sublist substring sum symmetric sysid system system_user table table_name temp template temporary terminate than then timezone_hour timezone_minute to toast trailing transaction transaction_active transactions_committed transactions_rolled_back transform transforms translate translation treat trigger trigger_catalog trigger_name trigger_schema trim truncate trusted type uncommitted under unencrypted union unique unknown unlisten unnamed unnest until update upper usage user user_defined_type_catalog user_defined_type_name user_defined_type_schema using vacuum valid value values variable varying verbose version view volatile when whenever where while with without work write year zone false true"+list_keywords = Set.fromList $ words $ "abort access action add admin after aggregate alias all allocate alter analyse analyze any are as asc asensitive assertion assignment asymmetric at atomic authorization backward before begin between binary both breadth by c cache call called cardinality cascade cascaded case cast catalog catalog_name chain characteristics character_length character_set_catalog character_set_name character_set_schema char_length check checked checkpoint class class_origin clob close cluster coalesce cobol collate collation collation_catalog collation_name collation_schema column column_name command_function command_function_code comment commit committed completion condition_number connect connection connection_name constraints constraint constraint_catalog constraint_name constraint_schema constructor contains continue convert copy corresponding count create createdb createuser cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cursor_name cycle data database date datetime_interval_code datetime_interval_precision day deallocate dec decimal declare default deferrable deferred defined definer delete delimiters depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect dispatch distinct do domain double drop dynamic dynamic_function dynamic_function_code each else encoding encrypted end end-exec equals escape every except exception exclusive exec execute existing exists explain external false fetch final first for force foreign fortran forward found free freeze from full function g general generated get global go goto grant granted group grouping handler having hierarchy hold host hour identity ignore ilike immediate immutable implementation in increment index indicator infix inherits initialize initially inner inout input insensitive insert instance instantiable instead intersect interval into invoker is isnull isolation iterate join k key key_member key_type lancompiler language large last lateral leading left length less level like limit listen load local localtime localtimestamp location locator lock lower m map match max maxvalue message_length message_octet_length message_text method min minute minvalue mod mode modifies modify module month more move mumps name names national natural new next no nocreatedb nocreateuser none not nothing notify notnull null nullable nullif number numeric object octet_length of off offset oids old on only open operation operator option options order ordinality out outer output overlaps overlay overriding owner pad parameter parameters parameter_mode parameter_name parameter_ordinal_position parameter_specific_catalog parameter_specific_name parameter_specific_schema partial pascal password path pendant pli position postfix precision prefix preorder prepare preserve primary prior privileges procedural procedure public read reads real recursive ref references referencing reindex relative rename repeatable replace reset restrict result return returned_length returned_octet_length returned_sqlstate returns revoke right role rollback rollup routine routine_catalog routine_name routine_schema row rows row_count rule savepoint scale schema schema_name scope scroll search second section security select self sensitive sequence serializable server_name session session_user set setof sets share show similar simple size some source space specific specifictype specific_name sql sqlcode sqlerror sqlexception sqlstate sqlwarning stable start state statement static statistics stdin stdout structure style subclass_origin sublist substring sum symmetric sysid system system_user table table_name temp template temporary terminate than then timezone_hour timezone_minute to toast trailing transaction transactions_committed transactions_rolled_back transaction_active transform transforms translate translation treat trigger trigger_catalog trigger_name trigger_schema trim true truncate trusted type uncommitted under unencrypted union unique unknown unlisten unnamed unnest until update upper usage user user_defined_type_catalog user_defined_type_name user_defined_type_schema using vacuum valid value values variable varying verbose version view volatile when whenever where while with without work write year zone" list_operators = Set.fromList $ words $ "+ - * / || |/ ||/ ! !! @ & | # << >> % ^ = != <> < <= > >= ~ ~* !~ !~* ^= := => ** .. and or not ## && &< &> <-> <^ >^ ?# ?- ?-| @-@ ?| ?|| @@ ~= <<= >>=" list_functions = Set.fromList $ words $ "abs cbrt ceil degrees exp floor ln log mod pi pow radians random round sign sqrt trunc acos asin atan atan2 cos cot sin tan bit_length char_length character_length lower octet_length position substring trim upper ascii btrim chr convert initcap length lpad ltrim pg_client_encoding repeat rpad rtrim strpos substr to_ascii translate encode decode to_char to_date to_timestamp to_number age date_part date_trunc extract isfinite now timeofday timestamp extract area box center diameter height isclosed isopen pclose npoint popen radius width box circle lseg path point polygon broadcast host masklen set_masklen netmask network abbrev nextval currval setval coalesce nullif has_table_privilege pg_get_viewdef pg_get_ruledef pg_get_indexdef pg_get_userbyid obj_description col_description avg count max min stddev sum variance"-list_types = Set.fromList $ words $ "lztext bigint int2 int8 bigserial serial8 bit bit varying varbit boolean bool box bytea character char character varying varchar cidr circle date double precision float8 inet integer int int4 interval line lseg macaddr money numeric decimal oid path point polygon real smallint serial text time timetz timestamp timestamptz timestamp with timezone"+list_types = Set.fromList $ words $ "bigint bigserial bit bit varying bool boolean box bytea char character character varying cidr circle date decimal double precision float8 inet int int2 int4 int8 integer interval line lseg lztext macaddr money numeric oid path point polygon real serial serial8 smallint text time timestamp timestamp with timezone timestamptz timetz varbit varchar"  regex_'25bulk'5fexceptions'5cb = compileRegex False "%bulk_exceptions\\b" regex_'25bulk'5frowcount'5cb = compileRegex False "%bulk_rowcount\\b"
Text/Highlighting/Kate/Syntax/Vhdl.hs view
@@ -1,5 +1,5 @@ {- This module was generated from data in the Kate syntax-   highlighting file vhdl.xml, version 1.11, by Rocky Scaletta (rocky@purdue.edu), Stefan Endrullis (stefan@endrullis.de), Florent Ouchet (outchy@users.sourceforge.net), Chris Higgs (chiggs.99@gmail.com), Jan Michel (jan@mueschelsoft.de) -}+   highlighting file vhdl.xml, version 1.12, by Rocky Scaletta (rocky@purdue.edu), Stefan Endrullis (stefan@endrullis.de), Florent Ouchet (outchy@users.sourceforge.net), Chris Higgs (chiggs.99@gmail.com), Jan Michel (jan@mueschelsoft.de) -}  module Text.Highlighting.Kate.Syntax.Vhdl           (highlight, parseExpression, syntaxName, syntaxExtensions)@@ -97,7 +97,7 @@   return (attr, txt)  list_keywordsToplevel = Set.fromList $ words $ "file library use"-list_keywords = Set.fromList $ words $ "access after alias all array assert assume assume_guarantee attribute begin block body bus component constant context cover default disconnect downto end exit fairness falling_edge file force function generate generic group guarded impure inertial is label linkage literal map new next null of on open others parameter port postponed procedure process property protected pure range record register reject release report return rising_edge select sequence severity signal shared strong subtype to transport type unaffected units until variable vmode vprop vunit wait when with note warning error failure in inout out buffer and abs or xor xnor not mod nand nor rem rol ror sla sra sll srl"+list_keywords = Set.fromList $ words $ "access after alias all array assert assume assume_guarantee attribute begin block body bus component constant context cover default disconnect downto end exit fairness falling_edge file for force function generate generic group guarded impure inertial is label linkage literal map new next null of on open others parameter port postponed procedure process property protected pure range record register reject release report return rising_edge select sequence severity signal shared strong subtype to transport type unaffected units until variable vmode vprop vunit wait when with note warning error failure in inout out buffer and abs or xor xnor not mod nand nor rem rol ror sla sra sll srl" list_if = Set.fromList $ words $ "if else elsif then" list_forOrWhile = Set.fromList $ words $ "loop" list_directions = Set.fromList $ words $ "in inout out buffer linkage"
Text/Highlighting/Kate/Types.hs view
@@ -16,6 +16,7 @@ import Data.Word import Text.Printf import Data.Data (Data)+import Data.Bits import Data.Typeable (Typeable)  -- | A context: pair of syntax name and context name.@@ -59,13 +60,30 @@                | DecValTok                | BaseNTok                | FloatTok+               | ConstantTok                | CharTok+               | SpecialCharTok                | StringTok+               | VerbatimStringTok+               | SpecialStringTok+               | ImportTok                | CommentTok+               | DocumentationTok+               | AnnotationTok+               | CommentVarTok                | OtherTok-               | AlertTok                | FunctionTok+               | VariableTok+               | ControlFlowTok+               | OperatorTok+               | BuiltInTok+               | ExtensionTok+               | PreprocessorTok+               | AttributeTok                | RegionMarkerTok+               | InformationTok+               | WarningTok+               | AlertTok                | ErrorTok                | NormalTok                deriving (Read, Show, Eq, Enum, Data, Typeable)@@ -103,6 +121,14 @@            ((r,g,b),_) : _ -> Just $ RGB r g b            _                                         -> Nothing   toColor _        = Nothing++instance ToColor Int where+  toColor x = toColor (fromIntegral x1 :: Word8,+                       fromIntegral x2 :: Word8,+                       fromIntegral x3 :: Word8)+    where x1 = (shiftR x 16) .&. 0xFF+          x2 = (shiftR x 8 ) .&. 0xFF+          x3 = x             .&. 0xFF  instance ToColor (Word8, Word8, Word8) where   toColor (r,g,b) = Just $ RGB r g b
changelog view
@@ -1,3 +1,24 @@+highlighting-kate 0.6 (26 May 2015)++  * Support new KF5 token attributes (#69).+    + Added to `TokenType`: `ConstantTok`, `SpecialCharTok`,+      `VerbatimStringTok`, `SpecialStringTok`, `ImportTok`,+      `DocumentationTok`, `AnnotationTok`, `CommentVarTok`,+      `VariableTok`, `ControlFlowTok`, `OperatorTok`, `BuiltInTok`,+      `ExtensionTok`, `PreprocessorTok`, `AttributeTok`,+      `InformationTok`, `WarningTok`.+    + Revised styles to add clauses for the new `TokenType`s.+    + Revised HTML formatter to produce CSS for all the new+      `TokenType`s, and to include comments naming each type.+    + Modified `ParseSyntaxFiles` to handle new types.+    + Updated tests.+  * Updated xml syntax definitions.  However, we retain an older+    version of haskell.xml, since the new one didn't work properly.+  * Added `ToColor` instance for `Int`.+  * Renamed `Highlight[.hs]` to `highlighting-kate[.hs]` (Geoff Nixon).+  * Allow `#` as an operator in Haskell (Ryan Yates).+  * Added support for Kotlin (kotlinlang.org) (Sebastien Soudan).+ highlighting-kate 0.5.15 (25 Apr 2015)    * Rename `Highlight` utility and `Highlight.hs` to `highlighting-kate` and
highlighting-kate.cabal view
@@ -1,5 +1,5 @@ Name:                highlighting-kate-Version:             0.5.15+Version:             0.6 Cabal-Version:       >= 1.10 Build-Type:          Simple Category:            Text@@ -53,6 +53,8 @@                      tests/abc.javascript.html                      tests/abc.julia                      tests/abc.julia.html+                     tests/abc.kotlin+                     tests/abc.kotlin.html                      tests/abc.lisp                      tests/abc.lisp.html                      tests/abc.matlab@@ -168,6 +170,7 @@                      Text.Highlighting.Kate.Syntax.Json                      Text.Highlighting.Kate.Syntax.Jsp                      Text.Highlighting.Kate.Syntax.Julia+                     Text.Highlighting.Kate.Syntax.Kotlin                      Text.Highlighting.Kate.Syntax.Latex                      Text.Highlighting.Kate.Syntax.Lex                      Text.Highlighting.Kate.Syntax.Lilypond@@ -235,7 +238,7 @@   -- massively improves compilation speed and memory usage   Default-Language:    Haskell98   Ghc-Options:       -W -O0-  Ghc-Prof-Options:  -auto-all -caf-all+  Ghc-Prof-Options:  -fprof-auto-exported   -- the following line is needed to prevent gcc from consuming huge amounts of   -- memory on platforms without a native code generator:   Cc-Options:       -O0@@ -249,7 +252,7 @@   if flag(pcre-light)     cpp-options:     -D_PCRE_LIGHT   Ghc-Options:      -W -O0 -rtsopts-  Ghc-Prof-Options: -auto-all -caf-all -rtsopts+  Ghc-Prof-Options:  -fprof-auto-exported   -- the following line is needed to prevent gcc from consuming huge amounts of   -- memory on platforms without a native code generator:   Cc-Options:       -O0
tests/abc.ada.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">with</span> Ada.Characters.Handling; <span class="kw" title="KeywordTok">use</span> Ada.Characters.Handling; 
tests/abc.c.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="ot" title="OtherTok">#include &lt;stdio.h&gt;</span> <span class="ot" title="OtherTok">#include &lt;ctype.h&gt;</span> 
tests/abc.clojure.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"> (<span class="kw" title="KeywordTok">def</span><span class="fu" title="FunctionTok"> blocks</span>   (<span class="kw" title="KeywordTok">-&gt;</span> <span class="st" title="StringTok">&quot;BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM&quot;</span> (.split <span class="st" title="StringTok">&quot; &quot;</span>) <span class="kw" title="KeywordTok">vec</span>))
tests/abc.cpp.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="ot" title="OtherTok">#include &lt;iostream&gt;</span> <span class="ot" title="OtherTok">#include &lt;vector&gt;</span> <span class="ot" title="OtherTok">#include &lt;string&gt;</span>
tests/abc.cs.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">using</span> System.<span class="fu" title="FunctionTok">Collections</span>.<span class="fu" title="FunctionTok">Generic</span>; <span class="kw" title="KeywordTok">using</span> System.<span class="fu" title="FunctionTok">Linq</span>; 
tests/abc.d.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">import</span> std.stdio, std.ascii, std.algorithm, std.array, std.range;  <span class="kw" title="KeywordTok">alias</span> Block = <span class="dt" title="DataTypeTok">char</span>[<span class="dv" title="DecValTok">2</span>];
tests/abc.fortran.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="co" title="CommentTok">!-*- mode: compilation; default-directory: &quot;/tmp/&quot; -*-</span> <span class="co" title="CommentTok">!Compilation started at Thu Jun  5 01:52:03</span> <span class="co" title="CommentTok">!</span>
tests/abc.go.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">package</span> main  <span class="kw" title="KeywordTok">import</span> (
tests/abc.haskell.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">import </span><span class="dt" title="DataTypeTok">Data.List</span> (delete) <span class="kw" title="KeywordTok">import </span><span class="dt" title="DataTypeTok">Data.Char</span> (toUpper) 
tests/abc.java.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">import java.util.Arrays;</span>  <span class="kw" title="KeywordTok">public</span> <span class="kw" title="KeywordTok">class</span> ABC{
tests/abc.javascript.html view
@@ -4,48 +4,65 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }-</style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">let</span> characters = <span class="st" title="StringTok">&quot;BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM&quot;</span>;-<span class="kw" title="KeywordTok">let</span> blocks = <span class="ot" title="OtherTok">characters</span>.<span class="fu" title="FunctionTok">split</span>(<span class="st" title="StringTok">&quot; &quot;</span>).<span class="fu" title="FunctionTok">map</span>(pair =&gt; <span class="ot" title="OtherTok">pair</span>.<span class="fu" title="FunctionTok">split</span>(<span class="st" title="StringTok">&quot;&quot;</span>));+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */+</style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">let</span> characters <span class="op" title="OperatorTok">=</span> <span class="st" title="StringTok">&quot;BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM&quot;</span><span class="op" title="OperatorTok">;</span>+<span class="kw" title="KeywordTok">let</span> blocks <span class="op" title="OperatorTok">=</span> <span class="va" title="VariableTok">characters</span>.<span class="at" title="AttributeTok">split</span>(<span class="st" title="StringTok">&quot; &quot;</span>).<span class="at" title="AttributeTok">map</span>(pair <span class="op" title="OperatorTok">=&gt;</span> <span class="va" title="VariableTok">pair</span>.<span class="at" title="AttributeTok">split</span>(<span class="st" title="StringTok">&quot;&quot;</span>))<span class="op" title="OperatorTok">;</span>  -<span class="kw" title="KeywordTok">function</span> <span class="fu" title="FunctionTok">isWordPossible</span>(word) {-  <span class="kw" title="KeywordTok">var</span> letters = [...<span class="ot" title="OtherTok">word</span>.<span class="fu" title="FunctionTok">toUpperCase</span>()];-  <span class="kw" title="KeywordTok">var</span> length = <span class="ot" title="OtherTok">letters</span>.<span class="fu" title="FunctionTok">length</span>;-  <span class="kw" title="KeywordTok">var</span> copy = <span class="kw" title="KeywordTok">new</span> <span class="fu" title="FunctionTok">Set</span>(blocks);+<span class="kw" title="KeywordTok">function</span> <span class="at" title="AttributeTok">isWordPossible</span>(word) <span class="op" title="OperatorTok">{</span>+  <span class="kw" title="KeywordTok">var</span> letters <span class="op" title="OperatorTok">=</span> [...<span class="va" title="VariableTok">word</span>.<span class="at" title="AttributeTok">toUpperCase</span>()]<span class="op" title="OperatorTok">;</span>+  <span class="kw" title="KeywordTok">var</span> length <span class="op" title="OperatorTok">=</span> <span class="va" title="VariableTok">letters</span>.<span class="at" title="AttributeTok">length</span><span class="op" title="OperatorTok">;</span>+  <span class="kw" title="KeywordTok">var</span> copy <span class="op" title="OperatorTok">=</span> <span class="kw" title="KeywordTok">new</span> <span class="at" title="AttributeTok">Set</span>(blocks)<span class="op" title="OperatorTok">;</span> -  <span class="kw" title="KeywordTok">for</span> (<span class="kw" title="KeywordTok">let</span> letter of letters) {-    <span class="kw" title="KeywordTok">for</span> (<span class="kw" title="KeywordTok">let</span> block of copy) {-      <span class="kw" title="KeywordTok">let</span> index = <span class="ot" title="OtherTok">block</span>.<span class="fu" title="FunctionTok">indexOf</span>(letter);+  <span class="cf" title="ControlFlowTok">for</span> (<span class="kw" title="KeywordTok">let</span> letter of letters) <span class="op" title="OperatorTok">{</span>+    <span class="cf" title="ControlFlowTok">for</span> (<span class="kw" title="KeywordTok">let</span> block of copy) <span class="op" title="OperatorTok">{</span>+      <span class="kw" title="KeywordTok">let</span> index <span class="op" title="OperatorTok">=</span> <span class="va" title="VariableTok">block</span>.<span class="at" title="AttributeTok">indexOf</span>(letter)<span class="op" title="OperatorTok">;</span>  -      <span class="kw" title="KeywordTok">if</span> (index !== -<span class="dv" title="DecValTok">1</span>) {-        length--;-        <span class="ot" title="OtherTok">copy</span>.<span class="fu" title="FunctionTok">delete</span>(block);-        <span class="kw" title="KeywordTok">break</span>;  -      }-    }+      <span class="cf" title="ControlFlowTok">if</span> (index <span class="op" title="OperatorTok">!==</span> <span class="op" title="OperatorTok">-</span><span class="dv" title="DecValTok">1</span>) <span class="op" title="OperatorTok">{</span>+        length<span class="op" title="OperatorTok">--;</span>+        <span class="va" title="VariableTok">copy</span>.<span class="at" title="AttributeTok">delete</span>(block)<span class="op" title="OperatorTok">;</span>+        <span class="cf" title="ControlFlowTok">break</span><span class="op" title="OperatorTok">;</span>  +      <span class="op" title="OperatorTok">}</span>+    <span class="op" title="OperatorTok">}</span> -  }-  <span class="kw" title="KeywordTok">return</span> !length;-}    +  <span class="op" title="OperatorTok">}</span>+  <span class="cf" title="ControlFlowTok">return</span> <span class="op" title="OperatorTok">!</span>length<span class="op" title="OperatorTok">;</span>+<span class="op" title="OperatorTok">}</span>       [ -  <span class="st" title="StringTok">&quot;A&quot;</span>, -  <span class="st" title="StringTok">&quot;BARK&quot;</span>, -  <span class="st" title="StringTok">&quot;BOOK&quot;</span>, -  <span class="st" title="StringTok">&quot;TREAT&quot;</span>, -  <span class="st" title="StringTok">&quot;COMMON&quot;</span>, -  <span class="st" title="StringTok">&quot;SQUAD&quot;</span>, +  <span class="st" title="StringTok">&quot;A&quot;</span><span class="op" title="OperatorTok">,</span> +  <span class="st" title="StringTok">&quot;BARK&quot;</span><span class="op" title="OperatorTok">,</span> +  <span class="st" title="StringTok">&quot;BOOK&quot;</span><span class="op" title="OperatorTok">,</span> +  <span class="st" title="StringTok">&quot;TREAT&quot;</span><span class="op" title="OperatorTok">,</span> +  <span class="st" title="StringTok">&quot;COMMON&quot;</span><span class="op" title="OperatorTok">,</span> +  <span class="st" title="StringTok">&quot;SQUAD&quot;</span><span class="op" title="OperatorTok">,</span>    <span class="st" title="StringTok">&quot;CONFUSE&quot;</span> -].<span class="fu" title="FunctionTok">forEach</span>(word =&gt; <span class="ot" title="OtherTok">console</span>.<span class="fu" title="FunctionTok">log</span>(`${word}: ${<span class="fu" title="FunctionTok">isWordPossible</span>(word)}`));+].<span class="at" title="AttributeTok">forEach</span>(word <span class="op" title="OperatorTok">=&gt;</span> <span class="va" title="VariableTok">console</span>.<span class="at" title="AttributeTok">log</span>(<span class="vs" title="VerbatimStringTok">`</span><span class="sc" title="SpecialCharTok">${</span>word<span class="sc" title="SpecialCharTok">}</span><span class="vs" title="VerbatimStringTok">: </span><span class="sc" title="SpecialCharTok">${</span><span class="at" title="AttributeTok">isWordPossible</span>(word)<span class="sc" title="SpecialCharTok">}</span><span class="vs" title="VerbatimStringTok">`</span>))<span class="op" title="OperatorTok">;</span> </code></pre></div></body>
tests/abc.julia.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">function</span> abc (str, list)   isempty(str) &amp;&amp; <span class="kw" title="KeywordTok">return</span> true   <span class="kw" title="KeywordTok">for</span> i = <span class="fl" title="FloatTok">1</span>:length(list)
+ tests/abc.kotlin view
@@ -0,0 +1,55 @@+import java.util.Arrays++/*+    Swap elements i and j of a Kotlin Array.+ */+fun <T> Array<T>.swap(i: Int, j: Int) {+    val tmp = this[i]+    this[i] = this[j]+    this[j] = tmp+}++data class Block(val block: String)++/*+ *  Not the most elegant way but interesting from an highlighting perspective ;)+ */+public class ABC() {+    class object {++        public fun canMakeWord(word: String, blocks: Array<Block>): Boolean {+            if (word.length() == 0)+                return true++            val c = Character.toUpperCase(word.charAt(0))+            for (i in 0..blocks.size - 1) {+                val b = blocks[i]+                if (Character.toUpperCase(b.block.charAt(0)) != c && Character.toUpperCase(b.block.charAt(1)) != c)+                    continue+                blocks.swap(0, i)+                if (canMakeWord(word.substring(1), Arrays.copyOfRange(blocks, 1, blocks.size)))+                    return true+                blocks.swap(0, i)+            }++            return false+        }++        public fun main(args: Array<String>) {++            val blocksString = array("BO", "XK", "DQ", "CP", "NA", "GT", "RE", "TG", "QD", "FS", "JW",+                                             "HU", "VI", "AN", "OB", "ER", "FS", "LY", "PC", "ZM");++            val blocks = Array(blocksString.size, { s -> Block(blocksString[s])})++            val words = array("", "A", "BARK", "book", "treat", "COMMON", "SQuAd", "CONFUSE");++            for (word in words) {+                System.out.println("${word}: " + canMakeWord("${word}", blocks))+            }++        }+    }+}++fun main(args: Array<String>) = ABC.main(args)
+ tests/abc.kotlin.html view
@@ -0,0 +1,90 @@+<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">div.sourceCode { overflow-x: auto; }+table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {+  margin: 0; padding: 0; vertical-align: baseline; border: none; }+table.sourceCode { width: 100%; line-height: 100%; }+td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }+td.sourceCode { padding-left: 5px; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */+</style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">import</span> java.<span class="fu" title="FunctionTok">util</span>.<span class="fu" title="FunctionTok">Arrays</span>++<span class="co" title="CommentTok">/*</span>+<span class="co" title="CommentTok">    Swap elements i and j of a Kotlin Array.</span>+<span class="co" title="CommentTok"> */</span>+fun &lt;T&gt; Array&lt;T&gt;.<span class="fu" title="FunctionTok">swap</span>(i: <span class="dt" title="DataTypeTok">Int</span>, j: <span class="dt" title="DataTypeTok">Int</span>) {+    <span class="kw" title="KeywordTok">val</span> tmp = <span class="kw" title="KeywordTok">this</span>[i]+    <span class="kw" title="KeywordTok">this</span>[i] = <span class="kw" title="KeywordTok">this</span>[j]+    <span class="kw" title="KeywordTok">this</span>[j] = tmp+}++<span class="kw" title="KeywordTok">data</span> <span class="kw" title="KeywordTok">class</span> <span class="fu" title="FunctionTok">Block</span>(<span class="kw" title="KeywordTok">val</span> block: String)++<span class="co" title="CommentTok">/*</span>+<span class="co" title="CommentTok"> *  Not the most elegant way but interesting from an highlighting perspective ;)</span>+<span class="co" title="CommentTok"> */</span>+<span class="kw" title="KeywordTok">public</span> <span class="kw" title="KeywordTok">class</span> <span class="fu" title="FunctionTok">ABC</span>() {+    <span class="kw" title="KeywordTok">class</span> <span class="kw" title="KeywordTok">object</span> {++        <span class="kw" title="KeywordTok">public</span> fun <span class="fu" title="FunctionTok">canMakeWord</span>(word: String, blocks: Array&lt;Block&gt;): <span class="dt" title="DataTypeTok">Boolean</span> {+            <span class="kw" title="KeywordTok">if</span> (word.<span class="fu" title="FunctionTok">length</span>() == <span class="dv" title="DecValTok">0</span>)+                <span class="kw" title="KeywordTok">return</span> <span class="kw" title="KeywordTok">true</span>++            <span class="kw" title="KeywordTok">val</span> c = Character.<span class="fu" title="FunctionTok">toUpperCase</span>(word.<span class="fu" title="FunctionTok">charAt</span>(<span class="dv" title="DecValTok">0</span>))+            <span class="kw" title="KeywordTok">for</span> (i <span class="kw" title="KeywordTok">in</span> <span class="dv" title="DecValTok">0</span>..<span class="fu" title="FunctionTok">blocks</span>.<span class="fu" title="FunctionTok">size</span> - <span class="dv" title="DecValTok">1</span>) {+                <span class="kw" title="KeywordTok">val</span> b = blocks[i]+                <span class="kw" title="KeywordTok">if</span> (Character.<span class="fu" title="FunctionTok">toUpperCase</span>(b.<span class="fu" title="FunctionTok">block</span>.<span class="fu" title="FunctionTok">charAt</span>(<span class="dv" title="DecValTok">0</span>)) != c &amp;&amp; Character.<span class="fu" title="FunctionTok">toUpperCase</span>(b.<span class="fu" title="FunctionTok">block</span>.<span class="fu" title="FunctionTok">charAt</span>(<span class="dv" title="DecValTok">1</span>)) != c)+                    continue+                blocks.<span class="fu" title="FunctionTok">swap</span>(<span class="dv" title="DecValTok">0</span>, i)+                <span class="kw" title="KeywordTok">if</span> (<span class="fu" title="FunctionTok">canMakeWord</span>(word.<span class="fu" title="FunctionTok">substring</span>(<span class="dv" title="DecValTok">1</span>), Arrays.<span class="fu" title="FunctionTok">copyOfRange</span>(blocks, <span class="dv" title="DecValTok">1</span>, blocks.<span class="fu" title="FunctionTok">size</span>)))+                    <span class="kw" title="KeywordTok">return</span> <span class="kw" title="KeywordTok">true</span>+                blocks.<span class="fu" title="FunctionTok">swap</span>(<span class="dv" title="DecValTok">0</span>, i)+            }++            <span class="kw" title="KeywordTok">return</span> <span class="kw" title="KeywordTok">false</span>+        }++        <span class="kw" title="KeywordTok">public</span> fun <span class="fu" title="FunctionTok">main</span>(args: Array&lt;String&gt;) {++            <span class="kw" title="KeywordTok">val</span> blocksString = <span class="fu" title="FunctionTok">array</span>(<span class="st" title="StringTok">&quot;BO&quot;</span>, <span class="st" title="StringTok">&quot;XK&quot;</span>, <span class="st" title="StringTok">&quot;DQ&quot;</span>, <span class="st" title="StringTok">&quot;CP&quot;</span>, <span class="st" title="StringTok">&quot;NA&quot;</span>, <span class="st" title="StringTok">&quot;GT&quot;</span>, <span class="st" title="StringTok">&quot;RE&quot;</span>, <span class="st" title="StringTok">&quot;TG&quot;</span>, <span class="st" title="StringTok">&quot;QD&quot;</span>, <span class="st" title="StringTok">&quot;FS&quot;</span>, <span class="st" title="StringTok">&quot;JW&quot;</span>,+                                             <span class="st" title="StringTok">&quot;HU&quot;</span>, <span class="st" title="StringTok">&quot;VI&quot;</span>, <span class="st" title="StringTok">&quot;AN&quot;</span>, <span class="st" title="StringTok">&quot;OB&quot;</span>, <span class="st" title="StringTok">&quot;ER&quot;</span>, <span class="st" title="StringTok">&quot;FS&quot;</span>, <span class="st" title="StringTok">&quot;LY&quot;</span>, <span class="st" title="StringTok">&quot;PC&quot;</span>, <span class="st" title="StringTok">&quot;ZM&quot;</span>);++            <span class="kw" title="KeywordTok">val</span> blocks = Array(blocksString.<span class="fu" title="FunctionTok">size</span>, { s -&gt; <span class="fu" title="FunctionTok">Block</span>(blocksString[s])})++            <span class="kw" title="KeywordTok">val</span> words = <span class="fu" title="FunctionTok">array</span>(<span class="st" title="StringTok">&quot;&quot;</span>, <span class="st" title="StringTok">&quot;A&quot;</span>, <span class="st" title="StringTok">&quot;BARK&quot;</span>, <span class="st" title="StringTok">&quot;book&quot;</span>, <span class="st" title="StringTok">&quot;treat&quot;</span>, <span class="st" title="StringTok">&quot;COMMON&quot;</span>, <span class="st" title="StringTok">&quot;SQuAd&quot;</span>, <span class="st" title="StringTok">&quot;CONFUSE&quot;</span>);++            <span class="kw" title="KeywordTok">for</span> (word <span class="kw" title="KeywordTok">in</span> words) {+                System.<span class="fu" title="FunctionTok">out</span>.<span class="fu" title="FunctionTok">println</span>(<span class="st" title="StringTok">&quot;${word}: &quot;</span> + <span class="fu" title="FunctionTok">canMakeWord</span>(<span class="st" title="StringTok">&quot;${word}&quot;</span>, blocks))+            }++        }+    }+}++fun <span class="fu" title="FunctionTok">main</span>(args: Array&lt;String&gt;) = ABC.<span class="fu" title="FunctionTok">main</span>(args)</code></pre></div></body>
tests/abc.matlab.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode">function testABC     combos = [<span class="st" title="StringTok">&#39;BO&#39;</span> ; <span class="st" title="StringTok">&#39;XK&#39;</span> ; <span class="st" title="StringTok">&#39;DQ&#39;</span> ; <span class="st" title="StringTok">&#39;CP&#39;</span> ; <span class="st" title="StringTok">&#39;NA&#39;</span> ; <span class="st" title="StringTok">&#39;GT&#39;</span> ; <span class="st" title="StringTok">&#39;RE&#39;</span> ; <span class="st" title="StringTok">&#39;TG&#39;</span> ; <span class="st" title="StringTok">&#39;QD&#39;</span> ; ...         <span class="st" title="StringTok">&#39;FS&#39;</span> ; <span class="st" title="StringTok">&#39;JW&#39;</span> ; <span class="st" title="StringTok">&#39;HU&#39;</span> ; <span class="st" title="StringTok">&#39;VI&#39;</span> ; <span class="st" title="StringTok">&#39;AN&#39;</span> ; <span class="st" title="StringTok">&#39;OB&#39;</span> ; <span class="st" title="StringTok">&#39;ER&#39;</span> ; <span class="st" title="StringTok">&#39;FS&#39;</span> ; <span class="st" title="StringTok">&#39;LY&#39;</span> ; ...
tests/abc.ocaml.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">let</span> blocks = [   (<span class="ch" title="CharTok">&#39;B&#39;</span>, <span class="ch" title="CharTok">&#39;O&#39;</span>);  (<span class="ch" title="CharTok">&#39;X&#39;</span>, <span class="ch" title="CharTok">&#39;K&#39;</span>);  (<span class="ch" title="CharTok">&#39;D&#39;</span>, <span class="ch" title="CharTok">&#39;Q&#39;</span>);  (<span class="ch" title="CharTok">&#39;C&#39;</span>, <span class="ch" title="CharTok">&#39;P&#39;</span>);   (<span class="ch" title="CharTok">&#39;N&#39;</span>, <span class="ch" title="CharTok">&#39;A&#39;</span>);  (<span class="ch" title="CharTok">&#39;G&#39;</span>, <span class="ch" title="CharTok">&#39;T&#39;</span>);  (<span class="ch" title="CharTok">&#39;R&#39;</span>, <span class="ch" title="CharTok">&#39;E&#39;</span>);  (<span class="ch" title="CharTok">&#39;T&#39;</span>, <span class="ch" title="CharTok">&#39;G&#39;</span>);
tests/abc.perl.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="fu" title="FunctionTok">use</span> <span class="fu" title="FunctionTok">Test::More</span> tests =&gt; <span class="dv" title="DecValTok">8</span>;  <span class="kw" title="KeywordTok">my</span> <span class="dt" title="DataTypeTok">@blocks1</span> = <span class="kw" title="KeywordTok">qw(</span>BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM<span class="kw" title="KeywordTok">)</span>;
tests/abc.php.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"> <span class="kw" title="KeywordTok">&lt;?php</span> <span class="kw" title="KeywordTok">$words</span> = <span class="fu" title="FunctionTok">array</span><span class="ot" title="OtherTok">(</span><span class="st" title="StringTok">&quot;A&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;BARK&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;BOOK&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;TREAT&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;COMMON&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;SQUAD&quot;</span><span class="ot" title="OtherTok">,</span> <span class="st" title="StringTok">&quot;Confuse&quot;</span><span class="ot" title="OtherTok">);</span>
tests/abc.prolog.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode">abc_problem <span class="kw" title="KeywordTok">:-</span>         maplist(abc_problem<span class="kw" title="KeywordTok">,</span> [&#39;&#39;, &#39;<span class="er" title="ErrorTok">A</span>&#39;, bark, bOOk, treAT, &#39;<span class="er" title="ErrorTok">COmmon</span>&#39;, sQuaD, &#39;<span class="er" title="ErrorTok">CONFUSE</span>&#39;])<span class="kw" title="KeywordTok">.</span> 
tests/abc.python.html view
@@ -4,31 +4,48 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">def</span> mkword(w, b):-    <span class="kw" title="KeywordTok">if</span> not w: <span class="kw" title="KeywordTok">return</span> []+    <span class="cf" title="ControlFlowTok">if</span> <span class="op" title="OperatorTok">not</span> w: <span class="cf" title="ControlFlowTok">return</span> [] -    c,w = w[<span class="dv" title="DecValTok">0</span>],w[<span class="dv" title="DecValTok">1</span>:]-    <span class="kw" title="KeywordTok">for</span> i in <span class="dt" title="DataTypeTok">range</span>(<span class="dt" title="DataTypeTok">len</span>(b)):-        <span class="kw" title="KeywordTok">if</span> c in b[i]:-            m = mkword(w, b[<span class="dv" title="DecValTok">0</span>:i] + b[i<span class="dv" title="DecValTok">+1</span>:])-            <span class="kw" title="KeywordTok">if</span> m != <span class="ot" title="OtherTok">None</span>: <span class="kw" title="KeywordTok">return</span> [b[i]] + m+    c,w <span class="op" title="OperatorTok">=</span> w[<span class="dv" title="DecValTok">0</span>],w[<span class="dv" title="DecValTok">1</span>:]+    <span class="cf" title="ControlFlowTok">for</span> i <span class="op" title="OperatorTok">in</span> <span class="bu" title="BuiltInTok">range</span>(<span class="bu" title="BuiltInTok">len</span>(b)):+        <span class="cf" title="ControlFlowTok">if</span> c <span class="op" title="OperatorTok">in</span> b[i]:+            m <span class="op" title="OperatorTok">=</span> mkword(w, b[<span class="dv" title="DecValTok">0</span>:i] <span class="op" title="OperatorTok">+</span> b[i<span class="dv" title="DecValTok">+1</span>:])+            <span class="cf" title="ControlFlowTok">if</span> m <span class="op" title="OperatorTok">!=</span> <span class="va" title="VariableTok">None</span>: <span class="cf" title="ControlFlowTok">return</span> [b[i]] <span class="op" title="OperatorTok">+</span> m  <span class="kw" title="KeywordTok">def</span> abc(w, blk):-    <span class="kw" title="KeywordTok">return</span> mkword(w.upper(), [a.upper() <span class="kw" title="KeywordTok">for</span> a in blk])+    <span class="cf" title="ControlFlowTok">return</span> mkword(w.upper(), [a.upper() <span class="cf" title="ControlFlowTok">for</span> a <span class="op" title="OperatorTok">in</span> blk]) -blocks = <span class="st" title="StringTok">&#39;BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM&#39;</span>.split()+blocks <span class="op" title="OperatorTok">=</span> <span class="st" title="StringTok">&#39;BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM&#39;</span>.split() -<span class="kw" title="KeywordTok">for</span> w in <span class="st" title="StringTok">&quot;, A, bark, book, treat, common, SQUAD, conFUsEd&quot;</span>.split(<span class="st" title="StringTok">&#39;, &#39;</span>):-    <span class="dt" title="DataTypeTok">print</span> <span class="st" title="StringTok">&#39;</span><span class="ch" title="CharTok">\&#39;</span><span class="st" title="StringTok">&#39;</span> + w + <span class="st" title="StringTok">&#39;</span><span class="ch" title="CharTok">\&#39;</span><span class="st" title="StringTok">&#39;</span> + <span class="st" title="StringTok">&#39; -&gt;&#39;</span>, abc(w, blocks)</code></pre></div></body>+<span class="cf" title="ControlFlowTok">for</span> w <span class="op" title="OperatorTok">in</span> <span class="st" title="StringTok">&quot;, A, bark, book, treat, common, SQUAD, conFUsEd&quot;</span>.split(<span class="st" title="StringTok">&#39;, &#39;</span>):+    <span class="bu" title="BuiltInTok">print</span> <span class="st" title="StringTok">&#39;</span><span class="ch" title="CharTok">\&#39;</span><span class="st" title="StringTok">&#39;</span> <span class="op" title="OperatorTok">+</span> w <span class="op" title="OperatorTok">+</span> <span class="st" title="StringTok">&#39;</span><span class="ch" title="CharTok">\&#39;</span><span class="st" title="StringTok">&#39;</span> <span class="op" title="OperatorTok">+</span> <span class="st" title="StringTok">&#39; -&gt;&#39;</span>, abc(w, blocks)</code></pre></div></body>
tests/abc.r.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode">canMakeNoRecursion &lt;-<span class="st" title="StringTok"> </span>function(x) {   x &lt;-<span class="st" title="StringTok"> </span><span class="kw" title="KeywordTok">toupper</span>(x)   charList &lt;-<span class="st" title="StringTok"> </span><span class="kw" title="KeywordTok">strsplit</span>(x, <span class="kw" title="KeywordTok">character</span>(<span class="dv" title="DecValTok">0</span>))
tests/abc.ruby.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode">words =<span class="ot" title="OtherTok"> %w(</span><span class="st" title="StringTok">A BaRK BOoK tREaT COmMOn SqUAD CoNfuSE</span><span class="ot" title="OtherTok">)</span> &lt;&lt; <span class="st" title="StringTok">&quot;&quot;</span>  words.each <span class="kw" title="KeywordTok">do</span> |word|
tests/abc.scala.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">object</span> AbcBlocks <span class="kw" title="KeywordTok">extends</span> App {    <span class="kw" title="KeywordTok">protected</span> <span class="kw" title="KeywordTok">class</span> <span class="fu" title="FunctionTok">Block</span>(face1: Char, face2: Char) {
tests/abc.scheme.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode">#lang racket (<span class="kw" title="KeywordTok">define</span><span class="fu" title="FunctionTok"> block-strings</span>   (<span class="kw" title="KeywordTok">list</span> <span class="st" title="StringTok">&quot;BO&quot;</span> <span class="st" title="StringTok">&quot;XK&quot;</span> <span class="st" title="StringTok">&quot;DQ&quot;</span> <span class="st" title="StringTok">&quot;CP&quot;</span> <span class="st" title="StringTok">&quot;NA&quot;</span>
tests/abc.tcl.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">package</span> <span class="ot" title="OtherTok">require</span> Tcl <span class="fl" title="FloatTok">8.6</span>  <span class="kw" title="KeywordTok">proc</span> abc <span class="kw" title="KeywordTok">{</span>word <span class="kw" title="KeywordTok">{</span>blocks <span class="kw" title="KeywordTok">{</span>BO XK DQ CP NA GT RE TG QD FS JW HU VI AN OB ER FS LY PC ZM<span class="kw" title="KeywordTok">}}}</span> <span class="kw" title="KeywordTok">{</span>
tests/archive.rhtml.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="kw" title="KeywordTok">&lt;h1&gt;</span>Event Archive<span class="kw" title="KeywordTok">&lt;/h1&gt;</span>  
tests/life.lua.html view
@@ -4,18 +4,35 @@ table.sourceCode { width: 100%; line-height: 100%; } td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; } td.sourceCode { padding-left: 5px; }-code > span.kw { color: #007020; font-weight: bold; }-code > span.dt { color: #902000; }-code > span.dv { color: #40a070; }-code > span.bn { color: #40a070; }-code > span.fl { color: #40a070; }-code > span.ch { color: #4070a0; }-code > span.st { color: #4070a0; }-code > span.co { color: #60a0b0; font-style: italic; }-code > span.ot { color: #007020; }-code > span.al { color: #ff0000; font-weight: bold; }-code > span.fu { color: #06287e; }-code > span.er { color: #ff0000; font-weight: bold; }+code > span.kw { color: #007020; font-weight: bold; } /* Keyword */+code > span.dt { color: #902000; } /* DataType */+code > span.dv { color: #40a070; } /* DecVal */+code > span.bn { color: #40a070; } /* BaseN */+code > span.fl { color: #40a070; } /* Float */+code > span.ch { color: #4070a0; } /* Char */+code > span.st { color: #4070a0; } /* String */+code > span.co { color: #60a0b0; font-style: italic; } /* Comment */+code > span.ot { color: #007020; } /* Other */+code > span.al { color: #ff0000; font-weight: bold; } /* Alert */+code > span.fu { color: #06287e; } /* Function */+code > span.er { color: #ff0000; font-weight: bold; } /* Error */+code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */+code > span.cn { color: #880000; } /* Constant */+code > span.sc { color: #4070a0; } /* SpecialChar */+code > span.vs { color: #4070a0; } /* VerbatimString */+code > span.ss { color: #bb6688; } /* SpecialString */+code > span.im { } /* Import */+code > span.va { color: #19177c; } /* Variable */+code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */+code > span.op { color: #666666; } /* Operator */+code > span.bu { } /* BuiltIn */+code > span.ex { } /* Extension */+code > span.pp { color: #bc7a00; } /* Preprocessor */+code > span.at { color: #7d9029; } /* Attribute */+code > span.do { color: #ba2121; font-style: italic; } /* Documentation */+code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */+code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */+code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */ </style></head><body><div class="sourceCode"><pre class="sourceCode"><code class="sourceCode"><span class="co" title="CommentTok">-- life.lua</span> <span class="co" title="CommentTok">-- original by Dave Bollinger </span><span class="kw" title="KeywordTok">&lt;DBollinger</span><span class="ot" title="OtherTok">@compuserve.com</span><span class="kw" title="KeywordTok">&gt;</span><span class="co" title="CommentTok"> posted to lua-l</span> <span class="co" title="CommentTok">-- modified to use ANSI terminal escape sequences</span>
xml/actionscript.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="ActionScript 2.0" version="1.0" kateversion="2.4" section="Sources" extensions="*.as" mimetype="text/x-actionscript" license="LGPL" author="Aaron Miller (armantic101@gmail.com)"> +<language name="ActionScript 2.0" version="1.0" kateversion="2.3" section="Sources" extensions="*.as" mimetype="text/x-actionscript" license="LGPL" author="Aaron Miller (armantic101@gmail.com)">   <highlighting>          <list name="properties">
xml/ada.xml view
@@ -2,7 +2,7 @@ <!DOCTYPE language SYSTEM "language.dtd"> <language name="Ada"           version="1.08"-          kateversion="2.5"+          kateversion="3.3"           section="Sources"           extensions="*.adb;*.ads;*.ada;*.a"           indenter="ada"
xml/alert.xml view
@@ -30,7 +30,7 @@   Introduce 3 alert levels and sort keywords according importance.   Few more keywords has been added. -->-<language version="1.09" kateversion="2.3" name="Alerts" section="Other" extensions="" mimetype="" author="Dominik Haumann (dhdev@gmx.de)" license="LGPL" hidden="true">+<language version="1.11" kateversion="3.1" name="Alerts" section="Other" extensions="" mimetype="" author="Dominik Haumann (dhdev@gmx.de)" license="LGPL" hidden="true">   <highlighting>     <list name="alerts_hi">       <item> ALERT </item>@@ -59,6 +59,10 @@     </list>     <contexts>       <context attribute="Normal Text" lineEndContext="#pop" name="Normal Text" >+        <StringDetect attribute="Region Marker" context="#stay" String="{{{" beginRegion="AlertRegion1" />+        <StringDetect attribute="Region Marker" context="#stay" String="}}}" endRegion="AlertRegion1" />+        <StringDetect attribute="Region Marker" context="#stay" String="BEGIN" beginRegion="AlertRegion2" />+        <StringDetect attribute="Region Marker" context="#stay" String="END" endRegion="AlertRegion2" />         <keyword attribute="Alert Level 1" context="#stay" String="alerts_hi" />         <keyword attribute="Alert Level 2" context="#stay" String="alerts_mid" />         <keyword attribute="Alert Level 3" context="#stay" String="alerts_lo" />@@ -69,6 +73,7 @@       <itemData name="Alert Level 1" defStyleNum="dsAlert" color="#e85848" selColor="#e85848" backgroundColor="#451e1a" />       <itemData name="Alert Level 2" defStyleNum="dsAlert" color="#ca9219" selColor="#ca9219" backgroundColor="#451e1a" />       <itemData name="Alert Level 3" defStyleNum="dsAlert" color="#81ca2d" selColor="#81ca2d" />+      <itemData name="Region Marker" defStyleNum="dsRegionMarker"/>     </itemDatas>   </highlighting>   <general>
xml/alert_indent.xml view
@@ -26,7 +26,7 @@  This file is included in every file that highlights the "alerts" keywords.  That's why extensions and mimetype are empty. -->-<language version="1.10" kateversion="2.3" name="Alerts_indent" section="Other" extensions="" mimetype="" author="Dominik Haumann (dhdev@gmx.de)" license="LGPL" hidden="true">+<language version="1.10" kateversion="2.4" name="Alerts_indent" section="Other" extensions="" mimetype="" author="Dominik Haumann (dhdev@gmx.de)" license="LGPL" hidden="true">   <highlighting>     <contexts>       <context attribute="Normal Text" lineEndContext="#pop" name="Normal Text" >
xml/apache.xml view
@@ -13,7 +13,7 @@ -->  <language name="Apache Configuration" section="Configuration"-          version="1.11" kateversion="2.0"+          version="1.11" kateversion="2.4"           extensions="httpd.conf;httpd2.conf;apache.conf;apache2.conf;.htaccess*;.htpasswd*"           mimetype=""           author="Jan Janssen (medhefgo@googlemail.com)" license="LGPL">
xml/asp.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE  language SYSTEM "language.dtd">-<language name="ASP" version="1.04" kateversion="2.1" section="Markup" extensions="*.asp;" mimetype="text/x-asp-src;text/x-asp-src" author="Antonio Salazar (savedfastcool@gmail.com)" license="LGPL">+<language name="ASP" version="1.04" kateversion="2.3" section="Markup" extensions="*.asp;" mimetype="text/x-asp-src;text/x-asp-src" author="Antonio Salazar (savedfastcool@gmail.com)" license="LGPL">     <highlighting>         <list name="control structures">             <item>select</item>
xml/awk.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="AWK" version="0.93" kateversion="2.3" section="Scripts"+<language name="AWK" version="0.93" kateversion="3.3" section="Scripts"   extensions="*.awk" mimetype="text/x-awk" indenter="cstyle"   license="LGPL"> <!-- patched by igli#kate@irc:chat.freenode.net -->
xml/bibtex.xml view
@@ -6,7 +6,7 @@ 	  <!ENTITY latexCmd	  	"\\([a-zA-Z@]+|[^ ])"> 	  <!ENTITY refKeyFormat  	"[a-zA-Z0-9_@\\-\\:]+"> <!--taken from kile 2.0.3--> 	  ]>-<language name="BibTeX" version="1.17" kateversion="2.3" extensions="*.bib" section="Markup" mimetype="text/x-bib" casesensitive="1" author="Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)+Thomas Braun (thomas.braun@virtuell-zuhause.de)" license="LGPL">+<language name="BibTeX" version="1.17" kateversion="3.4" extensions="*.bib" section="Markup" mimetype="text/x-bib" casesensitive="1" author="Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)+Thomas Braun (thomas.braun@virtuell-zuhause.de)" license="LGPL">   <highlighting>     <list name="kw_entry">       <item>@article</item> 
xml/boo.xml view
@@ -2,7 +2,7 @@ <!DOCTYPE language> <!-- Based on Python syntax highlighting v1.99 by Primoz Anzur, Paul Giannaros, Michael Bueker, Per Wigren --> <!-- Also based on boo.lang from gtksourceview -->-<language name="Boo" version="0.91" kateversion="3.2" section="Sources" extensions="*.boo" mimetype="text/x-boo" casesensitive="1" author="Marc Dassonneville" license="LGPL">+<language name="Boo" version="0.91" kateversion="3.0" section="Sources" extensions="*.boo" mimetype="text/x-boo" casesensitive="1" author="Marc Dassonneville" license="LGPL"> 	<highlighting> 		<list name="namespace"> 			<item>import</item>
xml/c.xml view
@@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd"> <language name="C" section="Sources"-          version="1.45" kateversion="2.4"+          version="1.46" kateversion="3.4"           indenter="cstyle"           extensions="*.c;*.C;*.h"           mimetype="text/x-csrc;text/x-c++src;text/x-chdr"@@ -120,7 +120,9 @@       </context>        <context attribute="Error" lineEndContext="#pop" name="AfterHash">-        <!-- define, elif, else, endif, error, if, ifdef, ifndef, include, include_next, line, pragma, undef, warning -->+        <RegExpr attribute="Preprocessor" context="Include" String="#\s*(?:include|include_next)" insensitive="true" firstNonSpace="true" />++        <!-- define, elif, else, endif, error, if, ifdef, ifndef, line, pragma, undef, warning -->         <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*if(?:def|ndef)?(?=\s+\S)" insensitive="true" beginRegion="PP" firstNonSpace="true" />         <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*endif" insensitive="true" endRegion="PP" firstNonSpace="true" />         <RegExpr attribute="Preprocessor" context="Define" String="#\s*define.*((?=\\))" insensitive="true" firstNonSpace="true" />@@ -128,15 +130,20 @@         <!-- folding for apple style #pragma mark - label -->         <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*pragma\s+mark\s+-\s*$" insensitive="true" firstNonSpace="true" endRegion="pragma_mark" />         <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*pragma\s+mark" insensitive="true" firstNonSpace="true" endRegion="pragma_mark" beginRegion="pragma_mark" />-        -        <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*(?:el(?:se|if)|include(?:_next)?|define|undef|line|error|warning|pragma)" insensitive="true" firstNonSpace="true" />++        <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s*(?:el(?:se|if)|define|undef|line|error|warning|pragma)" insensitive="true" firstNonSpace="true" />         <RegExpr attribute="Preprocessor" context="Preprocessor" String="#\s+[0-9]+" insensitive="true" firstNonSpace="true" />       </context> -      <context attribute="Preprocessor" lineEndContext="#pop" name="Preprocessor">+      <context attribute="Preprocessor" lineEndContext="#pop" name="Include">         <LineContinue attribute="Preprocessor" context="#stay"/>         <RangeDetect attribute="Prep. Lib" context="#stay" char="&quot;" char1="&quot;"/>         <RangeDetect attribute="Prep. Lib" context="#stay" char="&lt;" char1="&gt;"/>+        <IncludeRules context="Preprocessor" />+      </context>++      <context attribute="Preprocessor" lineEndContext="#pop" name="Preprocessor">+        <LineContinue attribute="Preprocessor" context="#stay"/>         <IncludeRules context="##Doxygen" />         <Detect2Chars attribute="Comment" context="Commentar/Preprocessor" char="/" char1="*" beginRegion="Comment2" />         <Detect2Chars attribute="Comment" context="Commentar 1" char="/" char1="/" />
xml/cmake.xml view
@@ -29,7 +29,7 @@ <language     name="CMake"     version="1.30"-    kateversion="2.4"+    kateversion="3.4"     section="Other"     extensions="CMakeLists.txt;*.cmake;*.cmake.in"     style="CMake"
xml/coffee.xml view
@@ -3,7 +3,7 @@  <language name="CoffeeScript"           version="1.4"-          kateversion="2.4"+          kateversion="3.4"           section="Scripts"           extensions="Cakefile;*.coffee;*.coco"           mimetype="text/x-coffeescript;application/x-coffeescript"
xml/coldfusion.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="ColdFusion" version="1.04" kateversion="2.3" section="Markup" extensions="*.cfm;*.cfc;*.cfml;*.dbm" mimetype="text/x-coldfusion">+<language name="ColdFusion" version="1.04" kateversion="2.2" section="Markup" extensions="*.cfm;*.cfc;*.cfml;*.dbm" mimetype="text/x-coldfusion">  	<highlighting> 
xml/cpp.xml view
@@ -12,7 +12,7 @@     name="C++"     section="Sources"     version="1.9"-    kateversion="2.4"+    kateversion="3.4"     indenter="cstyle"     style="C++"     mimetype="text/x-c++src;text/x-c++hdr;text/x-chdr"
xml/cs.xml view
@@ -1,5 +1,5 @@ <!DOCTYPE language SYSTEM "language.dtd">-<language name="C#" version="1.15" kateversion="2.3" section="Sources" extensions="*.cs" mimetype="text/x-csharp-src;text/x-csharp-hde">+<language name="C#" version="1.15" kateversion="2.2" section="Sources" extensions="*.cs" mimetype="text/x-csharp-src;text/x-csharp-hde">   <highlighting>     <list name="keywords">       <item> abstract</item>
xml/css.xml view
@@ -23,7 +23,7 @@  --> -<language name="CSS" version="2.09" kateversion="2.4" section="Markup" extensions="*.css" indenter="cstyle" mimetype="text/css" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL">+<language name="CSS" version="2.10" kateversion="3.4" section="Markup" extensions="*.css" indenter="cstyle" mimetype="text/css" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL">  	<highlighting> 		<list name="properties">@@ -194,7 +194,7 @@ 			<item> column-rule-style </item> 			<item> column-rule-width </item> 			<item> column-span </item>-			<item> column-wisth </item>+			<item> column-width </item> 			<item> hyphens </item> 			<item> linear-gradient </item> 			<item> opacity </item>
xml/curry.xml view
@@ -30,7 +30,7 @@   <!-- dashes introducing a currydoc comment -->   <!ENTITY currydoc    "---" > ]>-<language name="Curry" version="0.3" kateversion="2.3"+<language name="Curry" version="0.3" kateversion="3.4"           section="Sources" extensions="*.curry" mimetype="text/x-curry"           author="Björn Peemöller (bjp@informatik.uni-kiel.de)" license="LGPL"           indenter="haskell">
xml/d.xml view
@@ -101,7 +101,7 @@    ======================================================================== --> -<language name="D" version="1.62" kateversion="2.5" section="Sources" extensions="*.d;*.D;*.di;*.DI;" mimetype="text/x-dsrc" casesensitive="true" author="Diggory Hardy (diggory.hardy@gmail.com), Aziz Köksal (aziz.koeksal@gmail.com), Jari-Matti Mäkelä (jmjm@iki.fi), Simon J Mackenzie (project.katedxml@smackoz.fastmail.fm)" license="LGPL">+<language name="D" version="1.62" kateversion="3.0" section="Sources" extensions="*.d;*.D;*.di;*.DI;" mimetype="text/x-dsrc" casesensitive="true" author="Diggory Hardy (diggory.hardy@gmail.com), Aziz Köksal (aziz.koeksal@gmail.com), Jari-Matti Mäkelä (jmjm@iki.fi), Simon J Mackenzie (project.katedxml@smackoz.fastmail.fm)" license="LGPL">   <highlighting>     <!-- User-defined keywords (add identifiers you'd like highlighted here) -->     <list name="userkeywords">
xml/diff.xml view
@@ -15,7 +15,7 @@     2008-02-13: 1.11 Eduardo Robles Elvira <edulix AT gmail DOT com>      Fixed folding. -->-<language name="Diff" version="1.12" kateversion="2.1" section="Other" extensions="*.diff;*patch" mimetype="text/x-patch">+<language name="Diff" version="1.12" kateversion="2.4" section="Other" extensions="*.diff;*patch" mimetype="text/x-patch">    <highlighting> 
xml/dot.xml view
@@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd"> <!-- Adapted from the VIM highlighter, by Markus Mottl (markus@oefai.at) -->-<language name="dot" version="1.1" kateversion="2.4" section="Scientific" extensions="*.dot" mimetype="text/x-dot" author="Postula Loïs (lois.postula@live.be)" priority="0">+<language name="dot" version="1.1" kateversion="2.3" section="Scientific" extensions="*.dot" mimetype="text/x-dot" author="Postula Loïs (lois.postula@live.be)" priority="0">    <highlighting> 
xml/doxygen.xml view
@@ -29,8 +29,8 @@  -->  <language name="Doxygen"-          version="1.37"-          kateversion="2.5"+          version="1.38"+          kateversion="2.4"           section="Markup"           extensions="*.dox;*.doxygen"           mimetype="text/x-doxygen"@@ -293,7 +293,7 @@         <keyword attribute="Tags" context="ML_TagWordWord" String="TagWordWord" />         <keyword attribute="Tags" context="ML_TagString" String="TagString" />         <keyword attribute="Tags" context="ML_TagWordString" String="TagWordString" />-        <RegExpr attribute="Custom Tags" context="#stay" String="[@\\][^@\\ \t]+" />+        <RegExpr attribute="Custom Tags" context="#stay" String="[@\\]([^@\\ \t\*]|\*(?!/))+" />         <DetectIdentifier />         <RegExpr attribute="Tags" context="#stay" String="\\(&lt;|&gt;)" />         <Detect2Chars attribute="Comment" context="#stay" char="&lt;" char1="&lt;" />
xml/dtd.xml view
@@ -3,7 +3,7 @@   <!ENTITY nmtoken "[\-\w\d\.:_]+">   <!ENTITY entref  "(#[0-9]+|#[xX][0-9A-Fa-f]+|&nmtoken;);"> ]>-<language name="DTD" version="1.02" kateversion="2.4" section="Markup" extensions="*.dtd" mimetype="application/xml-dtd" author="Andriy Lesyuk (s-andy@in.if.ua)" license="LGPL">+<language name="DTD" version="1.02" kateversion="3.4" section="Markup" extensions="*.dtd" mimetype="application/xml-dtd" author="Andriy Lesyuk (s-andy@in.if.ua)" license="LGPL">   <highlighting>      <list name="Category">
xml/eiffel.xml view
@@ -10,7 +10,7 @@  Author of version 1.02: Sebastian Vuorinen -->-<language name="Eiffel" version="1.02" kateversion="2.1" section="Sources" extensions="*.e" mimetype="text/x-eiffel-src" author="Sebastian Vuorinen" license="">+<language name="Eiffel" version="1.02" kateversion="2.3" section="Sources" extensions="*.e" mimetype="text/x-eiffel-src" author="Sebastian Vuorinen" license=""> 	<highlighting> 		<list name="keywords"> 			<item> agent </item>
xml/email.xml view
@@ -3,7 +3,7 @@ <!--   Copyright (C) 2005 Carl A Joslin <carl.joslin@joslin.dyndns.org> -->-<language name="Email" version="1.01" kateversion="2.4" extensions="*.eml" section="Other" mimetype="message/rfc822" casesensitive="0" author="Carl A Joslin (carl.joslin@joslin.dyndns.org)" license="GPL">+<language name="Email" version="1.01" kateversion="2.3" extensions="*.eml" section="Other" mimetype="message/rfc822" casesensitive="0" author="Carl A Joslin (carl.joslin@joslin.dyndns.org)" license="GPL">   <highlighting>     <contexts>             <context name="headder" attribute="Normal Text" lineEndContext="#stay">
xml/erlang.xml view
@@ -36,7 +36,7 @@                                    - fixed highlighting problem when '@' at end of atom/variable --> -<language name="Erlang" version="1.03" kateversion="2.5" section="Scripts" extensions="*.erl" mimetype="" author="Bill Ross (bill@emailme.net.au)" license="LGPL">+<language name="Erlang" version="1.03" kateversion="2.4" section="Scripts" extensions="*.erl" mimetype="" author="Bill Ross (bill@emailme.net.au)" license="LGPL">   <highlighting>     <list name="keywords">       <!-- ====== s3.8 p 24 of erlang spec ===== -->
xml/fasm.xml view
@@ -13,7 +13,7 @@ * "used" and "defined" are treated opperators and are not highlighted. --> -<language name="Intel x86 (FASM)" section="Assembler" version="0.2" kateversion="4.5" extensions="*.asm;*.inc;*.fasm" mimetype="" author="rCX (rCX12@yahoo.com)" license="GPL">+<language name="Intel x86 (FASM)" section="Assembler" version="0.2" kateversion="2.3" extensions="*.asm;*.inc;*.fasm" mimetype="" author="rCX (rCX12@yahoo.com)" license="GPL">   <highlighting>     <list name="registers">       <!-- General purpose registers -->
xml/gcc.xml view
@@ -14,7 +14,7 @@ <language     name="GCCExtensions"     version="0.4"-    kateversion="2.4"+    kateversion="3.4"     section="Sources"     extensions="*.c++;*.cxx;*.cpp;*.cc;*.C;*.h;*.hh;*.H;*.h++;*.hxx;*.hpp;*.hcc;"     mimetype="text/x-c++src;text/x-c++hdr;text/x-chdr;text/x-csrc"
xml/go.xml view
@@ -26,7 +26,7 @@ -->  -<language name="Go" version="1.05" kateversion="2.4" section="Sources" indenter="cstyle" extensions="*.go" author="Miquel Sabaté (mikisabate@gmail.com)" license="GPL">+<language name="Go" version="1.05" kateversion="3.4" section="Sources" indenter="cstyle" extensions="*.go" author="Miquel Sabaté (mikisabate@gmail.com)" license="GPL">     <highlighting>     <list name="keywords"> <!-- Keywords have been taken from The Go Programming Language Specification -> Keywords section -->
xml/haskell.xml view
@@ -326,7 +326,7 @@       <RegExpr attribute="Comment" context="comment"  String="--[^\-!#\$%&amp;\*\+/&lt;=&gt;\?&#92;@\^\|~\.:].*$" />       <RegExpr attribute="Keyword" context="import"   String="import\s+" />       <RegExpr attribute="C2HS Directive"  context="c2hs directive" String="\{#"/>-      <RegExpr attribute="C2HS Directive"  context="c2hs include" String="#"/>+      <RegExpr attribute="C2HS Directive"  context="c2hs include" String="^((\s*#[a-zA-Z])|#)"/>        <keyword attribute="Keyword"          context="#stay" String="keywords" />       <keyword attribute="Function Prelude" context="#stay" String="prelude function" />
xml/haxe.xml view
@@ -12,7 +12,7 @@   ======================================================================== --> -<language name="Haxe" section="Sources" extensions="*.hx;*.Hx;*.hX;*.HX;" mimetype="text/x-hxsrc" version="0.1" kateversion="3.1" casesensitive="true" author="Chad Joan" license="MIT">+<language name="Haxe" section="Sources" extensions="*.hx;*.Hx;*.hX;*.HX;" mimetype="text/x-hxsrc" version="0.1" kateversion="2.4" casesensitive="true" author="Chad Joan" license="MIT">   <highlighting>     <list name="keywords">     
xml/html.xml view
@@ -4,7 +4,7 @@ 	<!ENTITY name    "[A-Za-z_:][\w.:_-]*"> 	<!ENTITY entref  "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);"> ]>-<language name="HTML" version="2.1" kateversion="2.4" section="Markup" extensions="*.htm;*.html;*.shtml;*.shtm" mimetype="text/html"  author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL" priority="10">+<language name="HTML" version="2.1" kateversion="3.4" section="Markup" extensions="*.htm;*.html;*.shtml;*.shtm" mimetype="text/html"  author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL" priority="10">  <highlighting> <contexts>@@ -17,8 +17,7 @@     <DetectIdentifier/>     <StringDetect attribute="Comment" context="Comment" String="&lt;!--" beginRegion="comment" />     <StringDetect attribute="CDATA" context="CDATA" String="&lt;![CDATA[" beginRegion="cdata" />-    <!-- NOTE: the kate source had insensitive="true", but "false" is correct -->-    <RegExpr attribute="Doctype" context="Doctype" String="&lt;!DOCTYPE\s+" insensitive="false" beginRegion="doctype"  />+    <RegExpr attribute="Doctype" context="Doctype" String="&lt;!DOCTYPE\s+" insensitive="true" beginRegion="doctype"  />     <RegExpr attribute="Processing Instruction" context="PI" String="&lt;\?[\w:-]*" beginRegion="pi" />     <RegExpr attribute="Element" context="CSS" String="&lt;style\b" insensitive="true" beginRegion="style" />     <RegExpr attribute="Element" context="JS" String="&lt;script\b" insensitive="true" beginRegion="script" />
xml/ini.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="INI Files" section="Configuration" extensions="*.ini;*.pls;*.kcfgc" mimetype="" version="1.1" kateversion="2.0" author="Jan Janssen (medhefgo@web.de)" license="LGPL">+<language name="INI Files" section="Configuration" extensions="*.ini;*.pls;*.kcfgc" mimetype="" version="1.1" kateversion="2.4" author="Jan Janssen (medhefgo@web.de)" license="LGPL">  <highlighting> <list name="keywords">
xml/isocpp.xml view
@@ -11,8 +11,8 @@ <language     name="ISO C++"     section="Sources"-    version="2.4"-    kateversion="2.4"+    version="2.5"+    kateversion="3.4"     indenter="cstyle"     style="C++"     mimetype="text/x-c++src;text/x-c++hdr;text/x-chdr"@@ -191,7 +191,7 @@         <!-- NOTE Order is important! -->         <RegExpr attribute="Hex" context="#stay" String="[\+\-]?0x[0-9A-Fa-f]('?[0-9A-Fa-f]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\b" />         <RegExpr attribute="Binary" context="#stay" String="0[Bb][01]('?[01]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\b" />-        <RegExpr attribute="Float" context="#stay" String="[\+\-]?([0-9]+[Ee][\+\-]?[0-9]+|([0-9]*\.[0-9]+|[0-9]+\.[0-9]*)([Ee][\+\-]?[0-9]+)?)[FfLl]?" />+        <RegExpr attribute="Float" context="#stay" String="[\+\-]?([0-9]+[Ee][\+\-]?[0-9]+|([0-9]+\.|\.[0-9]+|[0-9]+\.[0-9]+)([Ee][\+\-]?[0-9]+)?)[FfLl]?" />         <RegExpr attribute="Octal" context="#stay" String="[\+\-]?0'?[0-7]('?[0-7]+)*([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\b" />         <RegExpr attribute="Decimal" context="#stay" String="[\+\-]?(0|[1-9]('?[0-9]+)*)([Uu][Ll]{0,2}|[Ll]{0,2}[Uu]?|_[_0-9A-Za-z]*)?\b" />         <RegExpr attribute="Error" context="#stay" String="[\+\-]?(0x?|[1-9][0-9]*)[0-9A-Za-z][_0-9A-Za-z]*\b" />@@ -352,21 +352,28 @@       </context>        <context name="AfterHash" attribute="Error" lineEndContext="#pop">-        <!-- define, elif, else, endif, error, if, ifdef, ifndef, include, include_next, line, pragma, undef, warning -->+        <RegExpr attribute="Preprocessor" context="Include" String="#\s*(?:include|include_next)" insensitive="true" firstNonSpace="true" />++        <!-- define, elif, else, endif, error, if, ifdef, ifndef, line, pragma, undef, warning -->         <RegExpr attribute="Preprocessor" context="Preprocessor" String="(#|%\:|\?\?=)\s*if(?:def|ndef)?(?=(?:\(|\s+)\S)" beginRegion="PP" firstNonSpace="true" insensitive="false" />         <RegExpr attribute="Preprocessor" context="Preprocessor" String="(#|%\:|\?\?=)\s*endif" endRegion="PP" firstNonSpace="true" insensitive="false" />         <!-- Switch to seperate context for multiline #defines -->         <RegExpr attribute="Preprocessor" context="Define" String="(#|%\:|\?\?=)\s*(cmake)?define.*((?=\\))" firstNonSpace="true" lookAhead="true" insensitive="false" />-        <RegExpr attribute="Preprocessor" context="Preprocessor" String="(#|%\:|\?\?=)\s*(?:el(?:se|if)|include(?:_next)?|(cmake)?define|undef|line|error|warning|pragma)" insensitive="false" firstNonSpace="true" />+        <RegExpr attribute="Preprocessor" context="Preprocessor" String="(#|%\:|\?\?=)\s*(?:el(?:se|if)|(cmake)?define|undef|line|error|warning|pragma)" insensitive="false" firstNonSpace="true" />         <RegExpr attribute="Preprocessor" context="Preprocessor" String="(#|%\:|\?\?=)\s+[0-9]+" firstNonSpace="true" insensitive="false" />       </context> +      <context attribute="Preprocessor" lineEndContext="#pop" name="Include">+        <LineContinue attribute="Preprocessor" context="#stay"/>+        <RangeDetect attribute="Prep. Lib" context="#stay" char="&quot;" char1="&quot;"/>+        <RangeDetect attribute="Prep. Lib" context="#stay" char="&lt;" char1="&gt;"/>+        <IncludeRules context="Preprocessor" />+      </context>+       <context name="Preprocessor" attribute="Preprocessor" lineEndContext="#pop">         <LineContinue attribute="Preprocessor" context="#stay" />         <keyword attribute="Standard Macros" context="#stay" String="StdMacros" />         <IncludeRules context="GNUMacros##GCCExtensions" />-        <RangeDetect attribute="Prep. Lib" context="#stay" char="&quot;" char1="&quot;" />-        <RangeDetect attribute="Prep. Lib" context="#stay" char="&lt;" char1="&gt;" />         <IncludeRules context="##Doxygen" />         <Detect2Chars attribute="Comment" context="Comment/Preprocessor" char="/" char1="*" beginRegion="Comment2" />         <Detect2Chars attribute="Comment" context="Comment 1" char="/" char1="/" />
xml/javascript.xml view
@@ -3,58 +3,64 @@ <!-- Author: Anders Lund <anders@alweb.dk> //--> <!-- Minor changes: Joseph Wenninger <jowenn@kde.org> //--> <!-- Full JavaScript 1.0 support by Whitehawk Stormchaser //-->-<language name="JavaScript" version="1.22" kateversion="2.4" section="Scripts" extensions="*.js;*.kwinscript"+<language name="JavaScript" version="1.23" kateversion="5.0" section="Scripts" extensions="*.js;*.kwinscript"           mimetype="text/x-javascript;application/x-javascript" indenter="cstyle"           author="Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net)" license="">   <highlighting>-    <list name="keywords">+    <list name="controlflow">       <item> break </item>       <item> case </item>       <item> catch </item>-      <item> const </item>       <item> continue </item>       <item> debugger </item>-      <item> default </item>-      <item> delete </item>       <item> do </item>       <item> else </item>       <item> finally </item>       <item> for </item>-      <item> function </item>       <item> if </item>-      <item> in </item>-      <item> instanceof </item>-      <item> new </item>       <item> return </item>       <item> switch </item>-      <item> this </item>       <item> throw </item>       <item> try </item>+      <item> while </item>+      <item> with </item>+    </list>+    <list name="keywords">+      <item> const </item>+      <item> delete </item>+      <item> function </item>+      <item> in </item>+      <item> instanceof </item>+      <item> new </item>+      <item> this </item>       <item> typeof </item>       <item> var </item>       <item> void </item>-      <item> while </item>-      <item> with </item>     </list>     <list name="reserved">       <item> class </item>       <item> enum </item>-      <item> export </item>       <item> extends </item>-      <item> import </item>       <item> super </item>        <!-- The following keywords are reserved only in strict-mode -->       <item> implements </item>       <item> interface </item>       <item> let </item>-      <item> package </item>       <item> private </item>       <item> protected </item>       <item> public </item>       <item> static </item>       <item> yield </item>     </list>+    <list name="module">+      <item> import </item>+      <item> from </item>+      <item> as </item>+      <item> default </item>+      <item> export </item>+      <item> package </item>+    </list>     <list name="primitives">       <item> Infinity </item>       <item> NaN </item>@@ -86,10 +92,15 @@         <Int attribute="Decimal" context="NoRegExp" />         <AnyChar context="NoRegExp" String="])" /> +        <keyword attribute="ControlFlow" String="controlflow" />         <keyword attribute="Keyword" String="keywords" />         <keyword attribute="Reserved" String="reserved" />         <keyword attribute="Keyword" context="NoRegExp" String="primitives" />+        <keyword attribute="Module" String="module" /> +        <DetectChar attribute="Template" context="Template" char="`" />+        <StringDetect attribute="Template" context="RawTemplate" String="String.raw`" />+         <!--DetectIdentifier-->         <RegExpr attribute="Objects" context="Object Member" String="[a-zA-Z_$][\w$]*(?=\s*\.)" />         <!--DetectIdentifier-->@@ -144,16 +155,30 @@       </context>        <context attribute="String" lineEndContext="#pop" name="String">-        <HlCStringChar attribute="Char" />+        <HlCStringChar attribute="Escape" />         <LineContinue/>         <DetectChar attribute="String" context="#pop" char="&quot;" />       </context>       <context attribute="String" lineEndContext="#pop" name="String SQ">-        <HlCStringChar attribute="Char" />+        <HlCStringChar attribute="Escape" />         <LineContinue/>         <DetectChar attribute="String" context="#pop" char="'" />       </context> +      <context attribute="Template" lineEndContext="#stay" name="Template">+        <HlCStringChar attribute="Escape" />+        <Detect2Chars attribute="Escape" char="\" char1="`" />+        <Detect2Chars attribute="Substitution" context="Substitution" char="$" char1="{" />+        <DetectChar attribute="Template" context="#pop" char="`" />+      </context>+      <context attribute="Template" lineEndContext="#stay" name="RawTemplate">+        <DetectChar attribute="Template" context="#pop" char="`" />+      </context>+      <context name="Substitution" attribute="Normal Text" lineEndContext="#stay">+          <DetectChar attribute="Substitution" char="}" context="#pop"/>+          <IncludeRules context="Normal"/>+      </context>+       <context attribute="Comment" lineEndContext="#pop" name="Comment">         <IncludeRules context="##Alerts" />         <IncludeRules context="##Modelines" />@@ -194,23 +219,27 @@     <itemDatas>       <itemData name="Normal Text"  defStyleNum="dsNormal"  spellChecking="false" />       <itemData name="Keyword"      defStyleNum="dsKeyword" spellChecking="false" />+      <itemData name="ControlFlow"  defStyleNum="dsControlFlow" spellChecking="false" />       <itemData name="Reserved"     defStyleNum="dsKeyword" italic="true" spellChecking="false" />+      <itemData name="Module"       defStyleNum="dsImport" spellChecking="false" />       <itemData name="Function"     defStyleNum="dsFunction" spellChecking="false" />-      <itemData name="Objects"      defStyleNum="dsOthers" spellChecking="false" />-      <itemData name="Object Member" defStyleNum="dsFunction" spellChecking="false" />+      <itemData name="Objects"      defStyleNum="dsVariable" spellChecking="false" />+      <itemData name="Object Member" defStyleNum="dsAttribute" spellChecking="false" />        <itemData name="Decimal"      defStyleNum="dsDecVal" spellChecking="false" />       <itemData name="Octal"        defStyleNum="dsBaseN" spellChecking="false" />       <itemData name="Hex"          defStyleNum="dsBaseN" spellChecking="false" />       <itemData name="Float"        defStyleNum="dsFloat" spellChecking="false" />-      <itemData name="Char"         defStyleNum="dsChar" spellChecking="false" />+      <itemData name="Escape"       defStyleNum="dsSpecialChar" spellChecking="false" />       <itemData name="String"       defStyleNum="dsString" />+      <itemData name="Template"     defStyleNum="dsVerbatimString" />+      <itemData name="Substitution" defStyleNum="dsSpecialChar" spellChecking="false" />        <itemData name="Comment"      defStyleNum="dsComment" />-      <itemData name="Symbol"       defStyleNum="dsNormal" spellChecking="false" />-      <itemData name="Regular Expression" defStyleNum="dsOthers" spellChecking="false" />-      <itemData name="Pattern Internal Operator" defStyleNum="dsFloat" spellChecking="false" />-      <itemData name="Pattern Character Class" defStyleNum="dsBaseN" spellChecking="false" />+      <itemData name="Symbol"       defStyleNum="dsOperator" spellChecking="false" />+      <itemData name="Regular Expression" defStyleNum="dsSpecialString" spellChecking="false" />+      <itemData name="Pattern Internal Operator" defStyleNum="dsSpecialChar" spellChecking="false" />+      <itemData name="Pattern Character Class" defStyleNum="dsSpecialChar" spellChecking="false" />       <itemData name="Region Marker" defStyleNum="dsRegionMarker" spellChecking="false" />       <itemData name="JSON"         defStyleNum="dsDataType" spellChecking="false" />     </itemDatas>@@ -223,3 +252,5 @@     <keywords casesensitive="1" />   </general> </language>++<!-- kate: space-indent on; indent-width 2; -->
xml/json.xml view
@@ -12,7 +12,7 @@  ** http://tools.ietf.org/html/rfc4627  *************************************************************************** -->-<language name="JSON" section="Markup" version="1.3" kateversion="2.3" extensions="*.json" mimetype="application/json" author="Sebastian Pipping (sebastian@pipping.org)" license="GPL">+<language name="JSON" section="Markup" version="1.3" kateversion="2.4" extensions="*.json" mimetype="application/json" author="Sebastian Pipping (sebastian@pipping.org)" license="GPL">   <highlighting>     <list name="Constants">       <item>null</item>
xml/julia.xml view
@@ -29,7 +29,7 @@  <!DOCTYPE language SYSTEM "language.dtd"> -<language name="Julia" section="Sources" version="0.2" kateversion="2.2" extensions="*.jl" casesensitive="1" priority="5" license="MIT">+<language name="Julia" section="Sources" version="0.2" kateversion="2.4" extensions="*.jl" casesensitive="1" priority="5" license="MIT">    <highlighting>     <list name="block_begin">
+ xml/kotlin.xml view
@@ -0,0 +1,3458 @@+<?xml version="1.0" encoding="UTF-8"?>+<!DOCTYPE language SYSTEM "language.dtd">+<language name="Kotlin" version="1.0" kateversion="2.4" section="Sources"+          extensions="*.kt" mimetype="text/x-kotlin" license="LGPL"+          author="Sebastien Soudan (sebastien.soudan@gmail.com)">+<!--+Based on "scala.xml" from Alfredo Luiz Foltran Fialho (alfoltran@ig.com.br)++Adapted for Kotlin by Sebastien Soudan (sebastien.soudan@gmail.com)+-->+  <highlighting>+    <list name="kotlin2">+      <item> Unit </item>+      <item> Any </item>+      <item> Array </item>+      <item> Nothing </item>+      <item> MutableIterator </item>+      <item> MutableIterable </item>+      <item> MutableCollection </item>+      <item> MutableSet </item>+      <item> MutableList </item>+      <item> MutableListIterator </item>+      <item> MutableMap </item>+      <item> MutableEntry </item>+      <item> IntArray </item>+      <item> javaClass </item>+      <item> javaMethod </item>+    </list>+    <list name="java15">+      <item> ACTIVE </item>+      <item> ACTIVITY_COMPLETED </item>+      <item> ACTIVITY_REQUIRED </item>+      <item> ARG_IN </item>+      <item> ARG_INOUT </item>+      <item> ARG_OUT </item>+      <item> AWTError </item>+      <item> AWTEvent </item>+      <item> AWTEventListener </item>+      <item> AWTEventListenerProxy </item>+      <item> AWTEventMulticaster </item>+      <item> AWTException </item>+      <item> AWTKeyStroke </item>+      <item> AWTPermission </item>+      <item> AbstractAction </item>+      <item> AbstractBorder </item>+      <item> AbstractButton </item>+      <item> AbstractCellEditor </item>+      <item> AbstractCollection </item>+      <item> AbstractColorChooserPanel </item>+      <item> AbstractDocument </item>+      <item> AbstractDocument.AttributeContext </item>+      <item> AbstractDocument.Content </item>+      <item> AbstractDocument.ElementEdit </item>+      <item> AbstractExecutorService </item>+      <item> AbstractInterruptibleChannel </item>+      <item> AbstractLayoutCache </item>+      <item> AbstractLayoutCache.NodeDimensions </item>+      <item> AbstractList </item>+      <item> AbstractListModel </item>+      <item> AbstractMap </item>+      <item> AbstractMethodError </item>+      <item> AbstractPreferences </item>+      <item> AbstractQueue </item>+      <item> AbstractQueuedSynchronizer </item>+      <item> AbstractSelectableChannel </item>+      <item> AbstractSelectionKey </item>+      <item> AbstractSelector </item>+      <item> AbstractSequentialList </item>+      <item> AbstractSet </item>+      <item> AbstractSpinnerModel </item>+      <item> AbstractTableModel </item>+      <item> AbstractUndoableEdit </item>+      <item> AbstractWriter </item>+      <item> AccessControlContext </item>+      <item> AccessControlException </item>+      <item> AccessController </item>+      <item> AccessException </item>+      <item> Accessible </item>+      <item> AccessibleAction </item>+      <item> AccessibleAttributeSequence </item>+      <item> AccessibleBundle </item>+      <item> AccessibleComponent </item>+      <item> AccessibleContext </item>+      <item> AccessibleEditableText </item>+      <item> AccessibleExtendedComponent </item>+      <item> AccessibleExtendedTable </item>+      <item> AccessibleExtendedText </item>+      <item> AccessibleHyperlink </item>+      <item> AccessibleHypertext </item>+      <item> AccessibleIcon </item>+      <item> AccessibleKeyBinding </item>+      <item> AccessibleObject </item>+      <item> AccessibleRelation </item>+      <item> AccessibleRelationSet </item>+      <item> AccessibleResourceBundle </item>+      <item> AccessibleRole </item>+      <item> AccessibleSelection </item>+      <item> AccessibleState </item>+      <item> AccessibleStateSet </item>+      <item> AccessibleStreamable </item>+      <item> AccessibleTable </item>+      <item> AccessibleTableModelChange </item>+      <item> AccessibleText </item>+      <item> AccessibleTextSequence </item>+      <item> AccessibleValue </item>+      <item> AccountException </item>+      <item> AccountExpiredException </item>+      <item> AccountLockedException </item>+      <item> AccountNotFoundException </item>+      <item> Acl </item>+      <item> AclEntry </item>+      <item> AclNotFoundException </item>+      <item> Action </item>+      <item> ActionEvent </item>+      <item> ActionListener </item>+      <item> ActionMap </item>+      <item> ActionMapUIResource </item>+      <item> Activatable </item>+      <item> ActivateFailedException </item>+      <item> ActivationDesc </item>+      <item> ActivationException </item>+      <item> ActivationGroup </item>+      <item> ActivationGroupDesc </item>+      <item> ActivationGroupDesc.CommandEnvironment </item>+      <item> ActivationGroupID </item>+      <item> ActivationGroup_Stub </item>+      <item> ActivationID </item>+      <item> ActivationInstantiator </item>+      <item> ActivationMonitor </item>+      <item> ActivationSystem </item>+      <item> Activator </item>+      <item> ActiveEvent </item>+      <item> ActivityCompletedException </item>+      <item> ActivityRequiredException </item>+      <item> AdapterActivator </item>+      <item> AdapterActivatorOperations </item>+      <item> AdapterAlreadyExists </item>+      <item> AdapterAlreadyExistsHelper </item>+      <item> AdapterInactive </item>+      <item> AdapterInactiveHelper </item>+      <item> AdapterManagerIdHelper </item>+      <item> AdapterNameHelper </item>+      <item> AdapterNonExistent </item>+      <item> AdapterNonExistentHelper </item>+      <item> AdapterStateHelper </item>+      <item> AddressHelper </item>+      <item> Adjustable </item>+      <item> AdjustmentEvent </item>+      <item> AdjustmentListener </item>+      <item> Adler32 </item>+      <item> AffineTransform </item>+      <item> AffineTransformOp </item>+      <item> AlgorithmParameterGenerator </item>+      <item> AlgorithmParameterGeneratorSpi </item>+      <item> AlgorithmParameterSpec </item>+      <item> AlgorithmParameters </item>+      <item> AlgorithmParametersSpi </item>+      <item> AllPermission </item>+      <item> AlphaComposite </item>+      <item> AlreadyBound </item>+      <item> AlreadyBoundException </item>+      <item> AlreadyBoundHelper </item>+      <item> AlreadyBoundHolder </item>+      <item> AlreadyConnectedException </item>+      <item> AncestorEvent </item>+      <item> AncestorListener </item>+      <item> AnnotatedElement </item>+      <item> Annotation </item>+      <item> Annotation </item>+      <item> AnnotationFormatError </item>+      <item> AnnotationTypeMismatchException </item>+      <item> Any </item>+      <item> AnyHolder </item>+      <item> AnySeqHelper </item>+      <item> AnySeqHelper </item>+      <item> AnySeqHolder </item>+      <item> AppConfigurationEntry </item>+      <item> AppConfigurationEntry.LoginModuleControlFlag </item>+      <item> Appendable </item>+      <item> Applet </item>+      <item> AppletContext </item>+      <item> AppletInitializer </item>+      <item> AppletStub </item>+      <item> ApplicationException </item>+      <item> Arc2D </item>+      <item> Arc2D.Double </item>+      <item> Arc2D.Float </item>+      <item> Area </item>+      <item> AreaAveragingScaleFilter </item>+      <item> ArithmeticException </item>+      <item> Array </item>+      <item> Array </item>+      <item> ArrayBlockingQueue </item>+      <item> ArrayIndexOutOfBoundsException </item>+      <item> ArrayList </item>+      <item> ArrayStoreException </item>+      <item> ArrayType </item>+      <item> Arrays </item>+      <item> AssertionError </item>+      <item> AsyncBoxView </item>+      <item> AsynchronousCloseException </item>+      <item> AtomicBoolean </item>+      <item> AtomicInteger </item>+      <item> AtomicIntegerArray </item>+      <item> AtomicIntegerFieldUpdater </item>+      <item> AtomicLong </item>+      <item> AtomicLongArray </item>+      <item> AtomicLongFieldUpdater </item>+      <item> AtomicMarkableReference </item>+      <item> AtomicReference </item>+      <item> AtomicReferenceArray </item>+      <item> AtomicReferenceFieldUpdater </item>+      <item> AtomicStampedReference </item>+      <item> Attr </item>+      <item> Attribute </item>+      <item> Attribute </item>+      <item> Attribute </item>+      <item> AttributeChangeNotification </item>+      <item> AttributeChangeNotificationFilter </item>+      <item> AttributeException </item>+      <item> AttributeInUseException </item>+      <item> AttributeList </item>+      <item> AttributeList </item>+      <item> AttributeList </item>+      <item> AttributeListImpl </item>+      <item> AttributeModificationException </item>+      <item> AttributeNotFoundException </item>+      <item> AttributeSet </item>+      <item> AttributeSet </item>+      <item> AttributeSet.CharacterAttribute </item>+      <item> AttributeSet.ColorAttribute </item>+      <item> AttributeSet.FontAttribute </item>+      <item> AttributeSet.ParagraphAttribute </item>+      <item> AttributeSetUtilities </item>+      <item> AttributeValueExp </item>+      <item> AttributedCharacterIterator </item>+      <item> AttributedCharacterIterator.Attribute </item>+      <item> AttributedString </item>+      <item> Attributes </item>+      <item> Attributes </item>+      <item> Attributes </item>+      <item> Attributes.Name </item>+      <item> Attributes2 </item>+      <item> Attributes2Impl </item>+      <item> AttributesImpl </item>+      <item> AudioClip </item>+      <item> AudioFileFormat </item>+      <item> AudioFileFormat.Type </item>+      <item> AudioFileReader </item>+      <item> AudioFileWriter </item>+      <item> AudioFormat </item>+      <item> AudioFormat.Encoding </item>+      <item> AudioInputStream </item>+      <item> AudioPermission </item>+      <item> AudioSystem </item>+      <item> AuthPermission </item>+      <item> AuthProvider </item>+      <item> AuthenticationException </item>+      <item> AuthenticationException </item>+      <item> AuthenticationNotSupportedException </item>+      <item> Authenticator </item>+      <item> Authenticator.RequestorType </item>+      <item> AuthorizeCallback </item>+      <item> Autoscroll </item>+      <item> BAD_CONTEXT </item>+      <item> BAD_INV_ORDER </item>+      <item> BAD_OPERATION </item>+      <item> BAD_PARAM </item>+      <item> BAD_POLICY </item>+      <item> BAD_POLICY_TYPE </item>+      <item> BAD_POLICY_VALUE </item>+      <item> BAD_QOS </item>+      <item> BAD_TYPECODE </item>+      <item> BMPImageWriteParam </item>+      <item> BackingStoreException </item>+      <item> BadAttributeValueExpException </item>+      <item> BadBinaryOpValueExpException </item>+      <item> BadKind </item>+      <item> BadLocationException </item>+      <item> BadPaddingException </item>+      <item> BadStringOperationException </item>+      <item> BandCombineOp </item>+      <item> BandedSampleModel </item>+      <item> BaseRowSet </item>+      <item> BasicArrowButton </item>+      <item> BasicAttribute </item>+      <item> BasicAttributes </item>+      <item> BasicBorders </item>+      <item> BasicBorders.ButtonBorder </item>+      <item> BasicBorders.FieldBorder </item>+      <item> BasicBorders.MarginBorder </item>+      <item> BasicBorders.MenuBarBorder </item>+      <item> BasicBorders.RadioButtonBorder </item>+      <item> BasicBorders.RolloverButtonBorder </item>+      <item> BasicBorders.SplitPaneBorder </item>+      <item> BasicBorders.ToggleButtonBorder </item>+      <item> BasicButtonListener </item>+      <item> BasicButtonUI </item>+      <item> BasicCheckBoxMenuItemUI </item>+      <item> BasicCheckBoxUI </item>+      <item> BasicColorChooserUI </item>+      <item> BasicComboBoxEditor </item>+      <item> BasicComboBoxEditor.UIResource </item>+      <item> BasicComboBoxRenderer </item>+      <item> BasicComboBoxRenderer.UIResource </item>+      <item> BasicComboBoxUI </item>+      <item> BasicComboPopup </item>+      <item> BasicControl </item>+      <item> BasicDesktopIconUI </item>+      <item> BasicDesktopPaneUI </item>+      <item> BasicDirectoryModel </item>+      <item> BasicEditorPaneUI </item>+      <item> BasicFileChooserUI </item>+      <item> BasicFormattedTextFieldUI </item>+      <item> BasicGraphicsUtils </item>+      <item> BasicHTML </item>+      <item> BasicIconFactory </item>+      <item> BasicInternalFrameTitlePane </item>+      <item> BasicInternalFrameUI </item>+      <item> BasicLabelUI </item>+      <item> BasicListUI </item>+      <item> BasicLookAndFeel </item>+      <item> BasicMenuBarUI </item>+      <item> BasicMenuItemUI </item>+      <item> BasicMenuUI </item>+      <item> BasicOptionPaneUI </item>+      <item> BasicOptionPaneUI.ButtonAreaLayout </item>+      <item> BasicPanelUI </item>+      <item> BasicPasswordFieldUI </item>+      <item> BasicPermission </item>+      <item> BasicPopupMenuSeparatorUI </item>+      <item> BasicPopupMenuUI </item>+      <item> BasicProgressBarUI </item>+      <item> BasicRadioButtonMenuItemUI </item>+      <item> BasicRadioButtonUI </item>+      <item> BasicRootPaneUI </item>+      <item> BasicScrollBarUI </item>+      <item> BasicScrollPaneUI </item>+      <item> BasicSeparatorUI </item>+      <item> BasicSliderUI </item>+      <item> BasicSpinnerUI </item>+      <item> BasicSplitPaneDivider </item>+      <item> BasicSplitPaneUI </item>+      <item> BasicStroke </item>+      <item> BasicTabbedPaneUI </item>+      <item> BasicTableHeaderUI </item>+      <item> BasicTableUI </item>+      <item> BasicTextAreaUI </item>+      <item> BasicTextFieldUI </item>+      <item> BasicTextPaneUI </item>+      <item> BasicTextUI </item>+      <item> BasicTextUI.BasicCaret </item>+      <item> BasicTextUI.BasicHighlighter </item>+      <item> BasicToggleButtonUI </item>+      <item> BasicToolBarSeparatorUI </item>+      <item> BasicToolBarUI </item>+      <item> BasicToolTipUI </item>+      <item> BasicTreeUI </item>+      <item> BasicViewportUI </item>+      <item> BatchUpdateException </item>+      <item> BeanContext </item>+      <item> BeanContextChild </item>+      <item> BeanContextChildComponentProxy </item>+      <item> BeanContextChildSupport </item>+      <item> BeanContextContainerProxy </item>+      <item> BeanContextEvent </item>+      <item> BeanContextMembershipEvent </item>+      <item> BeanContextMembershipListener </item>+      <item> BeanContextProxy </item>+      <item> BeanContextServiceAvailableEvent </item>+      <item> BeanContextServiceProvider </item>+      <item> BeanContextServiceProviderBeanInfo </item>+      <item> BeanContextServiceRevokedEvent </item>+      <item> BeanContextServiceRevokedListener </item>+      <item> BeanContextServices </item>+      <item> BeanContextServicesListener </item>+      <item> BeanContextServicesSupport </item>+      <item> BeanContextServicesSupport.BCSSServiceProvider </item>+      <item> BeanContextSupport </item>+      <item> BeanContextSupport.BCSIterator </item>+      <item> BeanDescriptor </item>+      <item> BeanInfo </item>+      <item> Beans </item>+      <item> BevelBorder </item>+      <item> Bidi </item>+      <item> BigDecimal </item>+      <item> BigInteger </item>+      <item> BinaryRefAddr </item>+      <item> BindException </item>+      <item> Binding </item>+      <item> Binding </item>+      <item> BindingHelper </item>+      <item> BindingHolder </item>+      <item> BindingIterator </item>+      <item> BindingIteratorHelper </item>+      <item> BindingIteratorHolder </item>+      <item> BindingIteratorOperations </item>+      <item> BindingIteratorPOA </item>+      <item> BindingListHelper </item>+      <item> BindingListHolder </item>+      <item> BindingType </item>+      <item> BindingTypeHelper </item>+      <item> BindingTypeHolder </item>+      <item> BitSet </item>+      <item> Blob </item>+      <item> BlockView </item>+      <item> BlockingQueue </item>+      <item> Book </item>+      <item> Boolean </item>+      <item> BooleanControl </item>+      <item> BooleanControl.Type </item>+      <item> BooleanHolder </item>+      <item> BooleanSeqHelper </item>+      <item> BooleanSeqHolder </item>+      <item> Border </item>+      <item> BorderFactory </item>+      <item> BorderLayout </item>+      <item> BorderUIResource </item>+      <item> BorderUIResource.BevelBorderUIResource </item>+      <item> BorderUIResource.CompoundBorderUIResource </item>+      <item> BorderUIResource.EmptyBorderUIResource </item>+      <item> BorderUIResource.EtchedBorderUIResource </item>+      <item> BorderUIResource.LineBorderUIResource </item>+      <item> BorderUIResource.MatteBorderUIResource </item>+      <item> BorderUIResource.TitledBorderUIResource </item>+      <item> BoundedRangeModel </item>+      <item> Bounds </item>+      <item> Bounds </item>+      <item> Box </item>+      <item> Box.Filler </item>+      <item> BoxLayout </item>+      <item> BoxView </item>+      <item> BoxedValueHelper </item>+      <item> BreakIterator </item>+      <item> BrokenBarrierException </item>+      <item> Buffer </item>+      <item> BufferCapabilities </item>+      <item> BufferCapabilities.FlipContents </item>+      <item> BufferOverflowException </item>+      <item> BufferStrategy </item>+      <item> BufferUnderflowException </item>+      <item> BufferedImage </item>+      <item> BufferedImageFilter </item>+      <item> BufferedImageOp </item>+      <item> BufferedInputStream </item>+      <item> BufferedOutputStream </item>+      <item> BufferedReader </item>+      <item> BufferedWriter </item>+      <item> Button </item>+      <item> ButtonGroup </item>+      <item> ButtonModel </item>+      <item> ButtonUI </item>+      <item> Byte </item>+      <item> ByteArrayInputStream </item>+      <item> ByteArrayOutputStream </item>+      <item> ByteBuffer </item>+      <item> ByteChannel </item>+      <item> ByteHolder </item>+      <item> ByteLookupTable </item>+      <item> ByteOrder </item>+      <item> CDATASection </item>+      <item> CMMException </item>+      <item> CODESET_INCOMPATIBLE </item>+      <item> COMM_FAILURE </item>+      <item> CRC32 </item>+      <item> CRL </item>+      <item> CRLException </item>+      <item> CRLSelector </item>+      <item> CSS </item>+      <item> CSS.Attribute </item>+      <item> CTX_RESTRICT_SCOPE </item>+      <item> CacheRequest </item>+      <item> CacheResponse </item>+      <item> CachedRowSet </item>+      <item> Calendar </item>+      <item> Callable </item>+      <item> CallableStatement </item>+      <item> Callback </item>+      <item> CallbackHandler </item>+      <item> CancelablePrintJob </item>+      <item> CancellationException </item>+      <item> CancelledKeyException </item>+      <item> CannotProceed </item>+      <item> CannotProceedException </item>+      <item> CannotProceedHelper </item>+      <item> CannotProceedHolder </item>+      <item> CannotRedoException </item>+      <item> CannotUndoException </item>+      <item> Canvas </item>+      <item> CardLayout </item>+      <item> Caret </item>+      <item> CaretEvent </item>+      <item> CaretListener </item>+      <item> CellEditor </item>+      <item> CellEditorListener </item>+      <item> CellRendererPane </item>+      <item> CertPath </item>+      <item> CertPath.CertPathRep </item>+      <item> CertPathBuilder </item>+      <item> CertPathBuilderException </item>+      <item> CertPathBuilderResult </item>+      <item> CertPathBuilderSpi </item>+      <item> CertPathParameters </item>+      <item> CertPathTrustManagerParameters </item>+      <item> CertPathValidator </item>+      <item> CertPathValidatorException </item>+      <item> CertPathValidatorResult </item>+      <item> CertPathValidatorSpi </item>+      <item> CertSelector </item>+      <item> CertStore </item>+      <item> CertStoreException </item>+      <item> CertStoreParameters </item>+      <item> CertStoreSpi </item>+      <item> Certificate </item>+      <item> Certificate </item>+      <item> Certificate </item>+      <item> Certificate.CertificateRep </item>+      <item> CertificateEncodingException </item>+      <item> CertificateEncodingException </item>+      <item> CertificateException </item>+      <item> CertificateException </item>+      <item> CertificateExpiredException </item>+      <item> CertificateExpiredException </item>+      <item> CertificateFactory </item>+      <item> CertificateFactorySpi </item>+      <item> CertificateNotYetValidException </item>+      <item> CertificateNotYetValidException </item>+      <item> CertificateParsingException </item>+      <item> CertificateParsingException </item>+      <item> ChangeEvent </item>+      <item> ChangeListener </item>+      <item> ChangedCharSetException </item>+      <item> Channel </item>+      <item> ChannelBinding </item>+      <item> Channels </item>+      <item> CharArrayReader </item>+      <item> CharArrayWriter </item>+      <item> CharBuffer </item>+      <item> CharConversionException </item>+      <item> CharHolder </item>+      <item> CharSeqHelper </item>+      <item> CharSeqHolder </item>+      <item> CharSequence </item>+      <item> Character </item>+      <item> Character.Subset </item>+      <item> Character.UnicodeBlock </item>+      <item> CharacterCodingException </item>+      <item> CharacterData </item>+      <item> CharacterIterator </item>+      <item> Charset </item>+      <item> CharsetDecoder </item>+      <item> CharsetEncoder </item>+      <item> CharsetProvider </item>+      <item> Checkbox </item>+      <item> CheckboxGroup </item>+      <item> CheckboxMenuItem </item>+      <item> CheckedInputStream </item>+      <item> CheckedOutputStream </item>+      <item> Checksum </item>+      <item> Choice </item>+      <item> ChoiceCallback </item>+      <item> ChoiceFormat </item>+      <item> Chromaticity </item>+      <item> Cipher </item>+      <item> CipherInputStream </item>+      <item> CipherOutputStream </item>+      <item> CipherSpi </item>+      <item> Class </item>+      <item> ClassCastException </item>+      <item> ClassCircularityError </item>+      <item> ClassDefinition </item>+      <item> ClassDesc </item>+      <item> ClassFileTransformer </item>+      <item> ClassFormatError </item>+      <item> ClassLoader </item>+      <item> ClassLoaderRepository </item>+      <item> ClassLoadingMXBean </item>+      <item> ClassNotFoundException </item>+      <item> ClientRequestInfo </item>+      <item> ClientRequestInfoOperations </item>+      <item> ClientRequestInterceptor </item>+      <item> ClientRequestInterceptorOperations </item>+      <item> Clip </item>+      <item> Clipboard </item>+      <item> ClipboardOwner </item>+      <item> Clob </item>+      <item> CloneNotSupportedException </item>+      <item> Cloneable </item>+      <item> Closeable </item>+      <item> ClosedByInterruptException </item>+      <item> ClosedChannelException </item>+      <item> ClosedSelectorException </item>+      <item> CodeSets </item>+      <item> CodeSigner </item>+      <item> CodeSource </item>+      <item> Codec </item>+      <item> CodecFactory </item>+      <item> CodecFactoryHelper </item>+      <item> CodecFactoryOperations </item>+      <item> CodecOperations </item>+      <item> CoderMalfunctionError </item>+      <item> CoderResult </item>+      <item> CodingErrorAction </item>+      <item> CollationElementIterator </item>+      <item> CollationKey </item>+      <item> Collator </item>+      <item> Collection </item>+      <item> CollectionCertStoreParameters </item>+      <item> Collections </item>+      <item> Color </item>+      <item> ColorChooserComponentFactory </item>+      <item> ColorChooserUI </item>+      <item> ColorConvertOp </item>+      <item> ColorModel </item>+      <item> ColorSelectionModel </item>+      <item> ColorSpace </item>+      <item> ColorSupported </item>+      <item> ColorType </item>+      <item> ColorUIResource </item>+      <item> ComboBoxEditor </item>+      <item> ComboBoxModel </item>+      <item> ComboBoxUI </item>+      <item> ComboPopup </item>+      <item> Comment </item>+      <item> CommunicationException </item>+      <item> Comparable </item>+      <item> Comparator </item>+      <item> CompilationMXBean </item>+      <item> Compiler </item>+      <item> CompletionService </item>+      <item> CompletionStatus </item>+      <item> CompletionStatusHelper </item>+      <item> Component </item>+      <item> ComponentAdapter </item>+      <item> ComponentColorModel </item>+      <item> ComponentEvent </item>+      <item> ComponentIdHelper </item>+      <item> ComponentInputMap </item>+      <item> ComponentInputMapUIResource </item>+      <item> ComponentListener </item>+      <item> ComponentOrientation </item>+      <item> ComponentSampleModel </item>+      <item> ComponentUI </item>+      <item> ComponentView </item>+      <item> Composite </item>+      <item> CompositeContext </item>+      <item> CompositeData </item>+      <item> CompositeDataSupport </item>+      <item> CompositeName </item>+      <item> CompositeType </item>+      <item> CompositeView </item>+      <item> CompoundBorder </item>+      <item> CompoundControl </item>+      <item> CompoundControl.Type </item>+      <item> CompoundEdit </item>+      <item> CompoundName </item>+      <item> Compression </item>+      <item> ConcurrentHashMap </item>+      <item> ConcurrentLinkedQueue </item>+      <item> ConcurrentMap </item>+      <item> ConcurrentModificationException </item>+      <item> Condition </item>+      <item> Configuration </item>+      <item> ConfigurationException </item>+      <item> ConfirmationCallback </item>+      <item> ConnectException </item>+      <item> ConnectException </item>+      <item> ConnectIOException </item>+      <item> Connection </item>+      <item> ConnectionEvent </item>+      <item> ConnectionEventListener </item>+      <item> ConnectionPendingException </item>+      <item> ConnectionPoolDataSource </item>+      <item> ConsoleHandler </item>+      <item> Constructor </item>+      <item> Container </item>+      <item> ContainerAdapter </item>+      <item> ContainerEvent </item>+      <item> ContainerListener </item>+      <item> ContainerOrderFocusTraversalPolicy </item>+      <item> ContentHandler </item>+      <item> ContentHandler </item>+      <item> ContentHandlerFactory </item>+      <item> ContentModel </item>+      <item> Context </item>+      <item> Context </item>+      <item> ContextList </item>+      <item> ContextNotEmptyException </item>+      <item> ContextualRenderedImageFactory </item>+      <item> Control </item>+      <item> Control </item>+      <item> Control.Type </item>+      <item> ControlFactory </item>+      <item> ControllerEventListener </item>+      <item> ConvolveOp </item>+      <item> CookieHandler </item>+      <item> CookieHolder </item>+      <item> Copies </item>+      <item> CopiesSupported </item>+      <item> CopyOnWriteArrayList </item>+      <item> CopyOnWriteArraySet </item>+      <item> CountDownLatch </item>+      <item> CounterMonitor </item>+      <item> CounterMonitorMBean </item>+      <item> CredentialException </item>+      <item> CredentialExpiredException </item>+      <item> CredentialNotFoundException </item>+      <item> CropImageFilter </item>+      <item> CubicCurve2D </item>+      <item> CubicCurve2D.Double </item>+      <item> CubicCurve2D.Float </item>+      <item> Currency </item>+      <item> Current </item>+      <item> Current </item>+      <item> Current </item>+      <item> CurrentHelper </item>+      <item> CurrentHelper </item>+      <item> CurrentHelper </item>+      <item> CurrentHolder </item>+      <item> CurrentOperations </item>+      <item> CurrentOperations </item>+      <item> CurrentOperations </item>+      <item> Cursor </item>+      <item> CustomMarshal </item>+      <item> CustomValue </item>+      <item> Customizer </item>+      <item> CyclicBarrier </item>+      <item> DATA_CONVERSION </item>+      <item> DESKeySpec </item>+      <item> DESedeKeySpec </item>+      <item> DGC </item>+      <item> DHGenParameterSpec </item>+      <item> DHKey </item>+      <item> DHParameterSpec </item>+      <item> DHPrivateKey </item>+      <item> DHPrivateKeySpec </item>+      <item> DHPublicKey </item>+      <item> DHPublicKeySpec </item>+      <item> DISCARDING </item>+      <item> DOMConfiguration </item>+      <item> DOMError </item>+      <item> DOMErrorHandler </item>+      <item> DOMException </item>+      <item> DOMImplementation </item>+      <item> DOMImplementationLS </item>+      <item> DOMImplementationList </item>+      <item> DOMImplementationRegistry </item>+      <item> DOMImplementationSource </item>+      <item> DOMLocator </item>+      <item> DOMLocator </item>+      <item> DOMResult </item>+      <item> DOMSource </item>+      <item> DOMStringList </item>+      <item> DSAKey </item>+      <item> DSAKeyPairGenerator </item>+      <item> DSAParameterSpec </item>+      <item> DSAParams </item>+      <item> DSAPrivateKey </item>+      <item> DSAPrivateKeySpec </item>+      <item> DSAPublicKey </item>+      <item> DSAPublicKeySpec </item>+      <item> DTD </item>+      <item> DTDConstants </item>+      <item> DTDHandler </item>+      <item> DataBuffer </item>+      <item> DataBufferByte </item>+      <item> DataBufferDouble </item>+      <item> DataBufferFloat </item>+      <item> DataBufferInt </item>+      <item> DataBufferShort </item>+      <item> DataBufferUShort </item>+      <item> DataFlavor </item>+      <item> DataFormatException </item>+      <item> DataInput </item>+      <item> DataInputStream </item>+      <item> DataInputStream </item>+      <item> DataLine </item>+      <item> DataLine.Info </item>+      <item> DataOutput </item>+      <item> DataOutputStream </item>+      <item> DataOutputStream </item>+      <item> DataSource </item>+      <item> DataTruncation </item>+      <item> DatabaseMetaData </item>+      <item> DatagramChannel </item>+      <item> DatagramPacket </item>+      <item> DatagramSocket </item>+      <item> DatagramSocketImpl </item>+      <item> DatagramSocketImplFactory </item>+      <item> DatatypeConfigurationException </item>+      <item> DatatypeConstants </item>+      <item> DatatypeConstants.Field </item>+      <item> DatatypeFactory </item>+      <item> Date </item>+      <item> Date </item>+      <item> DateFormat </item>+      <item> DateFormat.Field </item>+      <item> DateFormatSymbols </item>+      <item> DateFormatter </item>+      <item> DateTimeAtCompleted </item>+      <item> DateTimeAtCreation </item>+      <item> DateTimeAtProcessing </item>+      <item> DateTimeSyntax </item>+      <item> DebugGraphics </item>+      <item> DecimalFormat </item>+      <item> DecimalFormatSymbols </item>+      <item> DeclHandler </item>+      <item> DefaultBoundedRangeModel </item>+      <item> DefaultButtonModel </item>+      <item> DefaultCaret </item>+      <item> DefaultCellEditor </item>+      <item> DefaultColorSelectionModel </item>+      <item> DefaultComboBoxModel </item>+      <item> DefaultDesktopManager </item>+      <item> DefaultEditorKit </item>+      <item> DefaultEditorKit.BeepAction </item>+      <item> DefaultEditorKit.CopyAction </item>+      <item> DefaultEditorKit.CutAction </item>+      <item> DefaultEditorKit.DefaultKeyTypedAction </item>+      <item> DefaultEditorKit.InsertBreakAction </item>+      <item> DefaultEditorKit.InsertContentAction </item>+      <item> DefaultEditorKit.InsertTabAction </item>+      <item> DefaultEditorKit.PasteAction </item>+      <item> DefaultFocusManager </item>+      <item> DefaultFocusTraversalPolicy </item>+      <item> DefaultFormatter </item>+      <item> DefaultFormatterFactory </item>+      <item> DefaultHandler </item>+      <item> DefaultHandler2 </item>+      <item> DefaultHighlighter </item>+      <item> DefaultHighlighter.DefaultHighlightPainter </item>+      <item> DefaultKeyboardFocusManager </item>+      <item> DefaultListCellRenderer </item>+      <item> DefaultListCellRenderer.UIResource </item>+      <item> DefaultListModel </item>+      <item> DefaultListSelectionModel </item>+      <item> DefaultLoaderRepository </item>+      <item> DefaultLoaderRepository </item>+      <item> DefaultMenuLayout </item>+      <item> DefaultMetalTheme </item>+      <item> DefaultMutableTreeNode </item>+      <item> DefaultPersistenceDelegate </item>+      <item> DefaultSingleSelectionModel </item>+      <item> DefaultStyledDocument </item>+      <item> DefaultStyledDocument.AttributeUndoableEdit </item>+      <item> DefaultStyledDocument.ElementSpec </item>+      <item> DefaultTableCellRenderer </item>+      <item> DefaultTableCellRenderer.UIResource </item>+      <item> DefaultTableColumnModel </item>+      <item> DefaultTableModel </item>+      <item> DefaultTextUI </item>+      <item> DefaultTreeCellEditor </item>+      <item> DefaultTreeCellRenderer </item>+      <item> DefaultTreeModel </item>+      <item> DefaultTreeSelectionModel </item>+      <item> DefinitionKind </item>+      <item> DefinitionKindHelper </item>+      <item> Deflater </item>+      <item> DeflaterOutputStream </item>+      <item> DelayQueue </item>+      <item> Delayed </item>+      <item> Delegate </item>+      <item> Delegate </item>+      <item> Delegate </item>+      <item> DelegationPermission </item>+      <item> Deprecated </item>+      <item> Descriptor </item>+      <item> DescriptorAccess </item>+      <item> DescriptorSupport </item>+      <item> DesignMode </item>+      <item> DesktopIconUI </item>+      <item> DesktopManager </item>+      <item> DesktopPaneUI </item>+      <item> Destination </item>+      <item> DestroyFailedException </item>+      <item> Destroyable </item>+      <item> Dialog </item>+      <item> Dictionary </item>+      <item> DigestException </item>+      <item> DigestInputStream </item>+      <item> DigestOutputStream </item>+      <item> Dimension </item>+      <item> Dimension2D </item>+      <item> DimensionUIResource </item>+      <item> DirContext </item>+      <item> DirObjectFactory </item>+      <item> DirStateFactory </item>+      <item> DirStateFactory.Result </item>+      <item> DirectColorModel </item>+      <item> DirectoryManager </item>+      <item> DisplayMode </item>+      <item> DnDConstants </item>+      <item> Doc </item>+      <item> DocAttribute </item>+      <item> DocAttributeSet </item>+      <item> DocFlavor </item>+      <item> DocFlavor.BYTE_ARRAY </item>+      <item> DocFlavor.CHAR_ARRAY </item>+      <item> DocFlavor.INPUT_STREAM </item>+      <item> DocFlavor.READER </item>+      <item> DocFlavor.SERVICE_FORMATTED </item>+      <item> DocFlavor.STRING </item>+      <item> DocFlavor.URL </item>+      <item> DocPrintJob </item>+      <item> Document </item>+      <item> Document </item>+      <item> DocumentBuilder </item>+      <item> DocumentBuilderFactory </item>+      <item> DocumentEvent </item>+      <item> DocumentEvent.ElementChange </item>+      <item> DocumentEvent.EventType </item>+      <item> DocumentFilter </item>+      <item> DocumentFilter.FilterBypass </item>+      <item> DocumentFragment </item>+      <item> DocumentHandler </item>+      <item> DocumentListener </item>+      <item> DocumentName </item>+      <item> DocumentParser </item>+      <item> DocumentType </item>+      <item> Documented </item>+      <item> DomainCombiner </item>+      <item> DomainManager </item>+      <item> DomainManagerOperations </item>+      <item> Double </item>+      <item> DoubleBuffer </item>+      <item> DoubleHolder </item>+      <item> DoubleSeqHelper </item>+      <item> DoubleSeqHolder </item>+      <item> DragGestureEvent </item>+      <item> DragGestureListener </item>+      <item> DragGestureRecognizer </item>+      <item> DragSource </item>+      <item> DragSourceAdapter </item>+      <item> DragSourceContext </item>+      <item> DragSourceDragEvent </item>+      <item> DragSourceDropEvent </item>+      <item> DragSourceEvent </item>+      <item> DragSourceListener </item>+      <item> DragSourceMotionListener </item>+      <item> Driver </item>+      <item> DriverManager </item>+      <item> DriverPropertyInfo </item>+      <item> DropTarget </item>+      <item> DropTarget.DropTargetAutoScroller </item>+      <item> DropTargetAdapter </item>+      <item> DropTargetContext </item>+      <item> DropTargetDragEvent </item>+      <item> DropTargetDropEvent </item>+      <item> DropTargetEvent </item>+      <item> DropTargetListener </item>+      <item> DuplicateFormatFlagsException </item>+      <item> DuplicateName </item>+      <item> DuplicateNameHelper </item>+      <item> Duration </item>+      <item> DynAny </item>+      <item> DynAny </item>+      <item> DynAnyFactory </item>+      <item> DynAnyFactoryHelper </item>+      <item> DynAnyFactoryOperations </item>+      <item> DynAnyHelper </item>+      <item> DynAnyOperations </item>+      <item> DynAnySeqHelper </item>+      <item> DynArray </item>+      <item> DynArray </item>+      <item> DynArrayHelper </item>+      <item> DynArrayOperations </item>+      <item> DynEnum </item>+      <item> DynEnum </item>+      <item> DynEnumHelper </item>+      <item> DynEnumOperations </item>+      <item> DynFixed </item>+      <item> DynFixed </item>+      <item> DynFixedHelper </item>+      <item> DynFixedOperations </item>+      <item> DynSequence </item>+      <item> DynSequence </item>+      <item> DynSequenceHelper </item>+      <item> DynSequenceOperations </item>+      <item> DynStruct </item>+      <item> DynStruct </item>+      <item> DynStructHelper </item>+      <item> DynStructOperations </item>+      <item> DynUnion </item>+      <item> DynUnion </item>+      <item> DynUnionHelper </item>+      <item> DynUnionOperations </item>+      <item> DynValue </item>+      <item> DynValue </item>+      <item> DynValueBox </item>+      <item> DynValueBoxOperations </item>+      <item> DynValueCommon </item>+      <item> DynValueCommonOperations </item>+      <item> DynValueHelper </item>+      <item> DynValueOperations </item>+      <item> DynamicImplementation </item>+      <item> DynamicImplementation </item>+      <item> DynamicMBean </item>+      <item> ECField </item>+      <item> ECFieldF2m </item>+      <item> ECFieldFp </item>+      <item> ECGenParameterSpec </item>+      <item> ECKey </item>+      <item> ECParameterSpec </item>+      <item> ECPoint </item>+      <item> ECPrivateKey </item>+      <item> ECPrivateKeySpec </item>+      <item> ECPublicKey </item>+      <item> ECPublicKeySpec </item>+      <item> ENCODING_CDR_ENCAPS </item>+      <item> EOFException </item>+      <item> EditorKit </item>+      <item> Element </item>+      <item> Element </item>+      <item> Element </item>+      <item> ElementIterator </item>+      <item> ElementType </item>+      <item> Ellipse2D </item>+      <item> Ellipse2D.Double </item>+      <item> Ellipse2D.Float </item>+      <item> EllipticCurve </item>+      <item> EmptyBorder </item>+      <item> EmptyStackException </item>+      <item> EncodedKeySpec </item>+      <item> Encoder </item>+      <item> Encoding </item>+      <item> EncryptedPrivateKeyInfo </item>+      <item> Entity </item>+      <item> Entity </item>+      <item> EntityReference </item>+      <item> EntityResolver </item>+      <item> EntityResolver2 </item>+      <item> Enum </item>+      <item> EnumConstantNotPresentException </item>+      <item> EnumControl </item>+      <item> EnumControl.Type </item>+      <item> EnumMap </item>+      <item> EnumSet </item>+      <item> EnumSyntax </item>+      <item> Enumeration </item>+      <item> Environment </item>+      <item> Error </item>+      <item> ErrorHandler </item>+      <item> ErrorListener </item>+      <item> ErrorManager </item>+      <item> EtchedBorder </item>+      <item> Event </item>+      <item> EventContext </item>+      <item> EventDirContext </item>+      <item> EventHandler </item>+      <item> EventListener </item>+      <item> EventListenerList </item>+      <item> EventListenerProxy </item>+      <item> EventObject </item>+      <item> EventQueue </item>+      <item> EventSetDescriptor </item>+      <item> Exception </item>+      <item> ExceptionDetailMessage </item>+      <item> ExceptionInInitializerError </item>+      <item> ExceptionList </item>+      <item> ExceptionListener </item>+      <item> Exchanger </item>+      <item> ExecutionException </item>+      <item> Executor </item>+      <item> ExecutorCompletionService </item>+      <item> ExecutorService </item>+      <item> Executors </item>+      <item> ExemptionMechanism </item>+      <item> ExemptionMechanismException </item>+      <item> ExemptionMechanismSpi </item>+      <item> ExpandVetoException </item>+      <item> ExportException </item>+      <item> Expression </item>+      <item> ExtendedRequest </item>+      <item> ExtendedResponse </item>+      <item> Externalizable </item>+      <item> FREE_MEM </item>+      <item> FactoryConfigurationError </item>+      <item> FailedLoginException </item>+      <item> FeatureDescriptor </item>+      <item> Fidelity </item>+      <item> Field </item>+      <item> FieldNameHelper </item>+      <item> FieldNameHelper </item>+      <item> FieldPosition </item>+      <item> FieldView </item>+      <item> File </item>+      <item> FileCacheImageInputStream </item>+      <item> FileCacheImageOutputStream </item>+      <item> FileChannel </item>+      <item> FileChannel.MapMode </item>+      <item> FileChooserUI </item>+      <item> FileDescriptor </item>+      <item> FileDialog </item>+      <item> FileFilter </item>+      <item> FileFilter </item>+      <item> FileHandler </item>+      <item> FileImageInputStream </item>+      <item> FileImageOutputStream </item>+      <item> FileInputStream </item>+      <item> FileLock </item>+      <item> FileLockInterruptionException </item>+      <item> FileNameMap </item>+      <item> FileNotFoundException </item>+      <item> FileOutputStream </item>+      <item> FilePermission </item>+      <item> FileReader </item>+      <item> FileSystemView </item>+      <item> FileView </item>+      <item> FileWriter </item>+      <item> FilenameFilter </item>+      <item> Filter </item>+      <item> FilterInputStream </item>+      <item> FilterOutputStream </item>+      <item> FilterReader </item>+      <item> FilterWriter </item>+      <item> FilteredImageSource </item>+      <item> FilteredRowSet </item>+      <item> Finishings </item>+      <item> FixedHeightLayoutCache </item>+      <item> FixedHolder </item>+      <item> FlatteningPathIterator </item>+      <item> FlavorEvent </item>+      <item> FlavorException </item>+      <item> FlavorListener </item>+      <item> FlavorMap </item>+      <item> FlavorTable </item>+      <item> Float </item>+      <item> FloatBuffer </item>+      <item> FloatControl </item>+      <item> FloatControl.Type </item>+      <item> FloatHolder </item>+      <item> FloatSeqHelper </item>+      <item> FloatSeqHolder </item>+      <item> FlowLayout </item>+      <item> FlowView </item>+      <item> FlowView.FlowStrategy </item>+      <item> Flushable </item>+      <item> FocusAdapter </item>+      <item> FocusEvent </item>+      <item> FocusListener </item>+      <item> FocusManager </item>+      <item> FocusTraversalPolicy </item>+      <item> Font </item>+      <item> FontFormatException </item>+      <item> FontMetrics </item>+      <item> FontRenderContext </item>+      <item> FontUIResource </item>+      <item> FormSubmitEvent </item>+      <item> FormSubmitEvent.MethodType </item>+      <item> FormView </item>+      <item> Format </item>+      <item> Format.Field </item>+      <item> FormatConversionProvider </item>+      <item> FormatFlagsConversionMismatchException </item>+      <item> FormatMismatch </item>+      <item> FormatMismatchHelper </item>+      <item> Formattable </item>+      <item> FormattableFlags </item>+      <item> Formatter </item>+      <item> Formatter </item>+      <item> FormatterClosedException </item>+      <item> ForwardRequest </item>+      <item> ForwardRequest </item>+      <item> ForwardRequestHelper </item>+      <item> ForwardRequestHelper </item>+      <item> Frame </item>+      <item> Future </item>+      <item> FutureTask </item>+      <item> GSSContext </item>+      <item> GSSCredential </item>+      <item> GSSException </item>+      <item> GSSManager </item>+      <item> GSSName </item>+      <item> GZIPInputStream </item>+      <item> GZIPOutputStream </item>+      <item> GapContent </item>+      <item> GarbageCollectorMXBean </item>+      <item> GatheringByteChannel </item>+      <item> GaugeMonitor </item>+      <item> GaugeMonitorMBean </item>+      <item> GeneralPath </item>+      <item> GeneralSecurityException </item>+      <item> GenericArrayType </item>+      <item> GenericDeclaration </item>+      <item> GenericSignatureFormatError </item>+      <item> GlyphJustificationInfo </item>+      <item> GlyphMetrics </item>+      <item> GlyphVector </item>+      <item> GlyphView </item>+      <item> GlyphView.GlyphPainter </item>+      <item> GradientPaint </item>+      <item> GraphicAttribute </item>+      <item> Graphics </item>+      <item> Graphics2D </item>+      <item> GraphicsConfigTemplate </item>+      <item> GraphicsConfiguration </item>+      <item> GraphicsDevice </item>+      <item> GraphicsEnvironment </item>+      <item> GrayFilter </item>+      <item> GregorianCalendar </item>+      <item> GridBagConstraints </item>+      <item> GridBagLayout </item>+      <item> GridLayout </item>+      <item> Group </item>+      <item> Guard </item>+      <item> GuardedObject </item>+      <item> HOLDING </item>+      <item> HTML </item>+      <item> HTML.Attribute </item>+      <item> HTML.Tag </item>+      <item> HTML.UnknownTag </item>+      <item> HTMLDocument </item>+      <item> HTMLDocument.Iterator </item>+      <item> HTMLEditorKit </item>+      <item> HTMLEditorKit.HTMLFactory </item>+      <item> HTMLEditorKit.HTMLTextAction </item>+      <item> HTMLEditorKit.InsertHTMLTextAction </item>+      <item> HTMLEditorKit.LinkController </item>+      <item> HTMLEditorKit.Parser </item>+      <item> HTMLEditorKit.ParserCallback </item>+      <item> HTMLFrameHyperlinkEvent </item>+      <item> HTMLWriter </item>+      <item> Handler </item>+      <item> HandlerBase </item>+      <item> HandshakeCompletedEvent </item>+      <item> HandshakeCompletedListener </item>+      <item> HasControls </item>+      <item> HashAttributeSet </item>+      <item> HashDocAttributeSet </item>+      <item> HashMap </item>+      <item> HashPrintJobAttributeSet </item>+      <item> HashPrintRequestAttributeSet </item>+      <item> HashPrintServiceAttributeSet </item>+      <item> HashSet </item>+      <item> Hashtable </item>+      <item> HeadlessException </item>+      <item> HierarchyBoundsAdapter </item>+      <item> HierarchyBoundsListener </item>+      <item> HierarchyEvent </item>+      <item> HierarchyListener </item>+      <item> Highlighter </item>+      <item> Highlighter.Highlight </item>+      <item> Highlighter.HighlightPainter </item>+      <item> HostnameVerifier </item>+      <item> HttpRetryException </item>+      <item> HttpURLConnection </item>+      <item> HttpsURLConnection </item>+      <item> HyperlinkEvent </item>+      <item> HyperlinkEvent.EventType </item>+      <item> HyperlinkListener </item>+      <item> ICC_ColorSpace </item>+      <item> ICC_Profile </item>+      <item> ICC_ProfileGray </item>+      <item> ICC_ProfileRGB </item>+      <item> IDLEntity </item>+      <item> IDLType </item>+      <item> IDLTypeHelper </item>+      <item> IDLTypeOperations </item>+      <item> ID_ASSIGNMENT_POLICY_ID </item>+      <item> ID_UNIQUENESS_POLICY_ID </item>+      <item> IIOByteBuffer </item>+      <item> IIOException </item>+      <item> IIOImage </item>+      <item> IIOInvalidTreeException </item>+      <item> IIOMetadata </item>+      <item> IIOMetadataController </item>+      <item> IIOMetadataFormat </item>+      <item> IIOMetadataFormatImpl </item>+      <item> IIOMetadataNode </item>+      <item> IIOParam </item>+      <item> IIOParamController </item>+      <item> IIOReadProgressListener </item>+      <item> IIOReadUpdateListener </item>+      <item> IIOReadWarningListener </item>+      <item> IIORegistry </item>+      <item> IIOServiceProvider </item>+      <item> IIOWriteProgressListener </item>+      <item> IIOWriteWarningListener </item>+      <item> IMPLICIT_ACTIVATION_POLICY_ID </item>+      <item> IMP_LIMIT </item>+      <item> INACTIVE </item>+      <item> INITIALIZE </item>+      <item> INTERNAL </item>+      <item> INTF_REPOS </item>+      <item> INVALID_ACTIVITY </item>+      <item> INVALID_TRANSACTION </item>+      <item> INV_FLAG </item>+      <item> INV_IDENT </item>+      <item> INV_OBJREF </item>+      <item> INV_POLICY </item>+      <item> IOException </item>+      <item> IOR </item>+      <item> IORHelper </item>+      <item> IORHolder </item>+      <item> IORInfo </item>+      <item> IORInfoOperations </item>+      <item> IORInterceptor </item>+      <item> IORInterceptorOperations </item>+      <item> IORInterceptor_3_0 </item>+      <item> IORInterceptor_3_0Helper </item>+      <item> IORInterceptor_3_0Holder </item>+      <item> IORInterceptor_3_0Operations </item>+      <item> IRObject </item>+      <item> IRObjectOperations </item>+      <item> Icon </item>+      <item> IconUIResource </item>+      <item> IconView </item>+      <item> IdAssignmentPolicy </item>+      <item> IdAssignmentPolicyOperations </item>+      <item> IdAssignmentPolicyValue </item>+      <item> IdUniquenessPolicy </item>+      <item> IdUniquenessPolicyOperations </item>+      <item> IdUniquenessPolicyValue </item>+      <item> IdentifierHelper </item>+      <item> Identity </item>+      <item> IdentityHashMap </item>+      <item> IdentityScope </item>+      <item> IllegalAccessError </item>+      <item> IllegalAccessException </item>+      <item> IllegalArgumentException </item>+      <item> IllegalBlockSizeException </item>+      <item> IllegalBlockingModeException </item>+      <item> IllegalCharsetNameException </item>+      <item> IllegalClassFormatException </item>+      <item> IllegalComponentStateException </item>+      <item> IllegalFormatCodePointException </item>+      <item> IllegalFormatConversionException </item>+      <item> IllegalFormatException </item>+      <item> IllegalFormatFlagsException </item>+      <item> IllegalFormatPrecisionException </item>+      <item> IllegalFormatWidthException </item>+      <item> IllegalMonitorStateException </item>+      <item> IllegalPathStateException </item>+      <item> IllegalSelectorException </item>+      <item> IllegalStateException </item>+      <item> IllegalThreadStateException </item>+      <item> Image </item>+      <item> ImageCapabilities </item>+      <item> ImageConsumer </item>+      <item> ImageFilter </item>+      <item> ImageGraphicAttribute </item>+      <item> ImageIO </item>+      <item> ImageIcon </item>+      <item> ImageInputStream </item>+      <item> ImageInputStreamImpl </item>+      <item> ImageInputStreamSpi </item>+      <item> ImageObserver </item>+      <item> ImageOutputStream </item>+      <item> ImageOutputStreamImpl </item>+      <item> ImageOutputStreamSpi </item>+      <item> ImageProducer </item>+      <item> ImageReadParam </item>+      <item> ImageReader </item>+      <item> ImageReaderSpi </item>+      <item> ImageReaderWriterSpi </item>+      <item> ImageTranscoder </item>+      <item> ImageTranscoderSpi </item>+      <item> ImageTypeSpecifier </item>+      <item> ImageView </item>+      <item> ImageWriteParam </item>+      <item> ImageWriter </item>+      <item> ImageWriterSpi </item>+      <item> ImagingOpException </item>+      <item> ImplicitActivationPolicy </item>+      <item> ImplicitActivationPolicyOperations </item>+      <item> ImplicitActivationPolicyValue </item>+      <item> IncompatibleClassChangeError </item>+      <item> IncompleteAnnotationException </item>+      <item> InconsistentTypeCode </item>+      <item> InconsistentTypeCode </item>+      <item> InconsistentTypeCodeHelper </item>+      <item> IndexColorModel </item>+      <item> IndexOutOfBoundsException </item>+      <item> IndexedPropertyChangeEvent </item>+      <item> IndexedPropertyDescriptor </item>+      <item> IndirectionException </item>+      <item> Inet4Address </item>+      <item> Inet6Address </item>+      <item> InetAddress </item>+      <item> InetSocketAddress </item>+      <item> Inflater </item>+      <item> InflaterInputStream </item>+      <item> InheritableThreadLocal </item>+      <item> Inherited </item>+      <item> InitialContext </item>+      <item> InitialContextFactory </item>+      <item> InitialContextFactoryBuilder </item>+      <item> InitialDirContext </item>+      <item> InitialLdapContext </item>+      <item> InlineView </item>+      <item> InputContext </item>+      <item> InputEvent </item>+      <item> InputMap </item>+      <item> InputMapUIResource </item>+      <item> InputMethod </item>+      <item> InputMethodContext </item>+      <item> InputMethodDescriptor </item>+      <item> InputMethodEvent </item>+      <item> InputMethodHighlight </item>+      <item> InputMethodListener </item>+      <item> InputMethodRequests </item>+      <item> InputMismatchException </item>+      <item> InputSource </item>+      <item> InputStream </item>+      <item> InputStream </item>+      <item> InputStream </item>+      <item> InputStreamReader </item>+      <item> InputSubset </item>+      <item> InputVerifier </item>+      <item> Insets </item>+      <item> InsetsUIResource </item>+      <item> InstanceAlreadyExistsException </item>+      <item> InstanceNotFoundException </item>+      <item> InstantiationError </item>+      <item> InstantiationException </item>+      <item> Instrument </item>+      <item> Instrumentation </item>+      <item> InsufficientResourcesException </item>+      <item> IntBuffer </item>+      <item> IntHolder </item>+      <item> Integer </item>+      <item> IntegerSyntax </item>+      <item> Interceptor </item>+      <item> InterceptorOperations </item>+      <item> InternalError </item>+      <item> InternalFrameAdapter </item>+      <item> InternalFrameEvent </item>+      <item> InternalFrameFocusTraversalPolicy </item>+      <item> InternalFrameListener </item>+      <item> InternalFrameUI </item>+      <item> InternationalFormatter </item>+      <item> InterruptedException </item>+      <item> InterruptedIOException </item>+      <item> InterruptedNamingException </item>+      <item> InterruptibleChannel </item>+      <item> IntrospectionException </item>+      <item> IntrospectionException </item>+      <item> Introspector </item>+      <item> Invalid </item>+      <item> InvalidActivityException </item>+      <item> InvalidAddress </item>+      <item> InvalidAddressHelper </item>+      <item> InvalidAddressHolder </item>+      <item> InvalidAlgorithmParameterException </item>+      <item> InvalidApplicationException </item>+      <item> InvalidAttributeIdentifierException </item>+      <item> InvalidAttributeValueException </item>+      <item> InvalidAttributeValueException </item>+      <item> InvalidAttributesException </item>+      <item> InvalidClassException </item>+      <item> InvalidDnDOperationException </item>+      <item> InvalidKeyException </item>+      <item> InvalidKeyException </item>+      <item> InvalidKeySpecException </item>+      <item> InvalidMarkException </item>+      <item> InvalidMidiDataException </item>+      <item> InvalidName </item>+      <item> InvalidName </item>+      <item> InvalidName </item>+      <item> InvalidNameException </item>+      <item> InvalidNameHelper </item>+      <item> InvalidNameHelper </item>+      <item> InvalidNameHolder </item>+      <item> InvalidObjectException </item>+      <item> InvalidOpenTypeException </item>+      <item> InvalidParameterException </item>+      <item> InvalidParameterSpecException </item>+      <item> InvalidPolicy </item>+      <item> InvalidPolicyHelper </item>+      <item> InvalidPreferencesFormatException </item>+      <item> InvalidPropertiesFormatException </item>+      <item> InvalidRelationIdException </item>+      <item> InvalidRelationServiceException </item>+      <item> InvalidRelationTypeException </item>+      <item> InvalidRoleInfoException </item>+      <item> InvalidRoleValueException </item>+      <item> InvalidSearchControlsException </item>+      <item> InvalidSearchFilterException </item>+      <item> InvalidSeq </item>+      <item> InvalidSlot </item>+      <item> InvalidSlotHelper </item>+      <item> InvalidTargetObjectTypeException </item>+      <item> InvalidTransactionException </item>+      <item> InvalidTypeForEncoding </item>+      <item> InvalidTypeForEncodingHelper </item>+      <item> InvalidValue </item>+      <item> InvalidValue </item>+      <item> InvalidValueHelper </item>+      <item> InvocationEvent </item>+      <item> InvocationHandler </item>+      <item> InvocationTargetException </item>+      <item> InvokeHandler </item>+      <item> IstringHelper </item>+      <item> ItemEvent </item>+      <item> ItemListener </item>+      <item> ItemSelectable </item>+      <item> Iterable </item>+      <item> Iterator </item>+      <item> IvParameterSpec </item>+      <item> JApplet </item>+      <item> JButton </item>+      <item> JCheckBox </item>+      <item> JCheckBoxMenuItem </item>+      <item> JColorChooser </item>+      <item> JComboBox </item>+      <item> JComboBox.KeySelectionManager </item>+      <item> JComponent </item>+      <item> JDesktopPane </item>+      <item> JDialog </item>+      <item> JEditorPane </item>+      <item> JFileChooser </item>+      <item> JFormattedTextField </item>+      <item> JFormattedTextField.AbstractFormatter </item>+      <item> JFormattedTextField.AbstractFormatterFactory </item>+      <item> JFrame </item>+      <item> JInternalFrame </item>+      <item> JInternalFrame.JDesktopIcon </item>+      <item> JLabel </item>+      <item> JLayeredPane </item>+      <item> JList </item>+      <item> JMException </item>+      <item> JMRuntimeException </item>+      <item> JMXAuthenticator </item>+      <item> JMXConnectionNotification </item>+      <item> JMXConnector </item>+      <item> JMXConnectorFactory </item>+      <item> JMXConnectorProvider </item>+      <item> JMXConnectorServer </item>+      <item> JMXConnectorServerFactory </item>+      <item> JMXConnectorServerMBean </item>+      <item> JMXConnectorServerProvider </item>+      <item> JMXPrincipal </item>+      <item> JMXProviderException </item>+      <item> JMXServerErrorException </item>+      <item> JMXServiceURL </item>+      <item> JMenu </item>+      <item> JMenuBar </item>+      <item> JMenuItem </item>+      <item> JOptionPane </item>+      <item> JPEGHuffmanTable </item>+      <item> JPEGImageReadParam </item>+      <item> JPEGImageWriteParam </item>+      <item> JPEGQTable </item>+      <item> JPanel </item>+      <item> JPasswordField </item>+      <item> JPopupMenu </item>+      <item> JPopupMenu.Separator </item>+      <item> JProgressBar </item>+      <item> JRadioButton </item>+      <item> JRadioButtonMenuItem </item>+      <item> JRootPane </item>+      <item> JScrollBar </item>+      <item> JScrollPane </item>+      <item> JSeparator </item>+      <item> JSlider </item>+      <item> JSpinner </item>+      <item> JSpinner.DateEditor </item>+      <item> JSpinner.DefaultEditor </item>+      <item> JSpinner.ListEditor </item>+      <item> JSpinner.NumberEditor </item>+      <item> JSplitPane </item>+      <item> JTabbedPane </item>+      <item> JTable </item>+      <item> JTable.PrintMode </item>+      <item> JTableHeader </item>+      <item> JTextArea </item>+      <item> JTextComponent </item>+      <item> JTextComponent.KeyBinding </item>+      <item> JTextField </item>+      <item> JTextPane </item>+      <item> JToggleButton </item>+      <item> JToggleButton.ToggleButtonModel </item>+      <item> JToolBar </item>+      <item> JToolBar.Separator </item>+      <item> JToolTip </item>+      <item> JTree </item>+      <item> JTree.DynamicUtilTreeNode </item>+      <item> JTree.EmptySelectionModel </item>+      <item> JViewport </item>+      <item> JWindow </item>+      <item> JarEntry </item>+      <item> JarException </item>+      <item> JarFile </item>+      <item> JarInputStream </item>+      <item> JarOutputStream </item>+      <item> JarURLConnection </item>+      <item> JdbcRowSet </item>+      <item> JobAttributes </item>+      <item> JobAttributes.DefaultSelectionType </item>+      <item> JobAttributes.DestinationType </item>+      <item> JobAttributes.DialogType </item>+      <item> JobAttributes.MultipleDocumentHandlingType </item>+      <item> JobAttributes.SidesType </item>+      <item> JobHoldUntil </item>+      <item> JobImpressions </item>+      <item> JobImpressionsCompleted </item>+      <item> JobImpressionsSupported </item>+      <item> JobKOctets </item>+      <item> JobKOctetsProcessed </item>+      <item> JobKOctetsSupported </item>+      <item> JobMediaSheets </item>+      <item> JobMediaSheetsCompleted </item>+      <item> JobMediaSheetsSupported </item>+      <item> JobMessageFromOperator </item>+      <item> JobName </item>+      <item> JobOriginatingUserName </item>+      <item> JobPriority </item>+      <item> JobPrioritySupported </item>+      <item> JobSheets </item>+      <item> JobState </item>+      <item> JobStateReason </item>+      <item> JobStateReasons </item>+      <item> JoinRowSet </item>+      <item> Joinable </item>+      <item> KerberosKey </item>+      <item> KerberosPrincipal </item>+      <item> KerberosTicket </item>+      <item> Kernel </item>+      <item> Key </item>+      <item> KeyAdapter </item>+      <item> KeyAgreement </item>+      <item> KeyAgreementSpi </item>+      <item> KeyAlreadyExistsException </item>+      <item> KeyEvent </item>+      <item> KeyEventDispatcher </item>+      <item> KeyEventPostProcessor </item>+      <item> KeyException </item>+      <item> KeyFactory </item>+      <item> KeyFactorySpi </item>+      <item> KeyGenerator </item>+      <item> KeyGeneratorSpi </item>+      <item> KeyListener </item>+      <item> KeyManagementException </item>+      <item> KeyManager </item>+      <item> KeyManagerFactory </item>+      <item> KeyManagerFactorySpi </item>+      <item> KeyPair </item>+      <item> KeyPairGenerator </item>+      <item> KeyPairGeneratorSpi </item>+      <item> KeyRep </item>+      <item> KeyRep.Type </item>+      <item> KeySpec </item>+      <item> KeyStore </item>+      <item> KeyStore.Builder </item>+      <item> KeyStore.CallbackHandlerProtection </item>+      <item> KeyStore.Entry </item>+      <item> KeyStore.LoadStoreParameter </item>+      <item> KeyStore.PasswordProtection </item>+      <item> KeyStore.PrivateKeyEntry </item>+      <item> KeyStore.ProtectionParameter </item>+      <item> KeyStore.SecretKeyEntry </item>+      <item> KeyStore.TrustedCertificateEntry </item>+      <item> KeyStoreBuilderParameters </item>+      <item> KeyStoreException </item>+      <item> KeyStoreSpi </item>+      <item> KeyStroke </item>+      <item> KeyboardFocusManager </item>+      <item> Keymap </item>+      <item> LDAPCertStoreParameters </item>+      <item> LIFESPAN_POLICY_ID </item>+      <item> LOCATION_FORWARD </item>+      <item> LSException </item>+      <item> LSInput </item>+      <item> LSLoadEvent </item>+      <item> LSOutput </item>+      <item> LSParser </item>+      <item> LSParserFilter </item>+      <item> LSProgressEvent </item>+      <item> LSResourceResolver </item>+      <item> LSSerializer </item>+      <item> LSSerializerFilter </item>+      <item> Label </item>+      <item> LabelUI </item>+      <item> LabelView </item>+      <item> LanguageCallback </item>+      <item> LastOwnerException </item>+      <item> LayeredHighlighter </item>+      <item> LayeredHighlighter.LayerPainter </item>+      <item> LayoutFocusTraversalPolicy </item>+      <item> LayoutManager </item>+      <item> LayoutManager2 </item>+      <item> LayoutQueue </item>+      <item> LdapContext </item>+      <item> LdapName </item>+      <item> LdapReferralException </item>+      <item> Lease </item>+      <item> Level </item>+      <item> LexicalHandler </item>+      <item> LifespanPolicy </item>+      <item> LifespanPolicyOperations </item>+      <item> LifespanPolicyValue </item>+      <item> LimitExceededException </item>+      <item> Line </item>+      <item> Line.Info </item>+      <item> Line2D </item>+      <item> Line2D.Double </item>+      <item> Line2D.Float </item>+      <item> LineBorder </item>+      <item> LineBreakMeasurer </item>+      <item> LineEvent </item>+      <item> LineEvent.Type </item>+      <item> LineListener </item>+      <item> LineMetrics </item>+      <item> LineNumberInputStream </item>+      <item> LineNumberReader </item>+      <item> LineUnavailableException </item>+      <item> LinkException </item>+      <item> LinkLoopException </item>+      <item> LinkRef </item>+      <item> LinkageError </item>+      <item> LinkedBlockingQueue </item>+      <item> LinkedHashMap </item>+      <item> LinkedHashSet </item>+      <item> LinkedList </item>+      <item> List </item>+      <item> List </item>+      <item> ListCellRenderer </item>+      <item> ListDataEvent </item>+      <item> ListDataListener </item>+      <item> ListIterator </item>+      <item> ListModel </item>+      <item> ListResourceBundle </item>+      <item> ListSelectionEvent </item>+      <item> ListSelectionListener </item>+      <item> ListSelectionModel </item>+      <item> ListUI </item>+      <item> ListView </item>+      <item> ListenerNotFoundException </item>+      <item> LoaderHandler </item>+      <item> LocalObject </item>+      <item> Locale </item>+      <item> LocateRegistry </item>+      <item> Locator </item>+      <item> Locator2 </item>+      <item> Locator2Impl </item>+      <item> LocatorImpl </item>+      <item> Lock </item>+      <item> LockSupport </item>+      <item> LogManager </item>+      <item> LogRecord </item>+      <item> LogStream </item>+      <item> Logger </item>+      <item> LoggingMXBean </item>+      <item> LoggingPermission </item>+      <item> LoginContext </item>+      <item> LoginException </item>+      <item> LoginModule </item>+      <item> Long </item>+      <item> LongBuffer </item>+      <item> LongHolder </item>+      <item> LongLongSeqHelper </item>+      <item> LongLongSeqHolder </item>+      <item> LongSeqHelper </item>+      <item> LongSeqHolder </item>+      <item> LookAndFeel </item>+      <item> LookupOp </item>+      <item> LookupTable </item>+      <item> MARSHAL </item>+      <item> MBeanAttributeInfo </item>+      <item> MBeanConstructorInfo </item>+      <item> MBeanException </item>+      <item> MBeanFeatureInfo </item>+      <item> MBeanInfo </item>+      <item> MBeanNotificationInfo </item>+      <item> MBeanOperationInfo </item>+      <item> MBeanParameterInfo </item>+      <item> MBeanPermission </item>+      <item> MBeanRegistration </item>+      <item> MBeanRegistrationException </item>+      <item> MBeanServer </item>+      <item> MBeanServerBuilder </item>+      <item> MBeanServerConnection </item>+      <item> MBeanServerDelegate </item>+      <item> MBeanServerDelegateMBean </item>+      <item> MBeanServerFactory </item>+      <item> MBeanServerForwarder </item>+      <item> MBeanServerInvocationHandler </item>+      <item> MBeanServerNotification </item>+      <item> MBeanServerNotificationFilter </item>+      <item> MBeanServerPermission </item>+      <item> MBeanTrustPermission </item>+      <item> MGF1ParameterSpec </item>+      <item> MLet </item>+      <item> MLetMBean </item>+      <item> Mac </item>+      <item> MacSpi </item>+      <item> MalformedInputException </item>+      <item> MalformedLinkException </item>+      <item> MalformedObjectNameException </item>+      <item> MalformedParameterizedTypeException </item>+      <item> MalformedURLException </item>+      <item> ManageReferralControl </item>+      <item> ManagementFactory </item>+      <item> ManagementPermission </item>+      <item> ManagerFactoryParameters </item>+      <item> Manifest </item>+      <item> Map </item>+      <item> Map.Entry </item>+      <item> MappedByteBuffer </item>+      <item> MarshalException </item>+      <item> MarshalledObject </item>+      <item> MaskFormatter </item>+      <item> MatchResult </item>+      <item> Matcher </item>+      <item> Math </item>+      <item> MathContext </item>+      <item> MatteBorder </item>+      <item> Media </item>+      <item> MediaName </item>+      <item> MediaPrintableArea </item>+      <item> MediaSize </item>+      <item> MediaSize.Engineering </item>+      <item> MediaSize.ISO </item>+      <item> MediaSize.JIS </item>+      <item> MediaSize.NA </item>+      <item> MediaSize.Other </item>+      <item> MediaSizeName </item>+      <item> MediaTracker </item>+      <item> MediaTray </item>+      <item> Member </item>+      <item> MemoryCacheImageInputStream </item>+      <item> MemoryCacheImageOutputStream </item>+      <item> MemoryHandler </item>+      <item> MemoryImageSource </item>+      <item> MemoryMXBean </item>+      <item> MemoryManagerMXBean </item>+      <item> MemoryNotificationInfo </item>+      <item> MemoryPoolMXBean </item>+      <item> MemoryType </item>+      <item> MemoryUsage </item>+      <item> Menu </item>+      <item> MenuBar </item>+      <item> MenuBarUI </item>+      <item> MenuComponent </item>+      <item> MenuContainer </item>+      <item> MenuDragMouseEvent </item>+      <item> MenuDragMouseListener </item>+      <item> MenuElement </item>+      <item> MenuEvent </item>+      <item> MenuItem </item>+      <item> MenuItemUI </item>+      <item> MenuKeyEvent </item>+      <item> MenuKeyListener </item>+      <item> MenuListener </item>+      <item> MenuSelectionManager </item>+      <item> MenuShortcut </item>+      <item> MessageDigest </item>+      <item> MessageDigestSpi </item>+      <item> MessageFormat </item>+      <item> MessageFormat.Field </item>+      <item> MessageProp </item>+      <item> MetaEventListener </item>+      <item> MetaMessage </item>+      <item> MetalBorders </item>+      <item> MetalBorders.ButtonBorder </item>+      <item> MetalBorders.Flush3DBorder </item>+      <item> MetalBorders.InternalFrameBorder </item>+      <item> MetalBorders.MenuBarBorder </item>+      <item> MetalBorders.MenuItemBorder </item>+      <item> MetalBorders.OptionDialogBorder </item>+      <item> MetalBorders.PaletteBorder </item>+      <item> MetalBorders.PopupMenuBorder </item>+      <item> MetalBorders.RolloverButtonBorder </item>+      <item> MetalBorders.ScrollPaneBorder </item>+      <item> MetalBorders.TableHeaderBorder </item>+      <item> MetalBorders.TextFieldBorder </item>+      <item> MetalBorders.ToggleButtonBorder </item>+      <item> MetalBorders.ToolBarBorder </item>+      <item> MetalButtonUI </item>+      <item> MetalCheckBoxIcon </item>+      <item> MetalCheckBoxUI </item>+      <item> MetalComboBoxButton </item>+      <item> MetalComboBoxEditor </item>+      <item> MetalComboBoxEditor.UIResource </item>+      <item> MetalComboBoxIcon </item>+      <item> MetalComboBoxUI </item>+      <item> MetalDesktopIconUI </item>+      <item> MetalFileChooserUI </item>+      <item> MetalIconFactory </item>+      <item> MetalIconFactory.FileIcon16 </item>+      <item> MetalIconFactory.FolderIcon16 </item>+      <item> MetalIconFactory.PaletteCloseIcon </item>+      <item> MetalIconFactory.TreeControlIcon </item>+      <item> MetalIconFactory.TreeFolderIcon </item>+      <item> MetalIconFactory.TreeLeafIcon </item>+      <item> MetalInternalFrameTitlePane </item>+      <item> MetalInternalFrameUI </item>+      <item> MetalLabelUI </item>+      <item> MetalLookAndFeel </item>+      <item> MetalMenuBarUI </item>+      <item> MetalPopupMenuSeparatorUI </item>+      <item> MetalProgressBarUI </item>+      <item> MetalRadioButtonUI </item>+      <item> MetalRootPaneUI </item>+      <item> MetalScrollBarUI </item>+      <item> MetalScrollButton </item>+      <item> MetalScrollPaneUI </item>+      <item> MetalSeparatorUI </item>+      <item> MetalSliderUI </item>+      <item> MetalSplitPaneUI </item>+      <item> MetalTabbedPaneUI </item>+      <item> MetalTextFieldUI </item>+      <item> MetalTheme </item>+      <item> MetalToggleButtonUI </item>+      <item> MetalToolBarUI </item>+      <item> MetalToolTipUI </item>+      <item> MetalTreeUI </item>+      <item> Method </item>+      <item> MethodDescriptor </item>+      <item> MidiChannel </item>+      <item> MidiDevice </item>+      <item> MidiDevice.Info </item>+      <item> MidiDeviceProvider </item>+      <item> MidiEvent </item>+      <item> MidiFileFormat </item>+      <item> MidiFileReader </item>+      <item> MidiFileWriter </item>+      <item> MidiMessage </item>+      <item> MidiSystem </item>+      <item> MidiUnavailableException </item>+      <item> MimeTypeParseException </item>+      <item> MinimalHTMLWriter </item>+      <item> MissingFormatArgumentException </item>+      <item> MissingFormatWidthException </item>+      <item> MissingResourceException </item>+      <item> Mixer </item>+      <item> Mixer.Info </item>+      <item> MixerProvider </item>+      <item> ModelMBean </item>+      <item> ModelMBeanAttributeInfo </item>+      <item> ModelMBeanConstructorInfo </item>+      <item> ModelMBeanInfo </item>+      <item> ModelMBeanInfoSupport </item>+      <item> ModelMBeanNotificationBroadcaster </item>+      <item> ModelMBeanNotificationInfo </item>+      <item> ModelMBeanOperationInfo </item>+      <item> ModificationItem </item>+      <item> Modifier </item>+      <item> Monitor </item>+      <item> MonitorMBean </item>+      <item> MonitorNotification </item>+      <item> MonitorSettingException </item>+      <item> MouseAdapter </item>+      <item> MouseDragGestureRecognizer </item>+      <item> MouseEvent </item>+      <item> MouseInfo </item>+      <item> MouseInputAdapter </item>+      <item> MouseInputListener </item>+      <item> MouseListener </item>+      <item> MouseMotionAdapter </item>+      <item> MouseMotionListener </item>+      <item> MouseWheelEvent </item>+      <item> MouseWheelListener </item>+      <item> MultiButtonUI </item>+      <item> MultiColorChooserUI </item>+      <item> MultiComboBoxUI </item>+      <item> MultiDesktopIconUI </item>+      <item> MultiDesktopPaneUI </item>+      <item> MultiDoc </item>+      <item> MultiDocPrintJob </item>+      <item> MultiDocPrintService </item>+      <item> MultiFileChooserUI </item>+      <item> MultiInternalFrameUI </item>+      <item> MultiLabelUI </item>+      <item> MultiListUI </item>+      <item> MultiLookAndFeel </item>+      <item> MultiMenuBarUI </item>+      <item> MultiMenuItemUI </item>+      <item> MultiOptionPaneUI </item>+      <item> MultiPanelUI </item>+      <item> MultiPixelPackedSampleModel </item>+      <item> MultiPopupMenuUI </item>+      <item> MultiProgressBarUI </item>+      <item> MultiRootPaneUI </item>+      <item> MultiScrollBarUI </item>+      <item> MultiScrollPaneUI </item>+      <item> MultiSeparatorUI </item>+      <item> MultiSliderUI </item>+      <item> MultiSpinnerUI </item>+      <item> MultiSplitPaneUI </item>+      <item> MultiTabbedPaneUI </item>+      <item> MultiTableHeaderUI </item>+      <item> MultiTableUI </item>+      <item> MultiTextUI </item>+      <item> MultiToolBarUI </item>+      <item> MultiToolTipUI </item>+      <item> MultiTreeUI </item>+      <item> MultiViewportUI </item>+      <item> MulticastSocket </item>+      <item> MultipleComponentProfileHelper </item>+      <item> MultipleComponentProfileHolder </item>+      <item> MultipleDocumentHandling </item>+      <item> MultipleMaster </item>+      <item> MutableAttributeSet </item>+      <item> MutableComboBoxModel </item>+      <item> MutableTreeNode </item>+      <item> NON_EXISTENT </item>+      <item> NO_IMPLEMENT </item>+      <item> NO_MEMORY </item>+      <item> NO_PERMISSION </item>+      <item> NO_RESOURCES </item>+      <item> NO_RESPONSE </item>+      <item> NVList </item>+      <item> Name </item>+      <item> NameAlreadyBoundException </item>+      <item> NameCallback </item>+      <item> NameClassPair </item>+      <item> NameComponent </item>+      <item> NameComponentHelper </item>+      <item> NameComponentHolder </item>+      <item> NameDynAnyPair </item>+      <item> NameDynAnyPairHelper </item>+      <item> NameDynAnyPairSeqHelper </item>+      <item> NameHelper </item>+      <item> NameHolder </item>+      <item> NameList </item>+      <item> NameNotFoundException </item>+      <item> NameParser </item>+      <item> NameValuePair </item>+      <item> NameValuePair </item>+      <item> NameValuePairHelper </item>+      <item> NameValuePairHelper </item>+      <item> NameValuePairSeqHelper </item>+      <item> NamedNodeMap </item>+      <item> NamedValue </item>+      <item> NamespaceChangeListener </item>+      <item> NamespaceContext </item>+      <item> NamespaceSupport </item>+      <item> Naming </item>+      <item> NamingContext </item>+      <item> NamingContextExt </item>+      <item> NamingContextExtHelper </item>+      <item> NamingContextExtHolder </item>+      <item> NamingContextExtOperations </item>+      <item> NamingContextExtPOA </item>+      <item> NamingContextHelper </item>+      <item> NamingContextHolder </item>+      <item> NamingContextOperations </item>+      <item> NamingContextPOA </item>+      <item> NamingEnumeration </item>+      <item> NamingEvent </item>+      <item> NamingException </item>+      <item> NamingExceptionEvent </item>+      <item> NamingListener </item>+      <item> NamingManager </item>+      <item> NamingSecurityException </item>+      <item> NavigationFilter </item>+      <item> NavigationFilter.FilterBypass </item>+      <item> NegativeArraySizeException </item>+      <item> NetPermission </item>+      <item> NetworkInterface </item>+      <item> NoClassDefFoundError </item>+      <item> NoConnectionPendingException </item>+      <item> NoContext </item>+      <item> NoContextHelper </item>+      <item> NoInitialContextException </item>+      <item> NoPermissionException </item>+      <item> NoRouteToHostException </item>+      <item> NoServant </item>+      <item> NoServantHelper </item>+      <item> NoSuchAlgorithmException </item>+      <item> NoSuchAttributeException </item>+      <item> NoSuchElementException </item>+      <item> NoSuchFieldError </item>+      <item> NoSuchFieldException </item>+      <item> NoSuchMethodError </item>+      <item> NoSuchMethodException </item>+      <item> NoSuchObjectException </item>+      <item> NoSuchPaddingException </item>+      <item> NoSuchProviderException </item>+      <item> Node </item>+      <item> NodeChangeEvent </item>+      <item> NodeChangeListener </item>+      <item> NodeList </item>+      <item> NonReadableChannelException </item>+      <item> NonWritableChannelException </item>+      <item> NoninvertibleTransformException </item>+      <item> NotActiveException </item>+      <item> NotBoundException </item>+      <item> NotCompliantMBeanException </item>+      <item> NotContextException </item>+      <item> NotEmpty </item>+      <item> NotEmptyHelper </item>+      <item> NotEmptyHolder </item>+      <item> NotFound </item>+      <item> NotFoundHelper </item>+      <item> NotFoundHolder </item>+      <item> NotFoundReason </item>+      <item> NotFoundReasonHelper </item>+      <item> NotFoundReasonHolder </item>+      <item> NotOwnerException </item>+      <item> NotSerializableException </item>+      <item> NotYetBoundException </item>+      <item> NotYetConnectedException </item>+      <item> Notation </item>+      <item> Notification </item>+      <item> NotificationBroadcaster </item>+      <item> NotificationBroadcasterSupport </item>+      <item> NotificationEmitter </item>+      <item> NotificationFilter </item>+      <item> NotificationFilterSupport </item>+      <item> NotificationListener </item>+      <item> NotificationResult </item>+      <item> NullCipher </item>+      <item> NullPointerException </item>+      <item> Number </item>+      <item> NumberFormat </item>+      <item> NumberFormat.Field </item>+      <item> NumberFormatException </item>+      <item> NumberFormatter </item>+      <item> NumberOfDocuments </item>+      <item> NumberOfInterveningJobs </item>+      <item> NumberUp </item>+      <item> NumberUpSupported </item>+      <item> NumericShaper </item>+      <item> OAEPParameterSpec </item>+      <item> OBJECT_NOT_EXIST </item>+      <item> OBJ_ADAPTER </item>+      <item> OMGVMCID </item>+      <item> ORB </item>+      <item> ORB </item>+      <item> ORBIdHelper </item>+      <item> ORBInitInfo </item>+      <item> ORBInitInfoOperations </item>+      <item> ORBInitializer </item>+      <item> ORBInitializerOperations </item>+      <item> ObjID </item>+      <item> Object </item>+      <item> Object </item>+      <item> ObjectAlreadyActive </item>+      <item> ObjectAlreadyActiveHelper </item>+      <item> ObjectChangeListener </item>+      <item> ObjectFactory </item>+      <item> ObjectFactoryBuilder </item>+      <item> ObjectHelper </item>+      <item> ObjectHolder </item>+      <item> ObjectIdHelper </item>+      <item> ObjectIdHelper </item>+      <item> ObjectImpl </item>+      <item> ObjectImpl </item>+      <item> ObjectInput </item>+      <item> ObjectInputStream </item>+      <item> ObjectInputStream.GetField </item>+      <item> ObjectInputValidation </item>+      <item> ObjectInstance </item>+      <item> ObjectName </item>+      <item> ObjectNotActive </item>+      <item> ObjectNotActiveHelper </item>+      <item> ObjectOutput </item>+      <item> ObjectOutputStream </item>+      <item> ObjectOutputStream.PutField </item>+      <item> ObjectReferenceFactory </item>+      <item> ObjectReferenceFactoryHelper </item>+      <item> ObjectReferenceFactoryHolder </item>+      <item> ObjectReferenceTemplate </item>+      <item> ObjectReferenceTemplateHelper </item>+      <item> ObjectReferenceTemplateHolder </item>+      <item> ObjectReferenceTemplateSeqHelper </item>+      <item> ObjectReferenceTemplateSeqHolder </item>+      <item> ObjectStreamClass </item>+      <item> ObjectStreamConstants </item>+      <item> ObjectStreamException </item>+      <item> ObjectStreamField </item>+      <item> ObjectView </item>+      <item> Observable </item>+      <item> Observer </item>+      <item> OceanTheme </item>+      <item> OctetSeqHelper </item>+      <item> OctetSeqHolder </item>+      <item> Oid </item>+      <item> OpenDataException </item>+      <item> OpenMBeanAttributeInfo </item>+      <item> OpenMBeanAttributeInfoSupport </item>+      <item> OpenMBeanConstructorInfo </item>+      <item> OpenMBeanConstructorInfoSupport </item>+      <item> OpenMBeanInfo </item>+      <item> OpenMBeanInfoSupport </item>+      <item> OpenMBeanOperationInfo </item>+      <item> OpenMBeanOperationInfoSupport </item>+      <item> OpenMBeanParameterInfo </item>+      <item> OpenMBeanParameterInfoSupport </item>+      <item> OpenType </item>+      <item> OpenType </item>+      <item> OperatingSystemMXBean </item>+      <item> Operation </item>+      <item> OperationNotSupportedException </item>+      <item> OperationsException </item>+      <item> Option </item>+      <item> OptionPaneUI </item>+      <item> OptionalDataException </item>+      <item> OrientationRequested </item>+      <item> OutOfMemoryError </item>+      <item> OutputDeviceAssigned </item>+      <item> OutputKeys </item>+      <item> OutputStream </item>+      <item> OutputStream </item>+      <item> OutputStream </item>+      <item> OutputStreamWriter </item>+      <item> OverlappingFileLockException </item>+      <item> OverlayLayout </item>+      <item> Override </item>+      <item> Owner </item>+      <item> PBEKey </item>+      <item> PBEKeySpec </item>+      <item> PBEParameterSpec </item>+      <item> PDLOverrideSupported </item>+      <item> PERSIST_STORE </item>+      <item> PKCS8EncodedKeySpec </item>+      <item> PKIXBuilderParameters </item>+      <item> PKIXCertPathBuilderResult </item>+      <item> PKIXCertPathChecker </item>+      <item> PKIXCertPathValidatorResult </item>+      <item> PKIXParameters </item>+      <item> POA </item>+      <item> POAHelper </item>+      <item> POAManager </item>+      <item> POAManagerOperations </item>+      <item> POAOperations </item>+      <item> PRIVATE_MEMBER </item>+      <item> PSSParameterSpec </item>+      <item> PSource </item>+      <item> PSource.PSpecified </item>+      <item> PUBLIC_MEMBER </item>+      <item> Pack200 </item>+      <item> Pack200.Packer </item>+      <item> Pack200.Unpacker </item>+      <item> Package </item>+      <item> PackedColorModel </item>+      <item> PageAttributes </item>+      <item> PageAttributes.ColorType </item>+      <item> PageAttributes.MediaType </item>+      <item> PageAttributes.OrientationRequestedType </item>+      <item> PageAttributes.OriginType </item>+      <item> PageAttributes.PrintQualityType </item>+      <item> PageFormat </item>+      <item> PageRanges </item>+      <item> Pageable </item>+      <item> PagedResultsControl </item>+      <item> PagedResultsResponseControl </item>+      <item> PagesPerMinute </item>+      <item> PagesPerMinuteColor </item>+      <item> Paint </item>+      <item> PaintContext </item>+      <item> PaintEvent </item>+      <item> Panel </item>+      <item> PanelUI </item>+      <item> Paper </item>+      <item> ParagraphView </item>+      <item> ParagraphView </item>+      <item> Parameter </item>+      <item> ParameterBlock </item>+      <item> ParameterDescriptor </item>+      <item> ParameterMetaData </item>+      <item> ParameterMode </item>+      <item> ParameterModeHelper </item>+      <item> ParameterModeHolder </item>+      <item> ParameterizedType </item>+      <item> ParseException </item>+      <item> ParsePosition </item>+      <item> Parser </item>+      <item> Parser </item>+      <item> ParserAdapter </item>+      <item> ParserConfigurationException </item>+      <item> ParserDelegator </item>+      <item> ParserFactory </item>+      <item> PartialResultException </item>+      <item> PasswordAuthentication </item>+      <item> PasswordCallback </item>+      <item> PasswordView </item>+      <item> Patch </item>+      <item> PathIterator </item>+      <item> Pattern </item>+      <item> PatternSyntaxException </item>+      <item> Permission </item>+      <item> Permission </item>+      <item> PermissionCollection </item>+      <item> Permissions </item>+      <item> PersistenceDelegate </item>+      <item> PersistentMBean </item>+      <item> PhantomReference </item>+      <item> Pipe </item>+      <item> Pipe.SinkChannel </item>+      <item> Pipe.SourceChannel </item>+      <item> PipedInputStream </item>+      <item> PipedOutputStream </item>+      <item> PipedReader </item>+      <item> PipedWriter </item>+      <item> PixelGrabber </item>+      <item> PixelInterleavedSampleModel </item>+      <item> PlainDocument </item>+      <item> PlainView </item>+      <item> Point </item>+      <item> Point2D </item>+      <item> Point2D.Double </item>+      <item> Point2D.Float </item>+      <item> PointerInfo </item>+      <item> Policy </item>+      <item> Policy </item>+      <item> Policy </item>+      <item> PolicyError </item>+      <item> PolicyErrorCodeHelper </item>+      <item> PolicyErrorHelper </item>+      <item> PolicyErrorHolder </item>+      <item> PolicyFactory </item>+      <item> PolicyFactoryOperations </item>+      <item> PolicyHelper </item>+      <item> PolicyHolder </item>+      <item> PolicyListHelper </item>+      <item> PolicyListHolder </item>+      <item> PolicyNode </item>+      <item> PolicyOperations </item>+      <item> PolicyQualifierInfo </item>+      <item> PolicyTypeHelper </item>+      <item> Polygon </item>+      <item> PooledConnection </item>+      <item> Popup </item>+      <item> PopupFactory </item>+      <item> PopupMenu </item>+      <item> PopupMenuEvent </item>+      <item> PopupMenuListener </item>+      <item> PopupMenuUI </item>+      <item> Port </item>+      <item> Port.Info </item>+      <item> PortUnreachableException </item>+      <item> PortableRemoteObject </item>+      <item> PortableRemoteObjectDelegate </item>+      <item> Position </item>+      <item> Position.Bias </item>+      <item> Predicate </item>+      <item> PreferenceChangeEvent </item>+      <item> PreferenceChangeListener </item>+      <item> Preferences </item>+      <item> PreferencesFactory </item>+      <item> PreparedStatement </item>+      <item> PresentationDirection </item>+      <item> Principal </item>+      <item> Principal </item>+      <item> PrincipalHolder </item>+      <item> PrintEvent </item>+      <item> PrintException </item>+      <item> PrintGraphics </item>+      <item> PrintJob </item>+      <item> PrintJobAdapter </item>+      <item> PrintJobAttribute </item>+      <item> PrintJobAttributeEvent </item>+      <item> PrintJobAttributeListener </item>+      <item> PrintJobAttributeSet </item>+      <item> PrintJobEvent </item>+      <item> PrintJobListener </item>+      <item> PrintQuality </item>+      <item> PrintRequestAttribute </item>+      <item> PrintRequestAttributeSet </item>+      <item> PrintService </item>+      <item> PrintServiceAttribute </item>+      <item> PrintServiceAttributeEvent </item>+      <item> PrintServiceAttributeListener </item>+      <item> PrintServiceAttributeSet </item>+      <item> PrintServiceLookup </item>+      <item> PrintStream </item>+      <item> PrintWriter </item>+      <item> Printable </item>+      <item> PrinterAbortException </item>+      <item> PrinterException </item>+      <item> PrinterGraphics </item>+      <item> PrinterIOException </item>+      <item> PrinterInfo </item>+      <item> PrinterIsAcceptingJobs </item>+      <item> PrinterJob </item>+      <item> PrinterLocation </item>+      <item> PrinterMakeAndModel </item>+      <item> PrinterMessageFromOperator </item>+      <item> PrinterMoreInfo </item>+      <item> PrinterMoreInfoManufacturer </item>+      <item> PrinterName </item>+      <item> PrinterResolution </item>+      <item> PrinterState </item>+      <item> PrinterStateReason </item>+      <item> PrinterStateReasons </item>+      <item> PrinterURI </item>+      <item> PriorityBlockingQueue </item>+      <item> PriorityQueue </item>+      <item> PrivateClassLoader </item>+      <item> PrivateCredentialPermission </item>+      <item> PrivateKey </item>+      <item> PrivateMLet </item>+      <item> PrivilegedAction </item>+      <item> PrivilegedActionException </item>+      <item> PrivilegedExceptionAction </item>+      <item> Process </item>+      <item> ProcessBuilder </item>+      <item> ProcessingInstruction </item>+      <item> ProfileDataException </item>+      <item> ProfileIdHelper </item>+      <item> ProgressBarUI </item>+      <item> ProgressMonitor </item>+      <item> ProgressMonitorInputStream </item>+      <item> Properties </item>+      <item> PropertyChangeEvent </item>+      <item> PropertyChangeListener </item>+      <item> PropertyChangeListenerProxy </item>+      <item> PropertyChangeSupport </item>+      <item> PropertyDescriptor </item>+      <item> PropertyEditor </item>+      <item> PropertyEditorManager </item>+      <item> PropertyEditorSupport </item>+      <item> PropertyPermission </item>+      <item> PropertyResourceBundle </item>+      <item> PropertyVetoException </item>+      <item> ProtectionDomain </item>+      <item> ProtocolException </item>+      <item> Provider </item>+      <item> Provider.Service </item>+      <item> ProviderException </item>+      <item> Proxy </item>+      <item> Proxy </item>+      <item> Proxy.Type </item>+      <item> ProxySelector </item>+      <item> PublicKey </item>+      <item> PushbackInputStream </item>+      <item> PushbackReader </item>+      <item> QName </item>+      <item> QuadCurve2D </item>+      <item> QuadCurve2D.Double </item>+      <item> QuadCurve2D.Float </item>+      <item> Query </item>+      <item> QueryEval </item>+      <item> QueryExp </item>+      <item> Queue </item>+      <item> QueuedJobCount </item>+      <item> RC2ParameterSpec </item>+      <item> RC5ParameterSpec </item>+      <item> REBIND </item>+      <item> REQUEST_PROCESSING_POLICY_ID </item>+      <item> RGBImageFilter </item>+      <item> RMIClassLoader </item>+      <item> RMIClassLoaderSpi </item>+      <item> RMIClientSocketFactory </item>+      <item> RMIConnection </item>+      <item> RMIConnectionImpl </item>+      <item> RMIConnectionImpl_Stub </item>+      <item> RMIConnector </item>+      <item> RMIConnectorServer </item>+      <item> RMICustomMaxStreamFormat </item>+      <item> RMIFailureHandler </item>+      <item> RMIIIOPServerImpl </item>+      <item> RMIJRMPServerImpl </item>+      <item> RMISecurityException </item>+      <item> RMISecurityManager </item>+      <item> RMIServer </item>+      <item> RMIServerImpl </item>+      <item> RMIServerImpl_Stub </item>+      <item> RMIServerSocketFactory </item>+      <item> RMISocketFactory </item>+      <item> RSAKey </item>+      <item> RSAKeyGenParameterSpec </item>+      <item> RSAMultiPrimePrivateCrtKey </item>+      <item> RSAMultiPrimePrivateCrtKeySpec </item>+      <item> RSAOtherPrimeInfo </item>+      <item> RSAPrivateCrtKey </item>+      <item> RSAPrivateCrtKeySpec </item>+      <item> RSAPrivateKey </item>+      <item> RSAPrivateKeySpec </item>+      <item> RSAPublicKey </item>+      <item> RSAPublicKeySpec </item>+      <item> RTFEditorKit </item>+      <item> Random </item>+      <item> RandomAccess </item>+      <item> RandomAccessFile </item>+      <item> Raster </item>+      <item> RasterFormatException </item>+      <item> RasterOp </item>+      <item> Rdn </item>+      <item> ReadOnlyBufferException </item>+      <item> ReadWriteLock </item>+      <item> Readable </item>+      <item> ReadableByteChannel </item>+      <item> Reader </item>+      <item> RealmCallback </item>+      <item> RealmChoiceCallback </item>+      <item> Receiver </item>+      <item> Rectangle </item>+      <item> Rectangle2D </item>+      <item> Rectangle2D.Double </item>+      <item> Rectangle2D.Float </item>+      <item> RectangularShape </item>+      <item> ReentrantLock </item>+      <item> ReentrantReadWriteLock </item>+      <item> ReentrantReadWriteLock.ReadLock </item>+      <item> ReentrantReadWriteLock.WriteLock </item>+      <item> Ref </item>+      <item> RefAddr </item>+      <item> Reference </item>+      <item> Reference </item>+      <item> ReferenceQueue </item>+      <item> ReferenceUriSchemesSupported </item>+      <item> Referenceable </item>+      <item> ReferralException </item>+      <item> ReflectPermission </item>+      <item> ReflectionException </item>+      <item> RefreshFailedException </item>+      <item> Refreshable </item>+      <item> Region </item>+      <item> RegisterableService </item>+      <item> Registry </item>+      <item> RegistryHandler </item>+      <item> RejectedExecutionException </item>+      <item> RejectedExecutionHandler </item>+      <item> Relation </item>+      <item> RelationException </item>+      <item> RelationNotFoundException </item>+      <item> RelationNotification </item>+      <item> RelationService </item>+      <item> RelationServiceMBean </item>+      <item> RelationServiceNotRegisteredException </item>+      <item> RelationSupport </item>+      <item> RelationSupportMBean </item>+      <item> RelationType </item>+      <item> RelationTypeNotFoundException </item>+      <item> RelationTypeSupport </item>+      <item> RemarshalException </item>+      <item> Remote </item>+      <item> RemoteCall </item>+      <item> RemoteException </item>+      <item> RemoteObject </item>+      <item> RemoteObjectInvocationHandler </item>+      <item> RemoteRef </item>+      <item> RemoteServer </item>+      <item> RemoteStub </item>+      <item> RenderContext </item>+      <item> RenderableImage </item>+      <item> RenderableImageOp </item>+      <item> RenderableImageProducer </item>+      <item> RenderedImage </item>+      <item> RenderedImageFactory </item>+      <item> Renderer </item>+      <item> RenderingHints </item>+      <item> RenderingHints.Key </item>+      <item> RepaintManager </item>+      <item> ReplicateScaleFilter </item>+      <item> RepositoryIdHelper </item>+      <item> Request </item>+      <item> RequestInfo </item>+      <item> RequestInfoOperations </item>+      <item> RequestProcessingPolicy </item>+      <item> RequestProcessingPolicyOperations </item>+      <item> RequestProcessingPolicyValue </item>+      <item> RequestingUserName </item>+      <item> RequiredModelMBean </item>+      <item> RescaleOp </item>+      <item> ResolutionSyntax </item>+      <item> ResolveResult </item>+      <item> Resolver </item>+      <item> ResourceBundle </item>+      <item> ResponseCache </item>+      <item> ResponseHandler </item>+      <item> Result </item>+      <item> ResultSet </item>+      <item> ResultSetMetaData </item>+      <item> Retention </item>+      <item> RetentionPolicy </item>+      <item> ReverbType </item>+      <item> Robot </item>+      <item> Role </item>+      <item> RoleInfo </item>+      <item> RoleInfoNotFoundException </item>+      <item> RoleList </item>+      <item> RoleNotFoundException </item>+      <item> RoleResult </item>+      <item> RoleStatus </item>+      <item> RoleUnresolved </item>+      <item> RoleUnresolvedList </item>+      <item> RootPaneContainer </item>+      <item> RootPaneUI </item>+      <item> RoundRectangle2D </item>+      <item> RoundRectangle2D.Double </item>+      <item> RoundRectangle2D.Float </item>+      <item> RoundingMode </item>+      <item> RowMapper </item>+      <item> RowSet </item>+      <item> RowSetEvent </item>+      <item> RowSetInternal </item>+      <item> RowSetListener </item>+      <item> RowSetMetaData </item>+      <item> RowSetMetaDataImpl </item>+      <item> RowSetReader </item>+      <item> RowSetWarning </item>+      <item> RowSetWriter </item>+      <item> RuleBasedCollator </item>+      <item> RunTime </item>+      <item> RunTimeOperations </item>+      <item> Runnable </item>+      <item> Runtime </item>+      <item> RuntimeErrorException </item>+      <item> RuntimeException </item>+      <item> RuntimeMBeanException </item>+      <item> RuntimeMXBean </item>+      <item> RuntimeOperationsException </item>+      <item> RuntimePermission </item>+      <item> SAXException </item>+      <item> SAXNotRecognizedException </item>+      <item> SAXNotSupportedException </item>+      <item> SAXParseException </item>+      <item> SAXParser </item>+      <item> SAXParserFactory </item>+      <item> SAXResult </item>+      <item> SAXSource </item>+      <item> SAXTransformerFactory </item>+      <item> SERVANT_RETENTION_POLICY_ID </item>+      <item> SQLData </item>+      <item> SQLException </item>+      <item> SQLInput </item>+      <item> SQLInputImpl </item>+      <item> SQLOutput </item>+      <item> SQLOutputImpl </item>+      <item> SQLPermission </item>+      <item> SQLWarning </item>+      <item> SSLContext </item>+      <item> SSLContextSpi </item>+      <item> SSLEngine </item>+      <item> SSLEngineResult </item>+      <item> SSLEngineResult.HandshakeStatus </item>+      <item> SSLEngineResult.Status </item>+      <item> SSLException </item>+      <item> SSLHandshakeException </item>+      <item> SSLKeyException </item>+      <item> SSLPeerUnverifiedException </item>+      <item> SSLPermission </item>+      <item> SSLProtocolException </item>+      <item> SSLServerSocket </item>+      <item> SSLServerSocketFactory </item>+      <item> SSLSession </item>+      <item> SSLSessionBindingEvent </item>+      <item> SSLSessionBindingListener </item>+      <item> SSLSessionContext </item>+      <item> SSLSocket </item>+      <item> SSLSocketFactory </item>+      <item> SUCCESSFUL </item>+      <item> SYNC_WITH_TRANSPORT </item>+      <item> SYSTEM_EXCEPTION </item>+      <item> SampleModel </item>+      <item> Sasl </item>+      <item> SaslClient </item>+      <item> SaslClientFactory </item>+      <item> SaslException </item>+      <item> SaslServer </item>+      <item> SaslServerFactory </item>+      <item> Savepoint </item>+      <item> Scanner </item>+      <item> ScatteringByteChannel </item>+      <item> ScheduledExecutorService </item>+      <item> ScheduledFuture </item>+      <item> ScheduledThreadPoolExecutor </item>+      <item> Schema </item>+      <item> SchemaFactory </item>+      <item> SchemaFactoryLoader </item>+      <item> SchemaViolationException </item>+      <item> ScrollBarUI </item>+      <item> ScrollPane </item>+      <item> ScrollPaneAdjustable </item>+      <item> ScrollPaneConstants </item>+      <item> ScrollPaneLayout </item>+      <item> ScrollPaneLayout.UIResource </item>+      <item> ScrollPaneUI </item>+      <item> Scrollable </item>+      <item> Scrollbar </item>+      <item> SealedObject </item>+      <item> SearchControls </item>+      <item> SearchResult </item>+      <item> SecretKey </item>+      <item> SecretKeyFactory </item>+      <item> SecretKeyFactorySpi </item>+      <item> SecretKeySpec </item>+      <item> SecureCacheResponse </item>+      <item> SecureClassLoader </item>+      <item> SecureRandom </item>+      <item> SecureRandomSpi </item>+      <item> Security </item>+      <item> SecurityException </item>+      <item> SecurityManager </item>+      <item> SecurityPermission </item>+      <item> Segment </item>+      <item> SelectableChannel </item>+      <item> SelectionKey </item>+      <item> Selector </item>+      <item> SelectorProvider </item>+      <item> Semaphore </item>+      <item> SeparatorUI </item>+      <item> Sequence </item>+      <item> SequenceInputStream </item>+      <item> Sequencer </item>+      <item> Sequencer.SyncMode </item>+      <item> SerialArray </item>+      <item> SerialBlob </item>+      <item> SerialClob </item>+      <item> SerialDatalink </item>+      <item> SerialException </item>+      <item> SerialJavaObject </item>+      <item> SerialRef </item>+      <item> SerialStruct </item>+      <item> Serializable </item>+      <item> SerializablePermission </item>+      <item> Servant </item>+      <item> ServantActivator </item>+      <item> ServantActivatorHelper </item>+      <item> ServantActivatorOperations </item>+      <item> ServantActivatorPOA </item>+      <item> ServantAlreadyActive </item>+      <item> ServantAlreadyActiveHelper </item>+      <item> ServantLocator </item>+      <item> ServantLocatorHelper </item>+      <item> ServantLocatorOperations </item>+      <item> ServantLocatorPOA </item>+      <item> ServantManager </item>+      <item> ServantManagerOperations </item>+      <item> ServantNotActive </item>+      <item> ServantNotActiveHelper </item>+      <item> ServantObject </item>+      <item> ServantRetentionPolicy </item>+      <item> ServantRetentionPolicyOperations </item>+      <item> ServantRetentionPolicyValue </item>+      <item> ServerCloneException </item>+      <item> ServerError </item>+      <item> ServerException </item>+      <item> ServerIdHelper </item>+      <item> ServerNotActiveException </item>+      <item> ServerRef </item>+      <item> ServerRequest </item>+      <item> ServerRequestInfo </item>+      <item> ServerRequestInfoOperations </item>+      <item> ServerRequestInterceptor </item>+      <item> ServerRequestInterceptorOperations </item>+      <item> ServerRuntimeException </item>+      <item> ServerSocket </item>+      <item> ServerSocketChannel </item>+      <item> ServerSocketFactory </item>+      <item> ServiceContext </item>+      <item> ServiceContextHelper </item>+      <item> ServiceContextHolder </item>+      <item> ServiceContextListHelper </item>+      <item> ServiceContextListHolder </item>+      <item> ServiceDetail </item>+      <item> ServiceDetailHelper </item>+      <item> ServiceIdHelper </item>+      <item> ServiceInformation </item>+      <item> ServiceInformationHelper </item>+      <item> ServiceInformationHolder </item>+      <item> ServiceNotFoundException </item>+      <item> ServicePermission </item>+      <item> ServiceRegistry </item>+      <item> ServiceRegistry.Filter </item>+      <item> ServiceUI </item>+      <item> ServiceUIFactory </item>+      <item> ServiceUnavailableException </item>+      <item> Set </item>+      <item> SetOfIntegerSyntax </item>+      <item> SetOverrideType </item>+      <item> SetOverrideTypeHelper </item>+      <item> Severity </item>+      <item> Shape </item>+      <item> ShapeGraphicAttribute </item>+      <item> SheetCollate </item>+      <item> Short </item>+      <item> ShortBuffer </item>+      <item> ShortBufferException </item>+      <item> ShortHolder </item>+      <item> ShortLookupTable </item>+      <item> ShortMessage </item>+      <item> ShortSeqHelper </item>+      <item> ShortSeqHolder </item>+      <item> Sides </item>+      <item> Signature </item>+      <item> SignatureException </item>+      <item> SignatureSpi </item>+      <item> SignedObject </item>+      <item> Signer </item>+      <item> SimpleAttributeSet </item>+      <item> SimpleBeanInfo </item>+      <item> SimpleDateFormat </item>+      <item> SimpleDoc </item>+      <item> SimpleFormatter </item>+      <item> SimpleTimeZone </item>+      <item> SimpleType </item>+      <item> SinglePixelPackedSampleModel </item>+      <item> SingleSelectionModel </item>+      <item> Size2DSyntax </item>+      <item> SizeLimitExceededException </item>+      <item> SizeRequirements </item>+      <item> SizeSequence </item>+      <item> Skeleton </item>+      <item> SkeletonMismatchException </item>+      <item> SkeletonNotFoundException </item>+      <item> SliderUI </item>+      <item> Socket </item>+      <item> SocketAddress </item>+      <item> SocketChannel </item>+      <item> SocketException </item>+      <item> SocketFactory </item>+      <item> SocketHandler </item>+      <item> SocketImpl </item>+      <item> SocketImplFactory </item>+      <item> SocketOptions </item>+      <item> SocketPermission </item>+      <item> SocketSecurityException </item>+      <item> SocketTimeoutException </item>+      <item> SoftBevelBorder </item>+      <item> SoftReference </item>+      <item> SortControl </item>+      <item> SortKey </item>+      <item> SortResponseControl </item>+      <item> SortedMap </item>+      <item> SortedSet </item>+      <item> SortingFocusTraversalPolicy </item>+      <item> Soundbank </item>+      <item> SoundbankReader </item>+      <item> SoundbankResource </item>+      <item> Source </item>+      <item> SourceDataLine </item>+      <item> SourceLocator </item>+      <item> SpinnerDateModel </item>+      <item> SpinnerListModel </item>+      <item> SpinnerModel </item>+      <item> SpinnerNumberModel </item>+      <item> SpinnerUI </item>+      <item> SplitPaneUI </item>+      <item> Spring </item>+      <item> SpringLayout </item>+      <item> SpringLayout.Constraints </item>+      <item> SslRMIClientSocketFactory </item>+      <item> SslRMIServerSocketFactory </item>+      <item> Stack </item>+      <item> StackOverflowError </item>+      <item> StackTraceElement </item>+      <item> StandardMBean </item>+      <item> StartTlsRequest </item>+      <item> StartTlsResponse </item>+      <item> State </item>+      <item> StateEdit </item>+      <item> StateEditable </item>+      <item> StateFactory </item>+      <item> Statement </item>+      <item> Statement </item>+      <item> StreamCorruptedException </item>+      <item> StreamHandler </item>+      <item> StreamPrintService </item>+      <item> StreamPrintServiceFactory </item>+      <item> StreamResult </item>+      <item> StreamSource </item>+      <item> StreamTokenizer </item>+      <item> Streamable </item>+      <item> StreamableValue </item>+      <item> StrictMath </item>+      <item> String </item>+      <item> StringBuffer </item>+      <item> StringBufferInputStream </item>+      <item> StringBuilder </item>+      <item> StringCharacterIterator </item>+      <item> StringContent </item>+      <item> StringHolder </item>+      <item> StringIndexOutOfBoundsException </item>+      <item> StringMonitor </item>+      <item> StringMonitorMBean </item>+      <item> StringNameHelper </item>+      <item> StringReader </item>+      <item> StringRefAddr </item>+      <item> StringSelection </item>+      <item> StringSeqHelper </item>+      <item> StringSeqHolder </item>+      <item> StringTokenizer </item>+      <item> StringValueExp </item>+      <item> StringValueHelper </item>+      <item> StringWriter </item>+      <item> Stroke </item>+      <item> Struct </item>+      <item> StructMember </item>+      <item> StructMemberHelper </item>+      <item> Stub </item>+      <item> StubDelegate </item>+      <item> StubNotFoundException </item>+      <item> Style </item>+      <item> StyleConstants </item>+      <item> StyleConstants.CharacterConstants </item>+      <item> StyleConstants.ColorConstants </item>+      <item> StyleConstants.FontConstants </item>+      <item> StyleConstants.ParagraphConstants </item>+      <item> StyleContext </item>+      <item> StyleSheet </item>+      <item> StyleSheet.BoxPainter </item>+      <item> StyleSheet.ListPainter </item>+      <item> StyledDocument </item>+      <item> StyledEditorKit </item>+      <item> StyledEditorKit.AlignmentAction </item>+      <item> StyledEditorKit.BoldAction </item>+      <item> StyledEditorKit.FontFamilyAction </item>+      <item> StyledEditorKit.FontSizeAction </item>+      <item> StyledEditorKit.ForegroundAction </item>+      <item> StyledEditorKit.ItalicAction </item>+      <item> StyledEditorKit.StyledTextAction </item>+      <item> StyledEditorKit.UnderlineAction </item>+      <item> Subject </item>+      <item> SubjectDelegationPermission </item>+      <item> SubjectDomainCombiner </item>+      <item> SupportedValuesAttribute </item>+      <item> SuppressWarnings </item>+      <item> SwingConstants </item>+      <item> SwingPropertyChangeSupport </item>+      <item> SwingUtilities </item>+      <item> SyncFactory </item>+      <item> SyncFactoryException </item>+      <item> SyncFailedException </item>+      <item> SyncProvider </item>+      <item> SyncProviderException </item>+      <item> SyncResolver </item>+      <item> SyncScopeHelper </item>+      <item> SynchronousQueue </item>+      <item> SynthConstants </item>+      <item> SynthContext </item>+      <item> SynthGraphicsUtils </item>+      <item> SynthLookAndFeel </item>+      <item> SynthPainter </item>+      <item> SynthStyle </item>+      <item> SynthStyleFactory </item>+      <item> Synthesizer </item>+      <item> SysexMessage </item>+      <item> System </item>+      <item> SystemColor </item>+      <item> SystemException </item>+      <item> SystemFlavorMap </item>+      <item> TAG_ALTERNATE_IIOP_ADDRESS </item>+      <item> TAG_CODE_SETS </item>+      <item> TAG_INTERNET_IOP </item>+      <item> TAG_JAVA_CODEBASE </item>+      <item> TAG_MULTIPLE_COMPONENTS </item>+      <item> TAG_ORB_TYPE </item>+      <item> TAG_POLICIES </item>+      <item> TAG_RMI_CUSTOM_MAX_STREAM_FORMAT </item>+      <item> TCKind </item>+      <item> THREAD_POLICY_ID </item>+      <item> TIMEOUT </item>+      <item> TRANSACTION_MODE </item>+      <item> TRANSACTION_REQUIRED </item>+      <item> TRANSACTION_ROLLEDBACK </item>+      <item> TRANSACTION_UNAVAILABLE </item>+      <item> TRANSIENT </item>+      <item> TRANSPORT_RETRY </item>+      <item> TabExpander </item>+      <item> TabSet </item>+      <item> TabStop </item>+      <item> TabableView </item>+      <item> TabbedPaneUI </item>+      <item> TableCellEditor </item>+      <item> TableCellRenderer </item>+      <item> TableColumn </item>+      <item> TableColumnModel </item>+      <item> TableColumnModelEvent </item>+      <item> TableColumnModelListener </item>+      <item> TableHeaderUI </item>+      <item> TableModel </item>+      <item> TableModelEvent </item>+      <item> TableModelListener </item>+      <item> TableUI </item>+      <item> TableView </item>+      <item> TabularData </item>+      <item> TabularDataSupport </item>+      <item> TabularType </item>+      <item> TagElement </item>+      <item> TaggedComponent </item>+      <item> TaggedComponentHelper </item>+      <item> TaggedComponentHolder </item>+      <item> TaggedProfile </item>+      <item> TaggedProfileHelper </item>+      <item> TaggedProfileHolder </item>+      <item> Target </item>+      <item> TargetDataLine </item>+      <item> TargetedNotification </item>+      <item> Templates </item>+      <item> TemplatesHandler </item>+      <item> Text </item>+      <item> TextAction </item>+      <item> TextArea </item>+      <item> TextAttribute </item>+      <item> TextComponent </item>+      <item> TextEvent </item>+      <item> TextField </item>+      <item> TextHitInfo </item>+      <item> TextInputCallback </item>+      <item> TextLayout </item>+      <item> TextLayout.CaretPolicy </item>+      <item> TextListener </item>+      <item> TextMeasurer </item>+      <item> TextOutputCallback </item>+      <item> TextSyntax </item>+      <item> TextUI </item>+      <item> TexturePaint </item>+      <item> Thread </item>+      <item> Thread.State </item>+      <item> Thread.UncaughtExceptionHandler </item>+      <item> ThreadDeath </item>+      <item> ThreadFactory </item>+      <item> ThreadGroup </item>+      <item> ThreadInfo </item>+      <item> ThreadLocal </item>+      <item> ThreadMXBean </item>+      <item> ThreadPolicy </item>+      <item> ThreadPolicyOperations </item>+      <item> ThreadPolicyValue </item>+      <item> ThreadPoolExecutor </item>+      <item> ThreadPoolExecutor.AbortPolicy </item>+      <item> ThreadPoolExecutor.CallerRunsPolicy </item>+      <item> ThreadPoolExecutor.DiscardOldestPolicy </item>+      <item> ThreadPoolExecutor.DiscardPolicy </item>+      <item> Throwable </item>+      <item> Tie </item>+      <item> TileObserver </item>+      <item> Time </item>+      <item> TimeLimitExceededException </item>+      <item> TimeUnit </item>+      <item> TimeZone </item>+      <item> TimeoutException </item>+      <item> Timer </item>+      <item> Timer </item>+      <item> Timer </item>+      <item> TimerAlarmClockNotification </item>+      <item> TimerMBean </item>+      <item> TimerNotification </item>+      <item> TimerTask </item>+      <item> Timestamp </item>+      <item> Timestamp </item>+      <item> TitledBorder </item>+      <item> TooManyListenersException </item>+      <item> ToolBarUI </item>+      <item> ToolTipManager </item>+      <item> ToolTipUI </item>+      <item> Toolkit </item>+      <item> Track </item>+      <item> TransactionRequiredException </item>+      <item> TransactionRolledbackException </item>+      <item> TransactionService </item>+      <item> TransactionalWriter </item>+      <item> TransferHandler </item>+      <item> Transferable </item>+      <item> TransformAttribute </item>+      <item> Transformer </item>+      <item> TransformerConfigurationException </item>+      <item> TransformerException </item>+      <item> TransformerFactory </item>+      <item> TransformerFactoryConfigurationError </item>+      <item> TransformerHandler </item>+      <item> Transmitter </item>+      <item> Transparency </item>+      <item> TreeCellEditor </item>+      <item> TreeCellRenderer </item>+      <item> TreeExpansionEvent </item>+      <item> TreeExpansionListener </item>+      <item> TreeMap </item>+      <item> TreeModel </item>+      <item> TreeModelEvent </item>+      <item> TreeModelListener </item>+      <item> TreeNode </item>+      <item> TreePath </item>+      <item> TreeSelectionEvent </item>+      <item> TreeSelectionListener </item>+      <item> TreeSelectionModel </item>+      <item> TreeSet </item>+      <item> TreeUI </item>+      <item> TreeWillExpandListener </item>+      <item> TrustAnchor </item>+      <item> TrustManager </item>+      <item> TrustManagerFactory </item>+      <item> TrustManagerFactorySpi </item>+      <item> Type </item>+      <item> TypeCode </item>+      <item> TypeCodeHolder </item>+      <item> TypeInfo </item>+      <item> TypeInfoProvider </item>+      <item> TypeMismatch </item>+      <item> TypeMismatch </item>+      <item> TypeMismatch </item>+      <item> TypeMismatchHelper </item>+      <item> TypeMismatchHelper </item>+      <item> TypeNotPresentException </item>+      <item> TypeVariable </item>+      <item> Types </item>+      <item> UID </item>+      <item> UIDefaults </item>+      <item> UIDefaults.ActiveValue </item>+      <item> UIDefaults.LazyInputMap </item>+      <item> UIDefaults.LazyValue </item>+      <item> UIDefaults.ProxyLazyValue </item>+      <item> UIManager </item>+      <item> UIManager.LookAndFeelInfo </item>+      <item> UIResource </item>+      <item> ULongLongSeqHelper </item>+      <item> ULongLongSeqHolder </item>+      <item> ULongSeqHelper </item>+      <item> ULongSeqHolder </item>+      <item> UNKNOWN </item>+      <item> UNKNOWN </item>+      <item> UNSUPPORTED_POLICY </item>+      <item> UNSUPPORTED_POLICY_VALUE </item>+      <item> URI </item>+      <item> URIException </item>+      <item> URIResolver </item>+      <item> URISyntax </item>+      <item> URISyntaxException </item>+      <item> URL </item>+      <item> URLClassLoader </item>+      <item> URLConnection </item>+      <item> URLDecoder </item>+      <item> URLEncoder </item>+      <item> URLStreamHandler </item>+      <item> URLStreamHandlerFactory </item>+      <item> URLStringHelper </item>+      <item> USER_EXCEPTION </item>+      <item> UShortSeqHelper </item>+      <item> UShortSeqHolder </item>+      <item> UTFDataFormatException </item>+      <item> UUID </item>+      <item> UndeclaredThrowableException </item>+      <item> UndoManager </item>+      <item> UndoableEdit </item>+      <item> UndoableEditEvent </item>+      <item> UndoableEditListener </item>+      <item> UndoableEditSupport </item>+      <item> UnexpectedException </item>+      <item> UnicastRemoteObject </item>+      <item> UnionMember </item>+      <item> UnionMemberHelper </item>+      <item> UnknownEncoding </item>+      <item> UnknownEncodingHelper </item>+      <item> UnknownError </item>+      <item> UnknownException </item>+      <item> UnknownFormatConversionException </item>+      <item> UnknownFormatFlagsException </item>+      <item> UnknownGroupException </item>+      <item> UnknownHostException </item>+      <item> UnknownHostException </item>+      <item> UnknownObjectException </item>+      <item> UnknownServiceException </item>+      <item> UnknownUserException </item>+      <item> UnknownUserExceptionHelper </item>+      <item> UnknownUserExceptionHolder </item>+      <item> UnmappableCharacterException </item>+      <item> UnmarshalException </item>+      <item> UnmodifiableClassException </item>+      <item> UnmodifiableSetException </item>+      <item> UnrecoverableEntryException </item>+      <item> UnrecoverableKeyException </item>+      <item> Unreferenced </item>+      <item> UnresolvedAddressException </item>+      <item> UnresolvedPermission </item>+      <item> UnsatisfiedLinkError </item>+      <item> UnsolicitedNotification </item>+      <item> UnsolicitedNotificationEvent </item>+      <item> UnsolicitedNotificationListener </item>+      <item> UnsupportedAddressTypeException </item>+      <item> UnsupportedAudioFileException </item>+      <item> UnsupportedCallbackException </item>+      <item> UnsupportedCharsetException </item>+      <item> UnsupportedClassVersionError </item>+      <item> UnsupportedEncodingException </item>+      <item> UnsupportedFlavorException </item>+      <item> UnsupportedLookAndFeelException </item>+      <item> UnsupportedOperationException </item>+      <item> UserDataHandler </item>+      <item> UserException </item>+      <item> Util </item>+      <item> UtilDelegate </item>+      <item> Utilities </item>+      <item> VMID </item>+      <item> VM_ABSTRACT </item>+      <item> VM_CUSTOM </item>+      <item> VM_NONE </item>+      <item> VM_TRUNCATABLE </item>+      <item> Validator </item>+      <item> ValidatorHandler </item>+      <item> ValueBase </item>+      <item> ValueBaseHelper </item>+      <item> ValueBaseHolder </item>+      <item> ValueExp </item>+      <item> ValueFactory </item>+      <item> ValueHandler </item>+      <item> ValueHandlerMultiFormat </item>+      <item> ValueInputStream </item>+      <item> ValueMember </item>+      <item> ValueMemberHelper </item>+      <item> ValueOutputStream </item>+      <item> VariableHeightLayoutCache </item>+      <item> Vector </item>+      <item> VerifyError </item>+      <item> VersionSpecHelper </item>+      <item> VetoableChangeListener </item>+      <item> VetoableChangeListenerProxy </item>+      <item> VetoableChangeSupport </item>+      <item> View </item>+      <item> ViewFactory </item>+      <item> ViewportLayout </item>+      <item> ViewportUI </item>+      <item> VirtualMachineError </item>+      <item> Visibility </item>+      <item> VisibilityHelper </item>+      <item> VoiceStatus </item>+      <item> Void </item>+      <item> VolatileImage </item>+      <item> WCharSeqHelper </item>+      <item> WCharSeqHolder </item>+      <item> WStringSeqHelper </item>+      <item> WStringSeqHolder </item>+      <item> WStringValueHelper </item>+      <item> WeakHashMap </item>+      <item> WeakReference </item>+      <item> WebRowSet </item>+      <item> WildcardType </item>+      <item> Window </item>+      <item> WindowAdapter </item>+      <item> WindowConstants </item>+      <item> WindowEvent </item>+      <item> WindowFocusListener </item>+      <item> WindowListener </item>+      <item> WindowStateListener </item>+      <item> WrappedPlainView </item>+      <item> WritableByteChannel </item>+      <item> WritableRaster </item>+      <item> WritableRenderedImage </item>+      <item> WriteAbortedException </item>+      <item> Writer </item>+      <item> WrongAdapter </item>+      <item> WrongAdapterHelper </item>+      <item> WrongPolicy </item>+      <item> WrongPolicyHelper </item>+      <item> WrongTransaction </item>+      <item> WrongTransactionHelper </item>+      <item> WrongTransactionHolder </item>+      <item> X500Principal </item>+      <item> X500PrivateCredential </item>+      <item> X509CRL </item>+      <item> X509CRLEntry </item>+      <item> X509CRLSelector </item>+      <item> X509CertSelector </item>+      <item> X509Certificate </item>+      <item> X509Certificate </item>+      <item> X509EncodedKeySpec </item>+      <item> X509ExtendedKeyManager </item>+      <item> X509Extension </item>+      <item> X509KeyManager </item>+      <item> X509TrustManager </item>+      <item> XAConnection </item>+      <item> XADataSource </item>+      <item> XAException </item>+      <item> XAResource </item>+      <item> XMLConstants </item>+      <item> XMLDecoder </item>+      <item> XMLEncoder </item>+      <item> XMLFilter </item>+      <item> XMLFilterImpl </item>+      <item> XMLFormatter </item>+      <item> XMLGregorianCalendar </item>+      <item> XMLParseException </item>+      <item> XMLReader </item>+      <item> XMLReaderAdapter </item>+      <item> XMLReaderFactory </item>+      <item> XPath </item>+      <item> XPathConstants </item>+      <item> XPathException </item>+      <item> XPathExpression </item>+      <item> XPathExpressionException </item>+      <item> XPathFactory </item>+      <item> XPathFactoryConfigurationException </item>+      <item> XPathFunction </item>+      <item> XPathFunctionException </item>+      <item> XPathFunctionResolver </item>+      <item> XPathVariableResolver </item>+      <item> Xid </item>+      <item> XmlReader </item>+      <item> XmlWriter </item>+      <item> ZipEntry </item>+      <item> ZipException </item>+      <item> ZipFile </item>+      <item> ZipInputStream </item>+      <item> ZipOutputStream </item>+      <item> ZoneView </item>+      <item> _BindingIteratorImplBase </item>+      <item> _BindingIteratorStub </item>+      <item> _DynAnyFactoryStub </item>+      <item> _DynAnyStub </item>+      <item> _DynArrayStub </item>+      <item> _DynEnumStub </item>+      <item> _DynFixedStub </item>+      <item> _DynSequenceStub </item>+      <item> _DynStructStub </item>+      <item> _DynUnionStub </item>+      <item> _DynValueStub </item>+      <item> _IDLTypeStub </item>+      <item> _NamingContextExtStub </item>+      <item> _NamingContextImplBase </item>+      <item> _NamingContextStub </item>+      <item> _PolicyStub </item>+      <item> _Remote_Stub </item>+      <item> _ServantActivatorStub </item>+      <item> _ServantLocatorStub </item>+    </list>+    <list name="keywords">+      <item> abstract </item>+      <item> as </item>+      <item> by </item>+      <item> catch </item>+      <item> class </item>+      <item> do </item>+      <item> else </item>+      <item> false </item>+      <item> final </item>+      <item> finally </item>+      <item> for </item>+      <item> if </item>+      <item> is </item>+      <item> import </item>+      <item> internal </item>+      <item> lazy </item>+      <item> null </item>+      <item> object </item>+      <item> open </item>+      <item> out </item>+      <item> override </item>+      <item> package </item>+      <item> private </item>+      <item> protected </item>+      <item> public </item>+      <item> ref </item>+      <item> return </item>+      <item> super </item>+      <item> this </item>+      <item> throw </item>+      <item> trait </item>+      <item> true </item>+      <item> try </item>+      <item> typealias </item>+      <item> val </item>+      <item> var </item>+      <item> when </item>+      <item> while </item>+      <item> with </item>+      <item> out </item>+      <item> in </item>+      <item> data class </item>+    </list>+    <list name="types">+      <item> Boolean </item>+      <item> Byte </item>+      <item> Char </item>+      <item> Double </item>+      <item> Float </item>+      <item> Int </item>+      <item> Long </item>+      <item> Short </item>+      <item> Unit </item>+    </list>+    <contexts>+      <context attribute="Normal Text" lineEndContext="#stay" name="Normal">+        <!-- Comment next line if you don't use Javadoc tool -->+        <IncludeRules context="##Javadoc"/>+        <keyword attribute="Keyword" context="#stay" String="keywords"/>+        <keyword attribute="Data Type" context="#stay" String="types"/>+        <keyword attribute="Java15" context="#stay" String="java15"/>+        <keyword attribute="Kotlin2" context="#stay" String="kotlin2"/>+        <Float attribute="Float" context="#stay">+          <AnyChar String="fF" attribute="Float" context="#stay"/>+        </Float>+        <!-- <HlCOct attribute="Octal" context="#stay"/> -->+        <HlCHex attribute="Hex" context="#stay"/>+        <Int attribute="Decimal" context="#stay">+          <StringDetect attribute="Decimal" context="#stay" String="ULL" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="LUL" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="LLU" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="UL" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="LU" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="LL" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="U" insensitive="false"/>+          <StringDetect attribute="Decimal" context="#stay" String="L" insensitive="false"/>+        </Int>+        <HlCChar attribute="Char" context="#stay"/>+        <RegExpr attribute="Decimal" context="#stay" String="//\s*BEGIN.*$" beginRegion="Region1"/>+        <RegExpr attribute="Decimal" context="#stay" String="//\s*END.*$" endRegion="Region1"/>+        <DetectChar attribute="String" context="String" char="&quot;"/>+        <RegExpr attribute="Function" context="Printf" String="\.(format|printf)\b" />+        <Detect2Chars attribute="Comment" context="Commentar 1" char="/" char1="/"/>+        <Detect2Chars attribute="Comment" context="Commentar 2" char="/" char1="*" beginRegion="Comment"/>+        <DetectChar attribute="Symbol" context="#stay" char="{" beginRegion="Brace1"/>+        <DetectChar attribute="Symbol" context="#stay" char="}" endRegion="Brace1"/>+<!--+        <RegExpr attribute="Keyword" context="#stay" String="\.{3,3}\s+" />+        <RegExpr attribute="Keyword" context="StaticImports" String="\b(import\s+static)\b" />+        <RegExpr attribute="Keyword" context="Imports" String="\b(package|import)\b" />+-->+        <RegExpr attribute="Function" context="#stay" String="\b[_\w][_\w\d]*(?=[\s]*(/\*\s*\d+\s*\*/\s*)?[(])" />+        <RegExpr attribute="Symbol" context="Member" String="[.]{1,1}" />+        <AnyChar attribute="Symbol" context="#stay" String=":!%&amp;()+,-/.*&lt;=&gt;?[]|~^&#59;"/>+      </context>+      <context attribute="String" lineEndContext="#pop" name="String">+        <LineContinue attribute="String" context="#stay"/>+        <HlCStringChar attribute="String Char" context="#stay"/>+        <DetectChar attribute="String" context="#pop" char="&quot;"/>+      </context>+      <context attribute="Printf" lineEndContext="#pop" name="Printf">+        <DetectChar attribute="Normal Text" context="#pop" char="&#059;" />+        <DetectChar attribute="String" context="PrintfString" char="&quot;"/>+      </context>+      <context attribute="PrintfString" lineEndContext="#pop" name="PrintfString">+        <LineContinue attribute="String" context="#stay"/>+        <HlCStringChar attribute="String Char" context="#stay"/>+        <DetectChar attribute="String" context="#pop" char="&quot;"/>+        <RegExpr attribute="String Char" context="#stay" String="%(\d+\$)?(-|#|\+|\ |0|,|\()*\d*(\.\d+)?[a-hosxA-CEGHSX]" />+        <RegExpr attribute="String Char" context="#stay" String="%(\d+\$)?(-|#|\+|\ |0|,|\()*\d*(t|T)(a|A|b|B|c|C|d|D|e|F|h|H|I|j|k|l|L|m|M|N|p|P|Q|r|R|s|S|T|y|Y|z|Z)" />+        <RegExpr attribute="String Char" context="#stay" String="%(%|n)" />+      </context>+      <context attribute="Normal Text" lineEndContext="#pop" name="Member" fallthrough="true" fallthroughContext="#pop">+        <RegExpr attribute="Function" context="#pop" String="\b[_a-zA-Z]\w*(?=[\s]*)" />+      </context>+<!--+      <context attribute="Normal Text" lineEndContext="#pop" name="StaticImports">+        <RegExpr attribute="StaticImports" context="#pop" String="\s*.*$" />+      </context>+      <context attribute="Normal Text" lineEndContext="#pop" name="Imports">+        <RegExpr attribute="Imports" context="#pop" String="\s*.*$" />+      </context>+-->+      <context attribute="Comment" lineEndContext="#pop" name="Commentar 1"/>+      <context attribute="Comment" lineEndContext="#stay" name="Commentar 2">+        <Detect2Chars attribute="Comment" context="#pop" char="*" char1="/" endRegion="Comment"/>+      </context>+    </contexts>+    <itemDatas>+      <itemData name="Normal Text"  defStyleNum="dsNormal"/>+      <itemData name="Keyword"      defStyleNum="dsKeyword"/>+      <itemData name="Function"     defStyleNum="dsFunction"/>+      <itemData name="StaticImports"      defStyleNum="dsKeyword" color="#800080" selColor="#FFFFFF" bold="0" italic="0"/>+      <itemData name="Imports"      defStyleNum="dsKeyword" color="#808000" selColor="#FFFFFF" bold="0" italic="0"/>+      <itemData name="Data Type"    defStyleNum="dsDataType"/>+      <itemData name="Decimal"      defStyleNum="dsDecVal"/>+      <!-- <itemData name="Octal"        defStyleNum="dsBaseN"/> -->+      <itemData name="Hex"          defStyleNum="dsBaseN"/>+      <itemData name="Float"        defStyleNum="dsFloat"/>+      <itemData name="Char"         defStyleNum="dsChar"/>+      <itemData name="String"       defStyleNum="dsString"/>+      <itemData name="String Char"  defStyleNum="dsChar"/>+      <itemData name="PrintfString" defStyleNum="dsString"/>+      <itemData name="Comment"      defStyleNum="dsComment"/>+      <itemData name="Symbol"       defStyleNum="dsNormal"/>+      <itemData name="Kotlin2"       defStyleNum="dsNormal" color="#0095FF" selColor="#FFFFFF" bold="1" italic="0"/>+      <itemData name="Java15"       defStyleNum="dsNormal" color="#0095FF" selColor="#FFFFFF" bold="1" italic="0"/>+    </itemDatas>+  </highlighting>+  <general>+    <comments>+      <comment name="singleLine" start="//"/>+      <comment name="multiLine" start="/*" end="*/"/>+    </comments>+    <keywords casesensitive="1"/>+  </general>+</language>
xml/latex.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="LaTeX" version="1.55" section="Markup" kateversion="2.3" priority="10" extensions="*.tex;*.ltx;*.dtx;*.sty;*.cls;*.bbx;*.cbx;*.lbx;*.tikz" mimetype="text/x-tex" casesensitive="1" author="Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)+Holger Danielsson (holger.danielsson@versanet.de)+Michel Ludwig (michel.ludwig@kdemail.net)+Thomas Braun (thomas.braun@virtuell-zuhause.de)" license="LGPL" >+<language name="LaTeX" version="1.55" section="Markup" kateversion="3.4" priority="10" extensions="*.tex;*.ltx;*.dtx;*.sty;*.cls;*.bbx;*.cbx;*.lbx;*.tikz" mimetype="text/x-tex" casesensitive="1" author="Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)+Holger Danielsson (holger.danielsson@versanet.de)+Michel Ludwig (michel.ludwig@kdemail.net)+Thomas Braun (thomas.braun@virtuell-zuhause.de)" license="LGPL" >   <highlighting>     <contexts>       <!-- Normal text -->
xml/lilypond.xml view
@@ -56,7 +56,7 @@ ]> <language name="LilyPond" section="Other"           style="lilypond" indenter="lilypond"-          version="3.07" kateversion="3.0"+          version="3.07" kateversion="3.3"           extensions="*.ly;*.LY;*.ily;*.ILY;*.lyi;*.LYI"           mimetype="text/x-lilypond"           author="Wilbert Berendsen (info@wilbertberendsen.nl)" license="LGPL">
xml/literate-curry.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Literate Curry" version="0.2" kateversion="2.3"+<language name="Literate Curry" version="0.2" kateversion="3.4"           section="Sources" extensions="*.lcurry" mimetype="text/x-curry"           author="Björn Peemöller (bjp@informatik.uni-kiel.de)" license="LGPL"           indenter="haskell">
xml/literate-haskell.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Literate Haskell" version="2.1" kateversion="2.3" section="Sources" extensions="*.lhs" mimetype="text/x-haskell" author="Nicolas Wu (zenzike@gmail.com)" license="LGPL">+<language name="Literate Haskell" version="2.1" kateversion="3.4" section="Sources" extensions="*.lhs" mimetype="text/x-haskell" author="Nicolas Wu (zenzike@gmail.com)" license="LGPL">   <highlighting>   <contexts>     <context attribute="Text" lineEndContext="#stay" name="text">
xml/m4.xml view
@@ -38,7 +38,7 @@   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  -->-<language name="GNU M4" version="1.1" section="Sources" kateversion="2.5" extensions="*.m4;" author="Jaak Ristioja" license="New BSD License">+<language name="GNU M4" version="1.1" section="Sources" kateversion="3.0" extensions="*.m4;" author="Jaak Ristioja" license="New BSD License">   <highlighting>     <list name="optbuiltins">       <item> __gnu__ </item>
xml/makefile.xml view
@@ -8,7 +8,7 @@ <!-- v2.1 by Alex Turbov <i.zaufi@gmail.com>      improve comments handling --> <language name="Makefile" section="Other"-          version="2.1" kateversion="2.4"+          version="2.1" kateversion="3.4"           extensions="GNUmakefile;Makefile;makefile;GNUmakefile.*;Makefile.*;makefile.*;*.mk"           mimetype="text/x-makefile"           author="Per Wigren (wigren@home.se)" license="">
xml/mandoc.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Troff Mandoc" section="Markup" version="0.11" kateversion="2.9" extensions="*.1;*.2;*.3;*.4;*.5;*.6;*.7;*.8;*.1m;*.3x;*.tmac" mimetype="" author="Matthew Woehlke (mw_triad@users.sourceforge.net)" license="GPL">+<language name="Troff Mandoc" section="Markup" version="0.11" kateversion="2.4" extensions="*.1;*.2;*.3;*.4;*.5;*.6;*.7;*.8;*.1m;*.3x;*.tmac" mimetype="" author="Matthew Woehlke (mw_triad@users.sourceforge.net)" license="GPL">    <highlighting> 
xml/markdown.xml view
@@ -35,7 +35,7 @@ <!ENTITY strikeoutregex "[~]{2}[^~].*[^~][~]{2}"> <!-- pandoc style --> ]>-<language name="Markdown" version="1.4" kateversion="3.7" section="Markup" extensions="*.md;*.mmd;*.markdown" priority="15" author="Darrin Yeager, Claes Holmerson" license="GPL,BSD">+<language name="Markdown" version="1.4" kateversion="3.8" section="Markup" extensions="*.md;*.mmd;*.markdown" priority="15" author="Darrin Yeager, Claes Holmerson" license="GPL,BSD">   <highlighting>     <contexts>       <context attribute="Normal Text" lineEndContext="#stay" name="Normal Text">
xml/mathematica.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Mathematica" version="8.1" kateversion="2.4" section="Scientific" extensions="*.nb" indenter="cstyle"+<language name="Mathematica" version="8.1" kateversion="3.4" section="Scientific" extensions="*.nb" indenter="cstyle"           author="Sven Brauch (svenbrauch@gmail.com)" license="LGPL" priority="3">   <highlighting>     <list name="functions">
xml/maxima.xml view
@@ -21,7 +21,7 @@  <!DOCTYPE language SYSTEM "language.dtd"> -<language name="Maxima" version="0.17" kateversion="2.0" section="Scientific" extensions="*.mac;*.MAC;*.dem;*.DEM" casesensitive="1" author="Alexey Beshenov &lt;al@beshenov.ru>" license="LGPL">+<language name="Maxima" version="0.17" kateversion="5.2" section="Scientific" extensions="*.mac;*.MAC;*.dem;*.DEM" casesensitive="1" author="Alexey Beshenov &lt;al@beshenov.ru>" license="LGPL">     <highlighting>          <list name="MaximaKeyword">
xml/mediawiki.xml view
@@ -6,7 +6,7 @@   <!ENTITY wikiLinkWithDescription "\[\[[^]|]*\|[^]]*\]\]">   <!ENTITY wikiLinkWithoutDescription "\[\[[^]|]*\]\]"> ]>-<language name="MediaWiki" section="Markup" version="1.11" kateversion="3.10" extensions="*.mediawiki" mimetype="" license="FDL" >+<language name="MediaWiki" section="Markup" version="1.11" kateversion="3.4" extensions="*.mediawiki" mimetype="" license="FDL" >   <highlighting>     <contexts>       <context attribute="Normal" lineEndContext="#stay" name="normal" >
xml/metafont.xml view
@@ -6,7 +6,7 @@ -->  <!DOCTYPE language SYSTEM "language.dtd">-<language name="Metapost/Metafont" section="Markup" version="0.9" kateversion="3.3" +<language name="Metapost/Metafont" section="Markup" version="0.9" kateversion="2.4" extensions="*.mp;*.mps;*.mpost;*.mf" mimetype="text/x-metapost"  author="Yedvilun (yedvilun@gmail.com)" license="LGPL">   <highlighting>
xml/modelines.xml view
@@ -9,7 +9,7 @@   --> <language name="Modelines"           version="1.2"-          kateversion="2.4"+          kateversion="3.4"           section="Other"           extensions=""           mimetype=""
xml/modula-2.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Modula-2" version="1.03" kateversion="2.1" section="Sources" extensions="*.mod;*.def;*.mi;*.md" mimetype="text/x-modula-2">+<language name="Modula-2" version="1.03" kateversion="2.2" section="Sources" extensions="*.mod;*.def;*.mi;*.md" mimetype="text/x-modula-2">   <highlighting>     <list name="directives">       <item> ASSEMBLER </item>
xml/objectivec.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Objective-C" version="1.07" kateversion="2.3" section="Sources" extensions="*.m;*.h" mimetype="text/x-objc-src;text/x-c-hdr">+<language name="Objective-C" version="1.07" kateversion="2.2" section="Sources" extensions="*.m;*.h" mimetype="text/x-objc-src;text/x-c-hdr">   <highlighting>     <list name="keywords">       <item> break </item>
xml/octave.xml view
@@ -15,7 +15,7 @@ -->  -<language name="Octave" version="1.02" kateversion="2.3" section="Scientific" extensions="*.octave;*.m;*.M" mimetype="text/octave" casesensitive="1" license="GPL" author="Luis Silvestre and Federico Zenith">+<language name="Octave" version="1.02" kateversion="3.4" section="Scientific" extensions="*.octave;*.m;*.M" mimetype="text/octave" casesensitive="1" license="GPL" author="Luis Silvestre and Federico Zenith">    <highlighting> 
xml/opencl.xml view
@@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd"> <language name="OpenCL" section="Sources"-          version="1.44" kateversion="2.4"+          version="1.44" kateversion="3.4"           indenter="cstyle"           extensions="*.cl"           mimetype="text/x-clsrc"
xml/pascal.xml view
@@ -3,7 +3,7 @@ <language name="Pascal"           section="Sources"            version="1.23"-          kateversion="2.5" +          kateversion="3.3"           extensions="*.p;*.pas;*.pp"           mimetype="text/x-pascal"            priority="8"
xml/perl.xml view
@@ -39,7 +39,7 @@     Enhance tr/// and y/// support. -->-<language name="Perl" version="1.30" kateversion="2.4" section="Scripts" extensions="*.pl;*.PL;*.pm" mimetype="application/x-perl;text/x-perl" priority="5" author="Anders Lund (anders@alweb.dk)" license="LGPL">+<language name="Perl" version="1.31" kateversion="2.4" section="Scripts" extensions="*.pl;*.PL;*.pm" mimetype="application/x-perl;text/x-perl" priority="5" author="Anders Lund (anders@alweb.dk)" license="LGPL">   <highlighting>     <list name="keywords">       <item> if </item>@@ -346,7 +346,7 @@         <keyword attribute="Operator" context="#stay" String="operators" />         <keyword attribute="Function" context="#stay" String="functions" />         <keyword attribute="Pragma" context="#stay" String="pragmas" />-        <RegExpr attribute="Pod" context="pod" String="\=(?:head[1-6]|over|back|item|for|begin|end|pod)(\s|$)" column="0" beginRegion="POD"/>+        <RegExpr attribute="Pod" context="pod" String="\=\w+(\s|$)" column="0" beginRegion="POD"/>         <DetectSpaces />         <DetectChar attribute="Comment" context="comment" char="#" /> 
xml/php.xml view
@@ -2,6 +2,12 @@ <!--  Changes:+[ Version 1.47 (2015-03-24) ]+- added support for binary integer literals++[ Version 1.46 (2015-03-02) ]+- added yield keyword+ [ Version 1.43 (2013-10-11) ] - added missing constants for sorting @@ -64,7 +70,7 @@   <!ENTITY types "int|integer|bool|boolean|float|double|real|string|array|object"> ]> -<language name="PHP/PHP" indenter="cstyle" version="1.44" kateversion="2.4" section="Scripts" extensions="" priority="5" mimetype="" hidden="true">+<language name="PHP/PHP" indenter="cstyle" version="1.47" kateversion="3.4" section="Scripts" extensions="" priority="5" mimetype="" hidden="true">   <highlighting>     <list name="control structures">       <item>as</item>@@ -102,6 +108,7 @@       <item> exception </item>       <item> extends </item>       <item> final </item>+      <item> finally </item>       <item> function </item>       <item> global </item>       <item> implements </item>@@ -124,6 +131,7 @@       <item> var </item>       <item> namespace </item>       <item> use </item>+      <item> yield </item>     </list>       <!-- magic constants, see http://php.net/manual/en/language.constants.predefined.php -->     <list name="constants">@@ -5401,7 +5409,7 @@        <!-- Keywords -->       <item> var </item>-     +       <!-- Constants -->       <item>OCI_DEFAULT</item>       <item>OCI_D_FILE</item>@@ -5483,6 +5491,7 @@         <keyword attribute="Special Variable" context="#stay" String="special-variables"/>         <RegExpr attribute="Variable" context="#stay" String="\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*" />         <RegExpr attribute="String" context="#stay" String="[0123456789]*\.\.\.[0123456789]*" />+        <RegExpr attribute="Binary" context="#stay" String="0[bB][01]+" />         <HlCOct attribute="Octal" context="#stay" />         <HlCHex attribute="Hex" context="#stay" />         <Float attribute="Float" context="#stay" />@@ -5606,6 +5615,7 @@       <itemData name="Function" defStyleNum="dsFunction" spellChecking="false" />       <itemData name="Special method" defStyleNum="dsFunction" spellChecking="false" />       <itemData name="Decimal" defStyleNum="dsDecVal" spellChecking="false" />+      <itemData name="Binary" defStyleNum="dsBaseN" spellChecking="false" />       <itemData name="Octal" defStyleNum="dsBaseN" spellChecking="false" />       <itemData name="Hex" defStyleNum="dsBaseN" spellChecking="false" />       <itemData name="Float" defStyleNum="dsFloat" spellChecking="false" />
xml/postscript.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="PostScript" version="1.01" kateversion="2.1" section="Markup" extensions="*.ps;*.ai;*.eps" mimetype="application/postscript">+<language name="PostScript" version="1.01" kateversion="2.2" section="Markup" extensions="*.ps;*.ai;*.eps" mimetype="application/postscript"> <highlighting> 	<list name="keywords"> 		<item> abs </item>
xml/prolog.xml view
@@ -105,7 +105,7 @@     <!ENTITY bs         "\"> ]> <language name="Prolog" section="Sources"-	  version="1.3" kateversion="2.3"+	  version="1.3" kateversion="3.4" 	  mimetype="text/x-prolog" 	  extensions="*.prolog;*.dcg;*.pro" 	  author="Torsten Eichstädt (torsten.eichstaedt@web.de)"
xml/python.xml view
@@ -13,9 +13,9 @@ <!-- v2.06 decorator names can (and often do) contain periods --> <!-- v2.07 add support for %prog and co, see bug 142832 --> <!-- v2.08 add missing overloaders, new Python 3 statements, builtins, and keywords -->-<language name="Python" version="2.23" style="python" kateversion="2.4" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript" mimetype="application/x-python;text/x-python" casesensitive="1" author="Michael Bueker" license="">+<language name="Python" version="2.25" style="python" kateversion="5.0" section="Scripts" extensions="*.py;*.pyw;SConstruct;SConscript" mimetype="application/x-python;text/x-python" casesensitive="1" author="Michael Bueker" license=""> 	<highlighting>-		<list name="prep">+		<list name="import"> 			<item> import </item> 			<item> from </item> 			<item> as </item>@@ -323,17 +323,16 @@ 		</list> 		<contexts> 			<context name="Normal" attribute="Normal Text" lineEndContext="#stay">-				<keyword attribute="Preprocessor" String="prep" context="#stay"/>+				<keyword attribute="Import" String="import" context="#stay"/> 				<keyword attribute="Definition Keyword" String="defs" context="#stay"/> 				<keyword attribute="Operator" String="operators" context="#stay"/>-				<keyword attribute="Command Keyword" String="commands" context="#stay"/> 				<keyword attribute="Flow Control Keyword" String="flow" context="#stay"/> 				<keyword attribute="Builtin Function" String="builtinfuncs" context="#stay"/> 				<keyword attribute="Special Variable" String="specialvars" context="#stay"/> 				<keyword attribute="Extensions" String="bindings" context="#stay"/> 				<keyword attribute="Exceptions" String="exceptions" context="#stay"/> 				<keyword attribute="Overloaders" String="overloaders" context="#stay"/>-				<RegExpr attribute="Normal" String="[a-zA-Z_][a-zA-Z_0-9]{2,}" context="#stay"/>+				<RegExpr attribute="Normal Text" String="[a-zA-Z_][a-zA-Z_0-9]{2,}" context="#stay"/>  				<RegExpr attribute="Complex" String=" ((([0-9]*\.[0-9]+|[0-9]+\.)|([0-9]+|([0-9]*\.[0-9]+|[0-9]+\.))[eE](\+|-)?[0-9]+)|[0-9]+)[jJ]" context="#stay"/> 				<Float attribute="Float" context="#stay" />@@ -565,16 +564,15 @@ 		<itemDatas> 			<itemData name="Normal Text" defStyleNum="dsNormal" spellChecking="false"/> 			<itemData name="Definition Keyword" defStyleNum="dsKeyword" spellChecking="false"/>-			<itemData name="Operator" defStyleNum="dsNormal" bold="1" spellChecking="false"/>-			<itemData name="String Substitution" defStyleNum="dsOthers" color="#0057ae" selColor="#0057ae"  spellChecking="false"/>-			<itemData name="Command Keyword" defStyleNum="dsKeyword" spellChecking="false"/>-			<itemData name="Flow Control Keyword" defStyleNum="dsKeyword" spellChecking="false"/>-			<itemData name="Builtin Function" defStyleNum="dsDataType" spellChecking="false"/>-			<itemData name="Special Variable" defStyleNum="dsOthers" spellChecking="false"/>-			<itemData name="Extensions" defStyleNum="dsOthers" color="#0095ff" selColor="#0095ff" bold="1" italic="0" spellChecking="false"/>-			<itemData name="Exceptions" defStyleNum="dsOthers" color="#054d00" selColor="#054d00" bold="1" italic="0" spellChecking="false"/>-			<itemData name="Overloaders" defStyleNum="dsOthers" color="#000e52" selColor="#000e52" bold="1" italic="0" spellChecking="false"/>-			<itemData name="Preprocessor" defStyleNum="dsChar" spellChecking="false"/>+			<itemData name="Operator" defStyleNum="dsOperator" spellChecking="false"/>+			<itemData name="String Substitution" defStyleNum="dsSpecialChar" spellChecking="false"/>+			<itemData name="Flow Control Keyword" defStyleNum="dsControlFlow" spellChecking="false"/>+			<itemData name="Builtin Function" defStyleNum="dsBuiltIn" spellChecking="false"/>+			<itemData name="Special Variable" defStyleNum="dsVariable" spellChecking="false"/>+			<itemData name="Extensions" defStyleNum="dsExtension" spellChecking="false"/>+			<itemData name="Exceptions" defStyleNum="dsPreprocessor" spellChecking="false"/>+			<itemData name="Overloaders" defStyleNum="dsFunction" spellChecking="false"/>+			<itemData name="Import" defStyleNum="dsImport" spellChecking="false"/> 			<itemData name="String Char" defStyleNum="dsChar" spellChecking="false"/> 			<itemData name="Float" defStyleNum="dsFloat" spellChecking="false"/> 			<itemData name="Int" defStyleNum="dsDecVal" spellChecking="false"/>@@ -583,8 +581,8 @@ 			<itemData name="Complex" defStyleNum="dsOthers" spellChecking="false"/> 			<itemData name="Comment" defStyleNum="dsComment"/> 			<itemData name="String" defStyleNum="dsString"/>-			<itemData name="Raw String" defStyleNum="dsString"/>-			<itemData name="Decorator" defStyleNum="dsOthers" color="#8f6b32" selColor="#8f6b32" italic="0" spellChecking="false"/>+			<itemData name="Raw String" defStyleNum="dsVerbatimString"/>+			<itemData name="Decorator" defStyleNum="dsAttribute" spellChecking="false"/> 		</itemDatas> 	</highlighting> 	<general>
xml/r.xml view
@@ -8,7 +8,7 @@ 	R      : http://www.r-project.org/ 	RKWard : http://rkward.sourceforge.net/ 	-->-<language version="2.07" kateversion="2.5" name="R Script" section="Scripts" extensions="*.R;*.r;*.S;*.s;*.q" mimetype="" license="GPL">+<language version="2.07" kateversion="2.3" name="R Script" section="Scripts" extensions="*.R;*.r;*.S;*.s;*.q" mimetype="" license="GPL"> <highlighting>  	<list name="controls">
xml/relaxng.xml view
@@ -17,7 +17,7 @@ -->  <language version="0.8"-          kateversion="2.1"+          kateversion="2.4"           name="RELAX NG"           section="Markup"           extensions="*.rng;*.RNG"
xml/roff.xml view
@@ -7,7 +7,7 @@   <!ENTITY argsep1 "([^\\]|\\[&#37; |^{}'`-_!?@)/,&amp;:~0acdeEprtu])">   <!ENTITY argsep2 "([^\\0-9]|\\[&#37;:{}'`-_!@/cep])"> ]>-<language name="Roff" section="Markup" version="0.11" kateversion="2.9" extensions="" author="Matthew Woehlke (mw_triad@users.sourceforge.net)" license="GPL">+<language name="Roff" section="Markup" version="0.11" kateversion="2.4" extensions="" author="Matthew Woehlke (mw_triad@users.sourceforge.net)" license="GPL">    <highlighting> 
xml/ruby.xml view
@@ -31,8 +31,8 @@  <!-- Hold the "language" opening tag on a single line, as mentioned in "language.dtd". --> <language name="Ruby" section="Scripts"-	  version="1.27" kateversion="2.4"-	  extensions="*.rb;*.rjs;*.rxml;*.xml.erb;*.js.erb;*.rake;Rakefile;Gemfile;*.gemspec"+	  version="1.29" kateversion="3.3"+	  extensions="*.rb;*.rjs;*.rxml;*.xml.erb;*.js.erb;*.rake;Rakefile;Gemfile;*.gemspec;Vagrantfile" 	  mimetype="application/x-ruby" 	  style="ruby" indenter="ruby" 	  author="Stefan Lang (langstefan@gmx.at), Sebastian Vuorinen (sebastian.vuorinen@helsinki.fi), Robin Pedersen (robinpeder@gmail.com), Miquel Sabaté (mikisabate@gmail.com)" license="LGPL">@@ -279,6 +279,9 @@  				<RegExpr attribute="Symbol" String=":(@{1,2}|\$)?[a-zA-Z_][a-zA-Z0-9_]*[=?!]?" context="check_div_1"/> 				<RegExpr attribute="Symbol" String=":\[\]=?" context="check_div_1"/>++				<RegExpr attribute="Symbol" String="(@{1,2}|\$)?[a-zA-Z_][a-zA-Z0-9_]*[=?!]?: " context="check_div_1"/>+				<RegExpr attribute="Symbol" String="\[\]=?: " context="check_div_1"/>  				<DetectChar attribute="String" char="&quot;" context="Quoted String"/> 				<DetectChar attribute="Raw String" char="'" context="Apostrophed String"/>
xml/rust.xml view
@@ -1,13 +1,40 @@ <?xml version="1.0" encoding="UTF-8"?>+<!--+    Copyright (c) 2015 The Rust Project Developers++    Permission is hereby granted, free of charge, to any+    person obtaining a copy of this software and associated+    documentation files (the "Software"), to deal in the+    Software without restriction, including without+    limitation the rights to use, copy, modify, merge,+    publish, distribute, sublicense, and/or sell copies of+    the Software, and to permit persons to whom the Software+    is furnished to do so, subject to the following+    conditions:++    The above copyright notice and this permission notice+    shall be included in all copies or substantial portions+    of the Software.++    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF+    ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED+    TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A+    PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT+    SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY+    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION+    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR+    IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER+    DEALINGS IN THE SOFTWARE.+--> <!DOCTYPE language SYSTEM "language.dtd" [-	<!-- TODO: Kate's regex engine has very limited support for+	<!-- FIXME: Kate's regex engine has very limited support for 	predefined char classes, so making rustIdent consistent with actual 	Rust identifiers will be a bit difficult --> 	<!ENTITY rustIdent "[a-zA-Z_][a-zA-Z_0-9]*"> 	<!ENTITY rustIntSuf "([iu](8|16|32|64)?)?"> ]>-<language name="Rust" version="0.9" kateversion="2.4" section="Sources" extensions="*.rs;*.rc" mimetype="text/x-rust" priority="15">+<language name="Rust" version="1.1" kateversion="5.0" section="Sources" extensions="*.rs" mimetype="text/rust" priority="15"> <highlighting> 	<list name="fn"> 		<item> fn </item>@@ -16,63 +43,99 @@ 		<item> type </item> 	</list> 	<list name="keywords">+		<item> abstract </item>+		<item> alignof </item> 		<item> as </item>+		<item> become </item>+		<item> box </item> 		<item> break </item>+		<item> const </item> 		<item> continue </item>+		<item> crate </item> 		<item> do </item>-		<item> drop </item> 		<item> else </item> 		<item> enum </item> 		<item> extern </item>+		<item> final </item> 		<item> for </item> 		<item> if </item> 		<item> impl </item>+		<item> in </item> 		<item> let </item> 		<item> loop </item>+		<item> macro </item> 		<item> match </item> 		<item> mod </item>+		<item> move </item> 		<item> mut </item>+		<item> offsetof </item>+		<item> override </item> 		<item> priv </item>+		<item> proc </item> 		<item> pub </item>+		<item> pure </item> 		<item> ref </item> 		<item> return </item>+		<item> Self </item>+		<item> self </item>+		<item> sizeof </item> 		<item> static </item> 		<item> struct </item> 		<item> super </item> 		<item> trait </item>+		<item> type </item>+		<item> typeof </item> 		<item> unsafe </item>+		<item> unsized </item> 		<item> use </item>+		<item> virtual </item>+		<item> where </item> 		<item> while </item>+		<item> yield </item> 	</list> 	<list name="traits">-		<item> Const </item>+		<item> AsSlice </item>+		<item> CharExt </item>+		<item> Clone </item> 		<item> Copy </item>-		<item> Send </item>-		<item> Owned </item>-		<item> Sized </item>+		<item> Debug </item>+		<item> Decodable </item>+		<item> Default </item>+		<item> Display </item>+		<item> DoubleEndedIterator </item>+		<item> Drop </item>+		<item> Encodable </item> 		<item> Eq </item>+		<item> Default </item>+		<item> Extend </item>+		<item> Fn </item>+		<item> FnMut </item>+		<item> FnOnce </item>+		<item> FromPrimitive </item>+		<item> Hash </item>+		<item> Iterator </item>+		<item> IteratorExt </item>+		<item> MutPtrExt </item> 		<item> Ord </item>-		<item> Num </item>-		<item> Ptr </item>-		<item> Drop </item>-		<item> Add </item>-		<item> Sub </item>-		<item> Mul </item>-		<item> Quot </item>-		<item> Rem </item>-		<item> Neg </item>-		<item> BitAnd </item>-		<item> BitOr </item>-		<item> BitXor </item>-		<item> Shl </item>-		<item> Shr </item>-		<item> Index </item>-		<item> Not </item>+		<item> PartialEq </item>+		<item> PartialOrd </item>+		<item> PtrExt </item>+		<item> Rand </item>+		<item> Send </item>+		<item> Sized </item>+		<item> SliceConcatExt </item>+		<item> SliceExt </item>+		<item> Str </item>+		<item> StrExt </item>+		<item> Sync </item>+		<item> ToString </item> 	</list> 	<list name="types"> 		<item> bool </item> 		<item> int </item>+		<item> isize </item> 		<item> uint </item>+		<item> usize </item> 		<item> i8 </item> 		<item> i16 </item> 		<item> i32 </item>@@ -86,10 +149,12 @@ 		<item> float </item> 		<item> char </item> 		<item> str </item>-		<item> Either </item> 		<item> Option </item> 		<item> Result </item> 		<item> Self </item>+		<item> Box </item>+		<item> Vec </item>+		<item> String </item> 	</list> 	<list name="ctypes"> 		<item> c_float </item>@@ -131,8 +196,6 @@ 		<item> false </item> 		<item> Some </item> 		<item> None </item>-		<item> Left </item>-		<item> Right </item> 		<item> Ok </item> 		<item> Err </item> 		<item> Success </item>@@ -204,11 +267,15 @@ 			<RegExpr String="[0-9][0-9_]*\.[0-9_]*([eE][+-]?[0-9_]+)?(f32|f64|f)?" attribute="Number" context="#stay"/> 			<RegExpr String="[0-9][0-9_]*&rustIntSuf;" attribute="Number" context="#stay"/> 			<Detect2Chars char="#" char1="[" attribute="Attribute" context="Attribute" beginRegion="Attribute"/>+			<StringDetect String="#![" attribute="Attribute" context="Attribute" beginRegion="Attribute"/> 			<RegExpr String="&rustIdent;::" attribute="Scope"/> 			<RegExpr String="&rustIdent;!" attribute="Macro"/> 			<RegExpr String="&apos;&rustIdent;(?!&apos;)" attribute="Lifetime"/> 			<DetectChar char="{" attribute="Symbol" context="#stay" beginRegion="Brace" /> 			<DetectChar char="}" attribute="Symbol" context="#stay" endRegion="Brace" />+                        <Detect2Chars char="r" char1="&quot;" attribute="String" context="RawString"/>+                        <StringDetect String="r##&quot;" attribute="String" context="RawHashed2"/>+                        <StringDetect String="r#&quot;" attribute="String" context="RawHashed1"/> 			<DetectChar char="&quot;" attribute="String" context="String"/> 			<DetectChar char="&apos;" attribute="Character" context="Character"/> 			<DetectChar char="[" attribute="Symbol" context="#stay" beginRegion="Bracket" />@@ -228,12 +295,24 @@ 			<DetectSpaces/> 			<DetectChar char="=" attribute="Normal Text" context="#pop"/> 			<DetectChar char="&lt;" attribute="Normal Text" context="#pop"/>+			<DetectChar char=";" attribute="Normal Text" context="#pop"/> 		</context>-		<context attribute="String" lineEndContext="#stay" name="String">-			<LineContinue attribute="String" context="#stay"/>-			<DetectChar char="\" attribute="CharEscape" context="CharEscape"/>+                <!-- Rustc allows strings to extend over multiple lines, and the+                only thing a backshash at end-of-line does is remove the whitespace. -->+                <context attribute="String" lineEndContext="#stay" name="String">+                        <DetectChar char="\" attribute="CharEscape" context="CharEscape"/>+                        <DetectChar attribute="String" context="#pop" char="&quot;"/>+                </context>+		<context attribute="String" lineEndContext="#stay" name="RawString"> 			<DetectChar attribute="String" context="#pop" char="&quot;"/> 		</context>+                <!-- These rules are't complete: they won't match r###"abc"### -->+                <context attribute="String" lineEndContext="#stay" name="RawHashed1">+                        <Detect2Chars attribute="String" context="#pop" char="&quot;" char1="#"/>+                </context>+                <context attribute="String" lineEndContext="#stay" name="RawHashed2">+                        <StringDetect attribute="String" context="#pop" String="&quot;##"/>+                </context> 		<context attribute="Character" lineEndContext="#pop" name="Character"> 			<DetectChar char="\" attribute="CharEscape" context="CharEscape"/> 			<DetectChar attribute="Character" context="#pop" char="&apos;"/>@@ -241,6 +320,7 @@ 		<context attribute="CharEscape" lineEndContext="#pop" name="CharEscape"> 			<AnyChar String="nrt\&apos;&quot;" attribute="CharEscape" context="#pop"/> 			<RegExpr String="x[0-9a-fA-F]{2}" attribute="CharEscape" context="#pop"/>+			<RegExpr String="u\{[0-9a-fA-F]{1,6}\}" attribute="CharEscape" context="#pop"/> 			<RegExpr String="u[0-9a-fA-F]{4}" attribute="CharEscape" context="#pop"/> 			<RegExpr String="U[0-9a-fA-F]{8}" attribute="CharEscape" context="#pop"/> 			<RegExpr String="." attribute="Error" context="#pop"/>@@ -251,25 +331,25 @@ 			<Detect2Chars char="*" char1="/" attribute="Comment" context="#pop" endRegion="Comment"/> 		</context> 	</contexts>-    <itemDatas>+	<itemDatas> 		<itemData name="Normal Text"  defStyleNum="dsNormal"/>-		<itemData name="Keyword"      defStyleNum="dsKeyword" color="#770088" bold="1"/>-		<itemData name="Self"         defStyleNum="dsKeyword" color="#FF0000" bold="1"/>-		<itemData name="Type"         defStyleNum="dsKeyword" color="#4e9a06" bold="1"/>-		<itemData name="Trait"        defStyleNum="dsKeyword" color="#4e9a06" bold="1"/>-		<itemData name="CType"        defStyleNum="dsNormal" color="#4e9a06"/>-		<itemData name="Constant"     defStyleNum="dsKeyword" color="#116644"/>-		<itemData name="CConstant"    defStyleNum="dsNormal" color="#116644"/>-		<itemData name="Definition"   defStyleNum="dsNormal" color="#0000FF"/>-		<itemData name="Comment"      defStyleNum="dsComment" color="#AA5500"/>-		<itemData name="Scope"        defStyleNum="dsNormal" color="#0055AA"/>-		<itemData name="Number"       defStyleNum="dsDecVal" color="#116644"/>-		<itemData name="String"       defStyleNum="dsString" color="#FF0000"/>-		<itemData name="CharEscape"   defStyleNum="dsChar" color="#FF0000" bold="1"/>-		<itemData name="Character"    defStyleNum="dsChar" color="#FF0000"/>-		<itemData name="Macro"        defStyleNum="dsOthers"/>-		<itemData name="Attribute"    defStyleNum="dsOthers"/>-		<itemData name="Lifetime"     defStyleNum="dsOthers" bold="1"/>+		<itemData name="Keyword"      defStyleNum="dsKeyword" spellChecking="0"/>+		<itemData name="Self"         defStyleNum="dsKeyword" spellChecking="0"/>+		<itemData name="Type"         defStyleNum="dsDataType" spellChecking="0"/>+		<itemData name="Trait"        defStyleNum="dsBuiltIn" spellChecking="0"/>+		<itemData name="CType"        defStyleNum="dsDataType" spellChecking="0"/>+		<itemData name="Constant"     defStyleNum="dsConstant" spellChecking="0"/>+		<itemData name="CConstant"    defStyleNum="dsConstant" spellChecking="0"/>+		<itemData name="Definition"   defStyleNum="dsNormal"/>+		<itemData name="Comment"      defStyleNum="dsComment"/>+		<itemData name="Scope"        defStyleNum="dsNormal"/>+		<itemData name="Number"       defStyleNum="dsDecVal"/>+		<itemData name="String"       defStyleNum="dsString"/>+		<itemData name="CharEscape"   defStyleNum="dsSpecialChar"/>+		<itemData name="Character"    defStyleNum="dsChar"/>+		<itemData name="Macro"        defStyleNum="dsPreprocessor"/>+		<itemData name="Attribute"    defStyleNum="dsAttribute"/>+		<itemData name="Lifetime"     defStyleNum="dsOthers" spellChecking="0"/> 		<itemData name="Error"        defStyleNum="dsError"/> 	</itemDatas> </highlighting>@@ -281,3 +361,4 @@ 	<keywords casesensitive="1" /> </general> </language>+
xml/scala.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Scala" version="1.0" kateversion="2.4" section="Sources"+<language name="Scala" version="1.0" kateversion="2.3" section="Sources"           extensions="*.scala" mimetype="text/x-scala" license="LGPL"           author="Stephane Micheloud (stephane.micheloud@epfl.ch)"> <!--
xml/sci.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="scilab" version="1.03" kateversion="2.3" section="Scientific" extensions="*.sci;*.sce" mimetype="text/x-sci">+<language name="scilab" version="1.03" kateversion="2.2" section="Scientific" extensions="*.sci;*.sce" mimetype="text/x-sci">   <highlighting>     <list name="Structure-keywords">       <item> do </item>
xml/sgml.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="SGML" version="1.02" kateversion="2.1" section="Markup" extensions="*.sgml" mimetype="text/sgml">+<language name="SGML" version="1.02" kateversion="2.2" section="Markup" extensions="*.sgml" mimetype="text/sgml">   <highlighting>     <contexts>        <context attribute="Normal Text" lineEndContext="#stay" name="Normal Text" >
xml/sql-mysql.xml view
@@ -5,7 +5,7 @@   original by Shane Wright (me@shanewright.co.uk)   modifications by Milian Wolff (mail@milianw.de) -->-<language name="SQL (MySQL)" version="1.15" kateversion="2.5" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Shane Wright (me@shanewright.co.uk)" license="">+<language name="SQL (MySQL)" version="1.16" kateversion="3.4" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Shane Wright (me@shanewright.co.uk)" license="">   <highlighting>     <list name="keywords">       <item> ACCESS </item>@@ -91,8 +91,8 @@       <item> MASTER_SERVER_ID </item>       <item> MATCH </item>       <item> MRG_MYISAM </item>-      <item> NATURAL </item>       <item> NATIONAL </item>+      <item> NATURAL </item>       <item> NOT </item>       <item> NULL </item>       <item> NUMERIC </item>@@ -183,196 +183,196 @@     <list name="functions">       <!-- string functions -->       <item> ASCII </item>-      <item> ORD </item>-      <item> CONV </item>       <item> BIN </item>-      <item> OCT </item>-      <item> HEX </item>+      <item> BIT_LENGTH </item>       <item> CHAR </item>+      <item> CHARACTER_LENGTH </item>+      <item> CHAR_LENGTH </item>       <item> CONCAT </item>       <item> CONCAT_WS </item>+      <item> CONV </item>+      <item> ELT </item>+      <item> EXPORT_SET </item>+      <item> FIELD </item>+      <item> FIND_IN_SET </item>+      <item> HEX </item>+      <item> INSERT </item>+      <item> INSTR </item>+      <item> LCASE </item>+      <item> LEFT </item>       <item> LENGTH </item>-      <item> OCTET_LENGTH </item>-      <item> CHAR_LENGTH </item>-      <item> CHARACTER_LENGTH </item>-      <item> BIT_LENGTH </item>+      <item> LOAD_FILE </item>       <item> LOCATE </item>-      <item> POSITION </item>-      <item> INSTR </item>+      <item> LOWER </item>       <item> LPAD </item>-      <item> RPAD </item>-      <item> LEFT </item>-      <item> RIGHT </item>-      <item> SUBSTRING </item>-      <item> SUBSTRING_INDEX </item>-      <item> MID </item>       <item> LTRIM </item>+      <item> MAKE_SET </item>+      <item> MID </item>+      <item> OCT </item>+      <item> OCTET_LENGTH </item>+      <item> ORD </item>+      <item> POSITION </item>+      <item> QUOTE </item>+      <item> REPEAT </item>+      <item> REPLACE </item>+      <item> REVERSE </item>+      <item> RIGHT </item>+      <item> RPAD </item>       <item> RTRIM </item>-      <item> TRIM </item>       <item> SOUNDEX </item>       <item> SPACE </item>-      <item> REPLACE </item>-      <item> REPEAT </item>-      <item> REVERSE </item>-      <item> INSERT </item>-      <item> ELT </item>-      <item> FIELD </item>-      <item> FIND_IN_SET </item>-      <item> MAKE_SET </item>-      <item> EXPORT_SET </item>-      <item> LCASE </item>-      <item> LOWER </item>+      <item> SUBSTRING </item>+      <item> SUBSTRING_INDEX </item>+      <item> TRIM </item>       <item> UCASE </item>       <item> UPPER </item>-      <item> LOAD_FILE </item>-      <item> QUOTE </item>       <!-- math functions -->       <item> ABS </item>-      <item> SIGN </item>-      <item> MOD </item>-      <item> FLOOR </item>+      <item> ACOS </item>+      <item> ASIN </item>+      <item> ATAN </item>+      <item> ATAN2 </item>       <item> CEILING </item>-      <item> ROUND </item>+      <item> COS </item>+      <item> COT </item>+      <item> DEGREES </item>       <item> EXP </item>+      <item> FLOOR </item>+      <item> GREATEST </item>+      <item> LEAST </item>       <item> LN </item>       <item> LOG </item>-      <item> LOG2 </item>       <item> LOG10 </item>+      <item> LOG2 </item>+      <item> MOD </item>+      <item> PI </item>       <item> POW </item>       <item> POWER </item>-      <item> SQRT </item>-      <item> PI </item>-      <item> COS </item>+      <item> RADIANS </item>+      <item> RAND </item>+      <item> ROUND </item>+      <item> SIGN </item>       <item> SIN </item>+      <item> SQRT </item>       <item> TAN </item>-      <item> ACOS </item>-      <item> ASIN </item>-      <item> ATAN </item>-      <item> ATAN2 </item>-      <item> COT </item>-      <item> RAND </item>-      <item> LEAST </item>-      <item> GREATEST </item>-      <item> DEGREES </item>-      <item> RADIANS </item>       <!-- date/time functions -->-      <item> DAYOFWEEK </item>-      <item> WEEKDAY </item>+      <item> ADDDATE </item>+      <item> CURDATE </item>+      <item> CURRENT_DATE </item>+      <item> CURRENT_TIME </item>+      <item> CURRENT_TIMESTAMP </item>+      <item> CURTIME </item>+      <item> DATE_ADD </item>+      <item> DATE_FORMAT </item>+      <item> DATE_SUB </item>+      <item> DAYNAME </item>       <item> DAYOFMONTH </item>+      <item> DAYOFWEEK </item>       <item> DAYOFYEAR </item>-      <item> MONTH </item>-      <item> DAYNAME </item>-      <item> MONTHNAME </item>-      <item> QUARTER </item>-      <item> WEEK </item>-      <item> YEAR </item>-      <item> YEARWEEK </item>+      <item> EXTRACT </item>+      <item> FROM_DAYS </item>+      <item> FROM_UNIXTIME </item>       <item> HOUR </item>       <item> MINUTE </item>-      <item> SECOND </item>+      <item> MONTH </item>+      <item> MONTHNAME </item>+      <item> NOW </item>       <item> PERIOD_ADD </item>       <item> PERIOD_DIFF </item>-      <item> DATE_ADD </item>-      <item> DATE_SUB </item>-      <item> ADDDATE </item>+      <item> QUARTER </item>+      <item> SECOND </item>+      <item> SEC_TO_TIME </item>       <item> SUBDATE </item>-      <item> EXTRACT </item>-      <item> TO_DAYS </item>-      <item> FROM_DAYS </item>-      <item> DATE_FORMAT </item>-      <item> TIME_FORMAT </item>-      <item> CURDATE </item>-      <item> CURRENT_DATE </item>-      <item> CURTIME </item>-      <item> CURRENT_TIME </item>-      <item> NOW </item>       <item> SYSDATE </item>-      <item> CURRENT_TIMESTAMP </item>-      <item> UNIX_TIMESTAMP </item>-      <item> FROM_UNIXTIME </item>-      <item> SEC_TO_TIME </item>+      <item> TIME_FORMAT </item>       <item> TIME_TO_SEC </item>+      <item> TO_DAYS </item>+      <item> UNIX_TIMESTAMP </item>+      <item> WEEK </item>+      <item> WEEKDAY </item>+      <item> YEAR </item>+      <item> YEARWEEK </item>       <!-- cast functions -->       <item> CAST </item>       <item> CONVERT </item>       <!-- misc -->+      <item> AES_DECRYPT </item>+      <item> AES_ENCRYPT </item>+      <item> BENCHMARK </item>       <item> BIT_COUNT </item>+      <item> CONNECTION_ID </item>       <item> DATABASE </item>-      <item> USER </item>-      <item> SYSTEM_USER </item>-      <item> SESSION_USER </item>-      <item> PASSWORD </item>-      <item> ENCRYPT </item>-      <item> ENCODE </item>       <item> DECODE </item>-      <item> MD5 </item>-      <item> SHA1 </item>-      <item> SHA </item>-      <item> AES_ENCRYPT </item>-      <item> AES_DECRYPT </item>-      <item> DES_ENCRYPT </item>       <item> DES_DECRYPT </item>-      <item> LAST_INSERT_ID </item>+      <item> DES_ENCRYPT </item>+      <item> ENCODE </item>+      <item> ENCRYPT </item>       <item> FORMAT </item>-      <item> VERSION </item>-      <item> CONNECTION_ID </item>+      <item> FOUND_ROWS </item>       <item> GET_LOCK </item>-      <item> RELEASE_LOCK </item>-      <item> IS_FREE_LOCK </item>-      <item> BENCHMARK </item>-      <item> INET_NTOA </item>       <item> INET_ATON </item>+      <item> INET_NTOA </item>+      <item> IS_FREE_LOCK </item>+      <item> LAST_INSERT_ID </item>       <item> MASTER_POS_WAIT </item>-      <item> FOUND_ROWS </item>+      <item> MD5 </item>+      <item> PASSWORD </item>+      <item> RELEASE_LOCK </item>+      <item> SESSION_USER </item>+      <item> SHA </item>+      <item> SHA1 </item>+      <item> SYSTEM_USER </item>+      <item> USER </item>+      <item> VERSION </item>       <!-- GROUP BY -->-      <item> COUNT </item>       <item> AVG </item>-      <item> MIN </item>+      <item> BIT_AND </item>+      <item> BIT_OR </item>+      <item> COUNT </item>       <item> MAX </item>-      <item> SUM </item>+      <item> MIN </item>       <item> STD </item>       <item> STDDEV </item>-      <item> BIT_OR </item>-      <item> BIT_AND </item>+      <item> SUM </item>     </list>     <list name="types">       <!-- strings -->-      <item> CHAR </item>-      <item> CHARACTER </item>-      <item> VARCHAR </item>       <item> BINARY </item>-      <item> VARBINARY </item>-      <item> TINYBLOB </item>-      <item> MEDIUMBLOB </item>       <item> BLOB </item>+      <item> CHAR </item>+      <item> CHARACTER </item>+      <item> ENUM </item>       <item> LONGBLOB </item>-      <item> TINYTEXT </item>+      <item> LONGTEXT </item>+      <item> MEDIUMBLOB </item>       <item> MEDIUMTEXT </item>       <item> TEXT </item>-      <item> LONGTEXT </item>-      <item> ENUM </item>+      <item> TINYBLOB </item>+      <item> TINYTEXT </item>+      <item> VARBINARY </item>+      <item> VARCHAR </item>       <!-- <item> SET </item>         needs special regexp (see below) -->       <!-- numeric -->+      <item> BIGINT </item>       <item> BIT </item>       <item> BOOL </item>       <item> BOOLEAN </item>-      <item> TINYINT </item>-      <item> SMALLINT </item>-      <item> MEDIUMINT </item>-      <item> MIDDLEINT </item>-      <item> INT </item>-      <item> INTEGER </item>-      <item> BIGINT </item>-      <item> FLOAT </item>-      <item> DOUBLE </item>-      <item> REAL </item>-      <item> DECIMAL </item>       <item> DEC </item>+      <item> DECIMAL </item>+      <item> DOUBLE </item>       <item> FIXED </item>-      <item> NUMERIC </item>+      <item> FLOAT </item>+      <item> INT </item>+      <item> INTEGER </item>       <item> LONG </item>+      <item> MEDIUMINT </item>+      <item> MIDDLEINT </item>+      <item> NUMERIC </item>+      <item> TINYINT </item>+      <item> REAL </item>       <item> SERIAL </item>+      <item> SMALLINT </item>       <!-- date and time -->       <item> DATE </item>       <item> DATETIME </item>@@ -382,7 +382,7 @@     </list>     <contexts>       <context name="Normal" attribute="Normal Text" lineEndContext="#stay">-        <DetectSpaces />+        <DetectSpaces/>         <!-- problematic special cases -->         <!-- SET type -->         <RegExpr attribute="Data Type" context="#stay" insensitive="true" String="SET(?=\s*\()"/>@@ -394,7 +394,7 @@         <keyword attribute="Function" context="#stay" String="functions"/>         <keyword attribute="Data Type" context="#stay" String="types"/> -        <DetectIdentifier />+        <DetectIdentifier/>         <!-- extra data types -->         <RegExpr attribute="Data Type" context="#stay" String="%(?:bulk_(?:exceptions|rowcount)|found|isopen|notfound|rowcount|rowtype|type)\b" insensitive="true"/>         <!-- numbers -->@@ -447,20 +447,20 @@       <context name="Preprocessor" attribute="Preprocessor" lineEndContext="#pop"/>     </contexts>     <itemDatas>-      <itemData name="Normal Text" defStyleNum="dsNormal" spellChecking="false"/>-      <itemData name="Keyword" defStyleNum="dsKeyword" spellChecking="false"/>-      <itemData name="Operator" defStyleNum="dsNormal" spellChecking="false"/>-      <itemData name="Function" defStyleNum="dsFunction" spellChecking="false"/>-      <itemData name="Data Type" defStyleNum="dsDataType" spellChecking="false"/>-      <itemData name="Decimal"  defStyleNum="dsDecVal" spellChecking="false"/>-      <itemData name="Float"  defStyleNum="dsFloat" spellChecking="false"/>-      <itemData name="Hex" defStyleNum="dsBaseN" spellChecking="false"/>-      <itemData name="String" defStyleNum="dsString"/>+      <itemData name="Normal Text"       defStyleNum="dsNormal" spellChecking="false"/>+      <itemData name="Keyword"           defStyleNum="dsKeyword" spellChecking="false"/>+      <itemData name="Operator"          defStyleNum="dsNormal" spellChecking="false"/>+      <itemData name="Function"          defStyleNum="dsFunction" spellChecking="false"/>+      <itemData name="Data Type"         defStyleNum="dsDataType" spellChecking="false"/>+      <itemData name="Decimal"           defStyleNum="dsDecVal" spellChecking="false"/>+      <itemData name="Hex"               defStyleNum="dsBaseN" spellChecking="false"/>+      <itemData name="Float"             defStyleNum="dsFloat" spellChecking="false"/>       <itemData name="Name" color="#080" defStyleNum="dsString" spellChecking="false"/>-      <itemData name="String Char" defStyleNum="dsChar" spellChecking="false"/>-      <itemData name="Comment" defStyleNum="dsComment"/>-      <itemData name="Symbol"  defStyleNum="dsChar" spellChecking="false"/>-      <itemData name="Preprocessor" defStyleNum="dsOthers" spellChecking="false"/>+      <itemData name="String"            defStyleNum="dsString"/>+      <itemData name="String Char"       defStyleNum="dsChar" spellChecking="false"/>+      <itemData name="Comment"           defStyleNum="dsComment"/>+      <itemData name="Symbol"            defStyleNum="dsChar" spellChecking="false"/>+      <itemData name="Preprocessor"      defStyleNum="dsOthers" spellChecking="false"/>     </itemDatas>   </highlighting>   <general>@@ -472,4 +472,3 @@     <folding indentationsensitive="true"/>   </general> </language>-
xml/sql-postgresql.xml view
@@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd"> <!-- PostgreSQL SQL, syntax definition based on sql.xml by Yury Lebedev -->-<language name="SQL (PostgreSQL)" version="1.12" kateversion="2.4" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Shane Wright (me@shanewright.co.uk)" license="">+<language name="SQL (PostgreSQL)" version="1.13" kateversion="2.4" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Shane Wright (me@shanewright.co.uk)" license="">   <highlighting>     <list name="keywords">       <item> ABORT </item>@@ -48,12 +48,12 @@       <item> CATALOG </item>       <item> CATALOG_NAME </item>       <item> CHAIN </item>-      <item> CHAR_LENGTH </item>+      <item> CHARACTERISTICS </item>       <item> CHARACTER_LENGTH </item>       <item> CHARACTER_SET_CATALOG </item>       <item> CHARACTER_SET_NAME </item>       <item> CHARACTER_SET_SCHEMA </item>-      <item> CHARACTERISTICS </item>+      <item> CHAR_LENGTH </item>       <item> CHECK </item>       <item> CHECKED </item>       <item> CHECKPOINT </item>@@ -81,11 +81,11 @@       <item> CONNECT </item>       <item> CONNECTION </item>       <item> CONNECTION_NAME </item>+      <item> CONSTRAINTS </item>       <item> CONSTRAINT </item>       <item> CONSTRAINT_CATALOG </item>       <item> CONSTRAINT_NAME </item>       <item> CONSTRAINT_SCHEMA </item>-      <item> CONSTRAINTS </item>       <item> CONSTRUCTOR </item>       <item> CONTAINS </item>       <item> CONTINUE </item>@@ -163,6 +163,7 @@       <item> EXISTS </item>       <item> EXPLAIN </item>       <item> EXTERNAL </item>+      <item> FALSE </item>       <item> FETCH </item>       <item> FINAL </item>       <item> FIRST </item>@@ -315,13 +316,13 @@       <item> OWNER </item>       <item> PAD </item>       <item> PARAMETER </item>+      <item> PARAMETERS </item>       <item> PARAMETER_MODE </item>       <item> PARAMETER_NAME </item>       <item> PARAMETER_ORDINAL_POSITION </item>       <item> PARAMETER_SPECIFIC_CATALOG </item>       <item> PARAMETER_SPECIFIC_NAME </item>       <item> PARAMETER_SPECIFIC_SCHEMA </item>-      <item> PARAMETERS </item>       <item> PARTIAL </item>       <item> PASCAL </item>       <item> PASSWORD </item>@@ -371,8 +372,8 @@       <item> ROUTINE_NAME </item>       <item> ROUTINE_SCHEMA </item>       <item> ROW </item>-      <item> ROW_COUNT </item>       <item> ROWS </item>+      <item> ROW_COUNT </item>       <item> RULE </item>       <item> SAVEPOINT </item>       <item> SCALE </item>@@ -404,8 +405,8 @@       <item> SOURCE </item>       <item> SPACE </item>       <item> SPECIFIC </item>-      <item> SPECIFIC_NAME </item>       <item> SPECIFICTYPE </item>+      <item> SPECIFIC_NAME </item>       <item> SQL </item>       <item> SQLCODE </item>       <item> SQLERROR </item>@@ -444,9 +445,9 @@       <item> TOAST </item>       <item> TRAILING </item>       <item> TRANSACTION </item>-      <item> TRANSACTION_ACTIVE </item>       <item> TRANSACTIONS_COMMITTED </item>       <item> TRANSACTIONS_ROLLED_BACK </item>+      <item> TRANSACTION_ACTIVE </item>       <item> TRANSFORM </item>       <item> TRANSFORMS </item>       <item> TRANSLATE </item>@@ -457,6 +458,7 @@       <item> TRIGGER_NAME </item>       <item> TRIGGER_SCHEMA </item>       <item> TRIM </item>+      <item> TRUE </item>       <item> TRUNCATE </item>       <item> TRUSTED </item>       <item> TYPE </item>@@ -498,10 +500,8 @@       <item> WRITE </item>       <item> YEAR </item>       <item> ZONE </item>-      <item> FALSE </item>-      <item> TRUE </item>     </list>-  <list name="operators">+    <list name="operators">       <item> + </item>       <item> - </item>       <item> * </item>@@ -557,8 +557,8 @@       <!-- network address type -->       <item> &lt;&lt;= </item>       <item> &gt;&gt;= </item>-   </list>-     <list name="functions">+    </list>+    <list name="functions">       <!-- math -->       <item> ABS </item>       <item> CBRT </item>@@ -683,57 +683,57 @@       <item> VARIANCE </item>     </list>     <list name="types">-      <item> LZTEXT </item>       <item> BIGINT </item>-      <item> INT2 </item>-      <item> INT8 </item>       <item> BIGSERIAL </item>-      <item> SERIAL8 </item>       <item> BIT </item>       <item> BIT VARYING </item>-      <item> VARBIT </item>-      <item> BOOLEAN </item>       <item> BOOL </item>+      <item> BOOLEAN </item>       <item> BOX </item>       <item> BYTEA </item>-      <item> CHARACTER </item>       <item> CHAR </item>+      <item> CHARACTER </item>       <item> CHARACTER VARYING </item>-      <item> VARCHAR </item>       <item> CIDR </item>       <item> CIRCLE </item>       <item> DATE </item>+      <item> DECIMAL </item>       <item> DOUBLE PRECISION </item>       <item> FLOAT8 </item>       <item> INET </item>-      <item> INTEGER </item>       <item> INT </item>+      <item> INT2 </item>       <item> INT4 </item>+      <item> INT8 </item>+      <item> INTEGER </item>       <item> INTERVAL </item>       <item> LINE </item>       <item> LSEG </item>+      <item> LZTEXT </item>       <item> MACADDR </item>       <item> MONEY </item>       <item> NUMERIC </item>-      <item> DECIMAL </item>       <item> OID </item>       <item> PATH </item>       <item> POINT </item>       <item> POLYGON </item>       <item> REAL </item>-      <item> SMALLINT </item>       <item> SERIAL </item>+      <item> SERIAL8 </item>+      <item> SMALLINT </item>       <item> TEXT </item>       <item> TIME </item>-      <item> TIMETZ </item>       <item> TIMESTAMP </item>-      <item> TIMESTAMPTZ </item>       <item> TIMESTAMP WITH TIMEZONE </item>+      <item> TIMESTAMPTZ </item>+      <item> TIMETZ </item>+      <item> VARBIT </item>+      <item> VARCHAR </item>     </list>     <contexts>       <context name="Normal" attribute="Normal Text" lineEndContext="#stay">         <!-- HACK: don't jump into MultiLineString for CREATE FUNCTION $funcName$...$funcName$ -->-        <StringDetect String="CREATE FUNCTION" context="CreateFunction" attribute="Keyword" />+        <StringDetect String="CREATE FUNCTION" context="CreateFunction" attribute="Keyword"/>         <keyword attribute="Keyword" context="#stay" String="keywords"/>         <keyword attribute="Operator" context="#stay" String="operators"/>         <keyword attribute="Function" context="#stay" String="functions"/>@@ -760,15 +760,15 @@         <RegExpr attribute="Operator" context="MultiLineString" String="\$([^\$\n\r]*)\$" dynamic="true"/>       </context>       <context name="CreateFunction" attribute="Normal Text" lineEndContext="#stay">-          <RegExpr attribute="Function" context="FunctionBody" String="\$([^\$\n\r]*)\$" dynamic="true"/>-          <IncludeRules context="Normal" />+        <RegExpr attribute="Function" context="FunctionBody" String="\$([^\$\n\r]*)\$" dynamic="true"/>+        <IncludeRules context="Normal"/>       </context>       <context name="FunctionBody" attribute="Normal Text" lineEndContext="#stay" dynamic="true">-          <RegExpr attribute="Function" context="#pop#pop" String="\$%1\$" dynamic="true"/>-          <IncludeRules context="Normal" />+        <RegExpr attribute="Function" context="#pop#pop" String="\$%1\$" dynamic="true"/>+        <IncludeRules context="Normal"/>       </context>       <context name="MultiLineString" attribute="String" lineEndContext="#stay" dynamic="true">-          <RegExpr attribute="Operator" context="#pop" String="\$%1\$" dynamic="true"/>+        <RegExpr attribute="Operator" context="#pop" String="\$%1\$" dynamic="true"/>       </context>       <context name="String" attribute="String" lineEndContext="#stay">         <LineContinue attribute="String" context="#pop"/>@@ -787,19 +787,19 @@       <context name="Preprocessor" attribute="Preprocessor" lineEndContext="#pop"/>     </contexts>     <itemDatas>-      <itemData name="Normal Text" defStyleNum="dsNormal"/>-      <itemData name="Keyword" defStyleNum="dsKeyword"/>-      <itemData name="Operator" defStyleNum="dsNormal"/>-      <itemData name="Function" defStyleNum="dsFunction"/>-      <itemData name="Data Type" defStyleNum="dsDataType"/>-      <itemData name="Decimal"  defStyleNum="dsDecVal"/>-      <itemData name="Float"  defStyleNum="dsFloat"/>-      <itemData name="String" defStyleNum="dsString"/>-      <itemData name="String Char" defStyleNum="dsChar"/>-      <itemData name="Comment" defStyleNum="dsComment"/>-      <itemData name="Identifier" defStyleNum="dsOthers"/>-      <itemData name="Symbol"  defStyleNum="dsChar"/>-      <itemData name="Preprocessor" defStyleNum="dsOthers"/>+      <itemData name="Normal Text"       defStyleNum="dsNormal"/>+      <itemData name="Keyword"           defStyleNum="dsKeyword"/>+      <itemData name="Operator"          defStyleNum="dsNormal"/>+      <itemData name="Function"          defStyleNum="dsFunction"/>+      <itemData name="Data Type"         defStyleNum="dsDataType"/>+      <itemData name="Decimal"           defStyleNum="dsDecVal"/>+      <itemData name="Float"             defStyleNum="dsFloat"/>+      <itemData name="String"            defStyleNum="dsString"/>+      <itemData name="String Char"       defStyleNum="dsChar"/>+      <itemData name="Comment"           defStyleNum="dsComment"/>+      <itemData name="Identifier"        defStyleNum="dsOthers"/>+      <itemData name="Symbol"            defStyleNum="dsChar"/>+      <itemData name="Preprocessor"      defStyleNum="dsOthers"/>     </itemDatas>   </highlighting>   <general>@@ -807,6 +807,6 @@       <comment name="singleLine" start="--"/>       <comment name="multiLine" start="/*" end="*/"/>     </comments>-    <keywords casesensitive="0" weakDeliminator="+-*/|!@&amp;#&lt;&gt;%^=~:.?"/>+    <keywords casesensitive="0" weakDeliminator="+-*/|=!&lt;&gt;~^:.@&amp;#%?"/>   </general> </language>
xml/sql.xml view
@@ -3,7 +3,7 @@ <!-- Oracle10g SQL and PL/SQL syntax - ANSI SQL 2003 superset --> <!-- This file is maintained by Anders Lund <anders@alweb.dk> since 2005-11-06 --> <!-- kate: space-indent on; indent-width 2; replace-tabs on; -->-<language name="SQL" version="1.16" kateversion="2.4" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Yury Lebedev (yurylebedev@mail.ru)" license="LGPL">+<language name="SQL" version="1.17" kateversion="2.4" section="Database" extensions="*.sql;*.SQL;*.ddl;*.DDL" mimetype="text/x-sql" casesensitive="0" author="Yury Lebedev (yurylebedev@mail.ru)" license="LGPL">   <highlighting>     <list name="keywords">       <item> ACCESS </item>@@ -15,8 +15,8 @@       <item> AFTER </item>       <item> AGENT </item>       <item> ALL </item>-      <item> ALL_ROWS </item>       <item> ALLOCATE </item>+      <item> ALL_ROWS </item>       <item> ALTER </item>       <item> ANALYZE </item>       <item> ANCILLARY </item>@@ -49,8 +49,8 @@       <item> BLOCK </item>       <item> BLOCK_RANGE </item>       <item> BODY </item>-      <item> BOUND </item>       <item> BOTH </item>+      <item> BOUND </item>       <item> BREAK </item>       <item> BROADCAST </item>       <item> BTITLE </item>@@ -282,12 +282,12 @@       <item> MAXSIZE </item>       <item> MAXTRANS </item>       <item> MAXVALUE </item>-      <item> METHOD </item>       <item> MEMBER </item>       <item> MERGE </item>+      <item> METHOD </item>+      <item> MINEXTENTS </item>       <item> MINIMIZE </item>       <item> MINIMUM </item>-      <item> MINEXTENTS </item>       <item> MINUS </item>       <item> MINUTE </item>       <item> MINVALUE </item>@@ -482,8 +482,8 @@       <item> SERIALIZABLE </item>       <item> SERVERERROR </item>       <item> SESSION </item>-      <item> SESSION_CACHED_CURSORS </item>       <item> SESSIONS_PER_USER </item>+      <item> SESSION_CACHED_CURSORS </item>       <item> SET </item>       <item> SHARE </item>       <item> SHARED </item>@@ -505,8 +505,8 @@       <item> START </item>       <item> STARTUP </item>       <item> STATEMENT_ID </item>-      <item> STATISTICS </item>       <item> STATIC </item>+      <item> STATISTICS </item>       <item> STOP </item>       <item> STORAGE </item>       <item> STORE </item>@@ -519,14 +519,14 @@       <item> SUPPLEMENTAL </item>       <item> SUSPEND </item>       <item> SWITCH </item>-      <item> SYS_OP_BITVEC </item>-      <item> SYS_OP_ENFORCE_NOT_NULL$ </item>-      <item> SYS_OP_NOEXPAND </item>-      <item> SYS_OP_NTCIMG$ </item>       <item> SYNONYM </item>       <item> SYSDBA </item>       <item> SYSOPER </item>       <item> SYSTEM </item>+      <item> SYS_OP_BITVEC </item>+      <item> SYS_OP_ENFORCE_NOT_NULL$ </item>+      <item> SYS_OP_NOEXPAND </item>+      <item> SYS_OP_NTCIMG$ </item>       <item> TABLE </item>       <item> TABLES </item>       <item> TABLESPACE </item>@@ -569,14 +569,14 @@       <item> UNTIL </item>       <item> UNUSABLE </item>       <item> UNUSED </item>-      <item> UPD_INDEXES </item>       <item> UPDATABLE </item>       <item> UPDATE </item>+      <item> UPD_INDEXES </item>       <item> UPPPER </item>       <item> USAGE </item>       <item> USE </item>-      <item> USE_STORED_OUTLINES </item>       <item> USER_DEFINED </item>+      <item> USE_STORED_OUTLINES </item>       <item> USING </item>       <item> VALIDATE </item>       <item> VALIDATION </item>@@ -864,8 +864,8 @@       <item> PLS_INTEGER </item>       <item> PRECISION </item>       <item> RAW </item>-      <item> RECORD </item>       <item> REAL </item>+      <item> RECORD </item>       <item> ROWID </item>       <item> SECOND </item>       <item> SINGLE </item>@@ -877,48 +877,50 @@       <item> UROWID </item>       <item> VARCHAR </item>       <item> VARCHAR2 </item>-      <item> VARYING </item>       <item> VARRAY </item>+      <item> VARYING </item>       <item> XMLTYPE </item>       <item> YEAR </item>       <item> ZONE </item>     </list>     <contexts>       <context name="Normal" attribute="Normal Text" lineEndContext="#stay">-        <DetectSpaces />+        <DetectSpaces/>          <keyword attribute="Keyword" String="keywords" context="#stay"/>         <keyword attribute="Operator" String="operators" context="#stay"/>         <keyword attribute="Function" String="functions" context="#stay"/>         <keyword attribute="Data Type" String="types" context="#stay"/> -        <DetectIdentifier />-+        <DetectIdentifier/>+        <!-- extra data types -->         <RegExpr attribute="Data Type" context="#stay" String="%(?:bulk_(?:exceptions|rowcount)|found|isopen|notfound|rowcount|rowtype|type)\b" insensitive="true"/>-+        <!-- numbers -->         <HlCHex attribute="Hex" context="#stay"/>         <Float attribute="Float" context="#stay"/>         <Int attribute="Decimal" context="#stay"/>-+        <!-- strings -->         <DetectChar attribute="String" context="String literal" char="'"/>+        <!-- comments -->         <Detect2Chars attribute="Comment" context="Singleline PL/SQL-style comment" char="-" char1="-"/>-        <Detect2Chars attribute="Comment" context="Multiline C-style comment" char="/" char1="*"/>+        <Detect2Chars attribute="Comment" context="Multiline C-style comment" char="/" char1="*" beginRegion="Comment"/>         <RegExpr attribute="Comment" context="SQL*Plus remark directive" String="^rem\b" insensitive="true" column="0"/>+         <DetectChar attribute="Identifier" context="User-defined identifier" char="&quot;"/>         <RegExpr attribute="External Variable" context="#stay" String="(:|&amp;&amp;?)\w+"/>         <RegExpr attribute="Symbol" context="#stay" String="^/$" column="0"/>         <RegExpr attribute="Preprocessor" context="SQL*Plus directive to include file" String="^@@?[^@ \t\r\n]" column="0"/>       </context>       <context name="String literal" attribute="String" lineEndContext="#stay">-        <Detect2Chars attribute="String" context="#pop" char="\" char1="'" />+        <Detect2Chars attribute="String" context="#pop" char="\" char1="'"/>         <HlCStringChar attribute="String Char" context="#stay"/>         <RegExpr attribute="External Variable" context="#stay" String="&amp;&amp;?\w+"/>-        <Detect2Chars attribute="String Char" context="#stay" char="'" char1="'" />+        <Detect2Chars attribute="String Char" context="#stay" char="'" char1="'"/>         <DetectChar attribute="String" context="#pop" char="'"/>       </context>       <context name="Singleline PL/SQL-style comment" attribute="Comment" lineEndContext="#pop"/>       <context name="Multiline C-style comment" attribute="Comment" lineEndContext="#stay">-        <Detect2Chars attribute="Comment" context="#pop" char="*" char1="/"/>+        <Detect2Chars attribute="Comment" context="#pop" char="*" char1="/" endRegion="Comment"/>       </context>       <context name="SQL*Plus remark directive" attribute="Comment" lineEndContext="#pop"/>       <context name="User-defined identifier" attribute="Identifier" lineEndContext="#pop">@@ -933,7 +935,7 @@       <itemData name="Function"          defStyleNum="dsFunction"/>       <itemData name="Data Type"         defStyleNum="dsDataType"/>       <itemData name="Decimal"           defStyleNum="dsDecVal"/>-      <itemData name="Hex"             defStyleNum="dsBaseN"/>+      <itemData name="Hex"               defStyleNum="dsBaseN"/>       <itemData name="Float"             defStyleNum="dsFloat"/>       <itemData name="String"            defStyleNum="dsString"/>       <itemData name="String Char"       defStyleNum="dsChar"/>
xml/texinfo.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="Texinfo" extensions="*.texi" section="Markup" mimetype="application/x-texinfo" author="Daniel Franke (franke.daniel@gmail.com)" license="LGPL" version="0.2" kateversion="2.3">+<language name="Texinfo" extensions="*.texi" section="Markup" mimetype="application/x-texinfo" author="Daniel Franke (franke.daniel@gmail.com)" license="LGPL" version="0.2" kateversion="2.4">    <highlighting>     <!--
xml/vhdl.xml view
@@ -8,7 +8,7 @@   <!ENTITY label     "((&varname;)\s*:\s*)?">  ]>-<language name="VHDL" version="1.11" kateversion="3.5" section="Hardware" extensions="*.vhdl;*.vhd" mimetype="text/x-vhdl" author="Rocky Scaletta (rocky@purdue.edu), Stefan Endrullis (stefan@endrullis.de), Florent Ouchet (outchy@users.sourceforge.net), Chris Higgs (chiggs.99@gmail.com), Jan Michel (jan@mueschelsoft.de)">+<language name="VHDL" version="1.12" kateversion="3.0" section="Hardware" extensions="*.vhdl;*.vhd" mimetype="text/x-vhdl" author="Rocky Scaletta (rocky@purdue.edu), Stefan Endrullis (stefan@endrullis.de), Florent Ouchet (outchy@users.sourceforge.net), Chris Higgs (chiggs.99@gmail.com), Jan Michel (jan@mueschelsoft.de)">   <highlighting>     <list name="keywordsToplevel">       <item> file </item>@@ -42,6 +42,7 @@       <item> fairness </item>       <item> falling_edge </item>       <item> file </item>+      <item> for </item>       <item> force </item>       <item> function </item>       <item> generate </item>@@ -173,7 +174,7 @@       <item>hr</item>     </list> -    +     <list name="types">       <item> bit </item>       <item> bit_vector </item>@@ -231,12 +232,12 @@          <RegExpr attribute="Control" context="architecture_main" insensitive="true" dynamic="true" lookAhead="true"                  String="&bos;architecture\s+(&varname;)&eos;"/>-        <StringDetect attribute="Control" context="entity" +        <StringDetect attribute="Control" context="entity"                  String="entity"/>         <RegExpr attribute="Control" context="package" insensitive="true" lookAhead="true" dynamic="true" beginRegion="PackageRegion1"                  String="&bos;package\s+(&varname;)\s+is&eos;"/>-        <RegExpr attribute="Control" context="packagebody" lookAhead="true" insensitive="true" dynamic="true" beginRegion="PackageBodyRegion1" -                 String="&bos;package\s+body\s+(&varname;)\s+is&eos;"/>            +        <RegExpr attribute="Control" context="packagebody" lookAhead="true" insensitive="true" dynamic="true" beginRegion="PackageBodyRegion1"+                 String="&bos;package\s+body\s+(&varname;)\s+is&eos;"/>        <!-- <StringDetect  attribute="Control"  context="arch_decl"      String="package"     />temporary-->         <RegExpr attribute="Control" context="configuration" insensitive="true" dynamic="true" lookAhead="true"                  String="&bos;configuration\s+(&varname;)&eos;"/>@@ -248,30 +249,30 @@         <IncludeRules context="preDetection"/>         <RegExpr attribute="Control"   context="#stay" insensitive="true" String="&bos;package&eos;" />         <RegExpr attribute="Keyword"   context="packagemain" insensitive="true" String="&bos;is&eos;" />-        <RegExpr attribute="Name"      context="#stay"     insensitive="true" String="&bos;%2&eos;" dynamic="true"/>        +        <RegExpr attribute="Name"      context="#stay"     insensitive="true" String="&bos;%2&eos;" dynamic="true"/>         <RegExpr attribute="Redirection" context="#pop"  dynamic="true" endRegion="PackageRegion1" insensitive="true"                  String="&bos;end(\s+package)?(\s+%2)?\s*;" />         <IncludeRules context="generalDetection"/>       </context>-      +       <context name="packagemain" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>         <RegExpr attribute="Keyword"   context="#pop" lookAhead="true" insensitive="true" String="&bos;end&eos;" />         <RegExpr attribute="Keyword"   context="packagefunction" insensitive="true" String="&bos;function&eos;" />         <IncludeRules context="generalDetection"/>       </context>-  +       <context name="packagefunction" attribute="Normal Text" lineEndContext="#stay">         <RegExpr attribute="Name" context="#pop" insensitive="true" String="&bos;&varname;&eos;" />       </context>-  +       <!-- package body environment -->        <context name="packagebody" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>         <RegExpr attribute="Control"   context="#stay" insensitive="true" String="&bos;package&eos;" />         <RegExpr attribute="Keyword"   context="packagebodymain" insensitive="true" String="&bos;is&eos;" />-        <RegExpr attribute="Name"      context="#stay"     insensitive="true" String="&bos;%2&eos;" dynamic="true"/>  +        <RegExpr attribute="Name"      context="#stay"     insensitive="true" String="&bos;%2&eos;" dynamic="true"/>         <RegExpr attribute="Redirection" context="#pop" dynamic="true" endRegion="PackageBodyRegion1" insensitive="true"                  String="&bos;end(\s+package)?(\s+%2)?\s*;" />         <IncludeRules context="generalDetection"/>@@ -283,27 +284,27 @@         <RegExpr attribute="Keyword"   context="packagebodyfunc1" beginRegion="PackBodyFunc" insensitive="true" dynamic="true" lookAhead="true" String="&bos;function\s+(&varname;)&eos;" />         <IncludeRules context="generalDetection"/>       </context>-  +       <context name="packagebodyfunc1" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>         <RegExpr attribute="Redirection" context="packagebodyfunc2" beginRegion="RegionFunction" insensitive="true" String="&bos;begin&eos;" />         <RegExpr attribute="Keyword"   context="#pop" insensitive="true" endRegion="PackBodyFunc" dynamic="true" String="&bos;end(\s+function)?(\s+%2)?&eos;" />         <RegExpr attribute="Name" context="#stay" insensitive="true" String="&bos;%2&eos;"  dynamic="true"/>         <IncludeRules context="generalDetection"/>-      </context>    -      +      </context>+       <context name="packagebodyfunc2" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>         <RegExpr attribute="Redirection" context="#pop" insensitive="true" dynamic="true" lookAhead="true" endRegion="RegionFunction"                  String="&bos;end(\s+function)?&eos;"/>         <!--<RegExpr attribute="Error" context="#pop" insensitive="true" dynamic="true" lookAhead="true" endRegion="RegionFunction"                  String="&bos;end\s+function(\s+&varname;)?&eos;"/>-->-        <RegExpr attribute="Process" context="#stay" insensitive="true" +        <RegExpr attribute="Process" context="#stay" insensitive="true"                  String="&bos;begin&eos;"/>         <IncludeRules context="proc_rules"/>-      </context>      -      -      +      </context>++ <!--====ARCHITECTURE ===============-->       <context name="architecture_main" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>@@ -324,7 +325,7 @@         <RegExpr attribute="Reference" context="#stay"     insensitive="true" String="&bos;%4&eos;" dynamic="true"/>         <IncludeRules context="generalDetection"/>       </context>-      +       <context name="arch_decl" attribute="Normal Text" lineEndContext="#stay">         <IncludeRules context="preDetection"/>         <keyword attribute="Signal" context="signal"         insensitive="true" String="signals"/>@@ -335,11 +336,11 @@  <!-- parts of architecture body -->       <context name="detect_arch_parts" attribute="Normal Text" lineEndContext="#stay" dynamic="true">-        <RegExpr attribute="Normal Text" context="generate1" lookAhead="true" insensitive="true" dynamic="true" +        <RegExpr attribute="Normal Text" context="generate1" lookAhead="true" insensitive="true" dynamic="true"                  String="&bos;(&varname;\s*:\s*)(if|for).*\s+generate&eos;"/>-        <RegExpr attribute="Normal Text" context="process1" lookAhead="true" insensitive="true" dynamic="true" +        <RegExpr attribute="Normal Text" context="process1" lookAhead="true" insensitive="true" dynamic="true"                  String="&bos;(&varname;\s*:\s*)?process&eos;"/>-        <RegExpr attribute="Normal Text" context="instance" lookAhead="true" insensitive="true" dynamic="true" beginRegion="InstanceRegion1" +        <RegExpr attribute="Normal Text" context="instance" lookAhead="true" insensitive="true" dynamic="true" beginRegion="InstanceRegion1"                  String="&bos;(&varname;)\s*:\s*((entity\s+)?(&varname;)(\.&varname;)?)"/>          <IncludeRules context="generalDetection"/>@@ -348,18 +349,18 @@ <!--====generate ===============-->       <context name="generate1" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="generate2" insensitive="true" beginRegion="GenerateRegion" +        <RegExpr attribute="Control" context="generate2" insensitive="true" beginRegion="GenerateRegion"                  String="&bos;(generate|loop)&eos;"/>-        <RegExpr attribute="Name"      context="#stay" dynamic="true" insensitive="true" +        <RegExpr attribute="Name"      context="#stay" dynamic="true" insensitive="true"                  String="&bos;%3&eos;"/>-        <RegExpr attribute="Control" context="#stay"                insensitive="true" +        <RegExpr attribute="Control" context="#stay"                insensitive="true"                  String="&bos;(for|if|while)&eos;"/>         <IncludeRules context="generalDetection"/>       </context>        <context name="generate2" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="#stay" insensitive="true" +        <RegExpr attribute="Control" context="#stay" insensitive="true"                  String="&bos;begin&eos;"/>         <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="GenerateRegion"                  String="&bos;end\s+(generate|loop)(\s+&varname;)?"/>@@ -376,17 +377,17 @@                  String="&bos;end\s+process(\s+%3)?"/>         <RegExpr attribute="Error" context="#pop" insensitive="true" dynamic="true" endRegion="RegionProcess"                  String="&bos;end\s+process(\s+&varname;)?"/>-        <RegExpr attribute="Process" context="#stay" insensitive="true" beginRegion="RegionProcess" +        <RegExpr attribute="Process" context="#stay" insensitive="true" beginRegion="RegionProcess"                  String="&bos;process&eos;"/>-        <RegExpr attribute="Process" context="#stay" insensitive="true" +        <RegExpr attribute="Process" context="#stay" insensitive="true"                  String="&bos;begin&eos;"/>         <IncludeRules context="proc_rules"/>       </context>        <context name="proc_rules" attribute="Normal Text" lineEndContext="#stay" dynamic="true">-         <RegExpr attribute="Name" context="#stay" insensitive="true" +         <RegExpr attribute="Name" context="#stay" insensitive="true"                   String="&bos;&varname;(?=\s*:(?!=))"/>-         <RegExpr attribute="Control" context="if_start" insensitive="true" +         <RegExpr attribute="Control" context="if_start" insensitive="true"                   String="&bos;if&eos;"/>          <RegExpr attribute="Control" context="case1" lookAhead="true" insensitive="true"                   String="&bos;case&eos;"/>@@ -418,7 +419,7 @@         <DetectChar attribute="Normal Text" context="#pop" char=")" endRegion="InstanceMapRegion"/>         <DetectChar attribute="Normal Text" context="instanceInnerPar" char="("/>         <IncludeRules context="generalDetection"/>-      </context>      +      </context>        <!-- Inside parantheses inside a map-->       <context name="instanceInnerPar" attribute="Normal Text" lineEndContext="#stay" dynamic="true">@@ -427,23 +428,23 @@         <DetectChar attribute="Normal Text" context="instanceInnerPar" char="("/>         <DetectChar attribute="Error" context="#stay" char=";"/>         <IncludeRules context="generalDetection"/>-      </context>       -      +      </context>+ <!--====loop ===============-->       <context name="forwhile1" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="forwhile2" insensitive="true" beginRegion="ForWhileRegion" +        <RegExpr attribute="Control" context="forwhile2" insensitive="true" beginRegion="ForWhileRegion"                  String="&bos;loop&eos;"/>-        <RegExpr attribute="Name"      context="#stay" dynamic="true" insensitive="true" +        <RegExpr attribute="Name"      context="#stay" dynamic="true" insensitive="true"                  String="&bos;%3&eos;"/>-        <RegExpr attribute="Control" context="#stay"                insensitive="true" +        <RegExpr attribute="Control" context="#stay"                insensitive="true"                  String="&bos;(for|while)&eos;"/>         <IncludeRules context="generalDetection"/>       </context>        <context name="forwhile2" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="#stay" insensitive="true" +        <RegExpr attribute="Control" context="#stay" insensitive="true"                  String="&bos;begin&eos;"/>         <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="ForWhileRegion"                  String="&bos;end\s+loop(\s+&varname;)?"/>@@ -453,14 +454,14 @@ <!--====if ===============-->       <context name="if_start" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="if" insensitive="true" beginRegion="IfRegion1" +        <RegExpr attribute="Control" context="if" insensitive="true" beginRegion="IfRegion1"                  String="&bos;then&eos;"/>         <IncludeRules context="generalDetection"/>       </context>        <context name="if" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="IfRegion1" +        <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="IfRegion1"                  String="&bos;end\s+if(\s+&varname;)?\s*;"/>         <IncludeRules context="proc_rules"/>         <keyword attribute="Control" context="#stay" insensitive="true" String="if"/>@@ -471,17 +472,17 @@        <context name="case1" attribute="Normal Text" lineEndContext="#stay">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Keyword" context="case2" insensitive="true" +        <RegExpr attribute="Keyword" context="case2" insensitive="true"                  String="&bos;is&eos;"/>         <keyword attribute="Control" context="#stay" insensitive="true" beginRegion="CaseRegion1" String="case"/>         <IncludeRules context="generalDetection"/>       </context>-      +       <context name="case2" attribute="Normal Text" lineEndContext="#stay">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="CaseRegion1" +        <RegExpr attribute="Control" context="#pop#pop" insensitive="true" endRegion="CaseRegion1"                  String="&bos;end\s+case(&varname;)?\s*;"/>-        <RegExpr attribute="Control" context="caseWhen" lookAhead="true" dynamic="true" insensitive="true" +        <RegExpr attribute="Control" context="caseWhen" lookAhead="true" dynamic="true" insensitive="true"                  String="&bos;when(\s+&varname;)?&eos;"/>         <IncludeRules context="proc_rules"/>       </context>@@ -489,18 +490,18 @@       <context name="caseWhen" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <Detect2Chars char="=" char1="&gt;" attribute="Operator" context="caseWhen2" beginRegion="CaseWhenRegion1"/>         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Control" insensitive="true" +        <RegExpr attribute="Control" insensitive="true"                  String="&bos;when&eos;"/>-        <RegExpr attribute="Name" insensitive="true" dynamic="true" +        <RegExpr attribute="Name" insensitive="true" dynamic="true"                  String="&bos;%2&eos;"/>         <IncludeRules context="proc_rules"/>-      </context>       +      </context>        <context name="caseWhen2" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>         <RegExpr attribute="Control" context="#pop#pop" lookAhead="true" insensitive="true" endRegion="CaseWhenRegion1"                  String="^\s*when&eos;"/>-        <RegExpr attribute="Control" context="#pop#pop" lookAhead="true" insensitive="true" endRegion="CaseWhenRegion1" +        <RegExpr attribute="Control" context="#pop#pop" lookAhead="true" insensitive="true" endRegion="CaseWhenRegion1"                  String="^\s*end\s+case&eos;"/>         <IncludeRules context="proc_rules"/>       </context>@@ -514,7 +515,7 @@        <context name="entity" attribute="Normal Text" lineEndContext="#stay" dynamic="true">         <IncludeRules context="preDetection"/>-        <RegExpr attribute="Name" context="entity_main" beginRegion="EntityRegion1" insensitive="true" +        <RegExpr attribute="Name" context="entity_main" beginRegion="EntityRegion1" insensitive="true"                  String="(&varname;)"/>         <IncludeRules context="generalDetection"/>       </context>@@ -550,22 +551,22 @@         <RegExpr attribute="Reference" context="#stay"     insensitive="true" String="&bos;%4&eos;" dynamic="true"/>         <IncludeRules context="generalDetection"/>       </context>-      +       <context name="conf_decl" attribute="Normal Text" lineEndContext="#stay">         <IncludeRules context="preDetection"/>         <StringDetect attribute="Control" context="conf_for" insensitive="true" String="for"/>         <StringDetect attribute="Control" context="#pop#pop" insensitive="true" lookAhead="true"  String="end"/>         <IncludeRules context="generalDetection"/>-      </context>      -      -      <context name="conf_for" attribute="Normal Text" lineEndContext="#stay">      +      </context>++      <context name="conf_for" attribute="Normal Text" lineEndContext="#stay">         <IncludeRules context="preDetection"/>         <StringDetect attribute="Control" context="conf_for" insensitive="true" String="for"/>         <RegExpr attribute="Control" context="#pop" insensitive="true"  String="end(\s+&varname;)?"/>-        <IncludeRules context="generalDetection"/>        +        <IncludeRules context="generalDetection"/>       </context>-      -      ++ <!--====Basic Stuff ===============--> <!-- basic rules -->       <context name="preDetection" attribute="Normal Text" lineEndContext="#stay">@@ -575,8 +576,8 @@         <DetectChar attribute="Attribute" context="attribute" char="'"/>       </context> -      -      ++ <!-- general detection -->       <context name="generalDetection" attribute="Normal Text" lineEndContext="#stay">         <keyword attribute="Data Type" context="#stay" String="types"/>
xml/xml.xml view
@@ -6,7 +6,7 @@ 	<!ENTITY name    "(?![0-9])[\w_:][\w.:_-]*"> 	<!ENTITY entref  "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);"> ]>-<language name="XML" version="2.03" kateversion="2.4" section="Markup" extensions="*.docbook;*.xml;*.rc;*.daml;*.rdf;*.rss;*.xspf;*.xsd;*.svg;*.ui;*.kcfg;*.qrc;*.wsdl" mimetype="text/xml;text/book;text/daml;text/rdf;application/rss+xml;application/xspf+xml;image/svg+xml;application/x-designer;application/xml" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL">+<language name="XML" version="2.03" kateversion="3.4" section="Markup" extensions="*.docbook;*.xml;*.rc;*.daml;*.rdf;*.rss;*.xspf;*.xsd;*.svg;*.ui;*.kcfg;*.qrc;*.wsdl" mimetype="text/xml;text/book;text/daml;text/rdf;application/rss+xml;application/xspf+xml;image/svg+xml;application/x-designer;application/xml" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl)" license="LGPL">  <highlighting> <contexts>
xml/xorg.xml view
@@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd">-<language name="x.org Configuration" section="Configuration" extensions="xorg.conf" mimetype="" version="1.01" kateversion="2.0" author="Jan Janssen (medhefgo@web.de)" license="LGPL">+<language name="x.org Configuration" section="Configuration" extensions="xorg.conf" mimetype="" version="1.01" kateversion="2.4" author="Jan Janssen (medhefgo@web.de)" license="LGPL">  <highlighting> <contexts>
xml/xslt.xml view
@@ -52,7 +52,7 @@  --> -<language version="1.03" kateversion="2.1" name="xslt" section="Markup" extensions="*.xsl;*.xslt" license="LGPL" author="Peter Lammich (views@gmx.de)">+<language version="1.03" kateversion="2.4" name="xslt" section="Markup" extensions="*.xsl;*.xslt" license="LGPL" author="Peter Lammich (views@gmx.de)">   <highlighting>     <list name="keytags">       <item> xsl:value-of </item>
xml/xul.xml view
@@ -4,7 +4,7 @@ 	<!ENTITY name    "[A-Za-z_:][\w.:_-]*"> 	<!ENTITY entref  "&amp;(#[0-9]+|#[xX][0-9A-Fa-f]+|&name;);"> ]>-        <language name="XUL" version="0.11" kateversion="2.5" section="Markup" extensions="*.xul;*.xbl" mimetype="text/xul" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl), Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net), Marc Dassonneville (marc.dassonneville@gmail.com)" license="LGPL">+        <language name="XUL" version="0.11" kateversion="2.4" section="Markup" extensions="*.xul;*.xbl" mimetype="text/xul" casesensitive="1" author="Wilbert Berendsen (wilbert@kde.nl), Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net), Marc Dassonneville (marc.dassonneville@gmail.com)" license="LGPL">  <highlighting>    <list name="keywords">
xml/yaml.xml view
@@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE language SYSTEM "language.dtd"> <!-- Author: Dr Orlovsky MA <maxim@orlovsky.info> //-->-<language name="YAML" version="1.2" kateversion="2.3" section="Markup"+<language name="YAML" version="1.2" kateversion="2.5" section="Markup"           extensions="*.yaml;*.yml" mimetype="text/yaml"           author="Dr Orlovsky MA (dr.orlovsky@gmail.com)" license="LGPL">   <highlighting>