├── .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 | fillertext 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "fillertext" 9 | |
10 | -------------------------------------------------------------------------------- /vendor/github.com/dghubble/go-twitter/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.6 4 | - 1.7 5 | - 1.8 6 | - tip 7 | install: 8 | - go get github.com/golang/lint/golint 9 | - go get -v -t ./twitter 10 | script: 11 | - ./test 12 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/batch/actions.js: -------------------------------------------------------------------------------- 1 | export function batchActions(...actions) { 2 | console.debug("batchActions", actions); 3 | return { 4 | type: 'BATCH_ACTIONS', 5 | actions: actions 6 | }; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/op/go-logging/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | Alec Thomas 2 | Guilhem Lettron 3 | Ivan Daniluk 4 | Nimi Wariboko Jr 5 | Róbert Selvek 6 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/helpers/generateColour.js: -------------------------------------------------------------------------------- 1 | import { hash, intToRGB} from './index'; 2 | 3 | export default function generateColour(str){ 4 | const hashedString = hash(str); 5 | return `#${intToRGB(hashedString)}`; 6 | } 7 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/helpers/intToRgb.js: -------------------------------------------------------------------------------- 1 | export default function intToRGB(i) { 2 | var c = (i & 0x00FFFFFF) 3 | .toString(16) 4 | .toUpperCase(); 5 | 6 | return "ffffff".substring(0, 6 - c.length) + c; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/indices/index.js: -------------------------------------------------------------------------------- 1 | export { INDICES_REQUEST, INDICES_RECEIVE, INDEX_ACTIVATED, INDEX_DEACTIVATED } from './constants' 2 | export { receiveIndices, requestIndices, activateIndex, deActivateIndex } from './actions' -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of Gorilla WebSocket authors for copyright 2 | # purposes. 3 | # 4 | # Please keep the list sorted. 5 | 6 | Gary Burd 7 | Joachim Bauch 8 | 9 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/helpers/hash.js: -------------------------------------------------------------------------------- 1 | export default function hash(str) { 2 | var hash = 0; 3 | for (var i = 0; i < str.length; i++) { 4 | hash = str.charCodeAt(i) + ((hash << 5) - hash); 5 | } 6 | return hash; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3.3 4 | - tip 5 | before_install: 6 | - go get github.com/mattn/goveralls 7 | - go get golang.org/x/tools/cmd/cover 8 | script: 9 | - $HOME/gopath/bin/goveralls -service=travis-ci 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/scss/nav.scss: -------------------------------------------------------------------------------- 1 | nav{ 2 | padding-top: 15px; 3 | padding-bottom: 15px; 4 | padding-right: 15px; 5 | 6 | &.navbar{ 7 | min-height: unset; 8 | margin-bottom: 0px; 9 | display: flex; 10 | } 11 | } -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/deploy.sh: -------------------------------------------------------------------------------- 1 | #rsync -r -z -e "ssh -p 3145" dist.tar.gz remco@m.oornick.com:/home/remco/ 2 | rsync -r -z -e "ssh -p 3145" dist.tar.gz remco@127.0.0.1:/home/remco/ 3 | 4 | 5 | #git subtree split --prefix dist -b dist 6 | #git push dewt dist:master 7 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/indices/constants.js: -------------------------------------------------------------------------------- 1 | export const INDICES_REQUEST = 'INDICES_REQUEST'; 2 | export const INDICES_RECEIVE = 'INDICES_RECEIVE'; 3 | export const INDEX_ACTIVATED = 'INDEX_ACTIVATED'; 4 | export const INDEX_DEACTIVATED = 'INDEX_DEACTIVATED'; -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | install: 6 | - go get github.com/ugorji/go/codec 7 | - go get github.com/pquerna/ffjson/fflib/v1 8 | - go get github.com/json-iterator/go 9 | - go get github.com/golang/lint/golint 10 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | 5 | before_install: 6 | - go get github.com/mattn/goveralls 7 | - go get golang.org/x/tools/cmd/cover 8 | script: 9 | - $HOME/gopath/bin/goveralls -repotoken xnXqRGwgW3SXIguzxf90ZSK1GPYZPaGrw 10 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | 5 | before_install: 6 | - go get github.com/mattn/goveralls 7 | - go get golang.org/x/tools/cmd/cover 8 | script: 9 | - $HOME/gopath/bin/goveralls -repotoken 3gHdORO5k5ziZcWMBxnd9LrMZaJs8m9x5 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpproxy/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package httpproxy 6 | 7 | var ExportUseProxy = (*Config).useProxy 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_dragonfly.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func probeProtocolStack() int { return 4 } 8 | -------------------------------------------------------------------------------- /server/datasources/graph.go: -------------------------------------------------------------------------------- 1 | package datasources 2 | 3 | type Graph struct { 4 | ID string `json:"id"` 5 | Fields map[string]interface{} `json:"fields"` 6 | Count int `json:"count"` 7 | Datasource string `json:"datasource"` 8 | } 9 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/benchmark/dummy_test.go: -------------------------------------------------------------------------------- 1 | package benchmark 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | type DummyWriter struct{} 8 | 9 | func (w DummyWriter) Write(data []byte) (int, error) { return len(data), nil } 10 | 11 | func TestToSuppressNoTestsWarning(t *testing.T) {} 12 | -------------------------------------------------------------------------------- /server/datasources/censys/api/error.go: -------------------------------------------------------------------------------- 1 | package api 2 | 3 | import "fmt" 4 | 5 | type Error struct { 6 | ErrorCode int `json:"error_code"` 7 | ErrorString string `json:"error"` 8 | } 9 | 10 | func (de *Error) Error() string { 11 | return fmt.Sprintf("%s (%d)", de.ErrorString, de.ErrorCode) 12 | } 13 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/snake.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | //easyjson:json 4 | type SnakeStruct struct { 5 | WeirdHTTPStuff bool 6 | CustomNamedField string `json:"cUsToM"` 7 | } 8 | 9 | var snakeStructValue SnakeStruct 10 | var snakeStructString = `{"weird_http_stuff":false,"cUsToM":""}` 11 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/search/constants.js: -------------------------------------------------------------------------------- 1 | export const SEARCH_REQUEST = 'SEARCH_REQUEST'; 2 | export const SEARCH_RECEIVE = 'SEARCH_RECEIVE'; 3 | export const SEARCH_DELETE = 'SEARCH_DELETE'; 4 | export const SEARCH_EDIT = 'SEARCH_EDIT'; 5 | export const SEARCH_COMPLETED = 'SEARCH_COMPLETED'; -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/webpack-build.config.js: -------------------------------------------------------------------------------- 1 | const baseConfig = require('./webpack.config'); 2 | const path = require('path'); 3 | 4 | module.exports = Object.assign(baseConfig, { 5 | output: { 6 | path: [__dirname, 'dist'].join(path.sep), 7 | filename: 'bundle.js' 8 | }, 9 | }); -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 8 | JMP syscall·sysvicall6(SB) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build ppc64 s390x mips mips64 6 | 7 | package unix 8 | 9 | const isBigEndian = true 10 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.1 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | - 1.6 9 | - tip 10 | install: 11 | - go install ./... 12 | - go get github.com/BurntSushi/toml-test 13 | script: 14 | - export PATH="$PATH:$HOME/gopath/bin" 15 | - make test 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x12b 9 | sysSENDMMSG = 0x133 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x16d 9 | sysSENDMMSG = 0x176 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0xf3 9 | sysSENDMMSG = 0x10d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/graph/index.js: -------------------------------------------------------------------------------- 1 | export { NODE_SELECT, NODES_SELECT, NODE_UPDATE, NODES_DELETE, NODES_DESELECT, NODES_HIGHLIGHT, SELECTION_CLEAR } from './constants'; 2 | 3 | export { highlightNodes, nodeUpdate, nodesSelect, nodeSelect, deleteNodes, deselectNodes, clearSelection } from './actions'; 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x14ae 9 | sysSENDMMSG = 0x14b6 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x10ef 9 | sysSENDMMSG = 0x10f7 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | const ( 8 | sysRECVMMSG = 0x157 9 | sysSENDMMSG = 0x15d 10 | ) 11 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/fields/index.js: -------------------------------------------------------------------------------- 1 | export { FIELDS_RECEIVE, FIELDS_REQUEST, FIELDS_CLEAR } from './constants' 2 | export { getFields, receiveFields, clearAllFields} from './actions' 3 | 4 | export { default as Field } from './components/Field' 5 | export { default as FieldType } from './components/FieldType' -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | var Itoa = itoa 10 | -------------------------------------------------------------------------------- /server/datasources/twitter/twitter.go: -------------------------------------------------------------------------------- 1 | package twitter 2 | 3 | import ( 4 | logging "github.com/op/go-logging" 5 | ) 6 | 7 | var log = logging.MustGetLogger("marija/datasources/twitter") 8 | 9 | type Config struct { 10 | ConsumerKey string 11 | ConsumerSecret string 12 | 13 | Token string 14 | TokenSecret string 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_others.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | // IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2 7 | // terminal. This is also always false on this environment. 8 | func IsCygwinTerminal(fd uintptr) bool { 9 | return false 10 | } 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- 1 | h2demo.linux: h2demo.go 2 | GOOS=linux go build --tags=h2demo -o h2demo.linux . 3 | 4 | FORCE: 5 | 6 | upload: FORCE 7 | go install golang.org/x/build/cmd/upload 8 | upload --verbose --osarch=linux-amd64 --tags=h2demo --file=go:golang.org/x/net/http2/h2demo --public http2-demo-server-tls/h2demo 9 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/utils/constants.js: -------------------------------------------------------------------------------- 1 | export const AUTH_CONNECTED = 'AUTH_CONNECTED'; 2 | export const ERROR = 'ERROR'; 3 | export const CANCEL_REQUEST = 'CANCEL_REQUEST'; 4 | export const OPEN_PANE = 'OPEN_PANE'; 5 | export const CLOSE_PANE = 'CLOSE_PANE'; 6 | export const HEADER_HEIGHT_CHANGE = 'HEADER_HEIGHT_CHANGE'; 7 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/_example/title/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "os" 6 | . "github.com/mattn/go-colorable" 7 | ) 8 | 9 | func main() { 10 | out := NewColorableStdout() 11 | fmt.Fprint(out, "\x1B]0;TITLE Changed\007(See title and hit any key)") 12 | var c [1]byte 13 | os.Stdin.Read(c[:]) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build 386 amd64 amd64p32 arm arm64 ppc64le mipsle mips64le 6 | 7 | package unix 8 | 9 | const isBigEndian = false 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | // +build !go1.3 7 | 8 | package svc 9 | 10 | // from go12.c 11 | func getServiceMain(r *uintptr) 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package registry 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go syscall.go 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package icmp 6 | 7 | import "syscall" 8 | 9 | func init() { 10 | freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/helpers/filterSecondaryComponents.js: -------------------------------------------------------------------------------- 1 | export default function filterSecondaryComponents(primaryQuery, components) { 2 | return components.filter(component => { 3 | const match = component.find(node => node.queries.indexOf(primaryQuery) !== -1); 4 | 5 | return typeof match !== 'undefined'; 6 | }); 7 | } -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/import/actions.js: -------------------------------------------------------------------------------- 1 | import {IMPORT_DATA, EXPORT_DATA} from "./index"; 2 | 3 | export function importData(data) { 4 | return { 5 | type: IMPORT_DATA, 6 | payload: data 7 | }; 8 | } 9 | 10 | export function exportData() { 11 | return { 12 | type: EXPORT_DATA 13 | }; 14 | } -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/config/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012-present Oliver Eilhard. All rights reserved. 2 | // Use of this source code is governed by a MIT-license. 3 | // See http://olivere.mit-license.org/license.txt for details. 4 | 5 | /* 6 | Package config allows parsing a configuration for Elasticsearch 7 | from a URL. 8 | */ 9 | package config 10 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/jest.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "verbose": true, 3 | "moduleDirectories": [ 4 | "node_modules", 5 | "src" 6 | ], 7 | "moduleFileExtensions": [ 8 | "js", 9 | "jsx" 10 | ], 11 | "plugins": ["transform-es2015-modules-commonjs"], 12 | "transform": { 13 | "^.+\\.jsx?$": "./node_modules/babel-jest" 14 | } 15 | } -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Marija, (C) 2016 Marija, Inc. 2 | 3 | This product includes software developed at Marija, Inc. 4 | (https://marija.io/). 5 | 6 | The Marija project contains unmodified/modified subcomponents too with 7 | separate copyright notices and license terms. Your use of the source 8 | code for these subcomponents is subject to the terms and conditions 9 | of the following licenses. 10 | -------------------------------------------------------------------------------- /vendor/github.com/gernest/mention/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.3 4 | before_install: 5 | - go get -t -v 6 | - go get github.com/axw/gocov/gocov 7 | - go get github.com/mattn/goveralls 8 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 9 | script: 10 | - $HOME/gopath/bin/goveralls -service=travis-ci -repotoken=$COVERALLS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package bpf 6 | 7 | // A Setter is a type which can attach a compiled BPF filter to itself. 8 | type Setter interface { 9 | SetBPF(filter []RawInstruction) error 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/tests/omitempty.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | //easyjson:json 4 | type OmitEmptyDefault struct { 5 | Field string 6 | Str string 7 | Str1 string `json:"s,!omitempty"` 8 | Str2 string `json:",!omitempty"` 9 | } 10 | 11 | var omitEmptyDefaultValue = OmitEmptyDefault{Field: "test"} 12 | var omitEmptyDefaultString = `{"Field":"test","s":"","Str2":""}` 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http/httpproxy/go19_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.9 6 | 7 | package httpproxy_test 8 | 9 | import "testing" 10 | 11 | func init() { 12 | setHelper = func(t *testing.T) { t.Helper() } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package windows 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go 8 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/github.com/qedus/blockchain/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/iovec_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris 6 | 7 | package socket 8 | 9 | type iovec struct{} 10 | 11 | func (v *iovec) set(b []byte) {} 12 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/uritemplates/utils.go: -------------------------------------------------------------------------------- 1 | package uritemplates 2 | 3 | func Expand(path string, expansions map[string]string) (string, error) { 4 | template, err := Parse(path) 5 | if err != nil { 6 | return "", err 7 | } 8 | values := make(map[string]interface{}) 9 | for k, v := range expansions { 10 | values[k] = v 11 | } 12 | return template.Expand(values) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/helpers/removeDeadLinks.js: -------------------------------------------------------------------------------- 1 | export default function removeDeadLinks(nodes, links) { 2 | return links.filter(link => { 3 | const source = nodes.find(node => node.id === link.source); 4 | const target = nodes.find(node => node.id === link.target); 5 | 6 | return typeof source !== 'undefined' && typeof target !== 'undefined'; 7 | }); 8 | } -------------------------------------------------------------------------------- /vendor/github.com/mailru/easyjson/benchmark/ujson.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | echo -n "Python ujson module, DECODE: " 4 | python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read()" 'ujson.loads(data)' 5 | 6 | echo -n "Python ujson module, ENCODE: " 7 | python -m timeit -s "import ujson; data = open('`dirname $0`/example.json', 'r').read(); obj = ujson.loads(data)" 'ujson.dumps(obj)' 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,linux 6 | // +build !gccgo 7 | 8 | package unix 9 | 10 | import "syscall" 11 | 12 | //go:noescape 13 | func gettimeofday(tv *Timeval) (err syscall.Errno) 14 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/graph/constants.js: -------------------------------------------------------------------------------- 1 | export const NODE_SELECT = 'NODE_SELECT'; 2 | export const NODE_UPDATE = 'NODE_UPDATE'; 3 | export const NODES_SELECT = 'NODES_SELECT'; 4 | export const NODES_DESELECT = 'NODES_DESELECT'; 5 | export const NODES_HIGHLIGHT = 'NODES_HIGHLIGHT'; 6 | export const NODES_DELETE = 'NODES_DELETE'; 7 | export const SELECTION_CLEAR = 'SELECTION_CLEAR'; 8 | -------------------------------------------------------------------------------- /vendor/github.com/kr/text/mc/Readme: -------------------------------------------------------------------------------- 1 | Command mc prints in multiple columns. 2 | 3 | Usage: mc [-] [-N] [file...] 4 | 5 | Mc splits the input into as many columns as will fit in N 6 | print positions. If the output is a tty, the default N is 7 | the number of characters in a terminal line; otherwise the 8 | default N is 80. Under option - each input line ending in 9 | a colon ':' is printed separately. 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package socket 6 | 7 | func (h *msghdr) setIov(vs []iovec) { 8 | l := len(vs) 9 | if l == 0 { 10 | return 11 | } 12 | h.Iov = &vs[0] 13 | h.Iovlen = uint32(l) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | 7 | package registry 8 | 9 | func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 | return k.setValue(name, valtype, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/logger.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012-present Oliver Eilhard. All rights reserved. 2 | // Use of this source code is governed by a MIT-license. 3 | // See http://olivere.mit-license.org/license.txt for details. 4 | 5 | package elastic 6 | 7 | // Logger specifies the interface for all log operations. 8 | type Logger interface { 9 | Printf(format string, v ...interface{}) 10 | } 11 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/run-es.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | VERSION=${VERSION:=5.6.6} 3 | docker run --rm --privileged=true -p 9200:9200 -p 9300:9300 -v "$PWD/etc:/usr/share/elasticsearch/config" -e "bootstrap.memory_lock=true" -e "ES_JAVA_OPTS=-Xms1g -Xmx1g" docker.elastic.co/elasticsearch/elasticsearch:$VERSION elasticsearch -Expack.security.enabled=false -Escript.inline=true -Escript.stored=true -Escript.file=true 4 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/Makefile: -------------------------------------------------------------------------------- 1 | install: 2 | go install ./... 3 | 4 | test: install 5 | go test -v 6 | toml-test toml-test-decoder 7 | toml-test -encoder toml-test-encoder 8 | 9 | fmt: 10 | gofmt -w *.go */*.go 11 | colcheck *.go */*.go 12 | 13 | tags: 14 | find ./ -name '*.go' -print0 | xargs -0 gotags > TAGS 15 | 16 | push: 17 | git push origin master 18 | git push github master 19 | 20 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_others_test.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package isatty 4 | 5 | import ( 6 | "os" 7 | "testing" 8 | ) 9 | 10 | func TestTerminal(t *testing.T) { 11 | // test for non-panic 12 | IsTerminal(os.Stdout.Fd()) 13 | } 14 | 15 | func TestCygwinPipeName(t *testing.T) { 16 | if IsCygwinTerminal(os.Stdout.Fd()) { 17 | t.Fatal("should be false always") 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/sys_linux_386.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·socketcall(SB),NOSPLIT,$0-36 8 | JMP syscall·socketcall(SB) 9 | 10 | TEXT ·rawsocketcall(SB),NOSPLIT,$0-36 11 | JMP syscall·rawsocketcall(SB) 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.7 6 | 7 | package webdav 8 | 9 | import ( 10 | "context" 11 | "net/http" 12 | ) 13 | 14 | func getContext(r *http.Request) context.Context { 15 | return r.Context() 16 | } 17 | -------------------------------------------------------------------------------- /vendor/github.com/dutchcoders/marija-web/src/app/modules/search/index.js: -------------------------------------------------------------------------------- 1 | export { default as SearchBox } from './components/SearchBox'; 2 | export { default as Searches } from './components/Searches'; 3 | 4 | export { SEARCH_RECEIVE, SEARCH_REQUEST, SEARCH_DELETE, SEARCH_EDIT, SEARCH_COMPLETED } from './constants'; 5 | 6 | export { searchReceive, searchRequest, deleteSearch, editSearch, searchCompleted } from './actions'; 7 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | 24 | .idea/ 25 | *.iml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/_example/escape-seq/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "bufio" 5 | "fmt" 6 | 7 | "github.com/mattn/go-colorable" 8 | ) 9 | 10 | func main() { 11 | stdOut := bufio.NewWriter(colorable.NewColorableStdout()) 12 | 13 | fmt.Fprint(stdOut, "\x1B[3GMove to 3rd Column\n") 14 | fmt.Fprint(stdOut, "\x1B[1;2HMove to 2nd Column on 1st Line\n") 15 | stdOut.Flush() 16 | } 17 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat: -------------------------------------------------------------------------------- 1 | #data 2 |

TEXT 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | |

9 | | 10 | | id="B" 11 | | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- 1 | // +build linux 2 | // +build !appengine,!ppc64,!ppc64le 3 | 4 | package isatty 5 | 6 | import ( 7 | "syscall" 8 | "unsafe" 9 | ) 10 | 11 | const ioctlReadTermios = syscall.TCGETS 12 | 13 | // IsTerminal return true if the file descriptor is terminal. 14 | func IsTerminal(fd uintptr) bool { 15 | var termios syscall.Termios 16 | _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) 17 | return err == 0 18 | } 19 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/internal/xml/README: -------------------------------------------------------------------------------- 1 | This is a fork of the encoding/xml package at ca1d6c4, the last commit before 2 | https://go.googlesource.com/go/+/c0d6d33 "encoding/xml: restore Go 1.4 name 3 | space behavior" made late in the lead-up to the Go 1.5 release. 4 | 5 | The list of encoding/xml changes is at 6 | https://go.googlesource.com/go/+log/master/src/encoding/xml 7 | 8 | This fork is temporary, and I (nigeltao) expect to revert it after Go 1.6 is 9 | released. 10 | 11 | See http://golang.org/issue/11841 12 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/bulk_request.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012-present Oliver Eilhard. All rights reserved. 2 | // Use of this source code is governed by a MIT-license. 3 | // See http://olivere.mit-license.org/license.txt for details. 4 | 5 | package elastic 6 | 7 | import ( 8 | "fmt" 9 | ) 10 | 11 | // -- Bulkable request (index/update/delete) -- 12 | 13 | // BulkableRequest is a generic interface to bulkable requests. 14 | type BulkableRequest interface { 15 | fmt.Stringer 16 | Source() ([]string, error) 17 | } 18 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package isatty 4 | 5 | // IsTerminal returns true if the file descriptor is terminal which 6 | // is always false on on appengine classic which is a sandboxed PaaS. 7 | func IsTerminal(fd uintptr) bool { 8 | return false 9 | } 10 | 11 | // IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2 12 | // terminal. This is also always false on this environment. 13 | func IsCygwinTerminal(fd uintptr) bool { 14 | return false 15 | } 16 | -------------------------------------------------------------------------------- /vendor/github.com/dghubble/go-twitter/twitter/entities_test.go: -------------------------------------------------------------------------------- 1 | package twitter 2 | 3 | import ( 4 | "testing" 5 | 6 | "github.com/stretchr/testify/assert" 7 | ) 8 | 9 | func TestIndices(t *testing.T) { 10 | cases := []struct { 11 | pair Indices 12 | expectedStart int 13 | expectedEnd int 14 | }{ 15 | {Indices{}, 0, 0}, 16 | {Indices{25, 47}, 25, 47}, 17 | } 18 | for _, c := range cases { 19 | assert.Equal(t, c.expectedStart, c.pair.Start()) 20 | assert.Equal(t, c.expectedEnd, c.pair.End()) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris,!windows 6 | 7 | package ipv6 8 | 9 | import ( 10 | "net" 11 | 12 | "golang.org/x/net/internal/socket" 13 | ) 14 | 15 | func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { 16 | return errOpNoSupport 17 | } 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go 11 | // 12 | 13 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 14 | JMP syscall·sysvicall6(SB) 15 | 16 | TEXT ·rawSysvicall6(SB),NOSPLIT,$0-88 17 | JMP syscall·rawSysvicall6(SB) 18 | -------------------------------------------------------------------------------- /vendor/gopkg.in/olivere/elastic.v5/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please use the following questions as a guideline to help me answer 2 | your issue/question without further inquiry. Thank you. 3 | 4 | ### Which version of Elastic are you using? 5 | 6 | [ ] elastic.v2 (for Elasticsearch 1.x) 7 | [ ] elastic.v3 (for Elasticsearch 2.x) 8 | [ ] elastic.v5 (for Elasticsearch 5.x) 9 | 10 | ### Please describe the expected behavior 11 | 12 | 13 | ### Please describe the actual behavior 14 | 15 | 16 | ### Any steps to reproduce the behavior? 17 | 18 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- 1 | // +build darwin freebsd openbsd netbsd dragonfly 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | import ( 7 | "syscall" 8 | "unsafe" 9 | ) 10 | 11 | const ioctlReadTermios = syscall.TIOCGETA 12 | 13 | // IsTerminal return true if the file descriptor is terminal. 14 | func IsTerminal(fd uintptr) bool { 15 | var termios syscall.Termios 16 | _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) 17 | return err == 0 18 | } 19 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !go1.6 6 | 7 | package http2 8 | 9 | import ( 10 | "net/http" 11 | "time" 12 | ) 13 | 14 | func configureTransport(t1 *http.Transport) (*Transport, error) { 15 | return nil, errTransportVersion 16 | } 17 | 18 | func transportExpectContinueTimeout(t1 *http.Transport) time.Duration { 19 | return 0 20 | 21 | } 22 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/socket/iovec_32bit.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build arm mips mipsle 386 6 | // +build darwin dragonfly freebsd linux netbsd openbsd 7 | 8 | package socket 9 | 10 | import "unsafe" 11 | 12 | func (v *iovec) set(b []byte) { 13 | l := len(b) 14 | if l == 0 { 15 | return 16 | } 17 | v.Base = (*byte)(unsafe.Pointer(&b[0])) 18 | v.Len = uint32(l) 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_linux_ppc64x.go: -------------------------------------------------------------------------------- 1 | // +build linux 2 | // +build ppc64 ppc64le 3 | 4 | package isatty 5 | 6 | import ( 7 | "unsafe" 8 | 9 | syscall "golang.org/x/sys/unix" 10 | ) 11 | 12 | const ioctlReadTermios = syscall.TCGETS 13 | 14 | // IsTerminal return true if the file descriptor is terminal. 15 | func IsTerminal(fd uintptr) bool { 16 | var termios syscall.Termios 17 | _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) 18 | return err == 0 19 | } 20 | -------------------------------------------------------------------------------- /vendor/github.com/minio/cli/altsrc/helpers_test.go: -------------------------------------------------------------------------------- 1 | package altsrc 2 | 3 | import ( 4 | "reflect" 5 | "testing" 6 | ) 7 | 8 | func expect(t *testing.T, a interface{}, b interface{}) { 9 | if !reflect.DeepEqual(b, a) { 10 | t.Errorf("Expected %#v (type %v) - Got %#v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a)) 11 | } 12 | } 13 | 14 | func refute(t *testing.T, a interface{}, b interface{}) { 15 | if a == b { 16 | t.Errorf("Did not expect %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a)) 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/testdata/all_instructions.bpf: -------------------------------------------------------------------------------- 1 | 50,0 0 0 42,1 0 0 42,96 0 0 3,97 0 0 3,48 0 0 42,40 0 0 42,32 0 0 42,80 0 0 42,72 0 0 42,64 0 0 42,177 0 0 42,128 0 0 0,32 0 0 4294963200,32 0 0 4294963204,32 0 0 4294963256,2 0 0 3,3 0 0 3,4 0 0 42,20 0 0 42,36 0 0 42,52 0 0 42,68 0 0 42,84 0 0 42,100 0 0 42,116 0 0 42,148 0 0 42,164 0 0 42,12 0 0 0,28 0 0 0,44 0 0 0,60 0 0 0,76 0 0 0,92 0 0 0,108 0 0 0,124 0 0 0,156 0 0 0,172 0 0 0,132 0 0 0,5 0 0 10,21 8 9 42,21 0 8 42,53 0 7 42,37 0 6 42,37 4 5 42,53 3 4 42,69 2 3 42,7 0 0 0,135 0 0 0,22 0 0 0,6 0 0 0, 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !go1.5 6 | 7 | package plan9 8 | 9 | func fixwd() { 10 | } 11 | 12 | func Getwd() (wd string, err error) { 13 | fd, err := open(".", O_RDONLY) 14 | if err != nil { 15 | return "", err 16 | } 17 | defer Close(fd) 18 | return Fd2path(fd) 19 | } 20 | 21 | func Chdir(path string) error { 22 | return chdir(path) 23 | } 24 | -------------------------------------------------------------------------------- /vendor/github.com/cenkalti/backoff/context_test.go: -------------------------------------------------------------------------------- 1 | package backoff 2 | 3 | import ( 4 | "testing" 5 | "time" 6 | 7 | "golang.org/x/net/context" 8 | ) 9 | 10 | func TestContext(t *testing.T) { 11 | b := NewConstantBackOff(time.Millisecond) 12 | ctx, cancel := context.WithCancel(context.Background()) 13 | defer cancel() 14 | 15 | cb := WithContext(b, ctx) 16 | 17 | if cb.Context() != ctx { 18 | t.Error("invalid context") 19 | } 20 | 21 | cancel() 22 | 23 | if cb.NextBackOff() != Stop { 24 | t.Error("invalid next back off") 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /vendor/github.com/elazarl/go-bindata-assetfs/doc.go: -------------------------------------------------------------------------------- 1 | // assetfs allows packages to serve static content embedded 2 | // with the go-bindata tool with the standard net/http package. 3 | // 4 | // See https://github.com/jteeuwen/go-bindata for more information 5 | // about embedding binary data with go-bindata. 6 | // 7 | // Usage example, after running 8 | // $ go-bindata data/... 9 | // use: 10 | // http.Handle("/", 11 | // http.FileServer( 12 | // &assetfs.AssetFS{Asset: Asset, AssetDir: AssetDir, Prefix: "data"})) 13 | package assetfs 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build gccgo,linux,amd64 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //extern gettimeofday 12 | func realGettimeofday(*Timeval, *byte) int32 13 | 14 | func gettimeofday(tv *Timeval) (err syscall.Errno) { 15 | r := realGettimeofday(tv, nil) 16 | if r < 0 { 17 | return syscall.GetErrno() 18 | } 19 | return 0 20 | } 21 | -------------------------------------------------------------------------------- /server/config.go: -------------------------------------------------------------------------------- 1 | package server 2 | 3 | import ( 4 | _ "log" 5 | 6 | "github.com/BurntSushi/toml" 7 | ) 8 | 9 | type config struct { 10 | path string 11 | address string 12 | debug bool 13 | 14 | ListenerString string `toml:"listen"` 15 | 16 | Username string `toml:"username"` 17 | Password string `toml:"password"` 18 | Service string `toml:"service"` 19 | 20 | Datasources map[string]toml.Primitive `toml:"datasource"` 21 | 22 | Logging []struct { 23 | Output string `toml:"output"` 24 | Level string `toml:"level"` 25 | } `toml:"logging"` 26 | } 27 | -------------------------------------------------------------------------------- /vendor/github.com/gorilla/websocket/examples/echo/README.md: -------------------------------------------------------------------------------- 1 | # Client and server example 2 | 3 | This example shows a simple client and server. 4 | 5 | The server echoes messages sent to it. The client sends a message every second 6 | and prints all messages received. 7 | 8 | To run the example, start the server: 9 | 10 | $ go run server.go 11 | 12 | Next, start the client: 13 | 14 | $ go run client.go 15 | 16 | The server includes a simple web client. To use the client, open 17 | http://127.0.0.1:8080 in the browser and follow the instructions on the page. 18 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat: -------------------------------------------------------------------------------- 1 | #data 2 | 12

34 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | 9 | | "1" 10 | | 11 | | "2" 12 | | 13 | |

14 | | 15 | | "3" 16 | | "4" 17 | 18 | #data 19 |

20 | #errors 21 | #document 22 | | 23 | | 24 | | 25 | | 26 | |
27 | | 28 | |