├── .gitignore ├── vendor ├── gopkg.in │ └── olivere │ │ └── elastic.v5 │ │ ├── etc │ │ ├── scripts │ │ │ └── .gitkeep │ │ ├── ingest-geoip │ │ │ └── .gitkeep │ │ └── elasticsearch.yml │ │ ├── config │ │ └── doc.go │ │ ├── uritemplates │ │ └── utils.go │ │ ├── logger.go │ │ ├── run-es.sh │ │ ├── cluster-test │ │ └── Makefile │ │ ├── acknowledged_response.go │ │ ├── bulk_request.go │ │ ├── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── suggester.go │ │ ├── query.go │ │ ├── .travis.yml │ │ ├── geo_point_test.go │ │ ├── indices_open_test.go │ │ ├── delete_template_test.go │ │ ├── indices_delete_test.go │ │ ├── indices_exists_test.go │ │ ├── search_queries_exists_test.go │ │ ├── search_queries_type_test.go │ │ └── search_queries_slice_test.go ├── github.com │ ├── google │ │ └── go-querystring │ │ │ └── .gitignore │ ├── dghubble │ │ ├── go-twitter │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── twitter │ │ │ │ ├── entities_test.go │ │ │ │ └── backoffs.go │ │ │ └── test │ │ ├── sling │ │ │ ├── .travis.yml │ │ │ ├── test │ │ │ └── examples │ │ │ │ └── README.md │ │ └── oauth1 │ │ │ ├── .travis.yml │ │ │ ├── endpoint.go │ │ │ ├── tumblr │ │ │ └── tumblr.go │ │ │ ├── dropbox │ │ │ └── dropbox.go │ │ │ ├── test │ │ │ ├── context_test.go │ │ │ ├── context.go │ │ │ └── encode_test.go │ ├── minio │ │ └── cli │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── altsrc │ │ │ ├── altsrc.go │ │ │ ├── helpers_test.go │ │ │ └── input_source_context.go │ │ │ ├── autocomplete │ │ │ ├── zsh_autocomplete │ │ │ └── bash_autocomplete │ │ │ ├── helpers_unix_test.go │ │ │ ├── helpers_windows_test.go │ │ │ ├── appveyor.yml │ │ │ ├── .travis.yml │ │ │ ├── helpers_test.go │ │ │ └── cli.go │ ├── BurntSushi │ │ └── toml │ │ │ ├── _examples │ │ │ ├── readme2.toml │ │ │ ├── implicit.toml │ │ │ ├── invalid-apples.toml │ │ │ └── readme1.toml │ │ │ ├── session.vim │ │ │ ├── .gitignore │ │ │ ├── COMPATIBLE │ │ │ ├── .travis.yml │ │ │ ├── Makefile │ │ │ ├── COPYING │ │ │ ├── cmd │ │ │ ├── tomlv │ │ │ │ ├── COPYING │ │ │ │ └── README.md │ │ │ ├── toml-test-decoder │ │ │ │ ├── COPYING │ │ │ │ └── README.md │ │ │ └── toml-test-encoder │ │ │ │ ├── COPYING │ │ │ │ └── README.md │ │ │ ├── encoding_types_1.1.go │ │ │ └── encoding_types.go │ ├── kr │ │ ├── pretty │ │ │ ├── .gitignore │ │ │ ├── Readme │ │ │ └── example_test.go │ │ └── text │ │ │ ├── doc.go │ │ │ ├── Readme │ │ │ ├── colwriter │ │ │ └── Readme │ │ │ └── mc │ │ │ └── Readme │ ├── dutchcoders │ │ └── marija-web │ │ │ ├── .env.sample │ │ │ ├── .jshintrc │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── app │ │ │ │ ├── modules │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── actions.js │ │ │ │ │ ├── import │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── actions.js │ │ │ │ │ ├── servers │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── actions.js │ │ │ │ │ ├── status │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── ErrorStatus.js │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── Field.js │ │ │ │ │ │ └── actions.js │ │ │ │ │ ├── indices │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── constants.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── constants.js │ │ │ │ │ └── data │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── constants.js │ │ │ │ ├── config.js │ │ │ │ ├── domain │ │ │ │ │ └── index.js │ │ │ │ ├── helpers │ │ │ │ │ ├── generateColour.js │ │ │ │ │ ├── intToRgb.js │ │ │ │ │ ├── hash.js │ │ │ │ │ ├── filterSecondaryComponents.js │ │ │ │ │ ├── removeDeadLinks.js │ │ │ │ │ ├── exportJson.js │ │ │ │ │ ├── fieldLocator.js │ │ │ │ │ └── normalize.js │ │ │ │ ├── utils │ │ │ │ │ ├── constants.js │ │ │ │ │ └── index.js │ │ │ │ ├── reducers │ │ │ │ │ ├── index.js │ │ │ │ │ ├── batch.js │ │ │ │ │ └── servers.js │ │ │ │ └── components │ │ │ │ │ └── Misc │ │ │ │ │ ├── Icon.js │ │ │ │ │ ├── Websocket.js │ │ │ │ │ └── Loader.js │ │ │ ├── scss │ │ │ │ ├── node.scss │ │ │ │ ├── nav.scss │ │ │ │ ├── variables.scss │ │ │ │ └── rc-tooltip.scss │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ ├── favicon.png │ │ │ │ └── search-icon.png │ │ │ └── index.html │ │ │ ├── run.sh │ │ │ ├── bindata.go │ │ │ ├── deploy.sh │ │ │ ├── webpack-build.config.js │ │ │ ├── jest.config.json │ │ │ ├── .babelrc │ │ │ └── README.md │ ├── mailru │ │ └── easyjson │ │ │ ├── .gitignore │ │ │ ├── tests │ │ │ ├── nothing.go │ │ │ ├── snake.go │ │ │ ├── omitempty.go │ │ │ ├── errors.go │ │ │ ├── nested_easy.go │ │ │ └── named_type.go │ │ │ ├── .travis.yml │ │ │ ├── benchmark │ │ │ ├── dummy_test.go │ │ │ └── ujson.sh │ │ │ └── jlexer │ │ │ ├── error.go │ │ │ └── bytestostr_nounsafe.go │ ├── fatih │ │ └── color │ │ │ └── .travis.yml │ ├── mattn │ │ ├── go-isatty │ │ │ ├── doc.go │ │ │ ├── .travis.yml │ │ │ ├── isatty_others.go │ │ │ ├── isatty_others_test.go │ │ │ ├── example_test.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_appengine.go │ │ │ ├── isatty_bsd.go │ │ │ └── isatty_linux_ppc64x.go │ │ └── go-colorable │ │ │ ├── .travis.yml │ │ │ ├── _example │ │ │ ├── title │ │ │ │ └── main.go │ │ │ ├── escape-seq │ │ │ │ └── main.go │ │ │ └── logrus │ │ │ │ └── main.go │ │ │ ├── colorable_appengine.go │ │ │ └── colorable_others.go │ ├── op │ │ └── go-logging │ │ │ ├── .travis.yml │ │ │ ├── examples │ │ │ └── example.png │ │ │ └── CONTRIBUTORS │ ├── pkg │ │ └── errors │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ └── appveyor.yml │ ├── gorilla │ │ └── websocket │ │ │ ├── AUTHORS │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── examples │ │ │ ├── autobahn │ │ │ │ ├── README.md │ │ │ │ └── fuzzingclient.json │ │ │ ├── filewatch │ │ │ │ └── README.md │ │ │ ├── echo │ │ │ │ └── README.md │ │ │ └── command │ │ │ │ └── README.md │ │ │ ├── mask_safe.go │ │ │ ├── client_clone.go │ │ │ ├── conn_read.go │ │ │ └── conn_read_legacy.go │ ├── cenkalti │ │ └── backoff │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── context_test.go │ │ │ └── backoff_test.go │ ├── gernest │ │ └── mention │ │ │ ├── .travis.yml │ │ │ └── examples_test.go │ ├── qedus │ │ └── blockchain │ │ │ └── .gitignore │ ├── patrickmn │ │ └── go-cache │ │ │ └── CONTRIBUTORS │ ├── satori │ │ └── go.uuid │ │ │ └── .travis.yml │ └── elazarl │ │ └── go-bindata-assetfs │ │ └── doc.go └── golang.org │ └── x │ ├── net │ ├── codereview.cfg │ ├── http2 │ │ ├── .gitignore │ │ ├── h2demo │ │ │ ├── rootCA.srl │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── README │ │ ├── Makefile │ │ ├── not_go19.go │ │ ├── go16.go │ │ ├── go19.go │ │ ├── not_go16.go │ │ ├── errors_test.go │ │ ├── README │ │ └── not_go18.go │ ├── .gitignore │ ├── html │ │ ├── charset │ │ │ └── testdata │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ └── README │ │ └── testdata │ │ │ └── webkit │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ ├── scripted │ │ │ ├── adoption01.dat │ │ │ └── webkit01.dat │ │ │ ├── adoption02.dat │ │ │ ├── inbody01.dat │ │ │ └── isindex.dat │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── http │ │ └── httpproxy │ │ │ ├── export_test.go │ │ │ └── go19_test.go │ ├── internal │ │ ├── socket │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── iovec_stub.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── sys_bsd.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── msghdr_stub.go │ │ │ ├── error_windows.go │ │ │ ├── rawconn_stub.go │ │ │ └── sys.go │ │ └── nettest │ │ │ ├── helper_nobsd.go │ │ │ ├── rlimit.go │ │ │ ├── helper_stub.go │ │ │ └── helper_unix.go │ ├── lif │ │ ├── sys_solaris_amd64.s │ │ ├── sys.go │ │ └── syscall.go │ ├── icmp │ │ ├── sys_freebsd.go │ │ └── ipv6.go │ ├── bpf │ │ ├── setter.go │ │ └── testdata │ │ │ └── all_instructions.bpf │ ├── webdav │ │ ├── file_go1.7.go │ │ ├── file_go1.6.go │ │ └── internal │ │ │ └── xml │ │ │ └── README │ ├── ipv4 │ │ ├── sys_stub.go │ │ ├── sys_bpf_stub.go │ │ ├── control_windows.go │ │ ├── control_stub.go │ │ ├── icmp_stub.go │ │ ├── control_test.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_ssmreq_stub.go │ │ ├── icmp_linux.go │ │ ├── sys_bpf.go │ │ ├── payload.go │ │ ├── sys_asmreq_stub.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_dragonfly.go │ ├── ipv6 │ │ ├── sys_stub.go │ │ ├── sys_bpf_stub.go │ │ ├── control_windows.go │ │ ├── control_stub.go │ │ ├── sys_asmreq_stub.go │ │ ├── control_test.go │ │ ├── icmp_stub.go │ │ ├── sys_ssmreq_stub.go │ │ ├── icmp_windows.go │ │ ├── sys_bpf.go │ │ ├── payload.go │ │ ├── sys_asmreq.go │ │ ├── icmp_linux.go │ │ ├── mocktransponder_test.go │ │ ├── icmp_solaris.go │ │ └── icmp_bsd.go │ ├── .gitattributes │ ├── proxy │ │ └── direct.go │ ├── README.md │ ├── websocket │ │ ├── dial.go │ │ └── examplehandler_test.go │ ├── trace │ │ ├── trace_go17.go │ │ └── trace_go16.go │ └── context │ │ ├── go19.go │ │ └── ctxhttp │ │ └── ctxhttp_17_test.go │ └── sys │ ├── codereview.cfg │ ├── unix │ ├── .gitignore │ ├── endian_big.go │ ├── export_test.go │ ├── endian_little.go │ ├── constants.go │ ├── syscall_linux_amd64_gc.go │ ├── pagesize_unix.go │ ├── flock_linux_32bit.go │ ├── asm_solaris_amd64.s │ ├── gccgo_linux_amd64.go │ ├── race0.go │ ├── syscall_unix_gc.go │ ├── str.go │ ├── race.go │ ├── env_unix.go │ ├── flock.go │ ├── asm_freebsd_arm.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_arm.s │ ├── asm_darwin_386.s │ └── asm_freebsd_386.s │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── plan9 │ ├── asm.s │ ├── pwd_go15_plan9.go │ ├── pwd_plan9.go │ ├── race0.go │ ├── mksysnum_plan9.sh │ ├── str.go │ ├── env_plan9.go │ └── race.go │ ├── windows │ ├── svc │ │ ├── go12.go │ │ ├── example │ │ │ └── beep.go │ │ └── go12.c │ ├── registry │ │ ├── mksyscall.go │ │ └── export_test.go │ ├── mksyscall.go │ ├── asm_windows_386.s │ ├── asm_windows_amd64.s │ ├── race0.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── str.go │ ├── env_windows.go │ └── race.go │ ├── .gitattributes │ └── README.md ├── server ├── datasources │ ├── node.go │ ├── field.go │ ├── options.go │ ├── item.go │ ├── graph.go │ ├── censys │ │ └── api │ │ │ └── error.go │ ├── twitter │ │ └── twitter.go │ ├── index.go │ └── search_response.go ├── config.go ├── unique │ └── unique.go └── cache.go ├── main.go ├── config-docker.toml ├── .travis.yml ├── NOTICE ├── config.toml.sample └── Dockerfile /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | marija-server -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/etc/scripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/etc/ingest-geoip/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/dghubble/go-twitter/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /bin -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /server/datasources/node.go: -------------------------------------------------------------------------------- 1 | package datasources 2 | 3 | type Node = Graph 4 | -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/readme2.toml: -------------------------------------------------------------------------------- 1 | some_key_NAME = "wat" 2 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/.env.sample: -------------------------------------------------------------------------------- 1 | WEBSOCKET_URI=ws://demo.marija.io/ws -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | dist 3 | node_modules 4 | .env -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.6 4 | - tip 5 | 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/nothing.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | // No structs in this file 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.gitignore: -------------------------------------------------------------------------------- 1 | TAGS 2 | tags 3 | .*.swp 4 | tomlcheck/tomlcheck 5 | toml.test 6 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.0 5 | - 1.1 6 | - tip 7 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/batch/index.js: -------------------------------------------------------------------------------- 1 | export { batchActions } from './actions'; 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/scss/node.scss: -------------------------------------------------------------------------------- 1 | pane.nodes .description { 2 | font-style: italic; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/config.js: -------------------------------------------------------------------------------- 1 | export const i18n = { 2 | locales: ["en-US"], 3 | messages: {} 4 | }; 5 | -------------------------------------------------------------------------------- /server/datasources/field.go: -------------------------------------------------------------------------------- 1 | package datasources 2 | 3 | type Field struct { 4 | Path string `json:"path"` 5 | Type string `json:"type"` 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/implicit.toml: -------------------------------------------------------------------------------- 1 | # [x] you 2 | # [x.y] don't 3 | # [x.y.z] need these 4 | [x.y.z.w] # for this to work 5 | -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- 1 | // Package text provides rudimentary functions for manipulating text in 2 | // paragraphs. 3 | package text 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/invalid-apples.toml: -------------------------------------------------------------------------------- 1 | # DO NOT WANT 2 | [fruit] 3 | type = "apple" 4 | 5 | [fruit.type] 6 | apple = "yes" 7 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "github.com/dutchcoders/marija/cmd" 4 | 5 | func main() { 6 | app := cmd.New() 7 | app.RunAndExitOnError() 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/examples/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/github.com/op/go-logging/examples/example.png -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/import/constants.js: -------------------------------------------------------------------------------- 1 | export const IMPORT_DATA = 'IMPORT_DATA'; 2 | export const EXPORT_DATA = 'EXPORT_DATA'; -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/run.sh: -------------------------------------------------------------------------------- 1 | essw --port 8082 -path dist/ & 2 | 3 | webpack --watch --progress --colors --output-file dist/bundle.js 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/servers/constants.js: -------------------------------------------------------------------------------- 1 | export const SERVER_ADD = 'SERVER_ADD'; 2 | export const SERVER_REMOVE = 'SERVER_REMOVE'; -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/altsrc/altsrc.go: -------------------------------------------------------------------------------- 1 | package altsrc 2 | 3 | //go:generate python ../generate-flag-types altsrc -i ../flag-types.json -o flag_generated.go 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COMPATIBLE: -------------------------------------------------------------------------------- 1 | Compatible with TOML version 2 | [v0.4.0](https://github.com/toml-lang/toml/blob/v0.4.0/versions/en/toml-v0.4.0.md) 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- 1 | This is a Go package for manipulating paragraphs of text. 2 | 3 | See http://go.pkgdoc.org/github.com/kr/text for full documentation. 4 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/github.com/dutchcoders/marija-web/src/images/logo.png -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/bindata.go: -------------------------------------------------------------------------------- 1 | package web 2 | 3 | //go:generate go-bindata -pkg web -o bindata_gen.go -ignore \.map\$ dist/... 4 | 5 | var Prefix = "dist" 6 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/import/index.js: -------------------------------------------------------------------------------- 1 | export { IMPORT_DATA, EXPORT_DATA } from './constants'; 2 | export { importData, exportData } from './actions'; -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/servers/index.js: -------------------------------------------------------------------------------- 1 | export { SERVER_ADD, SERVER_REMOVE} from './constants' 2 | export { serverAdd, serverRemove } from './actions' -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/github.com/dutchcoders/marija-web/src/images/favicon.png -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/readme1.toml: -------------------------------------------------------------------------------- 1 | Age = 25 2 | Cats = [ "Cauchy", "Plato" ] 3 | Pi = 3.14 4 | Perfection = [ 6, 28, 496, 8128 ] 5 | DOB = 1987-07-05T05:45:00Z 6 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dutchcoders/marija/HEAD/vendor/github.com/dutchcoders/marija-web/src/images/search-icon.png -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/status/index.js: -------------------------------------------------------------------------------- 1 | export { default as ErrorStatus } from './ErrorStatus'; 2 | export { default as ConnectionStatus} from './ConnectionStatus'; 3 | -------------------------------------------------------------------------------- /config-docker.toml: -------------------------------------------------------------------------------- 1 | [datasource] 2 | 3 | [datasource.elasticsearch] 4 | type="elasticsearch" 5 | url="http://127.0.0.1:9200/test" 6 | 7 | [[logging]] 8 | output = "stdout" 9 | level = "debug" 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | env: 4 | - GIMME_OS=linux GIMME_ARCH=amd64 5 | 6 | go: 7 | - master 8 | 9 | install: 10 | - go get -d -v ./... 11 | 12 | script: 13 | - go build -v ./... 14 | -------------------------------------------------------------------------------- /vendor/github.com/dghubble/sling/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.6 4 | - 1.7 5 | - tip 6 | install: 7 | - go get github.com/golang/lint/golint 8 | - go get -v -t . 9 | script: 10 | - ./test -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- 1 | autoload -U compinit && compinit 2 | autoload -U bashcompinit && bashcompinit 3 | 4 | script_dir=$(dirname $0) 5 | source ${script_dir}/bash_autocomplete 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/helpers_unix_test.go: -------------------------------------------------------------------------------- 1 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 2 | 3 | package cli 4 | 5 | import "os" 6 | 7 | func clearenv() { 8 | os.Clearenv() 9 | } 10 | -------------------------------------------------------------------------------- /server/datasources/options.go: -------------------------------------------------------------------------------- 1 | package datasources 2 | 3 | type SearchOptions struct { 4 | Size int 5 | From int 6 | Query string 7 | 8 | AdvancedQueries []AdvancedQuery 9 | Fields []string 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/domain/index.js: -------------------------------------------------------------------------------- 1 | export { default as Fields } from './Fields' 2 | export { default as Workspaces } from './Workspaces' 3 | export { default as Migrations } from './Migrations' 4 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/fields/constants.js: -------------------------------------------------------------------------------- 1 | export const FIELDS_REQUEST = 'FIELDS_REQUEST'; 2 | export const FIELDS_RECEIVE = 'FIELDS_RECEIVE'; 3 | export const FIELDS_CLEAR = 'FIELDS_CLEAR '; -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.3 5 | - 1.5.4 6 | - 1.6.2 7 | - 1.7.1 8 | - tip 9 | 10 | script: 11 | - go test -v ./... 12 | -------------------------------------------------------------------------------- /server/datasources/item.go: -------------------------------------------------------------------------------- 1 | package datasources 2 | 3 | type Item struct { 4 | ID string `json:"id"` 5 | Fields map[string]interface{} `json:"fields"` 6 | Highlight map[string][]string `json:"highlight"` 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/dghubble/oauth1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | go: 4 | - 1.5.4 5 | - 1.6.1 6 | - tip 7 | install: 8 | - go get github.com/golang/lint/golint 9 | - go get -v -t . 10 | script: 11 | - ./test 12 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- 1 | package pretty 2 | 3 | import "github.com/kr/pretty" 4 | 5 | Package pretty provides pretty-printing for Go values. 6 | 7 | Documentation 8 | 9 | http://godoc.org/github.com/kr/pretty 10 | -------------------------------------------------------------------------------- /vendor/github.com/kr/text/colwriter/Readme: -------------------------------------------------------------------------------- 1 | Package colwriter provides a write filter that formats 2 | input lines in multiple columns. 3 | 4 | The package is a straightforward translation from 5 | /src/cmd/draw/mc.c in Plan 9 from User Space. 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |