diff --git a/lib/linguist/generated.rb b/lib/linguist/generated.rb
index 974fc7ae..99863a91 100644
--- a/lib/linguist/generated.rb
+++ b/lib/linguist/generated.rb
@@ -235,7 +235,7 @@ module Linguist
#
# Returns true or false.
def composer_lock?
- !!name.match(/composer.lock/)
+ !!name.match(/composer\.lock/)
end
# Internal: Is the blob a generated by Zephir
diff --git a/lib/linguist/heuristics.rb b/lib/linguist/heuristics.rb
index 4206ddce..b22422c3 100644
--- a/lib/linguist/heuristics.rb
+++ b/lib/linguist/heuristics.rb
@@ -12,28 +12,15 @@ module Linguist
#
# Returns an array of Languages or []
def self.find_by_heuristics(data, languages)
- determined = nil
if active?
- if languages.all? { |l| ["Objective-C", "C++", "C"].include?(l) }
- determined = disambiguate_c(data, languages)
- end
if languages.all? { |l| ["Perl", "Prolog"].include?(l) }
- determined = disambiguate_pl(data, languages)
+ result = disambiguate_pl(data, languages)
end
if languages.all? { |l| ["ECL", "Prolog"].include?(l) }
- determined = disambiguate_ecl(data, languages)
- end
- if languages.all? { |l| ["TypeScript", "XML"].include?(l) }
- determined = disambiguate_ts(data, languages)
- end
- if languages.all? { |l| ["Common Lisp", "OpenCL"].include?(l) }
- determined = disambiguate_cl(data, languages)
- end
- if languages.all? { |l| ["Rebol", "R"].include?(l) }
- determined = disambiguate_r(data, languages)
+ result = disambiguate_ecl(data, languages)
end
+ return result
end
- determined
end
# .h extensions are ambigious between C, C++, and Objective-C.
@@ -42,7 +29,7 @@ module Linguist
# Returns an array of Languages or []
def self.disambiguate_c(data, languages)
matches = []
- matches << Language["Objective-C"] if data.include?("i")
+ matches << Language["Objective-C"] if data.include?("@interface")
matches << Language["C++"] if data.include?("#include ")
matches
end
diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb
index 4b251834..e42fbdc9 100644
--- a/lib/linguist/language.rb
+++ b/lib/linguist/language.rb
@@ -136,7 +136,7 @@ module Linguist
elsif (determined = Heuristics.find_by_heuristics(data, possible_language_names)) && !determined.empty?
determined.first
# Lastly, fall back to the probablistic classifier.
- elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names ).first
+ elsif classified = Classifier.classify(Samples::DATA, data, possible_language_names).first
# Return the actual Language object based of the string language name (i.e., first element of `#classify`)
Language[classified[0]]
end
@@ -532,6 +532,7 @@ module Linguist
if extnames = extensions[name]
extnames.each do |extname|
if !options['extensions'].include?(extname)
+ warn "#{name} has a sample with extension (#{extname}) that isn't explicitly defined in languages.yml" unless extname == '.script!'
options['extensions'] << extname
end
end
diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml
index f21eb93c..a6f0054b 100644
--- a/lib/linguist/languages.yml
+++ b/lib/linguist/languages.yml
@@ -28,6 +28,16 @@ ABAP:
extensions:
- .abap
+AGS Script:
+ type: programming
+ lexer: C++
+ color: "#B9D9FF"
+ aliases:
+ - ags
+ extensions:
+ - .asc
+ - .ash
+
ANTLR:
type: programming
color: "#9DC3FF"
@@ -35,6 +45,12 @@ ANTLR:
extensions:
- .g4
+APL:
+ type: programming
+ color: "#8a0707"
+ extensions:
+ - .apl
+
ASP:
type: programming
color: "#6a40fd"
@@ -260,6 +276,7 @@ C:
extensions:
- .c
- .cats
+ - .h
- .w
C#:
@@ -282,7 +299,21 @@ C++:
aliases:
- cpp
extensions:
- - .a
+ - .cpp
+ - .C
+ - .c++
+ - .cc
+ - .cxx
+ - .H
+ - .h
+ - .h++
+ - .hh
+ - .hpp
+ - .hxx
+ - .inl
+ - .tcc
+ - .tpp
+ - .ipp
C-ObjDump:
type: data
@@ -308,7 +339,7 @@ CLIPS:
CMake:
extensions:
- .cmake
- - .cmake.in
+ - .in
filenames:
- CMakeLists.txt
@@ -333,6 +364,14 @@ Ceylon:
extensions:
- .ceylon
+Chapel:
+ type: programming
+ color: "#8dc63f"
+ aliases:
+ - chpl
+ extensions:
+ - .chpl
+
ChucK:
lexer: Java
extensions:
@@ -341,9 +380,8 @@ ChucK:
Cirru:
type: programming
color: "#aaaaff"
- # ace_mode: cirru
- # lexer: Cirru
- lexer: Text only
+ ace_mode: cirru
+ lexer: Cirru
extensions:
- .cirru
@@ -367,7 +405,7 @@ Clojure:
- .cljscm
- .cljx
- .hic
- - .cljs.hl
+ - .hl
filenames:
- riemann.config
@@ -390,14 +428,27 @@ CoffeeScript:
ColdFusion:
type: programming
+ group: ColdFusion
lexer: Coldfusion HTML
ace_mode: coldfusion
color: "#ed2cd6"
search_term: cfm
aliases:
- cfm
+ - cfml
extensions:
- .cfm
+
+ColdFusion CFC:
+ type: programming
+ group: ColdFusion
+ lexer: Coldfusion CFC
+ ace_mode: coldfusion
+ color: "#ed2cd6"
+ search_term: cfc
+ aliases:
+ - cfc
+ extensions:
- .cfc
Common Lisp:
@@ -431,6 +482,7 @@ Coq:
type: programming
extensions:
- .coq
+ - .v
Cpp-ObjDump:
type: data
@@ -466,6 +518,12 @@ Cuda:
- .cu
- .cuh
+Cycript:
+ type: programming
+ lexer: JavaScript
+ extensions:
+ - .cy
+
Cython:
type: programming
group: Python
@@ -520,6 +578,7 @@ Dart:
Diff:
extensions:
- .diff
+ - .patch
Dogescript:
type: programming
@@ -568,7 +627,7 @@ Eagle:
Eiffel:
type: programming
- lexer: Text only
+ lexer: Eiffel
color: "#946d57"
extensions:
- .e
@@ -588,7 +647,7 @@ Elm:
Emacs Lisp:
type: programming
- lexer: Scheme
+ lexer: Common Lisp
color: "#c065db"
aliases:
- elisp
@@ -599,11 +658,20 @@ Emacs Lisp:
- .el
- .emacs
+EmberScript:
+ type: programming
+ color: "#f64e3e"
+ lexer: CoffeeScript
+ extensions:
+ - .em
+ - .emberscript
+
Erlang:
type: programming
color: "#0faf8d"
extensions:
- .erl
+ - .escript
- .hrl
F#:
@@ -679,6 +747,7 @@ Forth:
extensions:
- .fth
- .4th
+ - .forth
Frege:
type: programming
@@ -787,6 +856,9 @@ Gosu:
color: "#82937f"
extensions:
- .gs
+ - .gst
+ - .gsx
+ - .vark
Grace:
type: programming
@@ -822,6 +894,7 @@ Groovy:
color: "#e69f56"
extensions:
- .groovy
+ - .gradle
- .grt
- .gtpl
- .gvy
@@ -844,7 +917,6 @@ HTML:
extensions:
- .html
- .htm
- - .html.hl
- .st
- .xhtml
@@ -864,9 +936,7 @@ HTML+ERB:
- erb
extensions:
- .erb
- - .erb.deface
- - .html.erb
- - .html.erb.deface
+ - .deface
HTML+PHP:
type: markup
@@ -884,17 +954,14 @@ Haml:
type: markup
extensions:
- .haml
- - .haml.deface
- - .html.haml.deface
+ - .deface
Handlebars:
type: markup
- lexer: Text only
+ lexer: Handlebars
extensions:
- .handlebars
- .hbs
- - .html.handlebars
- - .html.hbs
Harbour:
type: programming
@@ -920,7 +987,7 @@ Haxe:
Hy:
type: programming
- lexer: Clojure
+ lexer: Hy
ace_mode: clojure
color: "#7891b1"
extensions:
@@ -932,6 +999,13 @@ IDL:
color: "#e3592c"
extensions:
- .pro
+ - .dlm
+
+IGOR Pro:
+ type: programming
+ lexer: Igor
+ extensions:
+ - .ipf
INI:
type: data
@@ -954,7 +1028,7 @@ Idris:
Inform 7:
type: programming
- lexer: Text only
+ lexer: Inform 7
wrap: true
extensions:
- .ni
@@ -1006,6 +1080,7 @@ JSON:
searchable: false
extensions:
- .json
+ - .lock
- .sublime-keymap
- .sublime-mousemap
- .sublime-project
@@ -1128,12 +1203,31 @@ LLVM:
extensions:
- .ll
+LSL:
+ type: programming
+ lexer: LSL
+ ace_mode: lsl
+ extensions:
+ - .lsl
+ interpreters:
+ - lsl
+ color: '#3d9970'
+
+LabVIEW:
+ type: programming
+ lexer: Text only
+ extensions:
+ - .lvproj
+
Lasso:
type: programming
lexer: Lasso
color: "#2584c3"
extensions:
- .lasso
+ - .las
+ - .lasso9
+ - .ldml
Latte:
type: markup
@@ -1212,6 +1306,14 @@ Logtalk:
- .lgt
- .logtalk
+LookML:
+ type: programming
+ lexer: YAML
+ ace_mode: yaml
+ color: "#652B81"
+ extensions:
+ - .lookml
+
Lua:
type: programming
ace_mode: lua
@@ -1219,6 +1321,7 @@ Lua:
extensions:
- .lua
- .nse
+ - .pd_lua
- .rbxs
interpreters:
- lua
@@ -1284,7 +1387,7 @@ Mathematica:
- .mathematica
- .m
- .nb
- lexer: Text only
+ lexer: Mathematica
Matlab:
type: programming
@@ -1364,6 +1467,7 @@ Myghty:
NSIS:
extensions:
- .nsi
+ - .nsh
Nemerle:
type: programming
@@ -1428,6 +1532,7 @@ OCaml:
color: "#3be133"
extensions:
- .ml
+ - .eliom
- .eliomi
- .ml4
- .mli
@@ -1448,6 +1553,7 @@ Objective-C:
- objc
extensions:
- .m
+ - .h
Objective-C++:
type: programming
@@ -1479,6 +1585,13 @@ Opa:
extensions:
- .opa
+Opal:
+ type: programming
+ color: "#f7ede0"
+ lexer: Text only
+ extensions:
+ - .opal
+
OpenCL:
type: programming
group: C
@@ -1495,6 +1608,13 @@ OpenEdge ABL:
- abl
extensions:
- .p
+ - .cls
+
+OpenSCAD:
+ type: programming
+ lexer: Text only
+ extensions:
+ - .scad
Org:
type: prose
@@ -1533,6 +1653,7 @@ PHP:
- .php
- .aw
- .ctp
+ - .module
- .php3
- .php4
- .php5
@@ -1544,7 +1665,7 @@ PHP:
Pan:
type: programming
- lexer: Text only
+ lexer: Pan
color: '#cc0000'
extensions:
- .pan
@@ -1581,6 +1702,7 @@ Pascal:
extensions:
- .pas
- .dfm
+ - .dpr
- .lpr
Perl:
@@ -1590,12 +1712,15 @@ Perl:
extensions:
- .pl
- .PL
+ - .cgi
+ - .fcgi
- .perl
- .ph
- .plx
- .pm
- .pod
- .psgi
+ - .t
interpreters:
- perl
@@ -1612,6 +1737,13 @@ Perl6:
- .pl6
- .pm6
+PigLatin:
+ type: programming
+ color: "#fcd7de"
+ lexer: Text only
+ extensions:
+ - .pig
+
Pike:
type: programming
color: "#066ab2"
@@ -1662,9 +1794,9 @@ Prolog:
type: programming
color: "#74283c"
extensions:
- - .prolog
- - .ecl
- .pl
+ - .ecl
+ - .prolog
Propeller Spin:
type: programming
@@ -1709,6 +1841,7 @@ Python:
color: "#3581ba"
extensions:
- .py
+ - .cgi
- .gyp
- .lmi
- .pyde
@@ -1764,7 +1897,7 @@ R:
RDoc:
type: prose
- lexer: Text only
+ lexer: Rd
ace_mode: rdoc
wrap: true
extensions:
@@ -1804,6 +1937,7 @@ Racket:
- .rkt
- .rktd
- .rktl
+ - .scrbl
Ragel in Ruby Host:
type: programming
@@ -1873,7 +2007,10 @@ Ruby:
- .god
- .irbrc
- .mspec
+ - .pluginspec
- .podspec
+ - .rabl
+ - .rake
- .rbuild
- .rbw
- .rbx
@@ -1918,6 +2055,14 @@ SCSS:
extensions:
- .scss
+SQF:
+ type: programming
+ color: "#FFCB1F"
+ lexer: C++
+ extensions:
+ - .sqf
+ - .hqf
+
SQL:
type: data
ace_mode: sql
@@ -1947,6 +2092,7 @@ Sass:
group: CSS
extensions:
- .sass
+ - .scss
Scala:
type: programming
@@ -1954,6 +2100,7 @@ Scala:
color: "#7dd3b0"
extensions:
- .scala
+ - .sbt
- .sc
Scaml:
@@ -1969,6 +2116,7 @@ Scheme:
- .scm
- .sld
- .sls
+ - .sps
- .ss
interpreters:
- guile
@@ -1980,6 +2128,8 @@ Scilab:
type: programming
extensions:
- .sci
+ - .sce
+ - .tst
Self:
type: programming
@@ -1999,8 +2149,11 @@ Shell:
- zsh
extensions:
- .sh
+ - .bash
- .bats
+ - .cgi
- .tmux
+ - .zsh
interpreters:
- bash
- sh
@@ -2067,6 +2220,7 @@ Standard ML:
extensions:
- .ML
- .fun
+ - .sig
- .sml
Stata:
@@ -2147,10 +2301,13 @@ TeX:
extensions:
- .tex
- .aux
+ - .bbx
- .bib
+ - .cbx
- .cls
- .dtx
- .ins
+ - .lbx
- .ltx
- .mkii
- .mkiv
@@ -2267,6 +2424,7 @@ Visual Basic:
extensions:
- .vb
- .bas
+ - .cls
- .frm
- .frx
- .vba
@@ -2295,6 +2453,7 @@ XML:
- wsdl
extensions:
- .xml
+ - .ant
- .axml
- .ccxml
- .clixml
@@ -2308,6 +2467,7 @@ XML:
- .fsproj
- .glade
- .grxml
+ - .ivy
- .jelly
- .kml
- .launch
diff --git a/lib/linguist/samples.json b/lib/linguist/samples.json
index c78ed491..559ef894 100644
--- a/lib/linguist/samples.json
+++ b/lib/linguist/samples.json
@@ -3,6 +3,13 @@
"ABAP": [
".abap"
],
+ "AGS Script": [
+ ".asc",
+ ".ash"
+ ],
+ "APL": [
+ ".apl"
+ ],
"ATS": [
".atxt",
".dats",
@@ -82,6 +89,9 @@
"Ceylon": [
".ceylon"
],
+ "Chapel": [
+ ".chpl"
+ ],
"Cirru": [
".cirru"
],
@@ -92,11 +102,18 @@
".cljs",
".cljscm",
".cljx",
- ".hic"
+ ".hic",
+ ".hl"
],
"CoffeeScript": [
".coffee"
],
+ "ColdFusion": [
+ ".cfm"
+ ],
+ "ColdFusion CFC": [
+ ".cfc"
+ ],
"Common Lisp": [
".cl",
".lisp"
@@ -118,6 +135,9 @@
".cu",
".cuh"
],
+ "Cycript": [
+ ".cy"
+ ],
"DM": [
".dm"
],
@@ -146,6 +166,9 @@
"Emacs Lisp": [
".el"
],
+ "EmberScript": [
+ ".em"
+ ],
"Erlang": [
".erl",
".escript",
@@ -209,7 +232,12 @@
".html",
".st"
],
+ "HTML+ERB": [
+ ".deface",
+ ".erb"
+ ],
"Haml": [
+ ".deface",
".haml"
],
"Handlebars": [
@@ -226,6 +254,9 @@
".dlm",
".pro"
],
+ "IGOR Pro": [
+ ".ipf"
+ ],
"Idris": [
".idr"
],
@@ -280,6 +311,9 @@
"LFE": [
".lfe"
],
+ "LSL": [
+ ".lsl"
+ ],
"Lasso": [
".las",
".lasso",
@@ -310,6 +344,9 @@
"Logtalk": [
".lgt"
],
+ "LookML": [
+ ".lookml"
+ ],
"Lua": [
".pd_lua"
],
@@ -396,6 +433,9 @@
"Opa": [
".opa"
],
+ "Opal": [
+ ".opal"
+ ],
"OpenCL": [
".cl"
],
@@ -403,6 +443,9 @@
".cls",
".p"
],
+ "OpenSCAD": [
+ ".scad"
+ ],
"Org": [
".org"
],
@@ -435,6 +478,7 @@
".dpr"
],
"Perl": [
+ ".cgi",
".fcgi",
".pl",
".pm",
@@ -446,6 +490,9 @@
".p6",
".pm6"
],
+ "PigLatin": [
+ ".pig"
+ ],
"Pike": [
".pike",
".pmod"
@@ -469,7 +516,8 @@
"Prolog": [
".ecl",
".pl",
- ".prolog"
+ ".prolog",
+ ".script!"
],
"Propeller Spin": [
".spin"
@@ -481,6 +529,7 @@
".purs"
],
"Python": [
+ ".cgi",
".py",
".pyde",
".pyp",
@@ -540,6 +589,10 @@
"SCSS": [
".scss"
],
+ "SQF": [
+ ".hqf",
+ ".sqf"
+ ],
"SQL": [
".prc",
".sql",
@@ -573,6 +626,7 @@
],
"Shell": [
".bash",
+ ".cgi",
".script!",
".sh",
".zsh"
@@ -634,7 +688,10 @@
".tm"
],
"TeX": [
- ".cls"
+ ".bbx",
+ ".cbx",
+ ".cls",
+ ".lbx"
],
"Tea": [
".tea"
@@ -797,8 +854,8 @@
"exception.zep.php"
]
},
- "tokens_total": 630435,
- "languages_total": 869,
+ "tokens_total": 659559,
+ "languages_total": 908,
"tokens": {
"ABAP": {
"*/**": 1,
@@ -1059,6 +1116,392 @@
"pos": 2,
"endclass.": 1
},
+ "AGS Script": {
+ "function": 54,
+ "initialize_control_panel": 2,
+ "(": 281,
+ ")": 282,
+ "{": 106,
+ "gPanel.Centre": 1,
+ ";": 235,
+ "gRestartYN.Centre": 1,
+ "if": 96,
+ "IsSpeechVoxAvailable": 3,
+ "lblVoice.Visible": 1,
+ "false": 26,
+ "btnVoice.Visible": 1,
+ "sldVoice.Visible": 1,
+ "}": 107,
+ "else": 44,
+ "SetVoiceMode": 6,
+ "eSpeechVoiceAndText": 4,
+ "btnVoice.Text": 9,
+ "System.SupportsGammaControl": 3,
+ "sldGamma.Visible": 1,
+ "lblGamma.Visible": 1,
+ "//And": 1,
+ "now": 1,
+ "set": 7,
+ "all": 2,
+ "the": 15,
+ "defaults": 1,
+ "System.Volume": 5,
+ "sldAudio.Value": 3,
+ "SetGameSpeed": 3,
+ "sldSpeed.Value": 3,
+ "sldVoice.Value": 3,
+ "SetSpeechVolume": 3,
+ "System.Gamma": 3,
+ "sldGamma.Value": 3,
+ "game_start": 1,
+ "KeyboardMovement.SetMode": 1,
+ "eKeyboardMovement_Tapping": 3,
+ "repeatedly_execute": 2,
+ "IsGamePaused": 4,
+ "return": 8,
+ "repeatedly_execute_always": 1,
+ "show_inventory_window": 3,
+ "gInventory.Visible": 2,
+ "true": 18,
+ "mouse.Mode": 13,
+ "eModeInteract": 3,
+ "mouse.UseModeGraphic": 8,
+ "eModePointer": 8,
+ "show_save_game_dialog": 3,
+ "gSaveGame.Visible": 3,
+ "lstSaveGamesList.FillSaveGameList": 2,
+ "lstSaveGamesList.ItemCount": 3,
+ "txtNewSaveName.Text": 5,
+ "lstSaveGamesList.Items": 3,
+ "[": 6,
+ "]": 6,
+ "gIconbar.Visible": 15,
+ "show_restore_game_dialog": 3,
+ "gRestoreGame.Visible": 3,
+ "lstRestoreGamesList.FillSaveGameList": 1,
+ "close_save_game_dialog": 4,
+ "mouse.UseDefaultGraphic": 9,
+ "close_restore_game_dialog": 4,
+ "on_key_press": 2,
+ "eKeyCode": 1,
+ "keycode": 27,
+ "eKeyEscape": 5,
+ "&&": 8,
+ "gRestartYN.Visible": 6,
+ "//Use": 1,
+ "ESC": 1,
+ "to": 14,
+ "cancel": 1,
+ "restart.": 1,
+ "gPanel.Visible": 11,
+ "eKeyReturn": 1,
+ "RestartGame": 2,
+ "||": 12,
+ "IsInterfaceEnabled": 3,
+ "eKeyCtrlQ": 1,
+ "QuitGame": 3,
+ "//": 66,
+ "Ctrl": 1,
+ "-": 217,
+ "Q": 1,
+ "eKeyF5": 1,
+ "F5": 1,
+ "eKeyF7": 1,
+ "F7": 1,
+ "eKeyF9": 1,
+ "eKeyF12": 1,
+ "SaveScreenShot": 1,
+ "F12": 1,
+ "eKeyTab": 1,
+ "Tab": 1,
+ "show": 1,
+ "inventory": 2,
+ "eModeWalkto": 2,
+ "//Notice": 1,
+ "this": 1,
+ "alternate": 1,
+ "way": 1,
+ "indicate": 1,
+ "keycodes.": 1,
+ "eModeLookat": 1,
+ "//Note": 1,
+ "that": 1,
+ "we": 1,
+ "do": 1,
+ "here": 1,
+ "is": 10,
+ "modes.": 1,
+ "//If": 1,
+ "you": 1,
+ "want": 1,
+ "something": 1,
+ "happen": 1,
+ "such": 1,
+ "as": 2,
+ "GUI": 3,
+ "buttons": 1,
+ "highlighting": 1,
+ "eModeTalkto": 2,
+ "//you": 1,
+ "I": 1,
+ "P": 1,
+ "G": 1,
+ "t": 1,
+ "allow": 1,
+ "mouse": 2,
+ "click": 1,
+ "button": 33,
+ "eMouseLeft": 4,
+ "ProcessClick": 2,
+ "mouse.x": 2,
+ "mouse.y": 2,
+ "eMouseRight": 1,
+ "eMouseWheelSouth": 1,
+ "mouse.SelectNextMode": 1,
+ "eMouseMiddle": 1,
+ "eMouseWheelNorth": 1,
+ "player.ActiveInventory": 2,
+ "null": 2,
+ "//...and": 1,
+ "player": 13,
+ "has": 1,
+ "a": 1,
+ "selected": 1,
+ "item": 1,
+ "mode": 10,
+ "UseInv.": 1,
+ "eModeUseinv": 2,
+ "interface_click": 1,
+ "int": 18,
+ "interface": 3,
+ "btnInvUp_Click": 1,
+ "GUIControl": 31,
+ "*control": 31,
+ "MouseButton": 26,
+ "invCustomInv.ScrollUp": 1,
+ "btnInvDown_Click": 1,
+ "invCustomInv.ScrollDown": 1,
+ "btnInvOK_Click": 1,
+ "They": 2,
+ "pressed": 4,
+ "OK": 1,
+ "close": 1,
+ "btnInvSelect_Click": 1,
+ "SELECT": 1,
+ "so": 1,
+ "switch": 1,
+ "Get": 1,
+ "cursor": 1,
+ "But": 1,
+ "override": 1,
+ "appearance": 1,
+ "look": 1,
+ "like": 1,
+ "arrow": 9,
+ "btnIconInv_Click": 1,
+ "btnIconCurInv_Click": 1,
+ "btnIconSave_Click": 2,
+ "btnIconLoad_Click": 2,
+ "btnIconExit_Click": 1,
+ "btnIconAbout_Click": 1,
+ "cEgo_Look": 1,
+ "Display": 4,
+ "cEgo_Interact": 1,
+ "cEgo_Talk": 1,
+ "//START": 1,
+ "OF": 2,
+ "CONTROL": 2,
+ "PANEL": 2,
+ "FUNCTIONS": 2,
+ "btnSave_OnClick": 1,
+ "Wait": 3,
+ "btnIconSave": 1,
+ "gControl_OnClick": 1,
+ "*theGui": 1,
+ "btnAbout_OnClick": 1,
+ "btnQuit_OnClick": 1,
+ "btnLoad_OnClick": 1,
+ "btnIconLoad": 1,
+ "btnResume_OnClick": 1,
+ "sldAudio_OnChange": 1,
+ "sldVoice_OnChange": 1,
+ "btnVoice_OnClick": 1,
+ "eSpeechVoiceOnly": 1,
+ "eSpeechTextOnly": 1,
+ "sldGamma_OnChange": 1,
+ "btnDefault_OnClick": 1,
+ "//END": 1,
+ "dialog_request": 1,
+ "param": 1,
+ "sldSpeed_OnChange": 1,
+ "btnRestart_OnClick": 1,
+ "btnRestartYes_OnClick": 1,
+ "btnRestartNo_OnClick": 1,
+ "btnCancelSave_OnClick": 1,
+ "btnSaveGame_OnClick": 2,
+ "gameSlotToSaveInto": 3,
+ "+": 7,
+ "i": 5,
+ "while": 1,
+ "<": 1,
+ "lstSaveGamesList.SaveGameSlots": 2,
+ "SaveGameSlot": 1,
+ "btnCancelRestore_OnClick": 1,
+ "btnRestoreGame_OnClick": 1,
+ "lstRestoreGamesList.SelectedIndex": 2,
+ "RestoreGameSlot": 1,
+ "lstRestoreGamesList.SaveGameSlots": 1,
+ "lstSaveGamesList_OnSelectionCh": 1,
+ "lstSaveGamesList.SelectedIndex": 3,
+ "txtNewSaveName_OnActivate": 1,
+ "control": 2,
+ "btnDeleteSave_OnClick": 1,
+ "DeleteSaveSlot": 1,
+ "//****************************************************************************************************": 8,
+ "#define": 2,
+ "DISTANCE": 25,
+ "distance": 1,
+ "walks": 1,
+ "in": 1,
+ "Tapping": 2,
+ "before": 1,
+ "he": 1,
+ "stops": 1,
+ "enum": 2,
+ "KeyboardMovement_Directions": 4,
+ "eKeyboardMovement_Stop": 9,
+ "eKeyboardMovement_DownLeft": 5,
+ "eKeyboardMovement_Down": 5,
+ "eKeyboardMovement_DownRight": 5,
+ "eKeyboardMovement_Left": 5,
+ "eKeyboardMovement_Right": 5,
+ "eKeyboardMovement_UpLeft": 5,
+ "eKeyboardMovement_Up": 5,
+ "eKeyboardMovement_UpRight": 5,
+ "KeyboardMovement_KeyDown": 5,
+ "down": 9,
+ "KeyboardMovement_KeyLeft": 5,
+ "left": 4,
+ "KeyboardMovement_KeyRight": 5,
+ "right": 5,
+ "KeyboardMovement_KeyUp": 5,
+ "up": 4,
+ "KeyboardMovement_KeyDownRight": 3,
+ "PgDn": 2,
+ "numpad": 8,
+ "KeyboardMovement_KeyUpRight": 3,
+ "PgUp": 2,
+ "KeyboardMovement_KeyDownLeft": 3,
+ "End": 2,
+ "KeyboardMovement_KeyUpLeft": 3,
+ "Home": 2,
+ "KeyboardMovement_KeyStop": 3,
+ "KeyboardMovement_Modes": 4,
+ "KeyboardMovement_Mode": 4,
+ "eKeyboardMovement_None": 2,
+ "stores": 2,
+ "current": 8,
+ "keyboard": 1,
+ "disabled": 5,
+ "by": 1,
+ "default": 1,
+ "KeyboardMovement_CurrentDirection": 7,
+ "walking": 1,
+ "direction": 22,
+ "of": 6,
+ "character": 11,
+ "static": 2,
+ "KeyboardMovement": 2,
+ "SetMode": 2,
+ "Pressing": 1,
+ "eKeyboardMovement_Pressing": 2,
+ "player.on": 2,
+ "game": 2,
+ "paused": 2,
+ "module": 2,
+ "or": 8,
+ "hidden": 2,
+ "quit": 2,
+ "newdirection": 43,
+ "declare": 4,
+ "variable": 2,
+ "storing": 4,
+ "new": 19,
+ "get": 2,
+ "IsKeyPressed": 17,
+ "&": 4,
+ "arrows": 4,
+ "numeric": 2,
+ "pad": 2,
+ "held": 4,
+ "Down": 2,
+ "Right": 2,
+ "none": 1,
+ "above": 2,
+ "it": 1,
+ "stop": 7,
+ "regardless": 1,
+ "whether": 1,
+ "some": 1,
+ "are": 1,
+ "different": 2,
+ "from": 2,
+ "player.StopMoving": 3,
+ "Stop": 4,
+ "command": 4,
+ "movement": 2,
+ "NOT": 2,
+ "dx": 20,
+ "dy": 20,
+ "variables": 2,
+ "walk": 4,
+ "coordinates": 4,
+ "player.WalkStraight": 2,
+ "player.x": 2,
+ "player.y": 2,
+ "eNoBlock": 2,
+ "update": 3,
+ "key": 2,
+ "same": 1,
+ "on_event": 1,
+ "EventType": 1,
+ "event": 2,
+ "data": 1,
+ "eEventLeaveRoom": 1,
+ "KeyboardMovement_VERSION": 1,
+ "struct": 1,
+ "import": 1
+ },
+ "APL": {
+ "You": 1,
+ "can": 2,
+ "try": 1,
+ "this": 2,
+ "at": 1,
+ "http": 1,
+ "//tryapl.org/": 1,
+ "I": 2,
+ "not": 1,
+ "explain": 1,
+ "how": 1,
+ "much": 1,
+ "suddenly": 1,
+ "love": 1,
+ "crypto": 1,
+ "-": 1,
+ "language": 1,
+ "Starts": 2,
+ "Middles": 2,
+ "Qualifiers": 2,
+ "Finishes": 2,
+ "rf": 2,
+ "{": 3,
+ "(": 1,
+ ")": 1,
+ "}": 3,
+ "erf": 2,
+ "deepak": 2
+ },
"ATS": {
"//": 211,
"#include": 16,
@@ -15140,6 +15583,798 @@
"<=>": 1,
"other.name": 1
},
+ "Chapel": {
+ "//": 150,
+ "use": 5,
+ "BlockDist": 2,
+ "CyclicDist": 1,
+ "BlockCycDist": 1,
+ "ReplicatedDist": 2,
+ ";": 516,
+ "DimensionalDist2D": 2,
+ "ReplicatedDim": 2,
+ "BlockCycDim": 1,
+ "config": 10,
+ "const": 59,
+ "n": 16,
+ "Space": 12,
+ "{": 122,
+ "}": 120,
+ "BlockSpace": 2,
+ "dmapped": 8,
+ "Block": 4,
+ "(": 626,
+ "boundingBox": 2,
+ ")": 626,
+ "var": 72,
+ "BA": 3,
+ "[": 920,
+ "]": 920,
+ "int": 21,
+ "forall": 43,
+ "ba": 4,
+ "in": 76,
+ "do": 62,
+ "here.id": 7,
+ "writeln": 53,
+ "MyLocaleView": 5,
+ "#numLocales": 1,
+ "MyLocales": 5,
+ "locale": 1,
+ "reshape": 2,
+ "Locales": 6,
+ "BlockSpace2": 2,
+ "targetLocales": 1,
+ "BA2": 3,
+ "CyclicSpace": 2,
+ "Cyclic": 1,
+ "startIdx": 2,
+ "Space.low": 5,
+ "CA": 3,
+ "ca": 2,
+ "BlkCycSpace": 2,
+ "BlockCyclic": 1,
+ "blocksize": 1,
+ "BCA": 3,
+ "bca": 2,
+ "ReplicatedSpace": 2,
+ "RA": 11,
+ "ra": 4,
+ "RA.numElements": 1,
+ "A": 13,
+ "i": 250,
+ "j": 25,
+ "i*100": 1,
+ "+": 334,
+ "on": 7,
+ "here": 3,
+ "LocaleSpace.high": 3,
+ "nl1": 2,
+ "nl2": 2,
+ "if": 98,
+ "numLocales": 5,
+ "then": 80,
+ "else": 16,
+ "numLocales/2": 1,
+ "#nl1": 2,
+ "#nl2": 1,
+ "#nl1*nl2": 1,
+ "DimReplicatedBlockcyclicSpace": 2,
+ "new": 7,
+ "BlockCyclicDim": 1,
+ "lowIdx": 1,
+ "blockSize": 1,
+ "DRBA": 3,
+ "for": 36,
+ "locId1": 2,
+ "drba": 2,
+ "Helper": 2,
+ "print": 5,
+ "to": 9,
+ "the": 10,
+ "console": 1,
+ "Time": 2,
+ "get": 3,
+ "timing": 6,
+ "routines": 1,
+ "benchmarking": 1,
+ "block": 1,
+ "-": 345,
+ "distributed": 1,
+ "arrays": 6,
+ "luleshInit": 1,
+ "initialization": 1,
+ "code": 1,
+ "data": 1,
+ "set": 4,
+ "param": 25,
+ "useBlockDist": 5,
+ "CHPL_COMM": 1,
+ "use3DRepresentation": 4,
+ "false": 4,
+ "useSparseMaterials": 3,
+ "true": 5,
+ "printWarnings": 3,
+ "&&": 9,
+ "luleshInit.filename": 1,
+ "halt": 5,
+ "initialEnergy": 2,
+ "e": 84,
+ "initial": 1,
+ "energy": 5,
+ "value": 1,
+ "showProgress": 3,
+ "time": 9,
+ "and": 4,
+ "dt": 14,
+ "values": 1,
+ "each": 1,
+ "step": 1,
+ "debug": 8,
+ "various": 1,
+ "info": 1,
+ "doTiming": 4,
+ "main": 3,
+ "timestep": 1,
+ "loop": 2,
+ "printCoords": 2,
+ "final": 1,
+ "computed": 1,
+ "coordinates": 2,
+ "XI_M": 2,
+ "XI_M_SYMM": 4,
+ "XI_M_FREE": 3,
+ "XI_P": 2,
+ "c": 7,
+ "XI_P_SYMM": 3,
+ "XI_P_FREE": 3,
+ "ETA_M": 2,
+ "ETA_M_SYMM": 4,
+ "ETA_M_FREE": 3,
+ "ETA_P": 2,
+ "c0": 1,
+ "ETA_P_SYMM": 3,
+ "ETA_P_FREE": 3,
+ "ZETA_M": 2,
+ "ZETA_M_SYMM": 4,
+ "ZETA_M_FREE": 3,
+ "ZETA_P": 2,
+ "xc00": 1,
+ "ZETA_P_SYMM": 3,
+ "ZETA_P_FREE": 3,
+ "numElems": 2,
+ "numNodes": 1,
+ "initProblemSize": 1,
+ "ElemSpace": 4,
+ "#elemsPerEdge": 3,
+ "#numElems": 1,
+ "NodeSpace": 4,
+ "#nodesPerEdge": 3,
+ "#numNodes": 1,
+ "Elems": 45,
+ "Nodes": 16,
+ "x": 111,
+ "y": 107,
+ "z": 107,
+ "real": 60,
+ "nodesPerElem": 6,
+ "elemToNode": 7,
+ "nodesPerElem*index": 1,
+ "lxim": 3,
+ "lxip": 3,
+ "letam": 3,
+ "letap": 3,
+ "lzetam": 3,
+ "lzetap": 3,
+ "index": 4,
+ "XSym": 4,
+ "YSym": 4,
+ "ZSym": 4,
+ "sparse": 3,
+ "subdomain": 3,
+ "u_cut": 5,
+ "hgcoef": 1,
+ "qstop": 2,
+ "monoq_max_slope": 7,
+ "monoq_limiter_mult": 7,
+ "e_cut": 3,
+ "p_cut": 6,
+ "ss4o3": 1,
+ "/3.0": 2,
+ "q_cut": 2,
+ "v_cut": 2,
+ "qlc_monoq": 2,
+ "qqc_monoq": 2,
+ "qqc": 1,
+ "qqc2": 1,
+ "*": 260,
+ "qqc**2": 1,
+ "eosvmax": 14,
+ "eosvmin": 9,
+ "pmin": 7,
+ "emin": 7,
+ "dvovmax": 1,
+ "refdens": 3,
+ "deltatimemultlb": 1,
+ "deltatimemultub": 1,
+ "dtmax": 1,
+ "stoptime": 3,
+ "maxcycles": 3,
+ "max": 2,
+ "dtfixed": 2,
+ "MatElems": 9,
+ "MatElemsType": 2,
+ "enumerateMatElems": 2,
+ "proc": 44,
+ "type": 1,
+ "return": 15,
+ "Elems.type": 1,
+ "iter": 3,
+ "yield": 3,
+ "elemBC": 16,
+ "p": 10,
+ "pressure": 1,
+ "q": 13,
+ "ql": 3,
+ "linear": 1,
+ "term": 2,
+ "qq": 3,
+ "quadratic": 1,
+ "v": 9,
+ "//relative": 1,
+ "volume": 21,
+ "vnew": 9,
+ "volo": 5,
+ "reference": 1,
+ "delv": 3,
+ "m_vnew": 1,
+ "m_v": 1,
+ "vdov": 4,
+ "derivative": 1,
+ "over": 2,
+ "arealg": 2,
+ "elem": 3,
+ "characteristic": 2,
+ "length": 2,
+ "ss": 2,
+ "elemMass": 4,
+ "mass": 12,
+ "xd": 8,
+ "yd": 8,
+ "zd": 8,
+ "velocities": 2,
+ "xdd": 3,
+ "ydd": 3,
+ "zdd": 3,
+ "acceleration": 1,
+ "fx": 8,
+ "fy": 8,
+ "fz": 8,
+ "atomic": 2,
+ "forces": 1,
+ "nodalMass": 3,
+ "current": 1,
+ "deltatime": 3,
+ "variable": 1,
+ "increment": 1,
+ "dtcourant": 1,
+ "e20": 2,
+ "courant": 1,
+ "constraint": 2,
+ "dthydro": 1,
+ "change": 2,
+ "cycle": 5,
+ "iteration": 1,
+ "count": 1,
+ "simulation": 1,
+ "initLulesh": 2,
+ "st": 4,
+ "getCurrentTime": 4,
+ "while": 4,
+ "<": 42,
+ "iterTime": 2,
+ "TimeIncrement": 2,
+ "LagrangeLeapFrog": 1,
+ "deprint": 3,
+ "format": 9,
+ "et": 3,
+ "/cycle": 1,
+ "outfile": 1,
+ "open": 1,
+ "iomode.cw": 1,
+ "writer": 1,
+ "outfile.writer": 1,
+ "fmtstr": 4,
+ "writer.writeln": 1,
+ "writer.close": 1,
+ "outfile.close": 1,
+ "initCoordinates": 1,
+ "initElemToNodeMapping": 1,
+ "initGreekVars": 1,
+ "initXSyms": 1,
+ "initYSyms": 1,
+ "initZSyms": 1,
+ "//calculated": 1,
+ "fly": 1,
+ "using": 1,
+ "elemToNodes": 3,
+ "initMasses": 2,
+ "octantCorner": 2,
+ "initBoundaryConditions": 2,
+ "massAccum": 3,
+ "eli": 18,
+ "x_local": 11,
+ "y_local": 11,
+ "z_local": 11,
+ "*real": 40,
+ "localizeNeighborNodes": 6,
+ "CalcElemVolume": 3,
+ "neighbor": 2,
+ ".add": 1,
+ ".read": 1,
+ "/": 26,
+ "surfaceNode": 8,
+ "mask": 16,
+ "<<": 2,
+ "&": 18,
+ "f": 4,
+ "|": 14,
+ "xf0": 4,
+ "xcc": 4,
+ "check": 3,
+ "loc": 4,
+ "maxloc": 1,
+ "reduce": 2,
+ "zip": 1,
+ "freeSurface": 3,
+ "initFreeSurface": 1,
+ "b": 4,
+ "inline": 5,
+ "ref": 19,
+ "noi": 4,
+ "TripleProduct": 4,
+ "x1": 1,
+ "y1": 1,
+ "z1": 1,
+ "x2": 1,
+ "y2": 1,
+ "z2": 1,
+ "x3": 1,
+ "y3": 1,
+ "z3": 1,
+ "x1*": 1,
+ "y2*z3": 1,
+ "z2*y3": 1,
+ "x2*": 1,
+ "z1*y3": 1,
+ "y1*z3": 1,
+ "x3*": 1,
+ "y1*z2": 1,
+ "z1*y2": 1,
+ "dx61": 2,
+ "dy61": 2,
+ "dz61": 2,
+ "dx70": 2,
+ "dy70": 2,
+ "dz70": 2,
+ "dx63": 2,
+ "dy63": 2,
+ "dz63": 2,
+ "dx20": 2,
+ "dy20": 2,
+ "dz20": 2,
+ "dx50": 2,
+ "dy50": 2,
+ "dz50": 2,
+ "dx64": 2,
+ "dy64": 2,
+ "dz64": 2,
+ "dx31": 2,
+ "dy31": 2,
+ "dz31": 2,
+ "dx72": 2,
+ "dy72": 2,
+ "dz72": 2,
+ "dx43": 2,
+ "dy43": 2,
+ "dz43": 2,
+ "dx57": 2,
+ "dy57": 2,
+ "dz57": 2,
+ "dx14": 2,
+ "dy14": 2,
+ "dz14": 2,
+ "dx25": 2,
+ "dy25": 2,
+ "dz25": 2,
+ "InitStressTermsForElems": 1,
+ "sigxx": 2,
+ "sigyy": 2,
+ "sigzz": 2,
+ "D": 9,
+ "CalcElemShapeFunctionDerivatives": 2,
+ "b_x": 18,
+ "b_y": 18,
+ "b_z": 18,
+ "fjxxi": 5,
+ ".125": 9,
+ "fjxet": 6,
+ "fjxze": 5,
+ "fjyxi": 5,
+ "fjyet": 6,
+ "fjyze": 5,
+ "fjzxi": 5,
+ "fjzet": 6,
+ "fjzze": 5,
+ "cjxxi": 5,
+ "cjxet": 6,
+ "cjxze": 5,
+ "cjyxi": 5,
+ "cjyet": 6,
+ "cjyze": 5,
+ "cjzxi": 5,
+ "cjzet": 6,
+ "cjzze": 5,
+ "CalcElemNodeNormals": 1,
+ "pfx": 15,
+ "pfy": 15,
+ "pfz": 15,
+ "ElemFaceNormal": 7,
+ "n1": 23,
+ "n2": 23,
+ "n3": 23,
+ "n4": 23,
+ "bisectX0": 3,
+ "bisectY0": 3,
+ "bisectZ0": 3,
+ "bisectX1": 3,
+ "bisectY1": 3,
+ "bisectZ1": 3,
+ "areaX": 5,
+ "areaY": 5,
+ "areaZ": 5,
+ "rx": 6,
+ "ry": 6,
+ "rz": 6,
+ "//results": 1,
+ "SumElemStressesToNodeForces": 1,
+ "stress_xx": 2,
+ "stress_yy": 2,
+ "stress_zz": 2,
+ "CalcElemVolumeDerivative": 1,
+ "VoluDer": 9,
+ "n0": 13,
+ "n5": 13,
+ "ox": 1,
+ "oy": 1,
+ "oz": 1,
+ "ox/12.0": 1,
+ "oy/12.0": 1,
+ "oz/12.0": 1,
+ "dvdx": 10,
+ "dvdy": 10,
+ "dvdz": 10,
+ "CalcElemFBHourglassForce": 1,
+ "hourgam": 7,
+ "coefficient": 4,
+ "hgfx": 2,
+ "hgfy": 2,
+ "hgfz": 2,
+ "hx": 3,
+ "hy": 3,
+ "hz": 3,
+ "shx": 3,
+ "shy": 3,
+ "shz": 3,
+ "CalcElemCharacteristicLength": 2,
+ "AreaFace": 7,
+ "p0": 7,
+ "p1": 7,
+ "p2": 7,
+ "p3": 7,
+ "gx": 5,
+ "gy": 5,
+ "gz": 5,
+ "area": 2,
+ "charLength": 2,
+ "sqrt": 10,
+ "CalcElemVelocityGradient": 2,
+ "xvel": 25,
+ "yvel": 25,
+ "zvel": 25,
+ "detJ": 5,
+ "d": 12,
+ "inv_detJ": 10,
+ "dyddx": 2,
+ "dxddy": 2,
+ "dzddx": 2,
+ "dxddz": 2,
+ "dzddy": 2,
+ "dyddz": 2,
+ "CalcPressureForElems": 4,
+ "p_new": 17,
+ "bvc": 15,
+ "pbvc": 14,
+ "e_old": 7,
+ "compression": 10,
+ "vnewc": 22,
+ "c1s": 3,
+ "abs": 8,
+ "//impossible": 1,
+ "targetdt": 1,
+ "//don": 1,
+ "t": 3,
+ "have": 2,
+ "negative": 2,
+ "determ": 1,
+ "can": 2,
+ "we": 1,
+ "be": 2,
+ "able": 1,
+ "write": 1,
+ "these": 1,
+ "as": 1,
+ "follows": 1,
+ "CalcVelocityForNodes": 1,
+ "local": 8,
+ "xdtmp": 4,
+ "ydtmp": 4,
+ "zdtmp": 4,
+ "CalcPositionForNodes": 1,
+ "ijk": 7,
+ "CalcLagrangeElements": 1,
+ "dxx": 6,
+ "dyy": 6,
+ "dzz": 6,
+ "CalcKinematicsForElems": 2,
+ "k": 20,
+ "vdovthird": 4,
+ "<=>": 7,
+ "0": 5,
+ "all": 1,
+ "elements": 3,
+ "8": 4,
+ "6": 1,
+ "nodal": 2,
+ "from": 2,
+ "global": 3,
+ "copy": 2,
+ "into": 3,
+ "xd_local": 4,
+ "yd_local": 4,
+ "zd_local": 4,
+ "dt2": 4,
+ "5": 1,
+ "wish": 1,
+ "this": 2,
+ "was": 1,
+ "too": 1,
+ "calculations": 1,
+ "relativeVolume": 3,
+ "1": 2,
+ "put": 1,
+ "velocity": 3,
+ "gradient": 3,
+ "quantities": 1,
+ "their": 1,
+ "2": 1,
+ "3": 1,
+ "sungeun": 1,
+ "Temporary": 1,
+ "array": 4,
+ "reused": 1,
+ "throughout": 1,
+ "delv_xi": 12,
+ "delv_eta": 12,
+ "delv_zeta": 12,
+ "position": 1,
+ "delx_xi": 7,
+ "delx_eta": 7,
+ "delx_zeta": 7,
+ "CalcQForElems": 1,
+ "MONOTONIC": 1,
+ "Q": 1,
+ "option": 1,
+ "Calculate": 1,
+ "gradients": 2,
+ "CalcMonotonicQGradientsForElems": 2,
+ "Transfer": 2,
+ "veloctiy": 1,
+ "first": 1,
+ "order": 1,
+ "problem": 1,
+ "commElements": 1,
+ "CommElements": 1,
+ "monoQ": 1,
+ "*/": 1,
+ "CalcMonotonicQForElems": 2,
+ "ApplyMaterialPropertiesForElems": 1,
+ "matelm": 2,
+ "vc": 6,
+ "exit": 1,
+ "EvalEOSForElems": 2,
+ "UpdateVolumesForElems": 1,
+ "tmpV": 4,
+ "ptiny": 9,
+ "xl": 26,
+ "yl": 26,
+ "zl": 26,
+ "xvl": 26,
+ "yvl": 26,
+ "zvl": 26,
+ "vol": 5,
+ "norm": 20,
+ "ax": 7,
+ "ay": 7,
+ "az": 7,
+ "dxv": 4,
+ "dyv": 4,
+ "dzv": 4,
+ "dxj": 1,
+ "dyj": 1,
+ "dzj": 1,
+ "dxi": 1,
+ "dyi": 1,
+ "dzi": 1,
+ "dxk": 1,
+ "dyk": 1,
+ "dzk": 1,
+ "dyi*dzj": 1,
+ "dzi*dyj": 1,
+ "dzi*dxj": 1,
+ "dxi*dzj": 1,
+ "dxi*dyj": 1,
+ "dyi*dxj": 1,
+ "ax*ax": 3,
+ "ay*ay": 3,
+ "az*az": 3,
+ "ax*dxv": 3,
+ "ay*dyv": 3,
+ "az*dzv": 3,
+ "dyj*dzk": 1,
+ "dzj*dyk": 1,
+ "dzj*dxk": 1,
+ "dxj*dzk": 1,
+ "dxj*dyk": 1,
+ "dyj*dxk": 1,
+ "dyk*dzi": 1,
+ "dzk*dyi": 1,
+ "dzk*dxi": 1,
+ "dxk*dzi": 1,
+ "dxk*dyi": 1,
+ "dyk*dxi": 1,
+ "//got": 1,
+ "rid": 1,
+ "of": 3,
+ "call": 1,
+ "through": 1,
+ "bcMask": 7,
+ "delvm": 27,
+ "delvp": 27,
+ "select": 6,
+ "when": 18,
+ "phixi": 10,
+ "phieta": 10,
+ "phizeta": 10,
+ "qlin": 4,
+ "qquad": 4,
+ "delvxxi": 4,
+ "delvxeta": 4,
+ "delvxzeta": 4,
+ "rho": 3,
+ "delvxxi**2": 1,
+ "phixi**2": 1,
+ "delvxeta**2": 1,
+ "phieta**2": 1,
+ "delvxzeta**2": 1,
+ "phizeta**2": 1,
+ "rho0": 8,
+ "delvc": 11,
+ "p_old": 8,
+ "q_old": 7,
+ "compHalfStep": 8,
+ "qq_old": 7,
+ "ql_old": 7,
+ "work": 5,
+ "e_new": 25,
+ "q_new": 11,
+ "vchalf": 2,
+ "CalcEnergyForElems": 2,
+ "CalcSoundSpeedForElems": 2,
+ "sixth": 2,
+ "pHalfStep": 5,
+ "vhalf": 1,
+ "ssc": 18,
+ "vhalf**2": 1,
+ "q_tilde": 4,
+ "**2": 6,
+ "enewc": 2,
+ "pnewc": 2,
+ "ssTmp": 4,
+ "elemToNodesTuple": 1,
+ "title": 2,
+ "string": 1,
+ "pi": 1,
+ "solarMass": 7,
+ "pi**2": 1,
+ "daysPerYear": 13,
+ "record": 1,
+ "body": 6,
+ "pos": 5,
+ "does": 1,
+ "not": 1,
+ "after": 1,
+ "it": 1,
+ "is": 1,
+ "up": 1,
+ "bodies": 8,
+ "numbodies": 5,
+ "bodies.numElements": 1,
+ "initSun": 2,
+ "writef": 2,
+ "advance": 2,
+ "b.v": 2,
+ "b.mass": 1,
+ ".v": 1,
+ "updateVelocities": 2,
+ "b1": 2,
+ "b2": 2,
+ "dpos": 4,
+ "b1.pos": 2,
+ "b2.pos": 2,
+ "mag": 3,
+ "sumOfSquares": 4,
+ "**3": 1,
+ "b1.v": 2,
+ "b2.mass": 2,
+ "b2.v": 1,
+ "b1.mass": 3,
+ "b.pos": 1,
+ "Random": 1,
+ "random": 1,
+ "number": 1,
+ "generation": 1,
+ "Timer": 2,
+ "class": 1,
+ "timer": 2,
+ "sort": 1,
+ "**15": 1,
+ "size": 1,
+ "sorted": 1,
+ "thresh": 6,
+ "recursive": 1,
+ "depth": 1,
+ "serialize": 1,
+ "verbose": 7,
+ "out": 1,
+ "many": 1,
+ "bool": 1,
+ "disable": 1,
+ "numbers": 1,
+ "fillRandom": 1,
+ "timer.start": 1,
+ "pqsort": 4,
+ "timer.stop": 1,
+ "timer.elapsed": 1,
+ "arr": 32,
+ "low": 12,
+ "arr.domain.low": 1,
+ "high": 14,
+ "arr.domain.high": 1,
+ "where": 2,
+ "arr.rank": 2,
+ "bubbleSort": 2,
+ "pivotVal": 9,
+ "findPivot": 2,
+ "pivotLoc": 3,
+ "partition": 2,
+ "serial": 1,
+ "cobegin": 1,
+ "mid": 7,
+ "ilo": 9,
+ "ihi": 6,
+ "low..high": 2
+ },
"Cirru": {
"print": 38,
"array": 14,
@@ -15178,77 +16413,247 @@
"container": 3
},
"Clojure": {
- "(": 83,
- "defn": 4,
+ "(": 258,
+ "defn": 14,
"prime": 2,
- "[": 41,
+ "[": 67,
"n": 9,
- "]": 41,
- "not": 3,
- "-": 14,
- "any": 1,
- "zero": 1,
- "map": 2,
- "#": 1,
+ "]": 67,
+ "not": 9,
+ "-": 70,
+ "any": 3,
+ "zero": 2,
+ "map": 3,
+ "#": 14,
"rem": 2,
- "%": 1,
- ")": 84,
+ "%": 6,
+ ")": 259,
"range": 3,
- ";": 8,
+ ";": 353,
"while": 3,
"stops": 1,
- "at": 1,
- "the": 1,
+ "at": 2,
+ "the": 5,
"first": 2,
"collection": 1,
"element": 1,
"that": 1,
"evaluates": 1,
- "to": 1,
- "false": 2,
+ "to": 2,
+ "false": 6,
"like": 1,
"take": 1,
- "for": 2,
- "x": 6,
- "html": 1,
- "head": 1,
- "meta": 1,
- "{": 8,
- "charset": 1,
- "}": 8,
- "link": 1,
- "rel": 1,
- "href": 1,
+ "for": 4,
+ "x": 8,
+ "html": 2,
+ "head": 2,
+ "meta": 3,
+ "{": 17,
+ "charset": 2,
+ "}": 17,
+ "link": 2,
+ "rel": 2,
+ "href": 6,
"script": 1,
"src": 1,
- "body": 1,
+ "body": 2,
"div.nav": 1,
- "p": 1,
- "into": 2,
+ "p": 4,
+ "Copyright": 1,
+ "c": 1,
+ "Alan": 1,
+ "Dipert": 1,
+ "and": 8,
+ "Micha": 1,
+ "Niskin.": 1,
+ "All": 1,
+ "rights": 1,
+ "reserved.": 1,
+ "The": 1,
+ "use": 3,
+ "distribution": 1,
+ "terms": 2,
+ "this": 6,
+ "software": 2,
+ "are": 2,
+ "covered": 1,
+ "by": 4,
+ "Eclipse": 1,
+ "Public": 1,
+ "License": 1,
+ "http": 2,
+ "//opensource.org/licenses/eclipse": 1,
+ "php": 1,
+ "which": 2,
+ "can": 1,
+ "be": 2,
+ "found": 1,
+ "in": 4,
+ "file": 1,
+ "epl": 1,
+ "v10.html": 1,
+ "root": 1,
+ "of": 2,
+ "distribution.": 1,
+ "By": 1,
+ "using": 1,
+ "fashion": 1,
+ "you": 1,
+ "agreeing": 1,
+ "bound": 1,
+ "license.": 1,
+ "You": 1,
+ "must": 1,
+ "remove": 3,
+ "notice": 1,
+ "or": 2,
+ "other": 1,
+ "from": 1,
+ "software.": 1,
+ "page": 2,
+ "refer": 4,
+ "clojure": 1,
+ "exclude": 1,
+ "nth": 2,
+ "require": 2,
+ "tailrecursion.hoplon.reload": 1,
+ "reload": 2,
+ "all": 5,
+ "tailrecursion.hoplon.util": 1,
+ "name": 1,
+ "pluralize": 2,
+ "tailrecursion.hoplon.storage": 1,
+ "atom": 1,
+ "local": 3,
+ "storage": 2,
+ "utility": 1,
+ "functions": 2,
+ "declare": 1,
+ "route": 11,
+ "state": 15,
+ "editing": 13,
+ "def": 4,
+ "mapvi": 2,
+ "comp": 1,
+ "vec": 2,
+ "indexed": 1,
+ "dissocv": 2,
+ "v": 15,
+ "i": 20,
+ "let": 3,
+ "z": 4,
+ "dec": 1,
+ "count": 5,
+ "cond": 2,
+ "neg": 1,
+ "pop": 1,
+ "pos": 1,
+ "into": 3,
+ "subvec": 2,
+ "inc": 2,
+ "decorate": 2,
+ "todo": 10,
+ "done": 12,
+ "completed": 12,
+ "text": 14,
+ "assoc": 4,
+ "visible": 2,
+ "empty": 8,
+ "persisted": 1,
+ "cell": 12,
+ "AKA": 1,
+ "stem": 1,
+ "store": 1,
+ "cells": 2,
+ "defc": 6,
+ "loaded": 1,
+ "nil": 3,
+ "formula": 1,
+ "computed": 1,
+ "filter": 2,
+ "active": 5,
+ "plural": 1,
+ "item": 1,
+ "todos": 2,
+ "list": 1,
+ "transition": 1,
+ "t": 5,
+ "destroy": 3,
+ "swap": 6,
+ "clear": 2,
+ "&": 1,
+ "_": 4,
+ "new": 5,
+ "when": 3,
+ "conj": 1,
+ "mapv": 1,
+ "fn": 3,
+ "reset": 1,
+ "if": 3,
+ "lang": 1,
+ "equiv": 1,
+ "content": 1,
+ "title": 1,
+ "noscript": 1,
+ "div": 3,
+ "id": 20,
+ "section": 2,
+ "header": 1,
+ "h1": 1,
+ "form": 2,
+ "on": 11,
+ "submit": 2,
+ "do": 15,
+ "val": 4,
+ "value": 3,
+ "input": 4,
+ "type": 8,
+ "autofocus": 1,
+ "true": 5,
+ "placeholder": 1,
+ "blur": 2,
+ "toggle": 4,
+ "attr": 2,
+ "checked": 2,
+ "click": 4,
+ "label": 2,
+ "ul": 2,
+ "loop": 2,
+ "tpl": 1,
+ "reverse": 1,
+ "bind": 1,
+ "ids": 1,
+ "done#": 3,
+ "edit#": 3,
+ "bindings": 1,
+ "edit": 3,
+ "show": 2,
+ "li": 4,
+ "class": 8,
+ "dblclick": 1,
+ "@i": 6,
+ "button": 2,
+ "focus": 1,
+ "@edit": 2,
+ "change": 1,
+ "footer": 2,
+ "span": 2,
+ "strong": 1,
+ "a": 7,
+ "selected": 3,
"array": 3,
"aseq": 8,
- "nil": 1,
- "type": 2,
- "let": 1,
- "count": 3,
- "a": 3,
"make": 1,
- "loop": 1,
"seq": 1,
- "i": 4,
- "if": 1,
"<": 1,
- "do": 1,
"aset": 1,
"recur": 1,
"next": 1,
- "inc": 1,
"defprotocol": 1,
"ISound": 4,
"sound": 5,
"deftype": 2,
"Cat": 1,
- "_": 3,
"Dog": 1,
"extend": 1,
"default": 1,
@@ -15259,7 +16664,6 @@
"clj": 1,
"ns": 2,
"c2.svg": 2,
- "use": 2,
"c2.core": 2,
"only": 4,
"unify": 2,
@@ -15273,39 +16677,30 @@
"cos": 2,
"mean": 2,
"cljs": 3,
- "require": 1,
"c2.dom": 1,
"as": 1,
"dom": 1,
"Stub": 1,
"float": 2,
- "fn": 2,
- "which": 1,
"does": 1,
"exist": 1,
- "on": 1,
"runtime": 1,
- "def": 1,
"identity": 1,
"xy": 1,
"coordinates": 7,
- "cond": 1,
- "and": 1,
"vector": 1,
"y": 1,
"deftest": 1,
"function": 1,
"tests": 1,
"is": 7,
- "true": 2,
"contains": 1,
"foo": 6,
"bar": 4,
"select": 1,
"keys": 2,
"baz": 4,
- "vals": 1,
- "filter": 1
+ "vals": 1
},
"CoffeeScript": {
"CoffeeScript": 1,
@@ -16022,6 +17417,224 @@
"xFF": 1,
"ip.join": 1
},
+ "ColdFusion": {
+ "-": 12,
+ "": 1,
+ "": 1,
+ "": 1,
+ "Date": 1,
+ "Functions": 1,
+ "": 1,
+ "": 1,
+ "": 1,
+ "": 15,
+ "RightNow": 7,
+ "Now": 1,
+ "": 3,
+ "#RightNow#": 1,
+ "
": 8,
+ "#DateFormat": 2,
+ "(": 8,
+ ")": 8,
+ "#": 8,
+ "#TimeFormat": 2,
+ "#IsDate": 3,
+ "#DaysInMonth": 1,
+ "": 3,
+ "x=": 1,
+ "y=": 1,
+ "z=": 1,
+ "group=": 1,
+ "#x#": 1,
+ "#y#": 1,
+ "#z#": 1,
+ "": 1,
+ "": 1,
+ "person": 2,
+ "Paul": 1,
+ "greeting": 2,
+ "Hello": 2,
+ "world": 1,
+ "a": 7,
+ "5": 1,
+ "b": 7,
+ "10": 1,
+ "c": 6,
+ "MOD": 1,
+ "comment": 1
+ },
+ "ColdFusion CFC": {
+ "component": 1,
+ "extends": 1,
+ "singleton": 1,
+ "{": 22,
+ "//": 16,
+ "DI": 1,
+ "property": 10,
+ "name": 10,
+ "inject": 10,
+ ";": 55,
+ "ContentService": 1,
+ "function": 12,
+ "init": 2,
+ "(": 58,
+ "entityName": 2,
+ ")": 58,
+ "it": 1,
+ "super.init": 1,
+ "arguments.entityName": 1,
+ "useQueryCaching": 1,
+ "true": 12,
+ "Test": 1,
+ "scope": 1,
+ "coloring": 1,
+ "in": 1,
+ "pygments": 1,
+ "this.colorTestVar": 1,
+ "cookie.colorTestVar": 1,
+ "client.colorTestVar": 1,
+ "session.colorTestVar": 1,
+ "application.colorTestVar": 1,
+ "return": 11,
+ "this": 10,
+ "}": 22,
+ "clearAllCaches": 1,
+ "boolean": 6,
+ "async": 7,
+ "false": 7,
+ "var": 15,
+ "settings": 6,
+ "settingService.getAllSettings": 6,
+ "asStruct": 6,
+ "Get": 6,
+ "appropriate": 6,
+ "cache": 12,
+ "provider": 6,
+ "cacheBox.getCache": 6,
+ "settings.cb_content_cacheName": 6,
+ "cache.clearByKeySnippet": 3,
+ "keySnippet": 3,
+ "arguments.async": 3,
+ "clearAllPageWrapperCaches": 1,
+ "clearPageWrapperCaches": 1,
+ "required": 5,
+ "any": 5,
+ "slug": 2,
+ "clearPageWrapper": 1,
+ "cache.clear": 3,
+ "searchContent": 1,
+ "searchTerm": 1,
+ "numeric": 2,
+ "max": 2,
+ "offset": 2,
+ "asQuery": 2,
+ "sortOrder": 2,
+ "isPublished": 1,
+ "searchActiveContent": 1,
+ "results": 2,
+ "c": 1,
+ "newCriteria": 1,
+ "only": 1,
+ "published": 1,
+ "content": 2,
+ "if": 4,
+ "isBoolean": 1,
+ "arguments.isPublished": 3,
+ "Published": 2,
+ "bit": 1,
+ "c.isEq": 1,
+ "javaCast": 1,
+ "eq": 1,
+ "evaluate": 1,
+ "other": 1,
+ "params": 1,
+ "c.isLt": 1,
+ "now": 2,
+ ".": 1,
+ "or": 3,
+ "c.restrictions.isNull": 1,
+ "c.restrictions.isGT": 1,
+ ".isEq": 1,
+ "Search": 1,
+ "Criteria": 1,
+ "len": 1,
+ "arguments.searchTerm": 1,
+ "like": 1,
+ "disjunctions": 1,
+ "c.createAlias": 1,
+ "Do": 1,
+ "we": 1,
+ "search": 1,
+ "title": 2,
+ "and": 2,
+ "active": 1,
+ "just": 1,
+ "arguments.searchActiveContent": 1,
+ "c.": 1,
+ "c.restrictions.like": 2,
+ "else": 1,
+ "c.like": 1,
+ "run": 1,
+ "criteria": 1,
+ "query": 1,
+ "projections": 1,
+ "count": 1,
+ "results.count": 1,
+ "c.count": 1,
+ "results.content": 1,
+ "c.resultTransformer": 1,
+ "c.DISTINCT_ROOT_ENTITY": 1,
+ ".list": 1,
+ "arguments.offset": 1,
+ "arguments.max": 1,
+ "arguments.sortOrder": 1,
+ "arguments.asQuery": 1,
+ "private": 4,
+ "syncUpdateHits": 1,
+ "contentID": 1,
+ "q": 1,
+ "new": 1,
+ "Query": 1,
+ "sql": 1,
+ ".execute": 1,
+ "closureTest": 1,
+ "methodCall": 1,
+ "param1": 2,
+ "arg1": 4,
+ "arg2": 2,
+ "StructliteralTest": 1,
+ "foo": 3,
+ "bar": 1,
+ "brad": 3,
+ "func": 1,
+ "array": 1,
+ "[": 2,
+ "wood": 2,
+ "null": 2,
+ "]": 2,
+ "last": 1,
+ "arrayliteralTest": 1,
+ "": 1,
+ "": 2,
+ "name=": 4,
+ "access=": 2,
+ "returntype=": 2,
+ "": 2,
+ "type=": 2,
+ "required=": 2,
+ "": 2,
+ "myVariable": 1,
+ "arguments": 2,
+ "": 1,
+ "": 2,
+ "": 1,
+ "structKeyExists": 1,
+ "writeoutput": 1,
+ "Argument": 1,
+ "exists": 1,
+ "": 1,
+ "": 1
+ },
"Common Lisp": {
";": 152,
"@file": 1,
@@ -18279,6 +19892,122 @@
"cudaDeviceReset": 1,
"return": 1
},
+ "Cycript": {
+ "(": 12,
+ "function": 2,
+ "utils": 2,
+ ")": 12,
+ "{": 8,
+ "//": 4,
+ "Load": 1,
+ "C": 2,
+ "functions": 3,
+ "declared": 1,
+ "in": 2,
+ "utils.loadFuncs": 1,
+ "var": 6,
+ "shouldLoadCFuncs": 2,
+ "true": 2,
+ ";": 21,
+ "Expose": 2,
+ "the": 1,
+ "to": 4,
+ "cycript": 2,
+ "s": 2,
+ "global": 1,
+ "scope": 1,
+ "shouldExposeConsts": 2,
+ "defined": 1,
+ "here": 1,
+ "t": 1,
+ "be": 2,
+ "found": 2,
+ "with": 1,
+ "dlsym": 1,
+ "Failed": 1,
+ "load": 1,
+ "mach_vm_address_t": 1,
+ "string": 4,
+ "@encode": 2,
+ "infinite": 1,
+ "*": 1,
+ "length": 1,
+ "[": 8,
+ "object": 1,
+ "Struct": 1,
+ "]": 8,
+ "%": 8,
+ "@": 3,
+ "<%@:>": 1,
+ "0x": 1,
+ "+": 3,
+ "-": 2,
+ "printf": 1,
+ ".3s": 1,
+ "d": 2,
+ "c": 5,
+ "float": 1,
+ "f": 1,
+ "n": 1,
+ "foo": 2,
+ "barrrr": 1,
+ "Args": 1,
+ "needs": 1,
+ "an": 1,
+ "array": 1,
+ "number": 1,
+ "Function": 1,
+ "not": 1,
+ "foobar": 2,
+ "strdup": 2,
+ "pipe": 1,
+ "write": 1,
+ "close": 2,
+ "int": 1,
+ "a": 1,
+ "short": 1,
+ "b": 1,
+ "char": 1,
+ "uint64_t": 1,
+ "double": 1,
+ "e": 1,
+ "struct": 1,
+ "}": 9,
+ "return": 1,
+ "new": 1,
+ "Type": 1,
+ "typeStr": 1,
+ "Various": 1,
+ "constants": 1,
+ "utils.constants": 2,
+ "VM_PROT_NONE": 1,
+ "VM_PROT_READ": 1,
+ "VM_PROT_WRITE": 1,
+ "VM_PROT_EXECUTE": 1,
+ "VM_PROT_NO_CHANGE": 1,
+ "VM_PROT_COPY": 1,
+ "VM_PROT_WANTS_COPY": 1,
+ "VM_PROT_IS_MASK": 1,
+ "c.VM_PROT_DEFAULT": 1,
+ "c.VM_PROT_READ": 2,
+ "|": 3,
+ "c.VM_PROT_WRITE": 2,
+ "c.VM_PROT_ALL": 1,
+ "c.VM_PROT_EXECUTE": 1,
+ "if": 3,
+ "for": 2,
+ "k": 3,
+ "Cycript.all": 2,
+ "shouldExposeFuncs": 1,
+ "i": 4,
+ "<": 1,
+ "funcsToExpose.length": 1,
+ "name": 3,
+ "funcsToExpose": 1,
+ "utils.loadfuncs": 1,
+ "shouldExposeCFuncs": 1,
+ "exports": 1
+ },
"DM": {
"#define": 4,
"PI": 6,
@@ -19607,6 +21336,36 @@
"screws": 1,
"egrep": 1
},
+ "EmberScript": {
+ "class": 1,
+ "App.FromNowView": 2,
+ "extends": 1,
+ "Ember.View": 1,
+ "tagName": 1,
+ "template": 1,
+ "Ember.Handlebars.compile": 1,
+ "output": 1,
+ "return": 1,
+ "moment": 1,
+ "(": 5,
+ "@value": 1,
+ ")": 5,
+ ".fromNow": 1,
+ "didInsertElement": 1,
+ "-": 4,
+ "@tick": 2,
+ "tick": 1,
+ "f": 2,
+ "@notifyPropertyChange": 1,
+ "nextTick": 4,
+ "Ember.run.later": 1,
+ "this": 1,
+ "@set": 1,
+ "willDestroyElement": 1,
+ "@nextTick": 1,
+ "Ember.run.cancel": 1,
+ "Ember.Handlebars.helper": 1
+ },
"Erlang": {
"SHEBANG#!escript": 3,
"%": 134,
@@ -26005,8 +27764,139 @@
"with": 1,
"Doxygen": 1
},
+ "HTML+ERB": {
+ "<%>": 12,
+ "if": 3,
+ "Spree": 4,
+ "Config": 4,
+ "enable_fishbowl": 1,
+ "": 23,
+ "class=": 24,
+ "id=": 1,
+ "
": 23,
+ "end": 5,
+ "hidden_field_tag": 1,
+ "fishbowl_always_fetch_current_inventory": 3,
+ "0": 1,
+ "check_box_tag": 1,
+ "1": 1,
+ "always_fetch_current_inventory": 1,
+ "location_groups": 2,
+ "empty": 1,
+ "fishbowl_location_group": 3,
+ "location_group": 1,
+ "select": 1,
+ "selected": 1,
+ "[": 2,
+ "]": 2,
+ "{": 1,
+ "": 1,
+ "": 1,
+ "provide": 1,
+ "title": 1,
+ "header": 2,
+ "present": 1,
+ "users": 3,
+ "user_presenter": 1,
+ "": 1,
+ "
": 1,
+ "will_paginate": 2,
+ "Name": 1,
+ "Email": 1,
+ "Chords": 1,
+ "Keys": 1,
+ "Tunings": 1,
+ "Credits": 1,
+ "Prem": 1,
+ "Since": 1,
+ "No": 1,
+ "Users": 1,
+ "else": 1,
+ "render": 1
+ },
"Haml": {
- "%": 1,
+ "/": 1,
+ "replace": 1,
+ ".pull": 1,
+ "-": 16,
+ "right": 1,
+ ".btn": 2,
+ "group": 2,
+ "link_to": 4,
+ "page.url": 1,
+ "target": 1,
+ "title": 5,
+ "t": 5,
+ "(": 10,
+ ")": 10,
+ "class": 4,
+ "do": 4,
+ "%": 7,
+ "i.icon": 5,
+ "picture.row": 1,
+ "black": 1,
+ "refinery.edit_admin_page_path": 1,
+ "page.nested_url": 2,
+ "switch_locale": 1,
+ "page.translations.first.locale": 1,
+ "unless": 1,
+ "page.translated_to_default_locale": 1,
+ "scope": 4,
+ "edit.row": 1,
+ "blue": 1,
+ "if": 1,
+ "page.deletable": 1,
+ "refinery.admin_page_path": 1,
+ "methode": 1,
+ "delete": 1,
+ "data": 1,
+ "{": 1,
+ "confirm": 1,
+ "page_title_with_translations": 1,
+ "page": 1,
+ "}": 1,
+ "trash.row": 1,
+ "red": 1,
+ "else": 1,
+ "button.btn.btn": 1,
+ "xs.btn": 1,
+ "default.disabled": 1,
+ "trash": 1,
+ "refinery.new_admin_page_path": 1,
+ "parent_id": 1,
+ "page.id": 1,
+ "plus.row": 1,
+ "green": 1,
"p": 1,
"Hello": 1,
"World": 1
@@ -26304,6 +28194,52 @@
"L": 1,
"example": 1
},
+ "IGOR Pro": {
+ "#pragma": 2,
+ "rtGlobals": 2,
+ "Function": 6,
+ "FooBar": 1,
+ "(": 10,
+ ")": 10,
+ "return": 7,
+ "End": 7,
+ "FooBarSubType": 1,
+ "ButtonControl": 1,
+ "Function/D": 1,
+ "FooBarVar": 1,
+ "static": 3,
+ "FooBarStatic": 1,
+ "threadsafe": 2,
+ "FooBarStaticThreadsafe": 1,
+ "FooBarThread": 1,
+ "CallOperationsAndBuiltInFuncs": 1,
+ "string": 4,
+ "var": 3,
+ "someDQString": 2,
+ "Make/N": 1,
+ "myWave": 2,
+ "Redimension/N": 1,
+ "-": 3,
+ "print": 1,
+ "strlen": 1,
+ "StrConstant": 1,
+ "myConstString": 1,
+ "constant": 1,
+ "myConst": 1,
+ "Structure": 2,
+ "struct1": 1,
+ "str": 2,
+ "variable": 2,
+ "EndStructure": 2,
+ "struct2": 1,
+ "#include": 1,
+ "#ifdef": 1,
+ "NOT_DEFINED": 1,
+ "//": 1,
+ "conditional": 1,
+ "compilation": 1,
+ "#endif": 1
+ },
"INI": {
";": 1,
"editorconfig.org": 1,
@@ -34109,6 +36045,72 @@
"info": 1,
"reproduce": 1
},
+ "LSL": {
+ "integer": 8,
+ "someIntNormal": 2,
+ ";": 29,
+ "someIntHex": 2,
+ "someIntMath": 2,
+ "PI_BY_TWO": 2,
+ "event": 2,
+ "//": 5,
+ "is": 3,
+ "invalid.illegal": 2,
+ "key": 3,
+ "someKeyTexture": 2,
+ "TEXTURE_DEFAULT": 2,
+ "string": 5,
+ "someStringSpecial": 2,
+ "EOF": 2,
+ "some_user_defined_function_without_return_type": 2,
+ "(": 19,
+ "inputAsString": 2,
+ ")": 19,
+ "{": 9,
+ "llSay": 1,
+ "PUBLIC_CHANNEL": 4,
+ "}": 9,
+ "user_defined_function_returning_a_string": 2,
+ "inputAsKey": 2,
+ "return": 1,
+ "default": 2,
+ "state_entry": 2,
+ "someKey": 3,
+ "NULL_KEY": 1,
+ "llGetOwner": 1,
+ "someString": 2,
+ "touch_start": 1,
+ "num_detected": 2,
+ "list": 1,
+ "agentsInRegion": 3,
+ "llGetAgentList": 1,
+ "AGENT_LIST_REGION": 1,
+ "[": 1,
+ "]": 1,
+ "numOfAgents": 2,
+ "llGetListLength": 1,
+ "index": 4,
+ "defaults": 1,
+ "to": 1,
+ "for": 2,
+ "<": 1,
+ "-": 1,
+ "+": 2,
+ "each": 1,
+ "agent": 1,
+ "in": 1,
+ "region": 1,
+ "llRegionSayTo": 1,
+ "llList2Key": 1,
+ "touch_end": 1,
+ "llSetInventoryPermMask": 1,
+ "MASK_NEXT": 1,
+ "PERM_ALL": 1,
+ "reserved.godmode": 1,
+ "llWhisper": 2,
+ "state": 3,
+ "other": 2
+ },
"Lasso": {
"<": 7,
"LassoScript": 1,
@@ -35768,6 +37770,50 @@
"write": 1,
"end_object.": 1
},
+ "LookML": {
+ "-": 12,
+ "view": 1,
+ "comments": 1,
+ "fields": 1,
+ "dimension": 4,
+ "id": 2,
+ "primary_key": 1,
+ "true": 3,
+ "type": 6,
+ "int": 3,
+ "sql": 6,
+ "{": 6,
+ "TABLE": 6,
+ "}": 6,
+ ".id": 1,
+ "body": 1,
+ ".body": 1,
+ "dimension_group": 2,
+ "created": 1,
+ "time": 4,
+ "timeframes": 2,
+ "[": 2,
+ "date": 2,
+ "week": 2,
+ "month": 2,
+ "]": 2,
+ ".created_at": 1,
+ "headline_id": 1,
+ "hidden": 2,
+ ".headline_id": 1,
+ "updated": 1,
+ ".updated_at": 1,
+ "user_id": 1,
+ ".user_id": 1,
+ "measure": 1,
+ "count": 2,
+ "detail": 2,
+ "detail*": 1,
+ "sets": 1,
+ "headlines.id": 1,
+ "headlines.name": 1,
+ "users.id": 1
+ },
"Lua": {
"-": 60,
"A": 1,
@@ -48945,6 +50991,29 @@
"}": 2,
"title": 1
},
+ "Opal": {
+ "-": 4,
+ "Deepak": 1,
+ "Chopra": 1,
+ "nonsense": 1,
+ "text": 1,
+ "generator": 1,
+ "see": 1,
+ "https": 1,
+ "//github.com/StoneCypher/DeepakChopra_Opal/": 1,
+ "starts": 1,
+ "[": 4,
+ "]": 4,
+ "middles": 1,
+ "qualifiers": 1,
+ "finishes": 1,
+ "alert": 1,
+ "starts.sample": 1,
+ "+": 3,
+ "middles.sample": 1,
+ "qualifiers.sample": 1,
+ "finishes.sample": 1
+ },
"OpenCL": {
"double": 3,
"run_fftw": 1,
@@ -49216,6 +51285,28 @@
"CHR": 2,
"lcPostBase64Data.": 1
},
+ "OpenSCAD": {
+ "fn": 1,
+ ";": 6,
+ "difference": 1,
+ "(": 11,
+ ")": 11,
+ "{": 2,
+ "union": 1,
+ "translate": 4,
+ "[": 5,
+ "]": 5,
+ "cube": 1,
+ "center": 3,
+ "true": 3,
+ "cylinder": 2,
+ "h": 2,
+ "r1": 1,
+ "r2": 1,
+ "sphere": 2,
+ "r": 3,
+ "}": 2
+ },
"Org": {
"#": 13,
"+": 13,
@@ -51104,35 +53195,35 @@
"package": 14,
"App": 131,
"Ack": 136,
- ";": 1193,
- "use": 83,
- "warnings": 18,
- "strict": 18,
+ ";": 1376,
+ "use": 88,
+ "warnings": 19,
+ "strict": 22,
"File": 54,
"Next": 27,
"Plugin": 2,
- "Basic": 10,
+ "Basic": 11,
"head1": 36,
"NAME": 6,
- "-": 868,
+ "-": 1075,
"A": 2,
"container": 1,
- "for": 83,
+ "for": 88,
"functions": 2,
- "the": 143,
+ "the": 153,
"ack": 38,
- "program": 6,
+ "program": 7,
"VERSION": 15,
"Version": 1,
"cut": 28,
"our": 34,
"COPYRIGHT": 7,
"BEGIN": 7,
- "{": 1121,
- "}": 1134,
+ "{": 1394,
+ "}": 1407,
"fh": 28,
"*STDOUT": 6,
- "%": 78,
+ "%": 82,
"types": 26,
"type_wanted": 20,
"mappings": 29,
@@ -51143,8 +53234,8 @@
"is_cygwin": 6,
"is_windows": 12,
"Spec": 13,
- "(": 925,
- ")": 923,
+ "(": 1137,
+ ")": 1136,
"Glob": 4,
"Getopt": 6,
"Long": 6,
@@ -51157,11 +53248,11 @@
"_sgbak": 2,
"_build": 2,
"actionscript": 2,
- "[": 159,
+ "[": 200,
"qw": 35,
- "as": 37,
+ "as": 40,
"mxml": 2,
- "]": 155,
+ "]": 196,
"ada": 4,
"adb": 2,
"ads": 2,
@@ -51175,7 +53266,7 @@
"Binary": 2,
"files": 42,
"defined": 54,
- "by": 16,
+ "by": 19,
"Perl": 9,
"T": 2,
"op": 2,
@@ -51204,25 +53295,25 @@
"xsl": 2,
"xslt": 2,
"ent": 2,
- "while": 31,
- "my": 404,
+ "while": 33,
+ "my": 458,
"type": 69,
"exts": 6,
"each": 14,
- "if": 276,
+ "if": 322,
"ref": 33,
"ext": 14,
- "@": 38,
- "push": 30,
- "_": 101,
+ "@": 54,
+ "push": 37,
+ "_": 104,
"mk": 2,
"mak": 2,
- "not": 54,
- "t": 18,
- "p": 9,
+ "not": 56,
+ "t": 21,
+ "p": 10,
"STDIN": 2,
"O": 4,
- "eq": 31,
+ "eq": 62,
"/MSWin32/": 2,
"quotemeta": 5,
"catfile": 4,
@@ -51230,37 +53321,37 @@
"If": 15,
"you": 44,
"want": 7,
- "to": 95,
+ "to": 101,
"know": 4,
"about": 4,
"F": 24,
"": 13,
"see": 5,
- "file": 49,
+ "file": 57,
"itself.": 3,
"No": 4,
- "user": 4,
+ "user": 5,
"serviceable": 1,
"parts": 1,
"inside.": 1,
- "is": 69,
- "all": 23,
- "that": 33,
- "should": 6,
+ "is": 74,
+ "all": 28,
+ "that": 35,
+ "should": 8,
"this.": 1,
"FUNCTIONS": 1,
"head2": 34,
"read_ackrc": 4,
"Reads": 1,
"contents": 2,
- "of": 64,
+ "of": 67,
".ackrc": 1,
- "and": 85,
+ "and": 92,
"returns": 4,
"arguments.": 1,
- "sub": 225,
+ "sub": 232,
"@files": 12,
- "ENV": 40,
+ "ENV": 41,
"ACKRC": 2,
"@dirs": 4,
"HOME": 4,
@@ -51269,55 +53360,55 @@
"grep": 17,
"bsd_glob": 4,
"GLOB_TILDE": 2,
- "filename": 68,
- "&&": 83,
- "e": 20,
- "open": 7,
- "or": 49,
+ "filename": 72,
+ "&&": 84,
+ "e": 21,
+ "open": 10,
+ "or": 51,
"die": 38,
"@lines": 21,
"/./": 2,
- "/": 69,
+ "/": 82,
"s*#/": 2,
"<$fh>": 4,
- "chomp": 3,
- "close": 19,
- "s/": 22,
- "+": 120,
+ "chomp": 4,
+ "close": 22,
+ "s/": 28,
+ "+": 126,
"//": 9,
- "return": 157,
+ "return": 168,
"get_command_line_options": 4,
"Gets": 3,
- "command": 14,
- "line": 20,
+ "command": 16,
+ "line": 21,
"arguments": 2,
- "does": 10,
+ "does": 11,
"specific": 2,
"tweaking.": 1,
"opt": 291,
"pager": 19,
"ACK_PAGER_COLOR": 7,
- "||": 49,
+ "||": 52,
"ACK_PAGER": 5,
"getopt_specs": 6,
"m": 17,
"after_context": 16,
"before_context": 18,
- "shift": 165,
+ "shift": 170,
"val": 26,
"break": 14,
- "c": 5,
+ "c": 6,
"count": 23,
"color": 38,
"ACK_COLOR_MATCH": 5,
"ACK_COLOR_FILENAME": 5,
"ACK_COLOR_LINENO": 4,
"column": 4,
- "#": 99,
+ "#": 106,
"ignore": 7,
"this": 22,
"option": 7,
- "it": 28,
+ "it": 30,
"handled": 2,
"beforehand": 2,
"f": 25,
@@ -51327,14 +53418,14 @@
"heading": 18,
"h": 6,
"H": 6,
- "i": 26,
+ "i": 27,
"invert_file_match": 8,
- "lines": 19,
+ "lines": 20,
"l": 17,
- "regex": 28,
+ "regex": 42,
"n": 19,
"o": 17,
- "output": 36,
+ "output": 40,
"undef": 17,
"passthru": 9,
"print0": 7,
@@ -51343,15 +53434,15 @@
"smart_case": 3,
"sort_files": 11,
"u": 10,
- "w": 4,
+ "w": 7,
"remove_dir_sep": 7,
"delete": 10,
"print_version_statement": 2,
- "exit": 16,
+ "exit": 19,
"show_help": 3,
- "@_": 43,
+ "@_": 45,
"show_help_types": 2,
- "require": 12,
+ "require": 13,
"Pod": 4,
"Usage": 4,
"pod2usage": 2,
@@ -51360,22 +53451,22 @@
"dummy": 2,
"wanted": 4,
"no//": 2,
- "must": 5,
- "be": 36,
+ "must": 7,
+ "be": 39,
"later": 2,
- "exists": 19,
- "else": 53,
+ "exists": 31,
+ "else": 71,
"qq": 18,
"Unknown": 2,
"unshift": 4,
"@ARGV": 12,
- "split": 13,
+ "split": 15,
"ACK_OPTIONS": 5,
"def_types_from_ARGV": 5,
"filetypes_supported": 5,
"parser": 12,
"Parser": 4,
- "new": 55,
+ "new": 56,
"configure": 4,
"getoptions": 4,
"to_screen": 10,
@@ -51385,27 +53476,27 @@
"Console": 2,
"ANSI": 3,
"key": 20,
- "value": 12,
+ "value": 14,
"<": 15,
- "join": 5,
+ "join": 7,
"map": 10,
"@ret": 10,
- "from": 19,
+ "from": 20,
"warn": 22,
"..": 7,
"uniq": 4,
"@uniq": 2,
- "sort": 8,
- "a": 85,
+ "sort": 9,
+ "a": 88,
"<=>": 2,
"b": 6,
- "keys": 15,
+ "keys": 19,
"numerical": 2,
"occurs": 2,
"only": 11,
"once": 4,
"Go": 1,
- "through": 6,
+ "through": 10,
"look": 2,
"I": 68,
"<--type-set>": 1,
@@ -51413,14 +53504,14 @@
"bar": 3,
"<--type-add>": 1,
"xml=": 1,
- ".": 125,
+ ".": 166,
"Remove": 1,
"them": 5,
"add": 9,
"supported": 1,
"filetypes": 8,
"i.e.": 2,
- "into": 6,
+ "into": 8,
"etc.": 3,
"@typedef": 8,
"td": 6,
@@ -51428,12 +53519,12 @@
"Builtin": 4,
"cannot": 4,
"changed.": 4,
- "ne": 9,
+ "ne": 11,
"delete_type": 5,
"Type": 2,
- "exist": 4,
+ "exist": 5,
"creating": 3,
- "with": 26,
+ "with": 28,
"...": 2,
"unless": 39,
"@exts": 8,
@@ -51461,9 +53552,9 @@
"directory": 8,
"any": 4,
"ones": 1,
- "we": 7,
+ "we": 9,
"ignore.": 1,
- "path": 28,
+ "path": 29,
"This": 27,
"removes": 1,
"trailing": 1,
@@ -51496,16 +53587,16 @@
"constant": 2,
"TEXT": 16,
"basename": 9,
- ".*": 2,
+ ".*": 5,
"is_searchable": 8,
"lc_basename": 8,
"lc": 5,
- "r": 14,
+ "r": 18,
"B": 76,
"header": 17,
"SHEBANG#!#!": 2,
"ruby": 3,
- "|": 28,
+ "|": 31,
"lua": 2,
"erl": 2,
"hp": 2,
@@ -51528,15 +53619,15 @@
"U": 2,
"y": 8,
"tr/": 2,
- "x": 7,
+ "x": 12,
"w/": 3,
"nOo_/": 2,
"_thpppt": 3,
"_get_thpppt": 3,
- "print": 35,
+ "print": 46,
"_bar": 3,
"<<": 10,
- "&": 22,
+ "&": 27,
"*I": 2,
"g": 7,
"#.": 6,
@@ -51545,15 +53636,15 @@
"#I": 6,
"#7": 4,
"results.": 2,
- "on": 25,
- "when": 18,
- "used": 12,
+ "on": 27,
+ "when": 19,
+ "used": 13,
"interactively": 6,
"no": 22,
"Print": 6,
"between": 4,
"results": 8,
- "different": 2,
+ "different": 3,
"files.": 6,
"group": 2,
"Same": 8,
@@ -51567,7 +53658,7 @@
"Windows": 4,
"colour": 2,
"COLOR": 6,
- "match": 21,
+ "match": 24,
"lineno": 2,
"Set": 3,
"filenames": 7,
@@ -51593,7 +53684,7 @@
"invert": 2,
"Print/search": 2,
"handle": 3,
- "do": 12,
+ "do": 16,
"g/": 2,
"G.": 2,
"show": 3,
@@ -51601,15 +53692,15 @@
"which": 7,
"has.": 2,
"inclusion/exclusion": 2,
- "All": 4,
+ "All": 5,
"searched": 5,
"Ignores": 2,
".svn": 3,
- "other": 5,
+ "other": 6,
"ignored": 6,
"directories": 9,
"unrestricted": 2,
- "name": 44,
+ "name": 60,
"Add/Remove": 2,
"dirs": 2,
"R": 2,
@@ -51639,12 +53730,12 @@
"res": 59,
"next_text": 8,
"has_lines": 4,
- "scalar": 2,
- "m/": 4,
+ "scalar": 3,
+ "m/": 12,
"regex/": 9,
"next": 9,
"print_match_or_context": 13,
- "elsif": 10,
+ "elsif": 26,
"last": 17,
"max": 12,
"nmatches": 61,
@@ -51658,7 +53749,7 @@
"match_start": 5,
"match_end": 3,
"Prints": 4,
- "out": 2,
+ "out": 3,
"context": 1,
"around": 5,
"match.": 3,
@@ -51699,7 +53790,7 @@
"print_count0": 2,
"filetypes_supported_set": 9,
"True/False": 1,
- "are": 25,
+ "are": 26,
"print_files": 4,
"iter": 23,
"returned": 3,
@@ -51711,10 +53802,10 @@
"<$ors>": 1,
"<\"\\n\">": 1,
"defines": 2,
- "what": 14,
+ "what": 15,
"filename.": 1,
"print_files_with_matches": 4,
- "where": 3,
+ "where": 4,
"was": 2,
"repo": 18,
"Repository": 11,
@@ -51741,7 +53832,7 @@
"EXPAND_FILENAMES_SCOPE": 4,
"argv": 12,
"attr": 6,
- "foreach": 4,
+ "foreach": 13,
"pattern": 10,
"@results": 14,
"didn": 2,
@@ -51749,7 +53840,7 @@
"tried": 2,
"load": 2,
"GetAttributes": 2,
- "end": 9,
+ "end": 10,
"attributes": 4,
"got": 2,
"get_starting_points": 4,
@@ -51757,7 +53848,7 @@
"@what": 14,
"reslash": 4,
"Assume": 2,
- "current": 5,
+ "current": 6,
"start_point": 4,
"_match": 8,
"target": 6,
@@ -51772,7 +53863,7 @@
"is_interesting": 4,
"descend_filter": 11,
"error_handler": 5,
- "msg": 4,
+ "msg": 5,
"follow_symlinks": 6,
"set_up_pager": 3,
"Unable": 2,
@@ -51785,7 +53876,7 @@
"code.": 2,
"otherwise": 2,
"handed": 1,
- "in": 36,
+ "in": 40,
"argument.": 1,
"rc": 11,
"LICENSE": 3,
@@ -51802,6 +53893,236 @@
"License": 2,
"v2.0.": 2,
"End": 3,
+ "SHEBANG#!perl": 6,
+ "##": 79,
+ "configuration": 3,
+ "options": 8,
+ "BASE_DIR": 1,
+ "CONFIG_FILE": 2,
+ "Config": 1,
+ "location": 5,
+ "DEBUG_LOG_FILE": 2,
+ "Specify": 2,
+ "create": 4,
+ "log": 4,
+ "writable": 2,
+ "nagios": 3,
+ "DEBUGLEVEL": 3,
+ "Nothing": 1,
+ "Errors": 1,
+ "Warnings": 1,
+ "Debug": 1,
+ "DEBUGOUTPUT": 8,
+ "STDERR": 5,
+ "STDOUT": 1,
+ "cgi": 4,
+ "Global": 1,
+ "vars": 1,
+ "DEBUG_TIMESTAMP": 5,
+ "Find": 1,
+ "how": 2,
+ "run": 3,
+ "ARGV": 5,
+ "test": 1,
+ "errors": 4,
+ "console": 1,
+ "read_config": 4,
+ "abort": 23,
+ "parse": 3,
+ "performance": 2,
+ "data": 5,
+ "started": 1,
+ "parse_perfdata": 2,
+ "CGI": 10,
+ "script": 1,
+ "web": 9,
+ "browser": 1,
+ "run_as_cgi": 2,
+ "some": 2,
+ "help": 3,
+ "info": 1,
+ "logfile": 1,
+ "write": 5,
+ "blank": 2,
+ "wrote": 1,
+ "anything...": 1,
+ "debug": 39,
+ "Program": 1,
+ "called": 5,
+ "graph_name": 18,
+ "param": 10,
+ "graph_iteration": 6,
+ "config": 67,
+ "display": 2,
+ "index": 2,
+ "graphs": 3,
+ "display_htmltemplate": 3,
+ "graph": 4,
+ "Display": 3,
+ "HTML": 6,
+ "page": 1,
+ "generate": 1,
+ "call": 4,
+ "rrdtool_cmdline": 11,
+ ".join": 5,
+ "expand": 1,
+ "variables": 1,
+ "rrdarchive": 1,
+ "f/": 1,
+ "rrdarchive/g": 1,
+ "t_start": 4,
+ "t_start/g": 1,
+ "t_end": 4,
+ "e/": 1,
+ "t_end/g": 1,
+ "t_descr": 3,
+ "d/": 1,
+ "t_descr/g": 1,
+ "Call": 1,
+ "rrdtool": 3,
+ "probably": 1,
+ "fixed": 1,
+ "better": 1,
+ "way": 3,
+ "like": 14,
+ "exec": 1,
+ "template": 3,
+ "variable": 3,
+ "substitution": 1,
+ "stuff": 1,
+ "": 1,
+ "big": 2,
+ "regex..": 1,
+ "/my": 1,
+ "varname": 8,
+ "date": 3,
+ "time": 6,
+ "localtime": 2,
+ "code": 10,
+ "return_html": 4,
+ "gn": 2,
+ "return_html.": 2,
+ "escape": 1,
+ "slash": 1,
+ "since": 2,
+ "were": 2,
+ "inside": 1,
+ "an": 17,
+ "displaying": 1,
+ "actual": 1,
+ "images": 1,
+ "iteration_id": 2,
+ "unknown": 1,
+ "/eig": 1,
+ "thought": 1,
+ "would": 6,
+ "never": 2,
+ "Process": 1,
+ "incoming": 1,
+ "check": 3,
+ "plugin": 1,
+ "insert": 1,
+ "values": 7,
+ "rrd": 3,
+ "archives": 2,
+ "rrd_updates": 13,
+ "Provide": 1,
+ "more": 3,
+ "symbolic": 1,
+ "names": 3,
+ "same": 4,
+ "macros": 1,
+ "LASTCHECK": 1,
+ "HOSTNAME": 2,
+ "SERVICEDESCR": 2,
+ "SERVICESTATE": 1,
+ "OUTPUT": 2,
+ "PERFDATA": 2,
+ "host_and_descr_found": 3,
+ "Loop": 4,
+ "host_regexes": 1,
+ "host_regex": 5,
+ "service_description_regexes": 1,
+ "service_regex": 4,
+ "host_regex/i": 1,
+ "service_regex/i": 1,
+ "InsertValue": 1,
+ "host": 1,
+ "service_description": 1,
+ "insert_value": 10,
+ "regexes": 4,
+ "output/perfdata": 1,
+ "regex_string": 1,
+ "regex_string/": 2,
+ "Insert": 1,
+ "RRD": 3,
+ "calling": 1,
+ "may": 4,
+ "several": 1,
+ "archive": 9,
+ "rrdarchive_filename": 3,
+ "Create": 1,
+ "Archive": 1,
+ "according": 1,
+ "rrdarchive_filename.": 3,
+ "rrdtool_cmdline.": 1,
+ "Check": 1,
+ "wheter": 1,
+ "Assemle": 1,
+ "result": 3,
+ "Read": 1,
+ "CONFIG": 2,
+ "line_counter": 2,
+ "": 1,
+ "@args": 11,
+ "shellwords": 1,
+ "orig_confline": 1,
+ "args": 37,
+ "uc": 1,
+ "INSERTVALUE": 1,
+ "rrd_filename": 2,
+ "rrdcreatetemplate": 4,
+ "hostname_regex": 4,
+ "servicedescr_regex": 4,
+ "regex_template": 3,
+ "verify": 3,
+ "hostname": 2,
+ "service": 1,
+ "description": 2,
+ "s*": 1,
+ "#/": 1,
+ "comment": 1,
+ "row": 1,
+ "nuthin": 1,
+ "RRDToolPath": 1,
+ "PlotTemplate": 1,
+ "htmltemplate": 2,
+ "parameters..": 2,
+ "@params": 7,
+ "GraphTimeTemplate": 1,
+ "time_template": 2,
+ "@t_descr": 2,
+ "workaround": 1,
+ "string": 6,
+ "RRDCreateTemplate": 1,
+ "ValueRegexTemplate": 1,
+ "template_name": 3,
+ "@regexes": 2,
+ "perfdata": 1,
+ "regex_what": 2,
+ "dsa_name": 2,
+ "RRDARCHIVEPATH": 1,
+ "HTMLTemplatePath": 1,
+ "GraphIndexTemplate": 1,
+ "GRAPH": 1,
+ "rrdfilename": 1,
+ "graphtimetemplate": 1,
+ "plottemplate": 1,
+ "Write": 1,
+ "output/logging": 1,
+ "level": 3,
+ "timestamp": 1,
+ "msg.": 2,
"SHEBANG#!#! perl": 4,
"examples/benchmarks/fib.pl": 1,
"Fibonacci": 2,
@@ -51816,7 +54137,6 @@
"SEE": 4,
"ALSO": 4,
"": 1,
- "SHEBANG#!perl": 5,
"MAIN": 1,
"main": 3,
"env_is_usable": 3,
@@ -51835,9 +54155,7 @@
"Resource": 5,
"file_matching": 2,
"check_regex": 2,
- "like": 13,
"finder": 1,
- "options": 7,
"FILE...": 1,
"DIRECTORY...": 1,
"designed": 1,
@@ -51854,7 +54172,6 @@
"By": 2,
"prints": 2,
"also": 7,
- "would": 5,
"actually": 1,
"let": 1,
"take": 5,
@@ -51868,7 +54185,6 @@
"symlinks": 1,
"than": 5,
"whatever": 1,
- "were": 1,
"specified": 3,
"line.": 4,
"default.": 2,
@@ -51896,7 +54212,6 @@
"groups": 1,
"with.": 1,
"interactively.": 1,
- "result": 1,
"per": 1,
"grep.": 2,
"redirected.": 1,
@@ -51910,14 +54225,12 @@
"searched.": 1,
"<--help>": 1,
"short": 1,
- "help": 2,
"statement.": 1,
"<--ignore-case>": 1,
"Ignore": 3,
"case": 3,
"strings.": 1,
"applies": 3,
- "regexes": 3,
"<-g>": 5,
"<-G>": 3,
"options.": 4,
@@ -51927,7 +54240,6 @@
"directories.": 2,
"mason": 1,
"users": 4,
- "may": 3,
"wish": 1,
"include": 1,
"<--ignore-dir=data>": 1,
@@ -51974,7 +54286,6 @@
"": 2,
"equivalent": 2,
"specifying": 1,
- "Specify": 1,
"explicitly.": 1,
"helpful": 2,
"don": 2,
@@ -52053,7 +54364,6 @@
"associates": 1,
"Works": 1,
"<--thpppt>": 1,
- "Display": 1,
"important": 1,
"Bill": 1,
"Cat": 1,
@@ -52064,12 +54374,11 @@
"<--thpppppt>": 1,
"important.": 1,
"make": 3,
- "perl": 8,
+ "perl": 9,
"php": 2,
"python": 1,
"looks": 2,
"location.": 1,
- "variable": 1,
"specifies": 1,
"placed": 1,
"front": 1,
@@ -52123,7 +54432,6 @@
"both": 1,
"understands": 1,
"sequences.": 1,
- "never": 1,
"back": 4,
"ACK": 2,
"OTHER": 1,
@@ -52148,7 +54456,6 @@
"Jackson": 1,
"put": 1,
"together": 2,
- "an": 16,
"": 1,
"extension": 1,
"": 1,
@@ -52161,11 +54468,9 @@
"Code": 1,
"greater": 1,
"normal": 1,
- "code": 8,
"<$?=256>": 1,
"": 1,
"backticks.": 1,
- "errors": 1,
"used.": 1,
"at": 4,
"least": 1,
@@ -52186,10 +54491,7 @@
"too.": 1,
"there.": 1,
"working": 1,
- "big": 1,
"codesets": 1,
- "more": 2,
- "create": 3,
"tree": 2,
"ideal": 1,
"sending": 1,
@@ -52208,7 +54510,6 @@
"": 1,
"took": 1,
"access": 2,
- "log": 3,
"scanned": 1,
"twice.": 1,
"aa.bb.cc.dd": 1,
@@ -52254,7 +54555,6 @@
"metadata": 1,
"wastes": 1,
"lot": 1,
- "time": 3,
"those": 2,
"well": 2,
"returning": 1,
@@ -52267,7 +54567,6 @@
"has": 3,
"perfectly": 1,
"good": 2,
- "way": 2,
"using": 5,
"<-p>": 1,
"<-n>": 1,
@@ -52283,7 +54582,6 @@
"<.xyz>": 1,
"already": 2,
"program/package": 1,
- "called": 4,
"ack.": 2,
"Yes": 1,
"know.": 1,
@@ -52383,7 +54681,6 @@
"seek": 4,
"readline": 1,
"nexted": 3,
- "CGI": 6,
"Fast": 3,
"XML": 2,
"Hash": 11,
@@ -52403,21 +54700,18 @@
"Request": 11,
"*STDERR": 1,
"int": 2,
- "ARGV": 2,
"conv": 2,
"use_attr": 1,
"indent": 1,
"xml_decl": 1,
"tmpl_path": 2,
"tmpl": 5,
- "data": 3,
"nick": 1,
"parent": 5,
"third_party": 1,
"artist_name": 2,
"venue": 2,
"event": 2,
- "date": 2,
"zA": 1,
"Z0": 1,
"Content": 2,
@@ -52439,7 +54733,6 @@
"": 3,
"specification": 3,
"interface": 1,
- "web": 8,
"servers": 2,
"based": 2,
"applications": 2,
@@ -52447,7 +54740,6 @@
"supports": 1,
"writing": 1,
"portable": 1,
- "run": 1,
"various": 2,
"methods": 4,
"standalone": 1,
@@ -52471,7 +54763,6 @@
"": 1,
"root": 1,
"application.": 1,
- "write": 2,
"own": 4,
".psgi": 7,
"Writing": 2,
@@ -52505,7 +54796,6 @@
"setting": 2,
"wrapped": 1,
"": 1,
- "some": 1,
"engine": 1,
"fixes": 1,
"uniform": 1,
@@ -52517,7 +54807,6 @@
"override": 1,
"providing": 2,
"none": 1,
- "call": 2,
"MyApp": 1,
"Thus": 1,
"functionality": 1,
@@ -52538,7 +54827,6 @@
"Catalyst.pm": 1,
"library": 2,
"software.": 1,
- "same": 2,
"Plack": 25,
"_001": 1,
"HTTP": 16,
@@ -52606,13 +54894,11 @@
"query": 4,
"flatten": 3,
"uploads": 5,
- "hostname": 1,
"url_scheme": 1,
"params": 1,
"query_params": 1,
"body_params": 1,
"cookie": 6,
- "param": 8,
"get_all": 2,
"upload": 13,
"raw_uri": 1,
@@ -52668,7 +54954,6 @@
"": 1,
"provide": 1,
"higher": 1,
- "level": 1,
"top": 1,
"PSGI.": 1,
"METHODS": 2,
@@ -52682,9 +54967,7 @@
"noted": 1,
"": 1,
"passing": 1,
- "values": 5,
"accessor": 1,
- "debug": 1,
"set.": 1,
"": 2,
"request.": 1,
@@ -52712,7 +54995,6 @@
"allow": 1,
"modifying": 1,
"@values": 1,
- "@params": 1,
"convenient": 1,
"@fields": 1,
"Creates": 2,
@@ -52739,7 +55021,6 @@
"scalars": 1,
"references": 1,
"ARRAY": 1,
- "parse": 1,
"twice": 1,
"efficiency.": 1,
"DISPATCHING": 1,
@@ -52751,7 +55032,6 @@
"": 1,
"virtual": 1,
"regardless": 1,
- "how": 1,
"mounted.": 1,
"hosted": 1,
"scripts": 1,
@@ -52762,7 +55042,6 @@
"subclass": 1,
"define": 1,
"uri_for": 2,
- "args": 3,
"So": 1,
"say": 1,
"link": 1,
@@ -52774,7 +55053,6 @@
"Cookie": 2,
"handling": 1,
"simplified": 1,
- "string": 5,
"encoding": 2,
"decoding": 1,
"totally": 1,
@@ -52801,7 +55079,6 @@
"Accessor": 1,
"status": 17,
"Scalar": 2,
- "location": 4,
"redirect": 1,
"url": 2,
"clone": 1,
@@ -52814,7 +55091,6 @@
"//g": 1,
"CR": 1,
"LF": 1,
- "since": 1,
"char": 1,
"invalid": 1,
"header_field_names": 1,
@@ -52885,7 +55161,6 @@
"responsible": 1,
"properly": 1,
"": 1,
- "names": 1,
"their": 1,
"corresponding": 1,
"": 2,
@@ -52902,7 +55177,11 @@
"formats": 1,
"<+3M>": 1,
"reference.": 1,
- "AUTHOR": 1
+ "AUTHOR": 1,
+ "Test": 2,
+ "Base": 1,
+ "__DATA__": 1,
+ "Strict": 1
},
"Perl6": {
"token": 6,
@@ -53029,6 +55308,29 @@
"": 1,
"roleq": 1
},
+ "PigLatin": {
+ "REGISTER": 1,
+ "SOME_JAR": 1,
+ ";": 4,
+ "A": 2,
+ "LOAD": 1,
+ "USING": 1,
+ "PigStorage": 1,
+ "(": 2,
+ ")": 2,
+ "AS": 1,
+ "name": 2,
+ "chararray": 1,
+ "age": 1,
+ "int": 1,
+ "-": 2,
+ "Load": 1,
+ "person": 1,
+ "B": 2,
+ "FOREACH": 1,
+ "generate": 1,
+ "DUMP": 1
+ },
"Pike": {
"#pike": 2,
"__REAL_VERSION__": 2,
@@ -53697,54 +55999,452 @@
"TWO_PI": 1
},
"Prolog": {
- "-": 161,
- "module": 3,
- "(": 327,
+ "-": 354,
+ "module": 4,
+ "(": 1165,
+ "cpa_admin": 1,
+ "[": 291,
+ "change_password_form//1": 1,
+ "]": 289,
+ ")": 1162,
+ ".": 235,
+ "use_module": 21,
+ "user": 45,
+ "user_db": 1,
+ "library": 19,
+ "http/http_parameters": 1,
+ "http/http_session": 1,
+ "http/html_write": 1,
+ "http/html_head": 1,
+ "http/mimetype": 1,
+ "http/http_dispatch": 1,
+ "url": 1,
+ "debug": 5,
+ "lists": 1,
+ "option": 8,
+ "http_settings": 1,
+ "http_handler": 20,
+ "cliopatria": 38,
+ "list_users": 13,
+ "create_admin": 3,
+ "add_user_form": 4,
+ "add_openid_server_form": 4,
+ "add_user": 6,
+ "self_register": 4,
+ "add_openid_server": 3,
+ "edit_user_form": 7,
+ "edit_user": 4,
+ "del_user": 5,
+ "edit_openid_server_form": 6,
+ "edit_openid_server": 4,
+ "del_openid_server": 4,
+ "change_password_form": 7,
+ "change_password": 5,
+ "login_form": 4,
+ "user_login": 4,
+ "user_logout": 4,
+ "settings": 4,
+ "save_settings": 3,
+ "%": 194,
+ "+": 47,
+ "Request": 46,
+ "HTTP": 4,
+ "Handler": 1,
+ "listing": 1,
+ "registered": 3,
+ "users.": 2,
+ "_Request": 11,
+ "authorized": 13,
+ "admin": 31,
+ "if_allowed": 4,
+ "edit": 15,
+ "true": 32,
+ "UserOptions": 5,
+ "openid": 5,
+ "OpenIDOptions": 2,
+ "reply_html_page": 15,
+ "default": 16,
+ "title": 13,
+ "h1": 15,
+ "user_table": 3,
+ "p": 11,
+ "action": 18,
+ "location_by_id": 13,
+ "openid_server_table": 4,
+ "Token": 2,
+ "Options": 43,
+ "logged_on": 4,
+ "User": 77,
+ "anonymous": 2,
+ "catch": 2,
+ "check_permission": 1,
+ "_": 62,
+ "fail": 3,
+ "//": 7,
+ "HTML": 4,
+ "component": 3,
+ "generating": 1,
+ "a": 25,
+ "table": 9,
+ "of": 10,
+ "{": 22,
+ "setof": 3,
+ "U": 2,
+ "current_user": 6,
+ "Users": 2,
+ "}": 22,
+ "html": 25,
+ "class": 14,
+ "block": 2,
+ "tr": 16,
+ "th": 12,
+ "|": 44,
+ "T": 4,
+ "user_property": 8,
+ "realname": 18,
+ "Name": 19,
+ "findall": 1,
+ "Idle": 6,
+ "Login": 9,
+ "connection": 1,
+ "Pairs0": 2,
+ "keysort": 1,
+ "Pairs": 4,
+ "OnLine": 4,
+ ";": 37,
+ "length": 9,
+ "N": 7,
+ "online": 3,
+ "td": 20,
+ "on_since": 3,
+ "idle": 3,
+ "edit_user_button": 3,
+ "href": 6,
+ "encode": 4,
+ "_Idle": 1,
+ "_Connections": 2,
+ "format_time": 1,
+ "string": 10,
+ "Date": 2,
+ "_Login": 1,
+ "mmss_duration": 2,
+ "String": 10,
+ "Time": 3,
+ "in": 1,
+ "seconds": 1,
+ "Secs": 4,
+ "is": 24,
+ "round": 1,
+ "Hour": 2,
+ "Min": 4,
+ "mod": 2,
+ "Sec": 2,
+ "format": 9,
+ "Create": 2,
+ "the": 14,
+ "administrator": 1,
+ "login.": 2,
+ "throw": 12,
+ "error": 13,
+ "permission_error": 4,
+ "create": 3,
+ "context": 3,
+ "align": 16,
+ "center": 6,
+ "new_user_form": 3,
+ "real_name": 2,
+ "Form": 3,
+ "to": 19,
+ "register": 3,
+ "user.": 2,
+ "value": 11,
+ "PermUser": 3,
+ "form": 14,
+ "method": 6,
+ "input": 25,
+ "pwd1": 5,
+ "type": 16,
+ "password": 21,
+ "pwd2": 5,
+ "permissions": 5,
+ "buttons": 5,
+ "colspan": 6,
+ "right": 11,
+ "submit": 6,
+ "Label": 10,
+ "name": 8,
+ "size": 5,
+ "Only": 1,
+ "provide": 1,
+ "field": 4,
+ "if": 4,
+ "this": 1,
+ "not": 1,
+ "already": 2,
+ "given.": 1,
+ "This": 2,
+ "because": 1,
+ "firefox": 1,
+ "determines": 1,
+ "login": 3,
+ "from": 3,
+ "text": 6,
+ "immediately": 1,
+ "above": 1,
+ "entry.": 1,
+ "Other": 1,
+ "browsers": 1,
+ "may": 1,
+ "do": 1,
+ "it": 1,
+ "different": 1,
+ "so": 1,
+ "only": 2,
+ "having": 1,
+ "one": 1,
+ "probably": 1,
+ "savest": 1,
+ "solution.": 1,
+ "RealName": 13,
+ "hidden": 7,
+ "_Options": 1,
+ "API": 1,
+ "new": 6,
+ "The": 3,
+ "current": 3,
+ "must": 3,
+ "have": 1,
+ "administrative": 2,
+ "rights": 2,
+ "or": 3,
+ "database": 1,
+ "be": 6,
+ "empty.": 1,
+ "FirstUser": 2,
+ "http_parameters": 10,
+ "Password": 13,
+ "Retype": 4,
+ "read": 13,
+ "Read": 12,
+ "write": 11,
+ "Write": 12,
+ "Admin": 12,
+ "attribute_declarations": 10,
+ "attribute_decl": 21,
+ "password_mismatch": 2,
+ "password_hash": 3,
+ "Hash": 6,
+ "phrase": 6,
+ "allow": 17,
+ "Allow": 11,
+ "user_add": 3,
+ "reply_login": 5,
+ "Self": 1,
+ "and": 6,
+ "enable_self_register": 3,
+ "set": 2,
+ "true.": 1,
+ "limited": 1,
+ "annotate": 2,
+ "access.": 1,
+ "Returns": 1,
+ "forbidden": 3,
+ "false": 5,
+ "exists": 1,
+ "http_location_by_id": 1,
+ "MyUrl": 3,
+ "setting": 1,
+ "http_reply": 3,
+ "properties": 3,
+ "User.": 1,
+ "b": 6,
+ "i": 1,
+ "Term": 16,
+ "..": 11,
+ "Value": 15,
+ "O2": 6,
+ "p_name": 2,
+ "permission_checkbox": 4,
+ "Actions": 3,
+ "openid_server_property": 3,
+ "pterm": 5,
+ "Action": 17,
+ "memberchk": 4,
+ "Opts": 4,
+ "checked": 2,
+ "def_user_permissions": 3,
+ "DefPermissions": 2,
+ "checkbox": 1,
+ "Handle": 3,
+ "reply": 3,
+ "form.": 2,
+ "optional": 6,
+ "description": 18,
+ "modify_user": 2,
+ "modify_permissions": 2,
+ "Property": 6,
+ "_Name": 2,
+ "var": 7,
+ "set_user_property": 3,
+ "Access": 2,
+ "on": 2,
+ "_Access": 1,
+ "off": 5,
+ "_Repositiory": 2,
+ "_Action": 3,
+ "Delete": 2,
+ "delete": 2,
+ "user_del": 1,
+ "change": 2,
+ "context_error": 2,
+ "not_logged_in": 2,
+ "UserID": 1,
+ "that": 2,
+ "shows": 1,
+ "for": 4,
+ "changing": 1,
+ "UserID.": 1,
+ "id": 3,
+ "user_or_old": 3,
+ "pwd0": 2,
+ "handler": 2,
+ "password.": 1,
+ "logged": 1,
+ "on.": 1,
+ "New": 3,
+ "existence_error": 1,
+ "validate_password": 2,
+ "presents": 1,
+ "If": 2,
+ "there": 1,
+ "parameter": 2,
+ "return_to": 3,
+ "openid.return_to": 1,
+ "using": 1,
+ "redirect": 1,
+ "given": 2,
+ "URL.": 1,
+ "Otherwise": 1,
+ "display": 1,
+ "welcome": 1,
+ "page.": 1,
+ "ReturnTo": 6,
+ "Extra": 3,
+ "moved_temporary": 1,
+ "Logout": 1,
+ "logout": 1,
+ "Param": 1,
+ "DeclObtions": 1,
+ "semidet.": 4,
+ "Provide": 1,
+ "reusable": 1,
+ "declarations": 1,
+ "calls": 2,
+ "http_parameters/3.": 1,
+ "openid_server": 9,
+ "bool": 4,
+ "Def": 2,
+ "oneof": 1,
+ "Return": 1,
+ "an": 3,
+ "page": 1,
+ "add": 2,
+ "OpenID": 4,
+ "server.": 1,
+ "new_openid_form": 2,
+ "new_openid_form//": 1,
+ "det.": 5,
+ "Present": 1,
+ "provider.": 1,
+ "openid_description": 1,
+ "code": 2,
+ "canonical_url": 1,
+ "URL0": 2,
+ "URL": 4,
+ "parse_url": 2,
+ "Parts": 2,
+ "Server": 30,
+ "openid_property": 2,
+ "List": 1,
+ "servers": 1,
+ "S": 2,
+ "openid_current_server": 1,
+ "Servers": 2,
+ "openid_list_servers": 4,
+ "H": 2,
+ "openid_list_server": 2,
+ "openid_field": 3,
+ "edit_openid_button": 3,
+ "Field": 2,
+ "server": 1,
+ "Description": 2,
+ "modify_openid": 2,
+ "openid_modify_permissions": 2,
+ "openid_set_property": 2,
+ "openid_del_server": 1,
+ "Show": 1,
+ "settings.": 3,
+ "has": 1,
+ "editing": 1,
+ "edit_settings": 2,
+ "Edit": 4,
+ "http_show_settings": 1,
+ "hide_module": 1,
+ "warn_no_edit": 3,
+ "settings_no_edit": 1,
+ "Save": 1,
+ "modified": 1,
+ "http_apply_settings": 1,
+ "save": 1,
+ "with": 3,
+ "br": 1,
+ "SHEBANG#!swipl": 1,
+ "set_prolog_flag": 1,
+ "verbose": 1,
+ "silent": 1,
+ "dleak": 2,
+ "initialization": 1,
+ "main": 2,
+ "halt.": 1,
+ "current_prolog_flag": 1,
+ "argv": 1,
+ "File": 2,
+ "subset": 2,
+ "Set": 4,
+ "Subset": 6,
+ "append": 3,
+ "L1": 1,
+ "powerset": 1,
+ "bagof": 1,
"format_spec": 12,
- "[": 87,
"format_error/2": 1,
"format_spec/2": 1,
"format_spec//1": 1,
"spec_arity/2": 1,
"spec_types/2": 1,
- "]": 87,
- ")": 326,
- ".": 107,
- "use_module": 8,
- "library": 8,
"dcg/basics": 1,
"eos//0": 1,
"integer//1": 1,
"string_without//2": 1,
- "error": 6,
"when": 3,
"when/2": 1,
- "%": 71,
"mavis": 1,
"format_error": 8,
- "+": 14,
"Goal": 29,
"Error": 25,
- "string": 8,
- "is": 12,
"nondet.": 1,
- "format": 8,
"Format": 23,
"Args": 19,
"format_error_": 5,
- "_": 30,
- "debug": 4,
"Spec": 10,
"is_list": 1,
"spec_types": 8,
"Types": 16,
"types_error": 3,
- "length": 4,
"TypesLen": 3,
"ArgsLen": 3,
"types_error_": 4,
"Arg": 6,
- "|": 25,
"Type": 3,
"ground": 5,
"is_of_type": 2,
@@ -53759,13 +56459,9 @@
"format_fail/3.": 1,
"prolog_walk_code": 1,
"module_class": 1,
- "user": 5,
"infer_meta_predicates": 1,
- "false": 2,
"autoload": 1,
"format/": 1,
- "{": 7,
- "}": 7,
"are": 3,
"always": 1,
"loaded": 1,
@@ -53786,7 +56482,6 @@
"checker.": 1,
"succeed": 2,
"even": 1,
- "if": 1,
"no": 1,
"found": 1,
"Module": 4,
@@ -53794,12 +56489,10 @@
"predicate_property": 1,
"imported_from": 1,
"Source": 2,
- "memberchk": 2,
"system": 1,
"prolog_debug": 1,
"can_check": 2,
"assert": 2,
- "to": 5,
"avoid": 1,
"printing": 1,
"goals": 1,
@@ -53808,32 +56501,22 @@
"prolog": 2,
"message": 1,
"message_location": 1,
- "//": 1,
"eos.": 1,
"escape": 2,
"Numeric": 4,
"Modifier": 2,
- "Action": 15,
"Rest": 12,
"numeric_argument": 5,
"modifier_argument": 3,
- "action": 6,
- "text": 4,
- "String": 6,
- ";": 12,
"Codes": 21,
"string_codes": 4,
"string_without": 1,
"list": 4,
- "semidet.": 3,
"text_codes": 6,
- "phrase": 3,
"spec_arity": 2,
"FormatSpec": 2,
"Arity": 3,
"positive_integer": 1,
- "det.": 4,
- "type": 2,
"Item": 2,
"Items": 2,
"item_types": 3,
@@ -53848,17 +56531,14 @@
"Text": 1,
"codes": 5,
"Var": 5,
- "var": 4,
"Atom": 3,
"atom": 6,
- "N": 5,
"integer": 7,
"C": 5,
"colon": 1,
"no_colon": 1,
"is_action": 4,
"multi.": 1,
- "a": 4,
"d": 3,
"e": 1,
"float": 3,
@@ -53866,7 +56546,6 @@
"G": 2,
"I": 1,
"n": 1,
- "p": 1,
"any": 3,
"r": 1,
"s": 2,
@@ -53875,7 +56554,6 @@
"func": 13,
"op": 2,
"xfy": 2,
- "of": 8,
"/2": 3,
"list_util": 1,
"xfy_list/3": 1,
@@ -53889,7 +56567,6 @@
"at": 3,
"compile": 3,
"time": 3,
- "for": 1,
"macro": 1,
"expansion.": 1,
"compile_function/4.": 1,
@@ -53900,19 +56577,14 @@
"evaluable/1": 1,
"throws": 1,
"exception": 1,
- "with": 2,
"strings": 1,
"evaluable": 1,
"term_variables": 1,
"F": 26,
"function_composition_term": 2,
"Functor": 8,
- "true": 5,
- "..": 6,
"format_template": 7,
"has_type": 2,
- "fail": 1,
- "be": 4,
"explicit": 1,
"Dict": 3,
"is_dict": 1,
@@ -53920,7 +56592,6 @@
"Function": 5,
"Argument": 1,
"Apply": 1,
- "an": 1,
"Argument.": 1,
"A": 1,
"predicate": 4,
@@ -53929,18 +56600,15 @@
"argument": 2,
"generates": 1,
"output": 1,
- "and": 2,
"penultimate": 1,
"accepts": 1,
"input.": 1,
- "This": 1,
"realized": 1,
"by": 2,
"expanding": 1,
"function": 2,
"application": 2,
"chained": 1,
- "calls": 1,
"time.": 1,
"itself": 1,
"can": 3,
@@ -53949,12 +56617,8 @@
"reverse": 4,
"sort": 2,
"c": 2,
- "b": 4,
"meta_predicate": 2,
- "throw": 1,
- "permission_error": 1,
"call": 4,
- "context": 1,
"X": 10,
"Y": 7,
"defer": 1,
@@ -53962,13 +56626,10 @@
"run": 1,
"P": 2,
"Creates": 1,
- "new": 2,
"composing": 1,
"G.": 1,
- "The": 1,
"functions": 2,
"composed": 1,
- "create": 1,
"compiled": 1,
"which": 1,
"behaves": 1,
@@ -53983,7 +56644,6 @@
"syntax": 1,
"highlighting": 1,
"functions_to_compose": 2,
- "Term": 10,
"Funcs": 7,
"functor": 1,
"Op": 3,
@@ -53992,7 +56652,6 @@
"Goals": 2,
"Tmp": 3,
"instantiation_error": 1,
- "append": 2,
"NewArgs": 2,
"variant_sha1": 1,
"Sha": 2,
@@ -54005,9 +56664,7 @@
"compile_predicates": 1,
"Output": 2,
"compound": 1,
- "setof": 1,
"arg": 1,
- "Name": 2,
"Args0": 2,
"nth1": 2,
"lib": 1,
@@ -54018,11 +56675,9 @@
"#": 9,
"labeling": 2,
"vabsIC": 1,
- "or": 1,
"faitListe": 3,
"First": 2,
"Taille": 2,
- "Min": 2,
"Max": 2,
"Min..Max": 1,
"Taille1": 2,
@@ -54077,7 +56732,6 @@
"Rs1": 2,
"left": 4,
"stay": 1,
- "right": 1,
"L": 2
},
"Propeller Spin": {
@@ -56422,6 +59076,86 @@
"entry.completed": 1
},
"Python": {
+ "SHEBANG#!python": 5,
+ "from": 37,
+ "model": 9,
+ "import": 59,
+ "Feed": 1,
+ "session": 1,
+ "datetime": 1,
+ "sys": 4,
+ "argv": 5,
+ "session.argv": 1,
+ "(": 859,
+ ")": 871,
+ "feed": 1,
+ "Feed.get": 1,
+ "guid": 1,
+ "[": 168,
+ "]": 168,
+ "action": 5,
+ "if": 162,
+ "when": 4,
+ "feed.notify_interval": 1,
+ "*": 39,
+ "feed.notify_unit": 1,
+ "elif": 5,
+ "len": 12,
+ "int": 2,
+ "else": 35,
+ "print": 40,
+ "%": 34,
+ "sys.exit": 2,
+ "feed.notify_next": 1,
+ "datetime.datetime.utcnow": 1,
+ "+": 52,
+ "datetime.timedelta": 1,
+ "seconds": 1,
+ "feed.save": 1,
+ "response": 1,
+ "t": 9,
+ "be": 2,
+ "notified": 1,
+ "for": 70,
+ "another": 2,
+ "": 1,
+ "class=": 2,
+ "{": 28,
+ "duration": 1,
+ "}": 28,
+ "": 1,
+ ".": 2,
+ "": 3,
+ "": 2,
+ "Actions": 1,
+ "
": 1,
+ "- ": 3,
+ "": 4,
+ "href=": 4,
+ "Edit": 1,
+ "this": 3,
+ "reminder": 2,
+ "": 4,
+ "
": 3,
+ "Create": 1,
+ "Visit": 1,
+ "the": 7,
+ "Reminder": 2,
+ "Me": 2,
+ "site": 1,
+ "
": 1,
+ "": 2,
+ "": 1,
+ "