pygments.rb-jruby 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/CHANGELOG.md +71 -0
- data/Gemfile +2 -0
- data/LICENSE +17 -0
- data/README.md +118 -0
- data/Rakefile +66 -0
- data/bench.rb +22 -0
- data/cache-lexers.rb +8 -0
- data/lexers +0 -0
- data/lib/pygments.rb +8 -0
- data/lib/pygments/lexer.rb +148 -0
- data/lib/pygments/mentos.py +351 -0
- data/lib/pygments/popen.rb +404 -0
- data/lib/pygments/version.rb +3 -0
- data/pygments.rb.gemspec +24 -0
- data/test/test_data.c +2581 -0
- data/test/test_data.py +514 -0
- data/test/test_data_generated +2582 -0
- data/test/test_pygments.rb +287 -0
- data/vendor/custom_lexers/github.py +565 -0
- data/vendor/pygments-main/AUTHORS +153 -0
- data/vendor/pygments-main/CHANGES +889 -0
- data/vendor/pygments-main/LICENSE +25 -0
- data/vendor/pygments-main/MANIFEST.in +6 -0
- data/vendor/pygments-main/Makefile +59 -0
- data/vendor/pygments-main/REVISION +1 -0
- data/vendor/pygments-main/TODO +15 -0
- data/vendor/pygments-main/docs/generate.py +472 -0
- data/vendor/pygments-main/docs/pygmentize.1 +94 -0
- data/vendor/pygments-main/docs/src/api.txt +270 -0
- data/vendor/pygments-main/docs/src/authors.txt +5 -0
- data/vendor/pygments-main/docs/src/changelog.txt +5 -0
- data/vendor/pygments-main/docs/src/cmdline.txt +147 -0
- data/vendor/pygments-main/docs/src/filterdevelopment.txt +70 -0
- data/vendor/pygments-main/docs/src/filters.txt +42 -0
- data/vendor/pygments-main/docs/src/formatterdevelopment.txt +169 -0
- data/vendor/pygments-main/docs/src/formatters.txt +48 -0
- data/vendor/pygments-main/docs/src/index.txt +69 -0
- data/vendor/pygments-main/docs/src/installation.txt +71 -0
- data/vendor/pygments-main/docs/src/integrate.txt +48 -0
- data/vendor/pygments-main/docs/src/java.txt +70 -0
- data/vendor/pygments-main/docs/src/lexerdevelopment.txt +603 -0
- data/vendor/pygments-main/docs/src/lexers.txt +67 -0
- data/vendor/pygments-main/docs/src/moinmoin.txt +39 -0
- data/vendor/pygments-main/docs/src/plugins.txt +93 -0
- data/vendor/pygments-main/docs/src/quickstart.txt +202 -0
- data/vendor/pygments-main/docs/src/rstdirective.txt +22 -0
- data/vendor/pygments-main/docs/src/styles.txt +143 -0
- data/vendor/pygments-main/docs/src/tokens.txt +349 -0
- data/vendor/pygments-main/docs/src/unicode.txt +49 -0
- data/vendor/pygments-main/external/autopygmentize +64 -0
- data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +144 -0
- data/vendor/pygments-main/external/markdown-processor.py +67 -0
- data/vendor/pygments-main/external/moin-parser.py +112 -0
- data/vendor/pygments-main/external/pygments.bashcomp +38 -0
- data/vendor/pygments-main/external/rst-directive-old.py +77 -0
- data/vendor/pygments-main/external/rst-directive.py +83 -0
- data/vendor/pygments-main/ez_setup.py +276 -0
- data/vendor/pygments-main/pygmentize +7 -0
- data/vendor/pygments-main/pygments/__init__.py +91 -0
- data/vendor/pygments-main/pygments/cmdline.py +441 -0
- data/vendor/pygments-main/pygments/console.py +74 -0
- data/vendor/pygments-main/pygments/filter.py +74 -0
- data/vendor/pygments-main/pygments/filters/__init__.py +356 -0
- data/vendor/pygments-main/pygments/formatter.py +95 -0
- data/vendor/pygments-main/pygments/formatters/__init__.py +68 -0
- data/vendor/pygments-main/pygments/formatters/_mapping.py +92 -0
- data/vendor/pygments-main/pygments/formatters/bbcode.py +109 -0
- data/vendor/pygments-main/pygments/formatters/html.py +821 -0
- data/vendor/pygments-main/pygments/formatters/img.py +553 -0
- data/vendor/pygments-main/pygments/formatters/latex.py +378 -0
- data/vendor/pygments-main/pygments/formatters/other.py +115 -0
- data/vendor/pygments-main/pygments/formatters/rtf.py +136 -0
- data/vendor/pygments-main/pygments/formatters/svg.py +154 -0
- data/vendor/pygments-main/pygments/formatters/terminal.py +112 -0
- data/vendor/pygments-main/pygments/formatters/terminal256.py +222 -0
- data/vendor/pygments-main/pygments/lexer.py +765 -0
- data/vendor/pygments-main/pygments/lexers/__init__.py +240 -0
- data/vendor/pygments-main/pygments/lexers/_asybuiltins.py +1645 -0
- data/vendor/pygments-main/pygments/lexers/_clbuiltins.py +232 -0
- data/vendor/pygments-main/pygments/lexers/_lassobuiltins.py +5172 -0
- data/vendor/pygments-main/pygments/lexers/_luabuiltins.py +249 -0
- data/vendor/pygments-main/pygments/lexers/_mapping.py +354 -0
- data/vendor/pygments-main/pygments/lexers/_openedgebuiltins.py +562 -0
- data/vendor/pygments-main/pygments/lexers/_phpbuiltins.py +3787 -0
- data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +233 -0
- data/vendor/pygments-main/pygments/lexers/_robotframeworklexer.py +557 -0
- data/vendor/pygments-main/pygments/lexers/_scilab_builtins.py +40 -0
- data/vendor/pygments-main/pygments/lexers/_sourcemodbuiltins.py +1072 -0
- data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +360 -0
- data/vendor/pygments-main/pygments/lexers/_vimbuiltins.py +13 -0
- data/vendor/pygments-main/pygments/lexers/agile.py +2290 -0
- data/vendor/pygments-main/pygments/lexers/asm.py +398 -0
- data/vendor/pygments-main/pygments/lexers/compiled.py +3723 -0
- data/vendor/pygments-main/pygments/lexers/dalvik.py +104 -0
- data/vendor/pygments-main/pygments/lexers/dotnet.py +671 -0
- data/vendor/pygments-main/pygments/lexers/foxpro.py +428 -0
- data/vendor/pygments-main/pygments/lexers/functional.py +2731 -0
- data/vendor/pygments-main/pygments/lexers/github.py +565 -0
- data/vendor/pygments-main/pygments/lexers/hdl.py +356 -0
- data/vendor/pygments-main/pygments/lexers/jvm.py +1112 -0
- data/vendor/pygments-main/pygments/lexers/math.py +1918 -0
- data/vendor/pygments-main/pygments/lexers/other.py +3778 -0
- data/vendor/pygments-main/pygments/lexers/parsers.py +778 -0
- data/vendor/pygments-main/pygments/lexers/shell.py +424 -0
- data/vendor/pygments-main/pygments/lexers/special.py +100 -0
- data/vendor/pygments-main/pygments/lexers/sql.py +559 -0
- data/vendor/pygments-main/pygments/lexers/templates.py +1742 -0
- data/vendor/pygments-main/pygments/lexers/text.py +1893 -0
- data/vendor/pygments-main/pygments/lexers/web.py +4045 -0
- data/vendor/pygments-main/pygments/modeline.py +40 -0
- data/vendor/pygments-main/pygments/plugin.py +74 -0
- data/vendor/pygments-main/pygments/scanner.py +104 -0
- data/vendor/pygments-main/pygments/style.py +117 -0
- data/vendor/pygments-main/pygments/styles/__init__.py +70 -0
- data/vendor/pygments-main/pygments/styles/autumn.py +65 -0
- data/vendor/pygments-main/pygments/styles/borland.py +51 -0
- data/vendor/pygments-main/pygments/styles/bw.py +49 -0
- data/vendor/pygments-main/pygments/styles/colorful.py +81 -0
- data/vendor/pygments-main/pygments/styles/default.py +73 -0
- data/vendor/pygments-main/pygments/styles/emacs.py +72 -0
- data/vendor/pygments-main/pygments/styles/friendly.py +72 -0
- data/vendor/pygments-main/pygments/styles/fruity.py +42 -0
- data/vendor/pygments-main/pygments/styles/manni.py +75 -0
- data/vendor/pygments-main/pygments/styles/monokai.py +106 -0
- data/vendor/pygments-main/pygments/styles/murphy.py +80 -0
- data/vendor/pygments-main/pygments/styles/native.py +65 -0
- data/vendor/pygments-main/pygments/styles/pastie.py +75 -0
- data/vendor/pygments-main/pygments/styles/perldoc.py +69 -0
- data/vendor/pygments-main/pygments/styles/rrt.py +33 -0
- data/vendor/pygments-main/pygments/styles/tango.py +141 -0
- data/vendor/pygments-main/pygments/styles/trac.py +63 -0
- data/vendor/pygments-main/pygments/styles/vim.py +63 -0
- data/vendor/pygments-main/pygments/styles/vs.py +38 -0
- data/vendor/pygments-main/pygments/token.py +195 -0
- data/vendor/pygments-main/pygments/unistring.py +140 -0
- data/vendor/pygments-main/pygments/util.py +277 -0
- data/vendor/pygments-main/scripts/check_sources.py +242 -0
- data/vendor/pygments-main/scripts/detect_missing_analyse_text.py +32 -0
- data/vendor/pygments-main/scripts/epydoc.css +280 -0
- data/vendor/pygments-main/scripts/find_codetags.py +205 -0
- data/vendor/pygments-main/scripts/find_error.py +170 -0
- data/vendor/pygments-main/scripts/get_vimkw.py +43 -0
- data/vendor/pygments-main/scripts/pylintrc +301 -0
- data/vendor/pygments-main/scripts/reindent.py +291 -0
- data/vendor/pygments-main/scripts/vim2pygments.py +933 -0
- data/vendor/pygments-main/setup.cfg +7 -0
- data/vendor/pygments-main/setup.py +90 -0
- data/vendor/pygments-main/tests/dtds/HTML4-f.dtd +37 -0
- data/vendor/pygments-main/tests/dtds/HTML4-s.dtd +869 -0
- data/vendor/pygments-main/tests/dtds/HTML4.dcl +88 -0
- data/vendor/pygments-main/tests/dtds/HTML4.dtd +1092 -0
- data/vendor/pygments-main/tests/dtds/HTML4.soc +9 -0
- data/vendor/pygments-main/tests/dtds/HTMLlat1.ent +195 -0
- data/vendor/pygments-main/tests/dtds/HTMLspec.ent +77 -0
- data/vendor/pygments-main/tests/dtds/HTMLsym.ent +241 -0
- data/vendor/pygments-main/tests/examplefiles/ANTLRv3.g +608 -0
- data/vendor/pygments-main/tests/examplefiles/AcidStateAdvanced.hs +209 -0
- data/vendor/pygments-main/tests/examplefiles/AlternatingGroup.mu +102 -0
- data/vendor/pygments-main/tests/examplefiles/BOM.js +1 -0
- data/vendor/pygments-main/tests/examplefiles/CPDictionary.j +611 -0
- data/vendor/pygments-main/tests/examplefiles/Config.in.cache +1973 -0
- data/vendor/pygments-main/tests/examplefiles/Constants.mo +158 -0
- data/vendor/pygments-main/tests/examplefiles/DancingSudoku.lhs +411 -0
- data/vendor/pygments-main/tests/examplefiles/Deflate.fs +578 -0
- data/vendor/pygments-main/tests/examplefiles/Errors.scala +18 -0
- data/vendor/pygments-main/tests/examplefiles/File.hy +174 -0
- data/vendor/pygments-main/tests/examplefiles/Get-CommandDefinitionHtml.ps1 +66 -0
- data/vendor/pygments-main/tests/examplefiles/IPDispatchC.nc +104 -0
- data/vendor/pygments-main/tests/examplefiles/IPDispatchP.nc +671 -0
- data/vendor/pygments-main/tests/examplefiles/Intro.java +1660 -0
- data/vendor/pygments-main/tests/examplefiles/Makefile +1131 -0
- data/vendor/pygments-main/tests/examplefiles/Object.st +4394 -0
- data/vendor/pygments-main/tests/examplefiles/OrderedMap.hx +584 -0
- data/vendor/pygments-main/tests/examplefiles/RoleQ.pm6 +23 -0
- data/vendor/pygments-main/tests/examplefiles/SmallCheck.hs +378 -0
- data/vendor/pygments-main/tests/examplefiles/Sorting.mod +470 -0
- data/vendor/pygments-main/tests/examplefiles/Sudoku.lhs +382 -0
- data/vendor/pygments-main/tests/examplefiles/addressbook.proto +30 -0
- data/vendor/pygments-main/tests/examplefiles/antlr_throws +1 -0
- data/vendor/pygments-main/tests/examplefiles/apache2.conf +393 -0
- data/vendor/pygments-main/tests/examplefiles/as3_test.as +143 -0
- data/vendor/pygments-main/tests/examplefiles/as3_test2.as +46 -0
- data/vendor/pygments-main/tests/examplefiles/as3_test3.as +3 -0
- data/vendor/pygments-main/tests/examplefiles/aspx-cs_example +27 -0
- data/vendor/pygments-main/tests/examplefiles/autoit_submit.au3 +25 -0
- data/vendor/pygments-main/tests/examplefiles/badcase.java +2 -0
- data/vendor/pygments-main/tests/examplefiles/batchfile.bat +49 -0
- data/vendor/pygments-main/tests/examplefiles/bigtest.nsi +308 -0
- data/vendor/pygments-main/tests/examplefiles/boot-9.scm +1557 -0
- data/vendor/pygments-main/tests/examplefiles/ca65_example +284 -0
- data/vendor/pygments-main/tests/examplefiles/cbmbas_example +9 -0
- data/vendor/pygments-main/tests/examplefiles/cells.ps +515 -0
- data/vendor/pygments-main/tests/examplefiles/ceval.c +2604 -0
- data/vendor/pygments-main/tests/examplefiles/cheetah_example.html +13 -0
- data/vendor/pygments-main/tests/examplefiles/classes.dylan +125 -0
- data/vendor/pygments-main/tests/examplefiles/condensed_ruby.rb +10 -0
- data/vendor/pygments-main/tests/examplefiles/coq_RelationClasses +447 -0
- data/vendor/pygments-main/tests/examplefiles/database.pytb +20 -0
- data/vendor/pygments-main/tests/examplefiles/de.MoinMoin.po +2461 -0
- data/vendor/pygments-main/tests/examplefiles/demo.ahk +181 -0
- data/vendor/pygments-main/tests/examplefiles/demo.cfm +38 -0
- data/vendor/pygments-main/tests/examplefiles/django_sample.html+django +68 -0
- data/vendor/pygments-main/tests/examplefiles/dwarf.cw +17 -0
- data/vendor/pygments-main/tests/examplefiles/erl_session +10 -0
- data/vendor/pygments-main/tests/examplefiles/escape_semicolon.clj +1 -0
- data/vendor/pygments-main/tests/examplefiles/evil_regex.js +48 -0
- data/vendor/pygments-main/tests/examplefiles/example.Rd +78 -0
- data/vendor/pygments-main/tests/examplefiles/example.bug +54 -0
- data/vendor/pygments-main/tests/examplefiles/example.c +2080 -0
- data/vendor/pygments-main/tests/examplefiles/example.ceylon +52 -0
- data/vendor/pygments-main/tests/examplefiles/example.clay +33 -0
- data/vendor/pygments-main/tests/examplefiles/example.cls +15 -0
- data/vendor/pygments-main/tests/examplefiles/example.cob +3556 -0
- data/vendor/pygments-main/tests/examplefiles/example.cpp +2363 -0
- data/vendor/pygments-main/tests/examplefiles/example.gs +106 -0
- data/vendor/pygments-main/tests/examplefiles/example.gst +7 -0
- data/vendor/pygments-main/tests/examplefiles/example.hx +142 -0
- data/vendor/pygments-main/tests/examplefiles/example.jag +48 -0
- data/vendor/pygments-main/tests/examplefiles/example.kt +47 -0
- data/vendor/pygments-main/tests/examplefiles/example.lagda +19 -0
- data/vendor/pygments-main/tests/examplefiles/example.lua +250 -0
- data/vendor/pygments-main/tests/examplefiles/example.monkey +152 -0
- data/vendor/pygments-main/tests/examplefiles/example.moo +26 -0
- data/vendor/pygments-main/tests/examplefiles/example.moon +629 -0
- data/vendor/pygments-main/tests/examplefiles/example.msc +43 -0
- data/vendor/pygments-main/tests/examplefiles/example.nim +1010 -0
- data/vendor/pygments-main/tests/examplefiles/example.ns2 +69 -0
- data/vendor/pygments-main/tests/examplefiles/example.p +34 -0
- data/vendor/pygments-main/tests/examplefiles/example.pas +2708 -0
- data/vendor/pygments-main/tests/examplefiles/example.prg +161 -0
- data/vendor/pygments-main/tests/examplefiles/example.rb +1852 -0
- data/vendor/pygments-main/tests/examplefiles/example.reg +19 -0
- data/vendor/pygments-main/tests/examplefiles/example.rexx +50 -0
- data/vendor/pygments-main/tests/examplefiles/example.rhtml +561 -0
- data/vendor/pygments-main/tests/examplefiles/example.rkt +95 -0
- data/vendor/pygments-main/tests/examplefiles/example.rpf +4 -0
- data/vendor/pygments-main/tests/examplefiles/example.sh-session +19 -0
- data/vendor/pygments-main/tests/examplefiles/example.shell-session +45 -0
- data/vendor/pygments-main/tests/examplefiles/example.sml +156 -0
- data/vendor/pygments-main/tests/examplefiles/example.snobol +15 -0
- data/vendor/pygments-main/tests/examplefiles/example.stan +108 -0
- data/vendor/pygments-main/tests/examplefiles/example.tea +34 -0
- data/vendor/pygments-main/tests/examplefiles/example.ts +28 -0
- data/vendor/pygments-main/tests/examplefiles/example.u +548 -0
- data/vendor/pygments-main/tests/examplefiles/example.weechatlog +9 -0
- data/vendor/pygments-main/tests/examplefiles/example.xhtml +376 -0
- data/vendor/pygments-main/tests/examplefiles/example.xtend +34 -0
- data/vendor/pygments-main/tests/examplefiles/example.yaml +302 -0
- data/vendor/pygments-main/tests/examplefiles/example2.aspx +29 -0
- data/vendor/pygments-main/tests/examplefiles/example2.msc +79 -0
- data/vendor/pygments-main/tests/examplefiles/example_elixir.ex +363 -0
- data/vendor/pygments-main/tests/examplefiles/example_file.fy +128 -0
- data/vendor/pygments-main/tests/examplefiles/firefox.mak +586 -0
- data/vendor/pygments-main/tests/examplefiles/flipflop.sv +19 -0
- data/vendor/pygments-main/tests/examplefiles/foo.sce +6 -0
- data/vendor/pygments-main/tests/examplefiles/format.ml +1213 -0
- data/vendor/pygments-main/tests/examplefiles/fucked_up.rb +77 -0
- data/vendor/pygments-main/tests/examplefiles/function.mu +1 -0
- data/vendor/pygments-main/tests/examplefiles/functional.rst +1472 -0
- data/vendor/pygments-main/tests/examplefiles/garcia-wachs.kk +133 -0
- data/vendor/pygments-main/tests/examplefiles/genclass.clj +510 -0
- data/vendor/pygments-main/tests/examplefiles/genshi_example.xml+genshi +193 -0
- data/vendor/pygments-main/tests/examplefiles/genshitext_example.genshitext +33 -0
- data/vendor/pygments-main/tests/examplefiles/glsl.frag +7 -0
- data/vendor/pygments-main/tests/examplefiles/glsl.vert +13 -0
- data/vendor/pygments-main/tests/examplefiles/grammar-test.p6 +22 -0
- data/vendor/pygments-main/tests/examplefiles/hello.smali +40 -0
- data/vendor/pygments-main/tests/examplefiles/hello.sp +9 -0
- data/vendor/pygments-main/tests/examplefiles/html+php_faulty.php +1 -0
- data/vendor/pygments-main/tests/examplefiles/http_request_example +15 -0
- data/vendor/pygments-main/tests/examplefiles/http_response_example +29 -0
- data/vendor/pygments-main/tests/examplefiles/import.hs +4 -0
- data/vendor/pygments-main/tests/examplefiles/inet_pton6.dg +71 -0
- data/vendor/pygments-main/tests/examplefiles/intro.ik +24 -0
- data/vendor/pygments-main/tests/examplefiles/ints.php +10 -0
- data/vendor/pygments-main/tests/examplefiles/intsyn.fun +675 -0
- data/vendor/pygments-main/tests/examplefiles/intsyn.sig +286 -0
- data/vendor/pygments-main/tests/examplefiles/irb_heredoc +8 -0
- data/vendor/pygments-main/tests/examplefiles/irc.lsp +214 -0
- data/vendor/pygments-main/tests/examplefiles/java.properties +16 -0
- data/vendor/pygments-main/tests/examplefiles/jbst_example1.jbst +28 -0
- data/vendor/pygments-main/tests/examplefiles/jbst_example2.jbst +45 -0
- data/vendor/pygments-main/tests/examplefiles/jinjadesignerdoc.rst +713 -0
- data/vendor/pygments-main/tests/examplefiles/json.lasso +301 -0
- data/vendor/pygments-main/tests/examplefiles/json.lasso9 +213 -0
- data/vendor/pygments-main/tests/examplefiles/lighttpd_config.conf +13 -0
- data/vendor/pygments-main/tests/examplefiles/linecontinuation.py +47 -0
- data/vendor/pygments-main/tests/examplefiles/livescript-demo.ls +41 -0
- data/vendor/pygments-main/tests/examplefiles/logos_example.xm +28 -0
- data/vendor/pygments-main/tests/examplefiles/ltmain.sh +2849 -0
- data/vendor/pygments-main/tests/examplefiles/main.cmake +42 -0
- data/vendor/pygments-main/tests/examplefiles/markdown.lsp +679 -0
- data/vendor/pygments-main/tests/examplefiles/matlab_noreturn +3 -0
- data/vendor/pygments-main/tests/examplefiles/matlab_sample +30 -0
- data/vendor/pygments-main/tests/examplefiles/matlabsession_sample.txt +37 -0
- data/vendor/pygments-main/tests/examplefiles/metagrammar.treetop +455 -0
- data/vendor/pygments-main/tests/examplefiles/mg_sample.pro +73 -0
- data/vendor/pygments-main/tests/examplefiles/minehunt.qml +112 -0
- data/vendor/pygments-main/tests/examplefiles/minimal.ns2 +4 -0
- data/vendor/pygments-main/tests/examplefiles/moin_SyntaxReference.txt +340 -0
- data/vendor/pygments-main/tests/examplefiles/multiline_regexes.rb +38 -0
- data/vendor/pygments-main/tests/examplefiles/nanomsg.intr +95 -0
- data/vendor/pygments-main/tests/examplefiles/nasm_aoutso.asm +96 -0
- data/vendor/pygments-main/tests/examplefiles/nasm_objexe.asm +30 -0
- data/vendor/pygments-main/tests/examplefiles/nemerle_sample.n +87 -0
- data/vendor/pygments-main/tests/examplefiles/nginx_nginx.conf +118 -0
- data/vendor/pygments-main/tests/examplefiles/numbers.c +12 -0
- data/vendor/pygments-main/tests/examplefiles/objc_example.m +32 -0
- data/vendor/pygments-main/tests/examplefiles/objc_example2.m +24 -0
- data/vendor/pygments-main/tests/examplefiles/perl_misc +62 -0
- data/vendor/pygments-main/tests/examplefiles/perl_perl5db +998 -0
- data/vendor/pygments-main/tests/examplefiles/perl_regex-delims +120 -0
- data/vendor/pygments-main/tests/examplefiles/perlfunc.1 +856 -0
- data/vendor/pygments-main/tests/examplefiles/phpMyAdmin.spec +163 -0
- data/vendor/pygments-main/tests/examplefiles/phpcomplete.vim +567 -0
- data/vendor/pygments-main/tests/examplefiles/pleac.in.rb +1223 -0
- data/vendor/pygments-main/tests/examplefiles/postgresql_test.txt +47 -0
- data/vendor/pygments-main/tests/examplefiles/pppoe.applescript +10 -0
- data/vendor/pygments-main/tests/examplefiles/psql_session.txt +122 -0
- data/vendor/pygments-main/tests/examplefiles/py3_test.txt +2 -0
- data/vendor/pygments-main/tests/examplefiles/py3tb_test.py3tb +4 -0
- data/vendor/pygments-main/tests/examplefiles/pycon_test.pycon +14 -0
- data/vendor/pygments-main/tests/examplefiles/pytb_test2.pytb +2 -0
- data/vendor/pygments-main/tests/examplefiles/pytb_test3.pytb +4 -0
- data/vendor/pygments-main/tests/examplefiles/python25-bsd.mak +234 -0
- data/vendor/pygments-main/tests/examplefiles/qsort.prolog +13 -0
- data/vendor/pygments-main/tests/examplefiles/r-console-transcript.Rout +38 -0
- data/vendor/pygments-main/tests/examplefiles/ragel-cpp_rlscan +280 -0
- data/vendor/pygments-main/tests/examplefiles/ragel-cpp_snippet +2 -0
- data/vendor/pygments-main/tests/examplefiles/regex.js +22 -0
- data/vendor/pygments-main/tests/examplefiles/reversi.lsp +427 -0
- data/vendor/pygments-main/tests/examplefiles/robotframework.txt +39 -0
- data/vendor/pygments-main/tests/examplefiles/ruby_func_def.rb +11 -0
- data/vendor/pygments-main/tests/examplefiles/rust_example.rs +233 -0
- data/vendor/pygments-main/tests/examplefiles/scilab.sci +30 -0
- data/vendor/pygments-main/tests/examplefiles/session.dylan-console +9 -0
- data/vendor/pygments-main/tests/examplefiles/sibling.prolog +19 -0
- data/vendor/pygments-main/tests/examplefiles/simple.md +747 -0
- data/vendor/pygments-main/tests/examplefiles/smarty_example.html +209 -0
- data/vendor/pygments-main/tests/examplefiles/source.lgt +343 -0
- data/vendor/pygments-main/tests/examplefiles/sources.list +62 -0
- data/vendor/pygments-main/tests/examplefiles/sphere.pov +18 -0
- data/vendor/pygments-main/tests/examplefiles/sqlite3.sqlite3-console +27 -0
- data/vendor/pygments-main/tests/examplefiles/squid.conf +30 -0
- data/vendor/pygments-main/tests/examplefiles/string.jl +1031 -0
- data/vendor/pygments-main/tests/examplefiles/string_delimiters.d +21 -0
- data/vendor/pygments-main/tests/examplefiles/stripheredoc.sh +3 -0
- data/vendor/pygments-main/tests/examplefiles/swig_java.swg +1329 -0
- data/vendor/pygments-main/tests/examplefiles/swig_std_vector.i +225 -0
- data/vendor/pygments-main/tests/examplefiles/test.R +153 -0
- data/vendor/pygments-main/tests/examplefiles/test.adb +211 -0
- data/vendor/pygments-main/tests/examplefiles/test.agda +102 -0
- data/vendor/pygments-main/tests/examplefiles/test.asy +131 -0
- data/vendor/pygments-main/tests/examplefiles/test.awk +121 -0
- data/vendor/pygments-main/tests/examplefiles/test.bas +29 -0
- data/vendor/pygments-main/tests/examplefiles/test.bb +95 -0
- data/vendor/pygments-main/tests/examplefiles/test.bmx +145 -0
- data/vendor/pygments-main/tests/examplefiles/test.boo +39 -0
- data/vendor/pygments-main/tests/examplefiles/test.bro +250 -0
- data/vendor/pygments-main/tests/examplefiles/test.cs +374 -0
- data/vendor/pygments-main/tests/examplefiles/test.css +54 -0
- data/vendor/pygments-main/tests/examplefiles/test.cu +36 -0
- data/vendor/pygments-main/tests/examplefiles/test.d +135 -0
- data/vendor/pygments-main/tests/examplefiles/test.dart +23 -0
- data/vendor/pygments-main/tests/examplefiles/test.dtd +89 -0
- data/vendor/pygments-main/tests/examplefiles/test.ebnf +31 -0
- data/vendor/pygments-main/tests/examplefiles/test.ec +605 -0
- data/vendor/pygments-main/tests/examplefiles/test.ecl +58 -0
- data/vendor/pygments-main/tests/examplefiles/test.eh +315 -0
- data/vendor/pygments-main/tests/examplefiles/test.erl +169 -0
- data/vendor/pygments-main/tests/examplefiles/test.evoque +33 -0
- data/vendor/pygments-main/tests/examplefiles/test.fan +818 -0
- data/vendor/pygments-main/tests/examplefiles/test.flx +57 -0
- data/vendor/pygments-main/tests/examplefiles/test.gdc +13 -0
- data/vendor/pygments-main/tests/examplefiles/test.groovy +97 -0
- data/vendor/pygments-main/tests/examplefiles/test.html +339 -0
- data/vendor/pygments-main/tests/examplefiles/test.ini +10 -0
- data/vendor/pygments-main/tests/examplefiles/test.java +653 -0
- data/vendor/pygments-main/tests/examplefiles/test.jsp +24 -0
- data/vendor/pygments-main/tests/examplefiles/test.maql +45 -0
- data/vendor/pygments-main/tests/examplefiles/test.mod +374 -0
- data/vendor/pygments-main/tests/examplefiles/test.moo +51 -0
- data/vendor/pygments-main/tests/examplefiles/test.myt +166 -0
- data/vendor/pygments-main/tests/examplefiles/test.nim +93 -0
- data/vendor/pygments-main/tests/examplefiles/test.opa +10 -0
- data/vendor/pygments-main/tests/examplefiles/test.p6 +252 -0
- data/vendor/pygments-main/tests/examplefiles/test.pas +743 -0
- data/vendor/pygments-main/tests/examplefiles/test.php +505 -0
- data/vendor/pygments-main/tests/examplefiles/test.plot +333 -0
- data/vendor/pygments-main/tests/examplefiles/test.ps1 +108 -0
- data/vendor/pygments-main/tests/examplefiles/test.pypylog +1839 -0
- data/vendor/pygments-main/tests/examplefiles/test.r3 +94 -0
- data/vendor/pygments-main/tests/examplefiles/test.rb +177 -0
- data/vendor/pygments-main/tests/examplefiles/test.rhtml +43 -0
- data/vendor/pygments-main/tests/examplefiles/test.scaml +8 -0
- data/vendor/pygments-main/tests/examplefiles/test.ssp +12 -0
- data/vendor/pygments-main/tests/examplefiles/test.tcsh +830 -0
- data/vendor/pygments-main/tests/examplefiles/test.vb +407 -0
- data/vendor/pygments-main/tests/examplefiles/test.vhdl +161 -0
- data/vendor/pygments-main/tests/examplefiles/test.xqy +138 -0
- data/vendor/pygments-main/tests/examplefiles/test.xsl +23 -0
- data/vendor/pygments-main/tests/examplefiles/test2.pypylog +120 -0
- data/vendor/pygments-main/tests/examplefiles/truncated.pytb +15 -0
- data/vendor/pygments-main/tests/examplefiles/type.lisp +1218 -0
- data/vendor/pygments-main/tests/examplefiles/underscore.coffee +603 -0
- data/vendor/pygments-main/tests/examplefiles/unicode.applescript +5 -0
- data/vendor/pygments-main/tests/examplefiles/unicodedoc.py +11 -0
- data/vendor/pygments-main/tests/examplefiles/unix-io.lid +37 -0
- data/vendor/pygments-main/tests/examplefiles/webkit-transition.css +3 -0
- data/vendor/pygments-main/tests/examplefiles/while.pov +13 -0
- data/vendor/pygments-main/tests/examplefiles/wiki.factor +384 -0
- data/vendor/pygments-main/tests/examplefiles/xml_example +1897 -0
- data/vendor/pygments-main/tests/examplefiles/zmlrpc.f90 +798 -0
- data/vendor/pygments-main/tests/old_run.py +138 -0
- data/vendor/pygments-main/tests/run.py +49 -0
- data/vendor/pygments-main/tests/support.py +15 -0
- data/vendor/pygments-main/tests/support/tags +36 -0
- data/vendor/pygments-main/tests/test_basic_api.py +295 -0
- data/vendor/pygments-main/tests/test_clexer.py +31 -0
- data/vendor/pygments-main/tests/test_cmdline.py +105 -0
- data/vendor/pygments-main/tests/test_examplefiles.py +99 -0
- data/vendor/pygments-main/tests/test_html_formatter.py +178 -0
- data/vendor/pygments-main/tests/test_latex_formatter.py +55 -0
- data/vendor/pygments-main/tests/test_lexers_other.py +68 -0
- data/vendor/pygments-main/tests/test_perllexer.py +137 -0
- data/vendor/pygments-main/tests/test_regexlexer.py +47 -0
- data/vendor/pygments-main/tests/test_token.py +46 -0
- data/vendor/pygments-main/tests/test_using_api.py +40 -0
- data/vendor/pygments-main/tests/test_util.py +135 -0
- data/vendor/simplejson/.gitignore +10 -0
- data/vendor/simplejson/.travis.yml +5 -0
- data/vendor/simplejson/CHANGES.txt +291 -0
- data/vendor/simplejson/LICENSE.txt +19 -0
- data/vendor/simplejson/MANIFEST.in +5 -0
- data/vendor/simplejson/README.rst +19 -0
- data/vendor/simplejson/conf.py +179 -0
- data/vendor/simplejson/index.rst +628 -0
- data/vendor/simplejson/scripts/make_docs.py +18 -0
- data/vendor/simplejson/setup.py +104 -0
- data/vendor/simplejson/simplejson/__init__.py +510 -0
- data/vendor/simplejson/simplejson/_speedups.c +2745 -0
- data/vendor/simplejson/simplejson/decoder.py +425 -0
- data/vendor/simplejson/simplejson/encoder.py +567 -0
- data/vendor/simplejson/simplejson/ordered_dict.py +119 -0
- data/vendor/simplejson/simplejson/scanner.py +77 -0
- data/vendor/simplejson/simplejson/tests/__init__.py +67 -0
- data/vendor/simplejson/simplejson/tests/test_bigint_as_string.py +55 -0
- data/vendor/simplejson/simplejson/tests/test_check_circular.py +30 -0
- data/vendor/simplejson/simplejson/tests/test_decimal.py +66 -0
- data/vendor/simplejson/simplejson/tests/test_decode.py +83 -0
- data/vendor/simplejson/simplejson/tests/test_default.py +9 -0
- data/vendor/simplejson/simplejson/tests/test_dump.py +67 -0
- data/vendor/simplejson/simplejson/tests/test_encode_basestring_ascii.py +46 -0
- data/vendor/simplejson/simplejson/tests/test_encode_for_html.py +32 -0
- data/vendor/simplejson/simplejson/tests/test_errors.py +34 -0
- data/vendor/simplejson/simplejson/tests/test_fail.py +91 -0
- data/vendor/simplejson/simplejson/tests/test_float.py +19 -0
- data/vendor/simplejson/simplejson/tests/test_indent.py +86 -0
- data/vendor/simplejson/simplejson/tests/test_item_sort_key.py +20 -0
- data/vendor/simplejson/simplejson/tests/test_namedtuple.py +121 -0
- data/vendor/simplejson/simplejson/tests/test_pass1.py +76 -0
- data/vendor/simplejson/simplejson/tests/test_pass2.py +14 -0
- data/vendor/simplejson/simplejson/tests/test_pass3.py +20 -0
- data/vendor/simplejson/simplejson/tests/test_recursion.py +67 -0
- data/vendor/simplejson/simplejson/tests/test_scanstring.py +117 -0
- data/vendor/simplejson/simplejson/tests/test_separators.py +42 -0
- data/vendor/simplejson/simplejson/tests/test_speedups.py +20 -0
- data/vendor/simplejson/simplejson/tests/test_tuple.py +49 -0
- data/vendor/simplejson/simplejson/tests/test_unicode.py +109 -0
- data/vendor/simplejson/simplejson/tool.py +39 -0
- metadata +557 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
package example
|
2
|
+
|
3
|
+
uses java.util.*
|
4
|
+
|
5
|
+
uses java.io.File
|
6
|
+
|
7
|
+
class Person extends Contact implements IEmailable {
|
8
|
+
|
9
|
+
var _name : String
|
10
|
+
var _age : Integer as Age
|
11
|
+
var _relationship : Relationship as readonly RelationshipOfPerson
|
12
|
+
|
13
|
+
delegate _emailHelper represents IEmailable
|
14
|
+
|
15
|
+
enum Relationship {
|
16
|
+
FRIEND,
|
17
|
+
FAMILY,
|
18
|
+
BUSINESS_CONTACT
|
19
|
+
}
|
20
|
+
|
21
|
+
// Map of names to people
|
22
|
+
static var ALL_PEOPLE = new HashMap<String, Person>()
|
23
|
+
|
24
|
+
/* Constructs a new Person */
|
25
|
+
construct( name : String, age : Integer, relationship : Relationship ) {
|
26
|
+
_name = name
|
27
|
+
_age = age
|
28
|
+
_relationship = relationship
|
29
|
+
_emailHelper = new EmailHelper( this )
|
30
|
+
}
|
31
|
+
|
32
|
+
property get Name():String{
|
33
|
+
return _name
|
34
|
+
}
|
35
|
+
|
36
|
+
property set Name(name : String){
|
37
|
+
_name = name
|
38
|
+
}
|
39
|
+
|
40
|
+
/* Implement IEmailable#getEmailName() */
|
41
|
+
override function getEmailName():String{
|
42
|
+
return Name
|
43
|
+
}
|
44
|
+
|
45
|
+
function incrementAge() {
|
46
|
+
_age++
|
47
|
+
}
|
48
|
+
|
49
|
+
@Deprecated
|
50
|
+
function printPersonInfo() {
|
51
|
+
print( "Person { Name : ${Name}, Age : ${Age}, Relationship : ${RelationshipOfPerson} }" )
|
52
|
+
}
|
53
|
+
|
54
|
+
static function addPerson(p : Person){
|
55
|
+
if(ALL_PEOPLE.containsKey(p?.Name)) {
|
56
|
+
throw new IllegalArgumentException( "There is already someone named '${p.Name}'." )
|
57
|
+
}
|
58
|
+
ALL_PEOPLE[p.Name] = p
|
59
|
+
}
|
60
|
+
|
61
|
+
static function addAllPeople( contacts : List<Contact> ) {
|
62
|
+
for( contact in contacts ) {
|
63
|
+
if( contact typeis Person and not ALL_PEOPLE.containsKey( contact.Name )) {
|
64
|
+
addPerson( contact )
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
69
|
+
static function getAllPeopleOlderThanNOrderedByName( age : int ) {
|
70
|
+
var allPeople = ALL_PEOPLE.Values
|
71
|
+
|
72
|
+
return allPeople.where( \ p -> p.Age > age ).orderBy( \ p -> p.Name )
|
73
|
+
}
|
74
|
+
|
75
|
+
static function loadPersonFromDB( id : Integer ) {
|
76
|
+
using( var conn = DBConnectionManager.getConnection(),
|
77
|
+
var stmt = conn.prepareStatement( "SELECT name, age, relationship FROM PEOPLE WHERE ID=?") ){
|
78
|
+
|
79
|
+
stmt.setInt( 0, 0 )
|
80
|
+
var result = stmt.executeQuery()
|
81
|
+
if( result.next() ) {
|
82
|
+
addPerson( new Person( result.getString( "name" ),
|
83
|
+
result.getInt( "age" ),
|
84
|
+
Relationship.valueOf( result.getString( "relationship" ) ) ) )
|
85
|
+
|
86
|
+
}
|
87
|
+
}
|
88
|
+
}
|
89
|
+
|
90
|
+
/* Loads in people from a CSV */
|
91
|
+
static function loadFromFile( file : File ) {
|
92
|
+
file.eachLine( \ line -> {
|
93
|
+
if( line.HasContent ) {
|
94
|
+
addPerson( line.toPerson() )
|
95
|
+
}
|
96
|
+
})
|
97
|
+
}
|
98
|
+
|
99
|
+
/* Save people to a CSV */
|
100
|
+
static function saveToFile( file : File ) {
|
101
|
+
using( var writer = new FileWriter( file ) ) {
|
102
|
+
print( PersonCSVTemplate.renderToString( ALL_PEOPLE.Values ) )
|
103
|
+
PersonCSVTemplate.render( writer, ALL_PEOPLE.Values )
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}
|
@@ -0,0 +1,142 @@
|
|
1
|
+
/**
|
2
|
+
* This is not really a valid Haxe file, but just an demo...
|
3
|
+
*/
|
4
|
+
|
5
|
+
package;
|
6
|
+
package net.onthewings;
|
7
|
+
|
8
|
+
import net.onthewings.Test;
|
9
|
+
import net.onthewings.*;
|
10
|
+
|
11
|
+
using Lambda;
|
12
|
+
using net.onthewings.Test;
|
13
|
+
|
14
|
+
#if flash8
|
15
|
+
// Haxe code specific for flash player 8
|
16
|
+
#elseif flash
|
17
|
+
// Haxe code specific for flash platform (any version)
|
18
|
+
#elseif js
|
19
|
+
// Haxe code specific for javascript plaform
|
20
|
+
#elseif neko
|
21
|
+
// Haxe code specific for neko plaform
|
22
|
+
#else
|
23
|
+
// do something else
|
24
|
+
#error // will display an error "Not implemented on this platform"
|
25
|
+
#error "Custom error message" // will display an error "Custom error message"
|
26
|
+
#end
|
27
|
+
|
28
|
+
0; // Int
|
29
|
+
-134; // Int
|
30
|
+
0xFF00; // Int
|
31
|
+
|
32
|
+
123.0; // Float
|
33
|
+
.14179; // Float
|
34
|
+
13e50; // Float
|
35
|
+
-1e-99; // Float
|
36
|
+
|
37
|
+
"hello"; // String
|
38
|
+
"hello \"world\" !"; // String
|
39
|
+
'hello "world" !'; // String
|
40
|
+
|
41
|
+
true; // Bool
|
42
|
+
false; // Bool
|
43
|
+
|
44
|
+
null; // Unknown<0>
|
45
|
+
|
46
|
+
~/[a-z]+/i; // EReg : regular expression
|
47
|
+
|
48
|
+
var point = { "x" : 1, "y" : -5 };
|
49
|
+
|
50
|
+
{
|
51
|
+
var x;
|
52
|
+
var y = 3;
|
53
|
+
var z : String;
|
54
|
+
var w : String = "";
|
55
|
+
var a, b : Bool, c : Int = 0;
|
56
|
+
}
|
57
|
+
|
58
|
+
//haxe3 pattern matching
|
59
|
+
switch(e.expr) {
|
60
|
+
case EConst(CString(s)) if (StringTools.startsWith(s, "foo")):
|
61
|
+
"1";
|
62
|
+
case EConst(CString(s)) if (StringTools.startsWith(s, "bar")):
|
63
|
+
"2";
|
64
|
+
case EConst(CInt(i)) if (switch(Std.parseInt(i) * 2) { case 4: true; case _: false; }):
|
65
|
+
"3";
|
66
|
+
case EConst(_):
|
67
|
+
"4";
|
68
|
+
case _:
|
69
|
+
"5";
|
70
|
+
}
|
71
|
+
|
72
|
+
switch [true, 1, "foo"] {
|
73
|
+
case [true, 1, "foo"]: "0";
|
74
|
+
case [true, 1, _]: "1";
|
75
|
+
case _: "_";
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
class Test <T:Void->Void> {
|
80
|
+
private function new():Void {
|
81
|
+
inline function innerFun(a:Int, b:Int):Int {
|
82
|
+
return readOnlyField = a + b;
|
83
|
+
}
|
84
|
+
|
85
|
+
_innerFun(1, 2.3);
|
86
|
+
}
|
87
|
+
|
88
|
+
static public var instance(get,null):Test;
|
89
|
+
static function get_instance():Test {
|
90
|
+
return instance != null ? instance : instance = new Test();
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
@:native("Test") private class Test2 {}
|
95
|
+
|
96
|
+
extern class Ext {}
|
97
|
+
|
98
|
+
@:macro class M {
|
99
|
+
@:macro static function test(e:Array<Expr>):ExprOf<String> {
|
100
|
+
return macro "ok";
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
enum Color {
|
105
|
+
Red;
|
106
|
+
Green;
|
107
|
+
Blue;
|
108
|
+
Grey( v : Int );
|
109
|
+
Rgb( r : Int, g : Int, b : Int );
|
110
|
+
Alpha( a : Int, col : Color );
|
111
|
+
}
|
112
|
+
|
113
|
+
class Colors {
|
114
|
+
static function toInt( c : Color ) : Int {
|
115
|
+
return switch( c ) {
|
116
|
+
case Red: 0xFF0000;
|
117
|
+
case Green: 0x00FF00;
|
118
|
+
case Blue: 0x0000FF;
|
119
|
+
case Grey(v): (v << 16) | (v << 8) | v;
|
120
|
+
case Rgb(r,g,b): (r << 16) | (g << 8) | b;
|
121
|
+
case Alpha(a,c): (a << 24) | (toInt(c) & 0xFFFFFF);
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
|
126
|
+
class EvtQueue<T : (Event, EventDispatcher)> {
|
127
|
+
var evt : T;
|
128
|
+
}
|
129
|
+
|
130
|
+
typedef DS = Dynamic<String>;
|
131
|
+
typedef Pt = {
|
132
|
+
var x:Float;
|
133
|
+
var y:Float;
|
134
|
+
@:optional var z:Float; /* optional z */
|
135
|
+
function add(pt:Pt):Void;
|
136
|
+
}
|
137
|
+
typedef Pt2 = {
|
138
|
+
x:Float,
|
139
|
+
y:Float,
|
140
|
+
?z:Float, //optional z
|
141
|
+
add : Point -> Void,
|
142
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# lsat.jags example from classic-bugs examples in JAGS
|
2
|
+
# See http://sourceforge.net/projects/mcmc-jags/files/Examples/2.x/
|
3
|
+
var
|
4
|
+
response[R,T], m[R], culm[R], alpha[T], a[T], theta[N], r[N,T],
|
5
|
+
p[N,T], beta, theta.new, p.theta[T], p.item[R,T], P.theta[R];
|
6
|
+
data {
|
7
|
+
for (j in 1:culm[1]) {
|
8
|
+
r[j, ] <- response[1, ];
|
9
|
+
}
|
10
|
+
for (i in 2:R) {
|
11
|
+
for (j in (culm[i - 1] + 1):culm[i]) {
|
12
|
+
r[j, ] <- response[i, ];
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
model {
|
17
|
+
# 2-parameter Rasch model
|
18
|
+
for (j in 1:N) {
|
19
|
+
for (k in 1:T) {
|
20
|
+
probit(p[j,k]) <- delta[k]*theta[j] - eta[k];
|
21
|
+
r[j,k] ~ dbern(p[j,k]);
|
22
|
+
}
|
23
|
+
theta[j] ~ dnorm(0,1);
|
24
|
+
}
|
25
|
+
|
26
|
+
# Priors
|
27
|
+
for (k in 1:T) {
|
28
|
+
eta[k] ~ dnorm(0,0.0001);
|
29
|
+
e[k] <- eta[k] - mean(eta[]); # sum-to-zero constraint
|
30
|
+
|
31
|
+
delta[k] ~ dnorm(0,1) T(0,); # constrain variance to 1, slope +ve
|
32
|
+
d[k] <- delta[k]/pow(prod(delta), 1/T); # PRODUCT_k (d_k) = 1
|
33
|
+
|
34
|
+
g[k] <- e[k]/d[k]; # equivalent to B&A's threshold parameters
|
35
|
+
}
|
36
|
+
|
37
|
+
# Compute probability of response pattern i, for later use in computing G^2
|
38
|
+
theta.new ~ dnorm(0,1); # ability parameter for random student
|
39
|
+
for(k in 1:T) {
|
40
|
+
probit(p.theta[k]) <- delta[k]*theta.new - eta[k];
|
41
|
+
for(i in 1:R) {
|
42
|
+
p.item[i,k] <- p.theta[k]^response[i,k] * (1-p.theta[k])^(1-response[i,k]);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
for(i in 1:R) {
|
46
|
+
P.theta[i] <- prod(p.item[i,])
|
47
|
+
}
|
48
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
package addressbook
|
2
|
+
|
3
|
+
class Contact(
|
4
|
+
val name : String,
|
5
|
+
val emails : List<EmailAddress>,
|
6
|
+
val addresses : List<PostalAddress>,
|
7
|
+
val phonenums : List<PhoneNumber>
|
8
|
+
)
|
9
|
+
|
10
|
+
class EmailAddress(
|
11
|
+
val user : String,
|
12
|
+
val host : String
|
13
|
+
)
|
14
|
+
|
15
|
+
class PostalAddress(
|
16
|
+
val streetAddress : String,
|
17
|
+
val city : String,
|
18
|
+
val zip : String,
|
19
|
+
val state : USState?,
|
20
|
+
val country : Country
|
21
|
+
) {
|
22
|
+
assert {(state == null) xor (country == Countries["US"]) }
|
23
|
+
}
|
24
|
+
|
25
|
+
class PhoneNumber(
|
26
|
+
val country : Country,
|
27
|
+
val areaCode : Int,
|
28
|
+
val number : Long
|
29
|
+
)
|
30
|
+
|
31
|
+
object Countries {
|
32
|
+
fun get(id : CountryID) : Country = countryTable[id]
|
33
|
+
|
34
|
+
private var table : Map<String, Country>? = null
|
35
|
+
private val countryTable : Map<String, Country>
|
36
|
+
get() {
|
37
|
+
if (table == null) {
|
38
|
+
table = HashMap()
|
39
|
+
for (line in TextFile("countries.txt").lines(stripWhiteSpace = true)) {
|
40
|
+
table[line] = Country(line)
|
41
|
+
}
|
42
|
+
}
|
43
|
+
return table
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
class Country(val name : String)
|
@@ -0,0 +1,19 @@
|
|
1
|
+
\documentclass{article}
|
2
|
+
% this is a LaTeX comment
|
3
|
+
\usepackage{agda}
|
4
|
+
|
5
|
+
\begin{document}
|
6
|
+
|
7
|
+
Here's how you can define \emph{RGB} colors in Agda:
|
8
|
+
|
9
|
+
\begin{code}
|
10
|
+
module example where
|
11
|
+
|
12
|
+
open import Data.Fin
|
13
|
+
open import Data.Nat
|
14
|
+
|
15
|
+
data Color : Set where
|
16
|
+
RGB : Fin 256 → Fin 256 → Fin 256 → Color
|
17
|
+
\end{code}
|
18
|
+
|
19
|
+
\end{document}
|
@@ -0,0 +1,250 @@
|
|
1
|
+
--[[
|
2
|
+
Auctioneer Advanced
|
3
|
+
Version: <%version%> (<%codename%>)
|
4
|
+
Revision: $Id: CoreMain.lua 2233 2007-09-25 03:57:33Z norganna $
|
5
|
+
URL: http://auctioneeraddon.com/
|
6
|
+
|
7
|
+
This is an addon for World of Warcraft that adds statistical history to the auction data that is collected
|
8
|
+
when the auction is scanned, so that you can easily determine what price
|
9
|
+
you will be able to sell an item for at auction or at a vendor whenever you
|
10
|
+
mouse-over an item in the game
|
11
|
+
|
12
|
+
License:
|
13
|
+
This program is free software; you can redistribute it and/or
|
14
|
+
modify it under the terms of the GNU General Public License
|
15
|
+
as published by the Free Software Foundation; either version 2
|
16
|
+
of the License, or (at your option) any later version.
|
17
|
+
|
18
|
+
This program is distributed in the hope that it will be useful,
|
19
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
21
|
+
GNU General Public License for more details.
|
22
|
+
|
23
|
+
You should have received a copy of the GNU General Public License
|
24
|
+
along with this program(see GPL.txt); if not, write to the Free Software
|
25
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
26
|
+
|
27
|
+
Note:
|
28
|
+
This AddOn's source code is specifically designed to work with
|
29
|
+
World of Warcraft's interpreted AddOn system.
|
30
|
+
You have an implicit licence to use this AddOn with these facilities
|
31
|
+
since that is its designated purpose as per:
|
32
|
+
http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat
|
33
|
+
]]
|
34
|
+
|
35
|
+
|
36
|
+
--[[
|
37
|
+
See CoreAPI.lua for a description of the modules API
|
38
|
+
]]
|
39
|
+
|
40
|
+
if (not AucAdvanced) then AucAdvanced = {} end
|
41
|
+
if (not AucAdvancedData) then AucAdvancedData = {} end
|
42
|
+
if (not AucAdvancedLocal) then AucAdvancedLocal = {} end
|
43
|
+
if (not AucAdvancedConfig) then AucAdvancedConfig = {} end
|
44
|
+
|
45
|
+
AucAdvanced.Version="<%version%>";
|
46
|
+
if (AucAdvanced.Version == "<".."%version%>") then
|
47
|
+
AucAdvanced.Version = "5.0.DEV";
|
48
|
+
end
|
49
|
+
|
50
|
+
local private = {}
|
51
|
+
|
52
|
+
-- For our modular stats system, each stats engine should add their
|
53
|
+
-- subclass to AucAdvanced.Modules.<type>.<name> and store their data into their own
|
54
|
+
-- data table in AucAdvancedData.Stats.<type><name>
|
55
|
+
if (not AucAdvanced.Modules) then AucAdvanced.Modules = {Stat={},Util={},Filter={}} end
|
56
|
+
if (not AucAdvancedData.Stats) then AucAdvancedData.Stats = {} end
|
57
|
+
if (not AucAdvancedLocal.Stats) then AucAdvancedLocal.Stats = {} end
|
58
|
+
|
59
|
+
function private.TooltipHook(vars, ret, frame, name, hyperlink, quality, quantity, cost, additional)
|
60
|
+
if EnhTooltip.LinkType(hyperlink) ~= "item" then
|
61
|
+
return -- Auctioneer hooks into item tooltips only
|
62
|
+
end
|
63
|
+
|
64
|
+
-- Check to see if we need to force load scandata
|
65
|
+
local getter = AucAdvanced.Settings.GetSetting
|
66
|
+
if (getter("scandata.tooltip.display") and getter("scandata.force")) then
|
67
|
+
AucAdvanced.Scan.GetImage()
|
68
|
+
end
|
69
|
+
|
70
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
71
|
+
for engine, engineLib in pairs(systemMods) do
|
72
|
+
if (engineLib.Processor) then engineLib.Processor("tooltip", frame, name, hyperlink, quality, quantity, cost, additional) end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
function private.HookAH()
|
78
|
+
hooksecurefunc("AuctionFrameBrowse_Update", AucAdvanced.API.ListUpdate)
|
79
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
80
|
+
for engine, engineLib in pairs(systemMods) do
|
81
|
+
if (engineLib.Processor) then
|
82
|
+
engineLib.Processor("auctionui")
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
function private.OnLoad(addon)
|
89
|
+
addon = addon:lower()
|
90
|
+
|
91
|
+
-- Check if the actual addon itself is loading
|
92
|
+
if (addon == "auc-advanced") then
|
93
|
+
Stubby.RegisterAddOnHook("Blizzard_AuctionUi", "Auc-Advanced", private.HookAH)
|
94
|
+
Stubby.RegisterFunctionHook("EnhTooltip.AddTooltip", 600, private.TooltipHook)
|
95
|
+
for pos, module in ipairs(AucAdvanced.EmbeddedModules) do
|
96
|
+
-- These embedded modules have also just been loaded
|
97
|
+
private.OnLoad(module)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
-- Notify the actual module if it exists
|
102
|
+
local auc, sys, eng = strsplit("-", addon)
|
103
|
+
if (auc == "auc" and sys and eng) then
|
104
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
105
|
+
if (sys == system:lower()) then
|
106
|
+
for engine, engineLib in pairs(systemMods) do
|
107
|
+
if (eng == engine:lower() and engineLib.OnLoad) then
|
108
|
+
engineLib.OnLoad(addon)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
-- Check all modules' load triggers and pass event to processors
|
116
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
117
|
+
for engine, engineLib in pairs(systemMods) do
|
118
|
+
if (engineLib.LoadTriggers and engineLib.LoadTriggers[addon]) then
|
119
|
+
if (engineLib.OnLoad) then
|
120
|
+
engineLib.OnLoad(addon)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
if (engineLib.Processor and auc == "auc" and sys and eng) then
|
124
|
+
engineLib.Processor("load", addon)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
function private.OnUnload()
|
131
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
132
|
+
for engine, engineLib in pairs(systemMods) do
|
133
|
+
if (engineLib.OnUnload) then
|
134
|
+
engineLib.OnUnload()
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
private.Schedule = {}
|
141
|
+
function private.OnEvent(...)
|
142
|
+
local event, arg = select(2, ...)
|
143
|
+
if (event == "ADDON_LOADED") then
|
144
|
+
local addon = string.lower(arg)
|
145
|
+
if (addon:sub(1,4) == "auc-") then
|
146
|
+
private.OnLoad(addon)
|
147
|
+
end
|
148
|
+
elseif (event == "AUCTION_HOUSE_SHOW") then
|
149
|
+
-- Do Nothing for now
|
150
|
+
elseif (event == "AUCTION_HOUSE_CLOSED") then
|
151
|
+
AucAdvanced.Scan.Interrupt()
|
152
|
+
elseif (event == "PLAYER_LOGOUT") then
|
153
|
+
AucAdvanced.Scan.Commit(true)
|
154
|
+
private.OnUnload()
|
155
|
+
elseif event == "UNIT_INVENTORY_CHANGED"
|
156
|
+
or event == "ITEM_LOCK_CHANGED"
|
157
|
+
or event == "CURSOR_UPDATE"
|
158
|
+
or event == "BAG_UPDATE"
|
159
|
+
then
|
160
|
+
private.Schedule["inventory"] = GetTime() + 0.15
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
function private.OnUpdate(...)
|
165
|
+
if event == "inventory" then
|
166
|
+
AucAdvanced.Post.AlertBagsChanged()
|
167
|
+
end
|
168
|
+
|
169
|
+
local now = GetTime()
|
170
|
+
for event, time in pairs(private.Schedule) do
|
171
|
+
if time > now then
|
172
|
+
for system, systemMods in pairs(AucAdvanced.Modules) do
|
173
|
+
for engine, engineLib in pairs(systemMods) do
|
174
|
+
if engineLib.Processor then
|
175
|
+
engineLib.Processor(event, time)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
private.Schedule[event] = nil
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
private.Frame = CreateFrame("Frame")
|
185
|
+
private.Frame:RegisterEvent("ADDON_LOADED")
|
186
|
+
private.Frame:RegisterEvent("AUCTION_HOUSE_SHOW")
|
187
|
+
private.Frame:RegisterEvent("AUCTION_HOUSE_CLOSED")
|
188
|
+
private.Frame:RegisterEvent("UNIT_INVENTORY_CHANGED")
|
189
|
+
private.Frame:RegisterEvent("ITEM_LOCK_CHANGED")
|
190
|
+
private.Frame:RegisterEvent("CURSOR_UPDATE")
|
191
|
+
private.Frame:RegisterEvent("BAG_UPDATE")
|
192
|
+
private.Frame:RegisterEvent("PLAYER_LOGOUT")
|
193
|
+
private.Frame:SetScript("OnEvent", private.OnEvent)
|
194
|
+
private.Frame:SetScript("OnUpdate", private.OnUpdate)
|
195
|
+
|
196
|
+
-- Auctioneer's debug functions
|
197
|
+
AucAdvanced.Debug = {}
|
198
|
+
local addonName = "Auctioneer" -- the addon's name as it will be displayed in
|
199
|
+
-- the debug messages
|
200
|
+
-------------------------------------------------------------------------------
|
201
|
+
-- Prints the specified message to nLog.
|
202
|
+
--
|
203
|
+
-- syntax:
|
204
|
+
-- errorCode, message = debugPrint([message][, category][, title][, errorCode][, level])
|
205
|
+
--
|
206
|
+
-- parameters:
|
207
|
+
-- message - (string) the error message
|
208
|
+
-- nil, no error message specified
|
209
|
+
-- category - (string) the category of the debug message
|
210
|
+
-- nil, no category specified
|
211
|
+
-- title - (string) the title for the debug message
|
212
|
+
-- nil, no title specified
|
213
|
+
-- errorCode - (number) the error code
|
214
|
+
-- nil, no error code specified
|
215
|
+
-- level - (string) nLog message level
|
216
|
+
-- Any nLog.levels string is valid.
|
217
|
+
-- nil, no level specified
|
218
|
+
--
|
219
|
+
-- returns:
|
220
|
+
-- errorCode - (number) errorCode, if one is specified
|
221
|
+
-- nil, otherwise
|
222
|
+
-- message - (string) message, if one is specified
|
223
|
+
-- nil, otherwise
|
224
|
+
-------------------------------------------------------------------------------
|
225
|
+
function AucAdvanced.Debug.DebugPrint(message, category, title, errorCode, level)
|
226
|
+
return DebugLib.DebugPrint(addonName, message, category, title, errorCode, level)
|
227
|
+
end
|
228
|
+
|
229
|
+
-------------------------------------------------------------------------------
|
230
|
+
-- Used to make sure that conditions are met within functions.
|
231
|
+
-- If test is false, the error message will be written to nLog and the user's
|
232
|
+
-- default chat channel.
|
233
|
+
--
|
234
|
+
-- syntax:
|
235
|
+
-- assertion = assert(test, message)
|
236
|
+
--
|
237
|
+
-- parameters:
|
238
|
+
-- test - (any) false/nil, if the assertion failed
|
239
|
+
-- anything else, otherwise
|
240
|
+
-- message - (string) the message which will be output to the user
|
241
|
+
--
|
242
|
+
-- returns:
|
243
|
+
-- assertion - (boolean) true, if the test passed
|
244
|
+
-- false, otherwise
|
245
|
+
-------------------------------------------------------------------------------
|
246
|
+
function AucAdvanced.Debug.Assert(test, message)
|
247
|
+
return DebugLib.Assert(addonName, test, message)
|
248
|
+
end
|
249
|
+
|
250
|
+
|