├── common ├── goquery │ ├── .gitattributes │ ├── .travis.yml │ ├── .gitignore │ ├── testdata │ │ ├── page2.html │ │ └── page3.html │ ├── example_test.go │ └── bench_property_test.go ├── mgo │ ├── operator_test.go │ ├── remove.go │ ├── update.go │ ├── list.go │ └── count.go ├── ping │ └── ping_test.go ├── xlsx │ ├── doc.go │ └── row.go ├── gc │ └── gc.go ├── pinyin │ ├── phonetic_symbol.go │ └── initials_sort.go └── mahonia │ ├── README.md │ ├── fallback.go │ ├── mahoniconv │ └── mahoniconv.go │ └── utf8.go ├── doc ├── ICON.ico ├── help.jpg ├── icon.png ├── module.png ├── project.png ├── guishow_0.jpg ├── webshow_1.png ├── distribute.png └── GUI编译命令.txt ├── gui ├── rsrc.syso └── guimain.manifest ├── web ├── views.zip ├── bindata_assetfs_usage.go └── router.go ├── vendor ├── .gitignore ├── github.com │ ├── lxn │ │ ├── walk │ │ │ ├── l10n │ │ │ │ ├── update.bat │ │ │ │ └── walk-de.tr │ │ │ ├── data │ │ │ │ ├── drawing.png │ │ │ │ └── filebrowser.png │ │ │ ├── examples │ │ │ │ ├── img │ │ │ │ │ ├── x.ico │ │ │ │ │ ├── open.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── document-new.png │ │ │ │ │ ├── system-shutdown.png │ │ │ │ │ ├── document-properties.png │ │ │ │ │ └── README │ │ │ │ ├── slider │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── slider.manifest │ │ │ │ ├── actions │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── actions.manifest │ │ │ │ ├── clipboard │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── clipboard.manifest │ │ │ │ ├── drawing │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── drawing.manifest │ │ │ │ ├── dropfiles │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ ├── dropfiles.manifest │ │ │ │ │ └── dropfiles.go │ │ │ │ ├── imageicon │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── imageicon.manifest │ │ │ │ ├── listbox │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── listbox.manifest │ │ │ │ ├── logview │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ ├── logview.manifest │ │ │ │ │ └── logviewapp.go │ │ │ │ ├── settings │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── settings.manifest │ │ │ │ ├── tableview │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── tableview.manifest │ │ │ │ ├── webview │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ ├── webview.manifest │ │ │ │ │ └── webview.go │ │ │ │ ├── databinding │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── databinding.manifest │ │ │ │ ├── filebrowser │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── filebrowser.manifest │ │ │ │ ├── imageviewer │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── imageviewer.manifest │ │ │ │ ├── notifyicon │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── notifyicon.manifest │ │ │ │ ├── radiobutton │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── radiobutton.manifest │ │ │ │ ├── externalwidgets │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── externalwidgets.manifest │ │ │ │ └── progressindicator │ │ │ │ │ ├── rsrc.syso │ │ │ │ │ └── progressindicator.manifest │ │ │ ├── declarative │ │ │ │ ├── nonwin.go │ │ │ │ ├── font.go │ │ │ │ └── databinder.go │ │ │ ├── point.go │ │ │ ├── color.go │ │ │ ├── simpletypes.go │ │ │ ├── image.go │ │ │ ├── AUTHORS │ │ │ ├── size.go │ │ │ ├── event.go │ │ │ ├── composite.go │ │ │ ├── intevent.go │ │ │ ├── keyevent.go │ │ │ └── errorevent.go │ │ └── win │ │ │ ├── oleaut32_386.go │ │ │ ├── oleaut32_amd64.go │ │ │ ├── README.mdown │ │ │ ├── shobj_386.go │ │ │ ├── shobj_amd64.go │ │ │ ├── AUTHORS │ │ │ └── header.go │ ├── robertkrimen │ │ └── otto │ │ │ ├── parser │ │ │ ├── Makefile │ │ │ ├── dbg.go │ │ │ └── scope.go │ │ │ ├── token │ │ │ └── Makefile │ │ │ ├── .gitignore │ │ │ ├── otto │ │ │ ├── Makefile │ │ │ └── main.go │ │ │ ├── DESIGN.markdown │ │ │ ├── type_number.go │ │ │ ├── dbg.go │ │ │ ├── clone_test.go │ │ │ ├── underscore │ │ │ └── Makefile │ │ │ ├── type_boolean.go │ │ │ ├── cmpl.go │ │ │ ├── test │ │ │ └── Makefile │ │ │ ├── result.go │ │ │ ├── scope.go │ │ │ ├── value_primitive.go │ │ │ ├── type_error.go │ │ │ ├── builtin_boolean.go │ │ │ ├── value_boolean.go │ │ │ ├── registry │ │ │ ├── README.markdown │ │ │ └── registry.go │ │ │ ├── parser_test.go │ │ │ └── LICENSE │ ├── Shopify │ │ └── sarama │ │ │ ├── examples │ │ │ ├── http_server │ │ │ │ └── .gitignore │ │ │ └── README.md │ │ │ ├── tools │ │ │ ├── kafka-console-consumer │ │ │ │ └── .gitignore │ │ │ ├── kafka-console-producer │ │ │ │ └── .gitignore │ │ │ ├── kafka-console-partitionconsumer │ │ │ │ └── .gitignore │ │ │ └── README.md │ │ │ ├── vagrant │ │ │ ├── toxiproxy.conf │ │ │ ├── zookeeper.conf │ │ │ ├── kafka.conf │ │ │ ├── provision.sh │ │ │ ├── create_topics.sh │ │ │ ├── boot_cluster.sh │ │ │ └── setup_services.sh │ │ │ ├── list_groups_request_test.go │ │ │ ├── dev.yml │ │ │ ├── api_versions_request_test.go │ │ │ ├── .gitignore │ │ │ ├── sasl_handshake_request_test.go │ │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── leave_group_request_test.go │ │ │ ├── Makefile │ │ │ ├── heartbeat_response_test.go │ │ │ ├── utils_test.go │ │ │ ├── Vagrantfile │ │ │ ├── list_groups_request.go │ │ │ ├── response_header.go │ │ │ ├── api_versions_request.go │ │ │ ├── heartbeat_request_test.go │ │ │ ├── consumer_metadata_request_test.go │ │ │ ├── response_header_test.go │ │ │ ├── consumer_metadata_request.go │ │ │ ├── heartbeat_response.go │ │ │ ├── leave_group_response.go │ │ │ ├── offset_fetch_response_test.go │ │ │ ├── sasl_handshake_response_test.go │ │ │ ├── offset_request_test.go │ │ │ ├── offset_commit_response_test.go │ │ │ ├── sasl_handshake_request.go │ │ │ ├── .travis.yml │ │ │ ├── describe_groups_request.go │ │ │ ├── leave_group_response_test.go │ │ │ ├── length_field.go │ │ │ ├── metadata_request_test.go │ │ │ ├── mocks │ │ │ └── README.md │ │ │ ├── leave_group_request.go │ │ │ ├── sasl_handshake_response.go │ │ │ ├── crc32_field.go │ │ │ ├── describe_groups_request_test.go │ │ │ ├── offset_fetch_request_test.go │ │ │ ├── api_versions_response_test.go │ │ │ ├── consumer_metadata_response_test.go │ │ │ ├── heartbeat_request.go │ │ │ └── sync_group_response.go │ ├── eapache │ │ ├── queue │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ └── README.md │ │ ├── go-resiliency │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── retrier │ │ │ │ ├── backoffs.go │ │ │ │ └── README.md │ │ │ ├── semaphore │ │ │ │ └── README.md │ │ │ └── deadline │ │ │ │ └── README.md │ │ └── go-xerial-snappy │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ └── snappy.go │ ├── tidwall │ │ ├── gjson │ │ │ ├── logo.png │ │ │ └── gjson_gae.go │ │ └── match │ │ │ └── README.md │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── appengine.go │ │ │ ├── result.go │ │ │ └── transaction.go │ ├── golang │ │ └── snappy │ │ │ ├── testdata │ │ │ └── pi.txt.rawsnappy │ │ │ ├── README │ │ │ ├── decode_amd64.go │ │ │ ├── .gitignore │ │ │ └── AUTHORS │ ├── rcrowley │ │ └── go-metrics │ │ │ ├── runtime_no_cgo.go │ │ │ ├── .gitignore │ │ │ ├── runtime_cgo.go │ │ │ ├── runtime_no_gccpufraction.go │ │ │ ├── runtime_gccpufraction.go │ │ │ ├── .travis.yml │ │ │ ├── validate.sh │ │ │ ├── writer_test.go │ │ │ ├── cmd │ │ │ ├── never-read │ │ │ │ └── never-read.go │ │ │ └── metrics-bench │ │ │ │ └── metrics-bench.go │ │ │ ├── metrics.go │ │ │ ├── opentsdb_test.go │ │ │ ├── graphite_test.go │ │ │ ├── json_test.go │ │ │ ├── gauge_test.go │ │ │ ├── gauge_float64_test.go │ │ │ └── debug_test.go │ ├── henrylee2cn │ │ ├── teleport │ │ │ ├── doc │ │ │ │ └── Teleport API Model Diagram.png │ │ │ ├── example │ │ │ │ ├── client2.go │ │ │ │ ├── client3.go │ │ │ │ └── client.go │ │ │ ├── debug │ │ │ │ └── debug.go │ │ │ ├── README.md │ │ │ ├── netdata.go │ │ │ ├── conn.go │ │ │ ├── util.go │ │ │ └── return_func.go │ │ └── goutil │ │ │ ├── doc.go │ │ │ ├── object_name.go │ │ │ ├── bytes-string.go │ │ │ ├── js_url.go │ │ │ ├── exported.go │ │ │ ├── pid_file.go │ │ │ └── trace.go │ ├── klauspost │ │ └── crc32 │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ └── crc32_generic.go │ ├── andybalholm │ │ └── cascadia │ │ │ ├── .travis.yml │ │ │ └── README.md │ ├── davecgh │ │ └── go-spew │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── cov_report.sh │ │ │ └── LICENSE │ └── elazarl │ │ └── go-bindata-assetfs │ │ └── doc.go ├── gopkg.in │ ├── mgo.v2 │ │ ├── raceon.go │ │ ├── raceoff.go │ │ ├── Makefile │ │ ├── README.md │ │ ├── syscall_windows_test.go │ │ ├── saslstub.go │ │ ├── saslimpl.go │ │ ├── syscall_test.go │ │ ├── sasl │ │ │ └── sasl_windows.h │ │ ├── export_test.go │ │ └── txn │ │ │ └── tarjan_test.go │ └── sourcemap.v1 │ │ ├── Makefile │ │ ├── .travis.yml │ │ └── README.md └── golang.org │ └── x │ ├── text │ ├── encoding │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ └── sunzi-bingfa-traditional-big5.txt │ │ ├── japanese │ │ │ └── all.go │ │ ├── simplifiedchinese │ │ │ └── all.go │ │ └── ianaindex │ │ │ └── example_test.go │ ├── language │ │ ├── go1_2.go │ │ ├── common.go │ │ ├── Makefile │ │ ├── gen_common.go │ │ └── go1_1.go │ ├── internal │ │ ├── testtext │ │ │ └── flag.go │ │ ├── number │ │ │ ├── common.go │ │ │ └── gen_common.go │ │ └── internal_test.go │ └── transform │ │ └── examples_test.go │ └── net │ └── 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 │ └── example_test.go ├── pholcus_pkg ├── proxy.lib ├── config.ini └── cache │ ├── get │ └── post ├── app ├── distribute │ ├── interface.go │ ├── slave_api.go │ ├── taskjar.go │ ├── task.go │ └── master_api.go ├── downloader │ ├── downloader.go │ └── surfer │ │ └── agent │ │ ├── agent_windows.go │ │ ├── agent_bsd.go │ │ ├── agent_linux.go │ │ └── agent_linux_arm.go ├── spider │ └── timer_test.go ├── pipeline │ ├── pipeline.go │ └── output.go └── aid │ └── proxy │ └── host.go ├── doc.go ├── runtime └── status │ └── status.go ├── example_main.go ├── .gitignore ├── exec ├── exec_darwin.go ├── exec_freebsd.go ├── exec_linux.go └── exec_windows.go └── logs └── logs └── conn_test.go /common/goquery/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/* linguist-vendored 2 | -------------------------------------------------------------------------------- /doc/ICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/ICON.ico -------------------------------------------------------------------------------- /doc/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/help.jpg -------------------------------------------------------------------------------- /doc/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/icon.png -------------------------------------------------------------------------------- /doc/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/module.png -------------------------------------------------------------------------------- /doc/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/project.png -------------------------------------------------------------------------------- /gui/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/gui/rsrc.syso -------------------------------------------------------------------------------- /web/views.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/web/views.zip -------------------------------------------------------------------------------- /doc/guishow_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/guishow_0.jpg -------------------------------------------------------------------------------- /doc/webshow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/webshow_1.png -------------------------------------------------------------------------------- /doc/distribute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/doc/distribute.png -------------------------------------------------------------------------------- /vendor/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.rar 3 | *.psd 4 | *.bmd 5 | *.cfg 6 | *_test.go 7 | 8 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/l10n/update.bat: -------------------------------------------------------------------------------- 1 | polyglot -name="walk" -dir=".." -locales="de" 2 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/parser/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | 3 | test: 4 | go test 5 | -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/examples/http_server/.gitignore: -------------------------------------------------------------------------------- 1 | http_server 2 | http_server.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/token/Makefile: -------------------------------------------------------------------------------- 1 | token_const.go: tokenfmt 2 | ./$^ | gofmt > $@ 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/raceon.go: -------------------------------------------------------------------------------- 1 | // +build race 2 | 3 | package mgo 4 | 5 | const raceDetector = true 6 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/raceoff.go: -------------------------------------------------------------------------------- 1 | // +build !race 2 | 3 | package mgo 4 | 5 | const raceDetector = false 6 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/Makefile: -------------------------------------------------------------------------------- 1 | startdb: 2 | @testdb/setup.sh start 3 | 4 | stopdb: 5 | @testdb/setup.sh stop 6 | -------------------------------------------------------------------------------- /vendor/github.com/eapache/queue/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | sudo: false 3 | 4 | go: 5 | - 1.2 6 | - 1.3 7 | - 1.4 8 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/.gitignore: -------------------------------------------------------------------------------- 1 | /.test 2 | /otto/otto 3 | /otto/otto-* 4 | /test/test-*.js 5 | /test/tester 6 | -------------------------------------------------------------------------------- /vendor/github.com/tidwall/gjson/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/tidwall/gjson/logo.png -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/tools/kafka-console-consumer/.gitignore: -------------------------------------------------------------------------------- 1 | kafka-console-consumer 2 | kafka-console-consumer.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/tools/kafka-console-producer/.gitignore: -------------------------------------------------------------------------------- 1 | kafka-console-producer 2 | kafka-console-producer.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/eapache/go-resiliency/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | -------------------------------------------------------------------------------- /vendor/github.com/eapache/go-xerial-snappy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.5.4 5 | - 1.6.1 6 | 7 | sudo: false 8 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/otto/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: build 2 | 3 | build: 4 | go build -a 5 | -gxc build-darwin-386 -a 6 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/data/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/data/drawing.png -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/x.ico -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/DESIGN.markdown: -------------------------------------------------------------------------------- 1 | * Designate the filename of "anonymous" source code by the hash (md5/sha1, etc.) 2 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/data/filebrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/data/filebrowser.png -------------------------------------------------------------------------------- /vendor/gopkg.in/sourcemap.v1/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go test ./... -test.v -test.cpu=1,2,4 3 | go test ./... -test.v -test.short -test.race 4 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/open.png -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/plus.png -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/slider/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/slider/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/tools/kafka-console-partitionconsumer/.gitignore: -------------------------------------------------------------------------------- 1 | kafka-console-partitionconsumer 2 | kafka-console-partitionconsumer.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DS_Store? 3 | ._* 4 | .Spotlight-V100 5 | .Trashes 6 | Icon? 7 | ehthumbs.db 8 | Thumbs.db 9 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/actions/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/actions/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/clipboard/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/clipboard/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/drawing/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/drawing/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/dropfiles/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/dropfiles/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/imageicon/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/imageicon/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/listbox/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/listbox/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/logview/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/logview/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/settings/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/settings/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/tableview/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/tableview/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/webview/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/webview/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/testdata/pi.txt.rawsnappy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/golang/snappy/testdata/pi.txt.rawsnappy -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/databinding/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/databinding/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/filebrowser/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/filebrowser/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/imageviewer/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/imageviewer/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/document-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/document-new.png -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/notifyicon/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/notifyicon/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/radiobutton/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/radiobutton/rsrc.syso -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/system-shutdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/system-shutdown.png -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/runtime_no_cgo.go: -------------------------------------------------------------------------------- 1 | // +build !cgo appengine 2 | 3 | package metrics 4 | 5 | func numCgoCall() int64 { 6 | return 0 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/externalwidgets/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/externalwidgets/rsrc.syso -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/document-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/img/document-properties.png -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/progressindicator/rsrc.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/lxn/walk/examples/progressindicator/rsrc.syso -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/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/KBDY/pholcus/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt -------------------------------------------------------------------------------- /common/goquery/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.1 5 | - 1.2 6 | - 1.3 7 | - 1.4 8 | - 1.5 9 | - 1.6 10 | - 1.7 11 | - tip 12 | -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/vagrant/toxiproxy.conf: -------------------------------------------------------------------------------- 1 | start on started networking 2 | stop on shutdown 3 | 4 | env KAFKA_INSTALL_ROOT=/opt 5 | 6 | exec /opt/run_toxiproxy.sh 7 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/README.md: -------------------------------------------------------------------------------- 1 | The MongoDB driver for Go 2 | ------------------------- 3 | 4 | Please go to [http://labix.org/mgo](http://labix.org/mgo) for all project details. 5 | -------------------------------------------------------------------------------- /vendor/github.com/henrylee2cn/teleport/doc/Teleport API Model Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/github.com/henrylee2cn/teleport/doc/Teleport API Model Diagram.png -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KBDY/pholcus/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt -------------------------------------------------------------------------------- /vendor/github.com/klauspost/crc32/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.3 5 | - 1.4 6 | - 1.5 7 | - 1.6 8 | - tip 9 | 10 | script: 11 | - go test -v . 12 | - go test -v -race . 13 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/type_number.go: -------------------------------------------------------------------------------- 1 | package otto 2 | 3 | func (runtime *_runtime) newNumberObject(value Value) *_object { 4 | return runtime.newPrimitiveObject("Number", value.numberValue()) 5 | } 6 | -------------------------------------------------------------------------------- /pholcus_pkg/proxy.lib: -------------------------------------------------------------------------------- 1 | http://183.141.168.95:3128 2 | http://60.13.146.92:8088 3 | http://59.59.4.22:8090 4 | http://180.119.78.78:8090 5 | http://222.178.56.73:8118 6 | http://115.228.57.254:3128 7 | http://49.84.106.160:9000 -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/vagrant/zookeeper.conf: -------------------------------------------------------------------------------- 1 | start on started toxiproxy 2 | stop on stopping toxiproxy 3 | 4 | exec /opt/kafka-KAFKAID/bin/zookeeper-server-start.sh /opt/kafka-KAFKAID/config/zookeeper.properties 5 | -------------------------------------------------------------------------------- /doc/GUI编译命令.txt: -------------------------------------------------------------------------------- 1 | #go get github.com/akavel/rsrc 2 | #rsrc -manifest guimain.manifest -o rsrc.syso -ico ICON.ico 3 | 4 | #go build 5 | 6 | 编译方法: 7 | go build -ldflags="-H windowsgui" 8 | 或者: 9 | go install -ldflags="-H windowsgui" -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/.gitignore: -------------------------------------------------------------------------------- 1 | *.[68] 2 | *.a 3 | *.out 4 | *.swp 5 | _obj 6 | _testmain.go 7 | cmd/metrics-bench/metrics-bench 8 | cmd/metrics-example/metrics-example 9 | cmd/never-read/never-read 10 | -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/runtime_cgo.go: -------------------------------------------------------------------------------- 1 | // +build cgo 2 | // +build !appengine 3 | 4 | package metrics 5 | 6 | import "runtime" 7 | 8 | func numCgoCall() int64 { 9 | return runtime.NumCgoCall() 10 | } 11 | -------------------------------------------------------------------------------- /vendor/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go: -------------------------------------------------------------------------------- 1 | // +build !go1.5 2 | 3 | package metrics 4 | 5 | import "runtime" 6 | 7 | func gcCPUFraction(memStats *runtime.MemStats) float64 { 8 | return 0 9 | } 10 | -------------------------------------------------------------------------------- /vendor/github.com/Shopify/sarama/list_groups_request_test.go: -------------------------------------------------------------------------------- 1 | package sarama 2 | 3 | import "testing" 4 | 5 | func TestListGroupsRequest(t *testing.T) { 6 | testRequest(t, "ListGroupsRequest", &ListGroupsRequest{}, []byte{}) 7 | } 8 | -------------------------------------------------------------------------------- /vendor/github.com/lxn/walk/examples/img/README: -------------------------------------------------------------------------------- 1 | Most image files in this directory are from the base icon theme of the 2 | Tango Desktop Project at http://tango.freedesktop.org. 3 | 4 | Thanks for releasing those to the Public Domain. 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-sql-driver/mysql/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | - 1.6 9 | - tip 10 | 11 | before_script: 12 | - mysql -e 'create database gotest;' 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |