├── .ackrc ├── .gitignore ├── .rspec ├── CREDITS ├── Gemfile ├── Gemfile.lock ├── Makefile ├── PerlModules ├── README.md ├── TODO ├── bin └── .gitkeep ├── commands ├── apt.pl ├── cmd.rb ├── cmdinfo.pl ├── echo-pipe.rb ├── echo.pl ├── fn.rb ├── ftw.pl ├── gamesby.rb ├── help.rb ├── helper.py ├── keyworddef.rb ├── learn.pl ├── learn │ ├── add.pl │ ├── delete.pl │ ├── edit.pl │ ├── move.pl │ ├── query.pl │ ├── set.pl │ └── swap.pl ├── listgame.rb ├── message │ ├── messages.pl │ └── tell.pl ├── milestone.rb ├── nickmap.rb ├── rng.pl ├── seen.pl ├── source.pl ├── streak.rb ├── tvdef.rb ├── user_command.rb ├── won.rb ├── wtf.py └── xtime.py ├── config ├── commands-sequell.txt ├── crawl-data.yml ├── grammar.yml ├── learndb.sql ├── op.yml ├── public-commands.txt └── sources.yml ├── docs ├── api.md ├── commandline.md ├── commands.txt ├── commands_ideas.txt ├── learndb.md ├── listgame.md └── listgame.txt ├── lib ├── Henzell │ ├── ACL.pm │ ├── ACL │ │ ├── Groups.pm │ │ └── Rule.pm │ ├── ApproxTextMatch.pm │ ├── Authorize.pm │ ├── BotService.pm │ ├── Bus.pm │ ├── Cmd.pm │ ├── Column.pm │ ├── CommandService.pm │ ├── Config.pm │ ├── Crawl.pm │ ├── DB.pm │ ├── FSLearnDB.pm │ ├── FieldSet.pm │ ├── Forkable.pm │ ├── Game.pm │ ├── IRC.pm │ ├── IRCAuth.pm │ ├── IRCAuthStub.pm │ ├── IRCChanService.pm │ ├── IRCMatcher.pm │ ├── IRCStub.pm │ ├── IRCTestStub.pm │ ├── IRCUtil.pm │ ├── LearnDBBehaviour.pm │ ├── LearnDBLookup.pm │ ├── LogFetchService.pm │ ├── ReactorService.pm │ ├── RelayCommandLine.pm │ ├── Root.pm │ ├── SQLLearnDB.pm │ ├── SQLite.pm │ ├── Schema.pm │ ├── SeenService.pm │ ├── ServerConfig.pm │ ├── ServiceBase.pm │ ├── SourceServer.pm │ ├── Tell.pm │ ├── TellService.pm │ ├── TemplateExpander.pm │ ├── UserCommandDb.pm │ └── Utils.pm ├── LearnDB.pm ├── LearnDB │ ├── Cmd.pm │ ├── Entry.pm │ └── MaybeEntry.pm └── Seen.pm ├── rc ├── sequell.defaults └── sequell.rc ├── scripts ├── acl-perm.pl ├── install-libs ├── install-perl-modules ├── ldb-similar ├── lock-db ├── runcmd.pl ├── schema-gen.pl ├── test-henzell.pl └── update-crawl-source ├── sequell.pl ├── server-xlogs └── .gitkeep ├── services └── http │ ├── Gemfile │ ├── Gemfile.lock │ ├── config.ru │ └── http_service.rb ├── spec ├── formatter │ └── duration_spec.rb ├── keyword_spec.rb ├── learndb_spec.rb ├── lg_spec.rb ├── nick │ └── entry_spec.rb ├── parse_spec.rb ├── query │ ├── ast │ │ └── value_spec.rb │ └── listgame_parser_spec.rb ├── spec_helper.rb ├── sql │ ├── sql_connection_spec.rb │ ├── type_spec.rb │ └── version_number_spec.rb ├── tpl │ ├── cmdline_spec.rb │ ├── fn_spec.rb │ ├── function_def_spec.rb │ ├── ldb_spec.rb │ ├── lg_parse_spec.rb │ └── re_spec.rb └── tpl_parse_spec.rb ├── src ├── .empty ├── Helper.pm ├── MessageDB.pm ├── cmd │ ├── command.rb │ ├── executor.rb │ ├── option_parser.rb │ ├── user_command_db.rb │ ├── user_def.rb │ ├── user_defined_command.rb │ ├── user_function.rb │ └── user_keyword.rb ├── command_context.rb ├── crawl │ ├── branch.rb │ ├── branch_set.rb │ ├── combo.rb │ ├── config.rb │ ├── gods.rb │ ├── job.rb │ ├── milestone_type.rb │ ├── playable.rb │ ├── source.rb │ ├── source_reader.rb │ └── species.rb ├── db │ └── sqlite.rb ├── env.rb ├── formatter │ ├── duration.rb │ ├── extra_field_extractor.rb │ ├── game_json.rb │ ├── game_text.rb │ ├── graph_json_summary.rb │ ├── graph_summary.rb │ ├── json.rb │ ├── json_summary.rb │ ├── summary.rb │ ├── text.rb │ ├── text_summary.rb │ └── util.rb ├── game_context.rb ├── game_formatter.rb ├── grammar │ ├── atom.rb │ ├── command_line.rb │ ├── config.rb │ ├── keyword.rb │ ├── nick.rb │ ├── query.rb │ ├── query_body.rb │ ├── query_result_filter.rb │ ├── query_term.rb │ ├── query_transform.rb │ └── sql_expr.rb ├── graph │ ├── errors.rb │ ├── file.rb │ ├── template.rb │ └── url.rb ├── helper.rb ├── henzell │ ├── commands.rb │ ├── config.rb │ ├── config_file.rb │ ├── env.rb │ ├── learndb_query.rb │ ├── morgue_resolver.rb │ ├── server │ │ ├── morgue_binary_search.rb │ │ ├── morgue_filename.rb │ │ ├── morgue_path.rb │ │ └── morgue_predicate.rb │ ├── source.rb │ ├── sources.rb │ └── ttyrec_search.rb ├── henzell_config.rb ├── httplist.rb ├── irc_auth.rb ├── irc_color.rb ├── json_serializer.rb ├── learndb.rb ├── learndb_query.rb ├── lgparse.rb ├── libtv.rb ├── nick │ ├── db.rb │ └── entry.rb ├── pcache.rb ├── query │ ├── ast │ │ ├── ast_builder.rb │ │ ├── ast_fixup.rb │ │ ├── ast_query_builder.rb │ │ ├── ast_translator.rb │ │ ├── ast_walker.rb │ │ ├── expr.rb │ │ ├── extra.rb │ │ ├── extra_list.rb │ │ ├── field.rb │ │ ├── filter_expr.rb │ │ ├── filter_term.rb │ │ ├── filter_value.rb │ │ ├── funcall.rb │ │ ├── group_order_list.rb │ │ ├── group_order_term.rb │ │ ├── keyed_option.rb │ │ ├── keyed_option_list.rb │ │ ├── keyword.rb │ │ ├── modifier.rb │ │ ├── option.rb │ │ ├── option_builder.rb │ │ ├── ordered_list.rb │ │ ├── query_ast.rb │ │ ├── summary.rb │ │ ├── summary_list.rb │ │ ├── term.rb │ │ ├── tv_option.rb │ │ └── value.rb │ ├── compound_keyword_parser.rb │ ├── game_type_extractor.rb │ ├── grammar.rb │ ├── has_expression.rb │ ├── keyword_defs.rb │ ├── keyword_matcher.rb │ ├── lg_query.rb │ ├── listgame_arglist_combine.rb │ ├── listgame_parser.rb │ ├── listgame_query.rb │ ├── nick.rb │ ├── nick_expr.rb │ ├── nick_resolver.rb │ ├── operator.rb │ ├── operator_separator.rb │ ├── operator_type_map.rb │ ├── operators.rb │ ├── option_executor.rb │ ├── query_executor.rb │ ├── query_keyword_parser.rb │ ├── query_list_builder.rb │ ├── query_node_translator.rb │ ├── query_param_parser.rb │ ├── query_parser.rb │ ├── query_splitter.rb │ ├── query_string.rb │ ├── query_string_template.rb │ ├── query_struct.rb │ ├── query_template_properties.rb │ ├── ratio_query_filter.rb │ ├── sort.rb │ ├── sort_field_parser.rb │ ├── summary_graph_builder.rb │ ├── termlike.rb │ ├── text_template.rb │ └── tpl │ │ └── parser.rb ├── query_config.rb ├── query_executors.rb ├── response.rb ├── services │ ├── crawl_build.rb │ ├── learndb.rb │ ├── listgame.rb │ ├── throttle.rb │ └── update_sequell.rb ├── slave_process.rb ├── sql │ ├── aggregate_expression.rb │ ├── column.rb │ ├── column_list.rb │ ├── column_resolver.rb │ ├── config.rb │ ├── crawl_query.rb │ ├── date.rb │ ├── duration.rb │ ├── errors.rb │ ├── field.rb │ ├── field_expr_parser.rb │ ├── field_predicates.rb │ ├── field_resolver.rb │ ├── field_value_transformer.rb │ ├── function.rb │ ├── function_def.rb │ ├── function_defs.rb │ ├── function_type.rb │ ├── join.rb │ ├── lookup_table_config.rb │ ├── lookup_table_registry.rb │ ├── predicate_translator.rb │ ├── query_context.rb │ ├── query_group_filter.rb │ ├── query_list.rb │ ├── query_result.rb │ ├── query_sort_condition.rb │ ├── query_sort_field.rb │ ├── query_table.rb │ ├── query_tables.rb │ ├── result_set.rb │ ├── summary_field_list.rb │ ├── summary_group_formatter.rb │ ├── summary_reporter.rb │ ├── summary_row.rb │ ├── summary_row_group.rb │ ├── timestamp_format.rb │ ├── type.rb │ ├── type_predicates.rb │ ├── value.rb │ └── version_number.rb ├── sql_connection.rb ├── sqlhelper.rb ├── sqlop │ └── tv_view_count.rb ├── string_fixup.rb ├── termcast_config.rb ├── tourney.rb ├── tpl │ ├── binding.rb │ ├── fragment.rb │ ├── funcall.rb │ ├── function.rb │ ├── function_def.rb │ ├── function_defs.rb │ ├── function_executor.rb │ ├── gsub.rb │ ├── learndb_fn_defs.rb │ ├── let_form.rb │ ├── lg_defs.rb │ ├── lookup_fragment.rb │ ├── parser_defs.rb │ ├── re_fn_defs.rb │ ├── scope.rb │ ├── subcommand.rb │ ├── substitution.rb │ ├── template.rb │ ├── template_builder.rb │ ├── template_parser.rb │ ├── text_fragment.rb │ └── tplike.rb └── tv │ ├── channel_manager.rb │ └── command.rb ├── t ├── Henzell-ACL-Groups.t ├── Henzell-ACL-Rule.t ├── Henzell-ApproxTextMatch.t ├── Henzell-FSLearnDB.t ├── Henzell-IRCMatcher.t ├── Henzell-RelayCommandLine.t ├── Henzell-SQLLearnDB.t ├── Henzell-SQLite.t └── learndb.t ├── tests ├── data │ ├── .empty │ ├── test.remote.cszo-logfile-any │ ├── test.remote.cszo-milestones-any │ ├── test.remote.cxc-logfile-any │ └── test.remote.cxc-milestones-any ├── lg_parsetest.txt ├── test-words └── testcmd.txt ├── tpl └── graph.html.haml ├── utils ├── mysql2pgsql.perl ├── tv-cleanup.sql ├── tv-export.sql ├── tv-import.sql └── tvdump ├── web ├── learndb-html.pl ├── learndb.css ├── user-commands-html.rb ├── user-defined.html.haml └── userdef.css └── www ├── .empty ├── learndb.css └── userdef.css /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/.ackrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/CREDITS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/Makefile -------------------------------------------------------------------------------- /PerlModules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/PerlModules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/TODO -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /commands/apt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/apt.pl -------------------------------------------------------------------------------- /commands/cmd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/cmd.rb -------------------------------------------------------------------------------- /commands/cmdinfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/cmdinfo.pl -------------------------------------------------------------------------------- /commands/echo-pipe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/echo-pipe.rb -------------------------------------------------------------------------------- /commands/echo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/echo.pl -------------------------------------------------------------------------------- /commands/fn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/fn.rb -------------------------------------------------------------------------------- /commands/ftw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/ftw.pl -------------------------------------------------------------------------------- /commands/gamesby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/gamesby.rb -------------------------------------------------------------------------------- /commands/help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/help.rb -------------------------------------------------------------------------------- /commands/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/helper.py -------------------------------------------------------------------------------- /commands/keyworddef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/keyworddef.rb -------------------------------------------------------------------------------- /commands/learn.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn.pl -------------------------------------------------------------------------------- /commands/learn/add.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/add.pl -------------------------------------------------------------------------------- /commands/learn/delete.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/delete.pl -------------------------------------------------------------------------------- /commands/learn/edit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/edit.pl -------------------------------------------------------------------------------- /commands/learn/move.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/move.pl -------------------------------------------------------------------------------- /commands/learn/query.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/query.pl -------------------------------------------------------------------------------- /commands/learn/set.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/set.pl -------------------------------------------------------------------------------- /commands/learn/swap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/learn/swap.pl -------------------------------------------------------------------------------- /commands/listgame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/listgame.rb -------------------------------------------------------------------------------- /commands/message/messages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/message/messages.pl -------------------------------------------------------------------------------- /commands/message/tell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/message/tell.pl -------------------------------------------------------------------------------- /commands/milestone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/milestone.rb -------------------------------------------------------------------------------- /commands/nickmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/nickmap.rb -------------------------------------------------------------------------------- /commands/rng.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/rng.pl -------------------------------------------------------------------------------- /commands/seen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/seen.pl -------------------------------------------------------------------------------- /commands/source.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/source.pl -------------------------------------------------------------------------------- /commands/streak.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/streak.rb -------------------------------------------------------------------------------- /commands/tvdef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/tvdef.rb -------------------------------------------------------------------------------- /commands/user_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/user_command.rb -------------------------------------------------------------------------------- /commands/won.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/won.rb -------------------------------------------------------------------------------- /commands/wtf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/wtf.py -------------------------------------------------------------------------------- /commands/xtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/commands/xtime.py -------------------------------------------------------------------------------- /config/commands-sequell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/commands-sequell.txt -------------------------------------------------------------------------------- /config/crawl-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/crawl-data.yml -------------------------------------------------------------------------------- /config/grammar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/grammar.yml -------------------------------------------------------------------------------- /config/learndb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/learndb.sql -------------------------------------------------------------------------------- /config/op.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/op.yml -------------------------------------------------------------------------------- /config/public-commands.txt: -------------------------------------------------------------------------------- 1 | !send 2 | 3 | !copysave 4 | !nick 5 | -------------------------------------------------------------------------------- /config/sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/config/sources.yml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/commandline.md -------------------------------------------------------------------------------- /docs/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/commands.txt -------------------------------------------------------------------------------- /docs/commands_ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/commands_ideas.txt -------------------------------------------------------------------------------- /docs/learndb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/learndb.md -------------------------------------------------------------------------------- /docs/listgame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/docs/listgame.md -------------------------------------------------------------------------------- /docs/listgame.txt: -------------------------------------------------------------------------------- 1 | listgame.md -------------------------------------------------------------------------------- /lib/Henzell/ACL.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ACL.pm -------------------------------------------------------------------------------- /lib/Henzell/ACL/Groups.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ACL/Groups.pm -------------------------------------------------------------------------------- /lib/Henzell/ACL/Rule.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ACL/Rule.pm -------------------------------------------------------------------------------- /lib/Henzell/ApproxTextMatch.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ApproxTextMatch.pm -------------------------------------------------------------------------------- /lib/Henzell/Authorize.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Authorize.pm -------------------------------------------------------------------------------- /lib/Henzell/BotService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/BotService.pm -------------------------------------------------------------------------------- /lib/Henzell/Bus.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Bus.pm -------------------------------------------------------------------------------- /lib/Henzell/Cmd.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Cmd.pm -------------------------------------------------------------------------------- /lib/Henzell/Column.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Column.pm -------------------------------------------------------------------------------- /lib/Henzell/CommandService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/CommandService.pm -------------------------------------------------------------------------------- /lib/Henzell/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Config.pm -------------------------------------------------------------------------------- /lib/Henzell/Crawl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Crawl.pm -------------------------------------------------------------------------------- /lib/Henzell/DB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/DB.pm -------------------------------------------------------------------------------- /lib/Henzell/FSLearnDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/FSLearnDB.pm -------------------------------------------------------------------------------- /lib/Henzell/FieldSet.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/FieldSet.pm -------------------------------------------------------------------------------- /lib/Henzell/Forkable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Forkable.pm -------------------------------------------------------------------------------- /lib/Henzell/Game.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Game.pm -------------------------------------------------------------------------------- /lib/Henzell/IRC.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRC.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCAuth.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCAuth.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCAuthStub.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCAuthStub.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCChanService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCChanService.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCMatcher.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCMatcher.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCStub.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCStub.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCTestStub.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCTestStub.pm -------------------------------------------------------------------------------- /lib/Henzell/IRCUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/IRCUtil.pm -------------------------------------------------------------------------------- /lib/Henzell/LearnDBBehaviour.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/LearnDBBehaviour.pm -------------------------------------------------------------------------------- /lib/Henzell/LearnDBLookup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/LearnDBLookup.pm -------------------------------------------------------------------------------- /lib/Henzell/LogFetchService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/LogFetchService.pm -------------------------------------------------------------------------------- /lib/Henzell/ReactorService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ReactorService.pm -------------------------------------------------------------------------------- /lib/Henzell/RelayCommandLine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/RelayCommandLine.pm -------------------------------------------------------------------------------- /lib/Henzell/Root.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Root.pm -------------------------------------------------------------------------------- /lib/Henzell/SQLLearnDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/SQLLearnDB.pm -------------------------------------------------------------------------------- /lib/Henzell/SQLite.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/SQLite.pm -------------------------------------------------------------------------------- /lib/Henzell/Schema.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Schema.pm -------------------------------------------------------------------------------- /lib/Henzell/SeenService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/SeenService.pm -------------------------------------------------------------------------------- /lib/Henzell/ServerConfig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ServerConfig.pm -------------------------------------------------------------------------------- /lib/Henzell/ServiceBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/ServiceBase.pm -------------------------------------------------------------------------------- /lib/Henzell/SourceServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/SourceServer.pm -------------------------------------------------------------------------------- /lib/Henzell/Tell.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Tell.pm -------------------------------------------------------------------------------- /lib/Henzell/TellService.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/TellService.pm -------------------------------------------------------------------------------- /lib/Henzell/TemplateExpander.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/TemplateExpander.pm -------------------------------------------------------------------------------- /lib/Henzell/UserCommandDb.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/UserCommandDb.pm -------------------------------------------------------------------------------- /lib/Henzell/Utils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Henzell/Utils.pm -------------------------------------------------------------------------------- /lib/LearnDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/LearnDB.pm -------------------------------------------------------------------------------- /lib/LearnDB/Cmd.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/LearnDB/Cmd.pm -------------------------------------------------------------------------------- /lib/LearnDB/Entry.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/LearnDB/Entry.pm -------------------------------------------------------------------------------- /lib/LearnDB/MaybeEntry.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/LearnDB/MaybeEntry.pm -------------------------------------------------------------------------------- /lib/Seen.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/lib/Seen.pm -------------------------------------------------------------------------------- /rc/sequell.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/rc/sequell.defaults -------------------------------------------------------------------------------- /rc/sequell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/rc/sequell.rc -------------------------------------------------------------------------------- /scripts/acl-perm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/acl-perm.pl -------------------------------------------------------------------------------- /scripts/install-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/install-libs -------------------------------------------------------------------------------- /scripts/install-perl-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/install-perl-modules -------------------------------------------------------------------------------- /scripts/ldb-similar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/ldb-similar -------------------------------------------------------------------------------- /scripts/lock-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/lock-db -------------------------------------------------------------------------------- /scripts/runcmd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/runcmd.pl -------------------------------------------------------------------------------- /scripts/schema-gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/schema-gen.pl -------------------------------------------------------------------------------- /scripts/test-henzell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/test-henzell.pl -------------------------------------------------------------------------------- /scripts/update-crawl-source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/scripts/update-crawl-source -------------------------------------------------------------------------------- /sequell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/sequell.pl -------------------------------------------------------------------------------- /server-xlogs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/http/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/services/http/Gemfile -------------------------------------------------------------------------------- /services/http/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/services/http/Gemfile.lock -------------------------------------------------------------------------------- /services/http/config.ru: -------------------------------------------------------------------------------- 1 | # -p 29880 2 | 3 | require_relative './http_service.rb' 4 | run Sinatra::Application -------------------------------------------------------------------------------- /services/http/http_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/services/http/http_service.rb -------------------------------------------------------------------------------- /spec/formatter/duration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/formatter/duration_spec.rb -------------------------------------------------------------------------------- /spec/keyword_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/keyword_spec.rb -------------------------------------------------------------------------------- /spec/learndb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/learndb_spec.rb -------------------------------------------------------------------------------- /spec/lg_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/lg_spec.rb -------------------------------------------------------------------------------- /spec/nick/entry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/nick/entry_spec.rb -------------------------------------------------------------------------------- /spec/parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/parse_spec.rb -------------------------------------------------------------------------------- /spec/query/ast/value_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/query/ast/value_spec.rb -------------------------------------------------------------------------------- /spec/query/listgame_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/query/listgame_parser_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/sql/sql_connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/sql/sql_connection_spec.rb -------------------------------------------------------------------------------- /spec/sql/type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/sql/type_spec.rb -------------------------------------------------------------------------------- /spec/sql/version_number_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/sql/version_number_spec.rb -------------------------------------------------------------------------------- /spec/tpl/cmdline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/cmdline_spec.rb -------------------------------------------------------------------------------- /spec/tpl/fn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/fn_spec.rb -------------------------------------------------------------------------------- /spec/tpl/function_def_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/function_def_spec.rb -------------------------------------------------------------------------------- /spec/tpl/ldb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/ldb_spec.rb -------------------------------------------------------------------------------- /spec/tpl/lg_parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/lg_parse_spec.rb -------------------------------------------------------------------------------- /spec/tpl/re_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl/re_spec.rb -------------------------------------------------------------------------------- /spec/tpl_parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/spec/tpl_parse_spec.rb -------------------------------------------------------------------------------- /src/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Helper.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/Helper.pm -------------------------------------------------------------------------------- /src/MessageDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/MessageDB.pm -------------------------------------------------------------------------------- /src/cmd/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/command.rb -------------------------------------------------------------------------------- /src/cmd/executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/executor.rb -------------------------------------------------------------------------------- /src/cmd/option_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/option_parser.rb -------------------------------------------------------------------------------- /src/cmd/user_command_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/user_command_db.rb -------------------------------------------------------------------------------- /src/cmd/user_def.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/user_def.rb -------------------------------------------------------------------------------- /src/cmd/user_defined_command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/user_defined_command.rb -------------------------------------------------------------------------------- /src/cmd/user_function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/user_function.rb -------------------------------------------------------------------------------- /src/cmd/user_keyword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/cmd/user_keyword.rb -------------------------------------------------------------------------------- /src/command_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/command_context.rb -------------------------------------------------------------------------------- /src/crawl/branch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/branch.rb -------------------------------------------------------------------------------- /src/crawl/branch_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/branch_set.rb -------------------------------------------------------------------------------- /src/crawl/combo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/combo.rb -------------------------------------------------------------------------------- /src/crawl/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/config.rb -------------------------------------------------------------------------------- /src/crawl/gods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/gods.rb -------------------------------------------------------------------------------- /src/crawl/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/job.rb -------------------------------------------------------------------------------- /src/crawl/milestone_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/milestone_type.rb -------------------------------------------------------------------------------- /src/crawl/playable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/playable.rb -------------------------------------------------------------------------------- /src/crawl/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/source.rb -------------------------------------------------------------------------------- /src/crawl/source_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/source_reader.rb -------------------------------------------------------------------------------- /src/crawl/species.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/crawl/species.rb -------------------------------------------------------------------------------- /src/db/sqlite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/db/sqlite.rb -------------------------------------------------------------------------------- /src/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/env.rb -------------------------------------------------------------------------------- /src/formatter/duration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/duration.rb -------------------------------------------------------------------------------- /src/formatter/extra_field_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/extra_field_extractor.rb -------------------------------------------------------------------------------- /src/formatter/game_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/game_json.rb -------------------------------------------------------------------------------- /src/formatter/game_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/game_text.rb -------------------------------------------------------------------------------- /src/formatter/graph_json_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/graph_json_summary.rb -------------------------------------------------------------------------------- /src/formatter/graph_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/graph_summary.rb -------------------------------------------------------------------------------- /src/formatter/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/json.rb -------------------------------------------------------------------------------- /src/formatter/json_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/json_summary.rb -------------------------------------------------------------------------------- /src/formatter/summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/summary.rb -------------------------------------------------------------------------------- /src/formatter/text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/text.rb -------------------------------------------------------------------------------- /src/formatter/text_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/text_summary.rb -------------------------------------------------------------------------------- /src/formatter/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/formatter/util.rb -------------------------------------------------------------------------------- /src/game_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/game_context.rb -------------------------------------------------------------------------------- /src/game_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/game_formatter.rb -------------------------------------------------------------------------------- /src/grammar/atom.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/atom.rb -------------------------------------------------------------------------------- /src/grammar/command_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/command_line.rb -------------------------------------------------------------------------------- /src/grammar/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/config.rb -------------------------------------------------------------------------------- /src/grammar/keyword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/keyword.rb -------------------------------------------------------------------------------- /src/grammar/nick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/nick.rb -------------------------------------------------------------------------------- /src/grammar/query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/query.rb -------------------------------------------------------------------------------- /src/grammar/query_body.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/query_body.rb -------------------------------------------------------------------------------- /src/grammar/query_result_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/query_result_filter.rb -------------------------------------------------------------------------------- /src/grammar/query_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/query_term.rb -------------------------------------------------------------------------------- /src/grammar/query_transform.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/query_transform.rb -------------------------------------------------------------------------------- /src/grammar/sql_expr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/grammar/sql_expr.rb -------------------------------------------------------------------------------- /src/graph/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/graph/errors.rb -------------------------------------------------------------------------------- /src/graph/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/graph/file.rb -------------------------------------------------------------------------------- /src/graph/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/graph/template.rb -------------------------------------------------------------------------------- /src/graph/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/graph/url.rb -------------------------------------------------------------------------------- /src/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/helper.rb -------------------------------------------------------------------------------- /src/henzell/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/commands.rb -------------------------------------------------------------------------------- /src/henzell/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/config.rb -------------------------------------------------------------------------------- /src/henzell/config_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/config_file.rb -------------------------------------------------------------------------------- /src/henzell/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/env.rb -------------------------------------------------------------------------------- /src/henzell/learndb_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/learndb_query.rb -------------------------------------------------------------------------------- /src/henzell/morgue_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/morgue_resolver.rb -------------------------------------------------------------------------------- /src/henzell/server/morgue_binary_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/server/morgue_binary_search.rb -------------------------------------------------------------------------------- /src/henzell/server/morgue_filename.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/server/morgue_filename.rb -------------------------------------------------------------------------------- /src/henzell/server/morgue_path.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/server/morgue_path.rb -------------------------------------------------------------------------------- /src/henzell/server/morgue_predicate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/server/morgue_predicate.rb -------------------------------------------------------------------------------- /src/henzell/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/source.rb -------------------------------------------------------------------------------- /src/henzell/sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/sources.rb -------------------------------------------------------------------------------- /src/henzell/ttyrec_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell/ttyrec_search.rb -------------------------------------------------------------------------------- /src/henzell_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/henzell_config.rb -------------------------------------------------------------------------------- /src/httplist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/httplist.rb -------------------------------------------------------------------------------- /src/irc_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/irc_auth.rb -------------------------------------------------------------------------------- /src/irc_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/irc_color.rb -------------------------------------------------------------------------------- /src/json_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/json_serializer.rb -------------------------------------------------------------------------------- /src/learndb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/learndb.rb -------------------------------------------------------------------------------- /src/learndb_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/learndb_query.rb -------------------------------------------------------------------------------- /src/lgparse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/lgparse.rb -------------------------------------------------------------------------------- /src/libtv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/libtv.rb -------------------------------------------------------------------------------- /src/nick/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/nick/db.rb -------------------------------------------------------------------------------- /src/nick/entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/nick/entry.rb -------------------------------------------------------------------------------- /src/pcache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/pcache.rb -------------------------------------------------------------------------------- /src/query/ast/ast_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ast_builder.rb -------------------------------------------------------------------------------- /src/query/ast/ast_fixup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ast_fixup.rb -------------------------------------------------------------------------------- /src/query/ast/ast_query_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ast_query_builder.rb -------------------------------------------------------------------------------- /src/query/ast/ast_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ast_translator.rb -------------------------------------------------------------------------------- /src/query/ast/ast_walker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ast_walker.rb -------------------------------------------------------------------------------- /src/query/ast/expr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/expr.rb -------------------------------------------------------------------------------- /src/query/ast/extra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/extra.rb -------------------------------------------------------------------------------- /src/query/ast/extra_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/extra_list.rb -------------------------------------------------------------------------------- /src/query/ast/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/field.rb -------------------------------------------------------------------------------- /src/query/ast/filter_expr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/filter_expr.rb -------------------------------------------------------------------------------- /src/query/ast/filter_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/filter_term.rb -------------------------------------------------------------------------------- /src/query/ast/filter_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/filter_value.rb -------------------------------------------------------------------------------- /src/query/ast/funcall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/funcall.rb -------------------------------------------------------------------------------- /src/query/ast/group_order_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/group_order_list.rb -------------------------------------------------------------------------------- /src/query/ast/group_order_term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/group_order_term.rb -------------------------------------------------------------------------------- /src/query/ast/keyed_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/keyed_option.rb -------------------------------------------------------------------------------- /src/query/ast/keyed_option_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/keyed_option_list.rb -------------------------------------------------------------------------------- /src/query/ast/keyword.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/keyword.rb -------------------------------------------------------------------------------- /src/query/ast/modifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/modifier.rb -------------------------------------------------------------------------------- /src/query/ast/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/option.rb -------------------------------------------------------------------------------- /src/query/ast/option_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/option_builder.rb -------------------------------------------------------------------------------- /src/query/ast/ordered_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/ordered_list.rb -------------------------------------------------------------------------------- /src/query/ast/query_ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/query_ast.rb -------------------------------------------------------------------------------- /src/query/ast/summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/summary.rb -------------------------------------------------------------------------------- /src/query/ast/summary_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/summary_list.rb -------------------------------------------------------------------------------- /src/query/ast/term.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/term.rb -------------------------------------------------------------------------------- /src/query/ast/tv_option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/tv_option.rb -------------------------------------------------------------------------------- /src/query/ast/value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ast/value.rb -------------------------------------------------------------------------------- /src/query/compound_keyword_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/compound_keyword_parser.rb -------------------------------------------------------------------------------- /src/query/game_type_extractor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/game_type_extractor.rb -------------------------------------------------------------------------------- /src/query/grammar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/grammar.rb -------------------------------------------------------------------------------- /src/query/has_expression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/has_expression.rb -------------------------------------------------------------------------------- /src/query/keyword_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/keyword_defs.rb -------------------------------------------------------------------------------- /src/query/keyword_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/keyword_matcher.rb -------------------------------------------------------------------------------- /src/query/lg_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/lg_query.rb -------------------------------------------------------------------------------- /src/query/listgame_arglist_combine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/listgame_arglist_combine.rb -------------------------------------------------------------------------------- /src/query/listgame_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/listgame_parser.rb -------------------------------------------------------------------------------- /src/query/listgame_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/listgame_query.rb -------------------------------------------------------------------------------- /src/query/nick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/nick.rb -------------------------------------------------------------------------------- /src/query/nick_expr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/nick_expr.rb -------------------------------------------------------------------------------- /src/query/nick_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/nick_resolver.rb -------------------------------------------------------------------------------- /src/query/operator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/operator.rb -------------------------------------------------------------------------------- /src/query/operator_separator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/operator_separator.rb -------------------------------------------------------------------------------- /src/query/operator_type_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/operator_type_map.rb -------------------------------------------------------------------------------- /src/query/operators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/operators.rb -------------------------------------------------------------------------------- /src/query/option_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/option_executor.rb -------------------------------------------------------------------------------- /src/query/query_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_executor.rb -------------------------------------------------------------------------------- /src/query/query_keyword_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_keyword_parser.rb -------------------------------------------------------------------------------- /src/query/query_list_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_list_builder.rb -------------------------------------------------------------------------------- /src/query/query_node_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_node_translator.rb -------------------------------------------------------------------------------- /src/query/query_param_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_param_parser.rb -------------------------------------------------------------------------------- /src/query/query_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_parser.rb -------------------------------------------------------------------------------- /src/query/query_splitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_splitter.rb -------------------------------------------------------------------------------- /src/query/query_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_string.rb -------------------------------------------------------------------------------- /src/query/query_string_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_string_template.rb -------------------------------------------------------------------------------- /src/query/query_struct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_struct.rb -------------------------------------------------------------------------------- /src/query/query_template_properties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/query_template_properties.rb -------------------------------------------------------------------------------- /src/query/ratio_query_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/ratio_query_filter.rb -------------------------------------------------------------------------------- /src/query/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/sort.rb -------------------------------------------------------------------------------- /src/query/sort_field_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/sort_field_parser.rb -------------------------------------------------------------------------------- /src/query/summary_graph_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/summary_graph_builder.rb -------------------------------------------------------------------------------- /src/query/termlike.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/termlike.rb -------------------------------------------------------------------------------- /src/query/text_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query/text_template.rb -------------------------------------------------------------------------------- /src/query/tpl/parser.rb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/query_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query_config.rb -------------------------------------------------------------------------------- /src/query_executors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/query_executors.rb -------------------------------------------------------------------------------- /src/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/response.rb -------------------------------------------------------------------------------- /src/services/crawl_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/services/crawl_build.rb -------------------------------------------------------------------------------- /src/services/learndb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/services/learndb.rb -------------------------------------------------------------------------------- /src/services/listgame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/services/listgame.rb -------------------------------------------------------------------------------- /src/services/throttle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/services/throttle.rb -------------------------------------------------------------------------------- /src/services/update_sequell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/services/update_sequell.rb -------------------------------------------------------------------------------- /src/slave_process.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/slave_process.rb -------------------------------------------------------------------------------- /src/sql/aggregate_expression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/aggregate_expression.rb -------------------------------------------------------------------------------- /src/sql/column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/column.rb -------------------------------------------------------------------------------- /src/sql/column_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/column_list.rb -------------------------------------------------------------------------------- /src/sql/column_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/column_resolver.rb -------------------------------------------------------------------------------- /src/sql/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/config.rb -------------------------------------------------------------------------------- /src/sql/crawl_query.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/crawl_query.rb -------------------------------------------------------------------------------- /src/sql/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/date.rb -------------------------------------------------------------------------------- /src/sql/duration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/duration.rb -------------------------------------------------------------------------------- /src/sql/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/errors.rb -------------------------------------------------------------------------------- /src/sql/field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/field.rb -------------------------------------------------------------------------------- /src/sql/field_expr_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/field_expr_parser.rb -------------------------------------------------------------------------------- /src/sql/field_predicates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/field_predicates.rb -------------------------------------------------------------------------------- /src/sql/field_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/field_resolver.rb -------------------------------------------------------------------------------- /src/sql/field_value_transformer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/field_value_transformer.rb -------------------------------------------------------------------------------- /src/sql/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/function.rb -------------------------------------------------------------------------------- /src/sql/function_def.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/function_def.rb -------------------------------------------------------------------------------- /src/sql/function_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/function_defs.rb -------------------------------------------------------------------------------- /src/sql/function_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/function_type.rb -------------------------------------------------------------------------------- /src/sql/join.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/join.rb -------------------------------------------------------------------------------- /src/sql/lookup_table_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/lookup_table_config.rb -------------------------------------------------------------------------------- /src/sql/lookup_table_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/lookup_table_registry.rb -------------------------------------------------------------------------------- /src/sql/predicate_translator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/predicate_translator.rb -------------------------------------------------------------------------------- /src/sql/query_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_context.rb -------------------------------------------------------------------------------- /src/sql/query_group_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_group_filter.rb -------------------------------------------------------------------------------- /src/sql/query_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_list.rb -------------------------------------------------------------------------------- /src/sql/query_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_result.rb -------------------------------------------------------------------------------- /src/sql/query_sort_condition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_sort_condition.rb -------------------------------------------------------------------------------- /src/sql/query_sort_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_sort_field.rb -------------------------------------------------------------------------------- /src/sql/query_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_table.rb -------------------------------------------------------------------------------- /src/sql/query_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/query_tables.rb -------------------------------------------------------------------------------- /src/sql/result_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/result_set.rb -------------------------------------------------------------------------------- /src/sql/summary_field_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/summary_field_list.rb -------------------------------------------------------------------------------- /src/sql/summary_group_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/summary_group_formatter.rb -------------------------------------------------------------------------------- /src/sql/summary_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/summary_reporter.rb -------------------------------------------------------------------------------- /src/sql/summary_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/summary_row.rb -------------------------------------------------------------------------------- /src/sql/summary_row_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/summary_row_group.rb -------------------------------------------------------------------------------- /src/sql/timestamp_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/timestamp_format.rb -------------------------------------------------------------------------------- /src/sql/type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/type.rb -------------------------------------------------------------------------------- /src/sql/type_predicates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/type_predicates.rb -------------------------------------------------------------------------------- /src/sql/value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/value.rb -------------------------------------------------------------------------------- /src/sql/version_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql/version_number.rb -------------------------------------------------------------------------------- /src/sql_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sql_connection.rb -------------------------------------------------------------------------------- /src/sqlhelper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sqlhelper.rb -------------------------------------------------------------------------------- /src/sqlop/tv_view_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/sqlop/tv_view_count.rb -------------------------------------------------------------------------------- /src/string_fixup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/string_fixup.rb -------------------------------------------------------------------------------- /src/termcast_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/termcast_config.rb -------------------------------------------------------------------------------- /src/tourney.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tourney.rb -------------------------------------------------------------------------------- /src/tpl/binding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/binding.rb -------------------------------------------------------------------------------- /src/tpl/fragment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/fragment.rb -------------------------------------------------------------------------------- /src/tpl/funcall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/funcall.rb -------------------------------------------------------------------------------- /src/tpl/function.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/function.rb -------------------------------------------------------------------------------- /src/tpl/function_def.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/function_def.rb -------------------------------------------------------------------------------- /src/tpl/function_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/function_defs.rb -------------------------------------------------------------------------------- /src/tpl/function_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/function_executor.rb -------------------------------------------------------------------------------- /src/tpl/gsub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/gsub.rb -------------------------------------------------------------------------------- /src/tpl/learndb_fn_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/learndb_fn_defs.rb -------------------------------------------------------------------------------- /src/tpl/let_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/let_form.rb -------------------------------------------------------------------------------- /src/tpl/lg_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/lg_defs.rb -------------------------------------------------------------------------------- /src/tpl/lookup_fragment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/lookup_fragment.rb -------------------------------------------------------------------------------- /src/tpl/parser_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/parser_defs.rb -------------------------------------------------------------------------------- /src/tpl/re_fn_defs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/re_fn_defs.rb -------------------------------------------------------------------------------- /src/tpl/scope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/scope.rb -------------------------------------------------------------------------------- /src/tpl/subcommand.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/subcommand.rb -------------------------------------------------------------------------------- /src/tpl/substitution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/substitution.rb -------------------------------------------------------------------------------- /src/tpl/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/template.rb -------------------------------------------------------------------------------- /src/tpl/template_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/template_builder.rb -------------------------------------------------------------------------------- /src/tpl/template_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/template_parser.rb -------------------------------------------------------------------------------- /src/tpl/text_fragment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/text_fragment.rb -------------------------------------------------------------------------------- /src/tpl/tplike.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tpl/tplike.rb -------------------------------------------------------------------------------- /src/tv/channel_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tv/channel_manager.rb -------------------------------------------------------------------------------- /src/tv/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/src/tv/command.rb -------------------------------------------------------------------------------- /t/Henzell-ACL-Groups.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-ACL-Groups.t -------------------------------------------------------------------------------- /t/Henzell-ACL-Rule.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-ACL-Rule.t -------------------------------------------------------------------------------- /t/Henzell-ApproxTextMatch.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-ApproxTextMatch.t -------------------------------------------------------------------------------- /t/Henzell-FSLearnDB.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-FSLearnDB.t -------------------------------------------------------------------------------- /t/Henzell-IRCMatcher.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-IRCMatcher.t -------------------------------------------------------------------------------- /t/Henzell-RelayCommandLine.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-RelayCommandLine.t -------------------------------------------------------------------------------- /t/Henzell-SQLLearnDB.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-SQLLearnDB.t -------------------------------------------------------------------------------- /t/Henzell-SQLite.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/Henzell-SQLite.t -------------------------------------------------------------------------------- /t/learndb.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/t/learndb.t -------------------------------------------------------------------------------- /tests/data/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/test.remote.cszo-logfile-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/data/test.remote.cszo-logfile-any -------------------------------------------------------------------------------- /tests/data/test.remote.cszo-milestones-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/data/test.remote.cszo-milestones-any -------------------------------------------------------------------------------- /tests/data/test.remote.cxc-logfile-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/data/test.remote.cxc-logfile-any -------------------------------------------------------------------------------- /tests/data/test.remote.cxc-milestones-any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/data/test.remote.cxc-milestones-any -------------------------------------------------------------------------------- /tests/lg_parsetest.txt: -------------------------------------------------------------------------------- 1 | !lg * ${int}>${dex+str} 2 | -------------------------------------------------------------------------------- /tests/test-words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/test-words -------------------------------------------------------------------------------- /tests/testcmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tests/testcmd.txt -------------------------------------------------------------------------------- /tpl/graph.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/tpl/graph.html.haml -------------------------------------------------------------------------------- /utils/mysql2pgsql.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/utils/mysql2pgsql.perl -------------------------------------------------------------------------------- /utils/tv-cleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/utils/tv-cleanup.sql -------------------------------------------------------------------------------- /utils/tv-export.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/utils/tv-export.sql -------------------------------------------------------------------------------- /utils/tv-import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/utils/tv-import.sql -------------------------------------------------------------------------------- /utils/tvdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/utils/tvdump -------------------------------------------------------------------------------- /web/learndb-html.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/web/learndb-html.pl -------------------------------------------------------------------------------- /web/learndb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/web/learndb.css -------------------------------------------------------------------------------- /web/user-commands-html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/web/user-commands-html.rb -------------------------------------------------------------------------------- /web/user-defined.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/web/user-defined.html.haml -------------------------------------------------------------------------------- /web/userdef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawl/sequell/HEAD/web/userdef.css -------------------------------------------------------------------------------- /www/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/learndb.css: -------------------------------------------------------------------------------- 1 | ../web/learndb.css -------------------------------------------------------------------------------- /www/userdef.css: -------------------------------------------------------------------------------- 1 | ../web/userdef.css --------------------------------------------------------------------------------