You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

609 lines
23 KiB

Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
5 years ago
Improve listing performance by using go-git (#6478) * Use go-git for tree reading and commit info lookup. Signed-off-by: Filip Navara <navara@emclient.com> * Use TreeEntry.IsRegular() instead of ObjectType that was removed. Signed-off-by: Filip Navara <navara@emclient.com> * Use the treePath to optimize commit info search. Signed-off-by: Filip Navara <navara@emclient.com> * Extract the latest commit at treePath along with the other commits. Signed-off-by: Filip Navara <navara@emclient.com> * Fix listing commit info for a directory that was created in one commit and never modified after. Signed-off-by: Filip Navara <navara@emclient.com> * Avoid nearly all external 'git' invocations when doing directory listing (.editorconfig code path is still hit). Signed-off-by: Filip Navara <navara@emclient.com> * Use go-git for reading blobs. Signed-off-by: Filip Navara <navara@emclient.com> * Make SHA1 type alias for plumbing.Hash in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Make Signature type alias for object.Signature in go-git. Signed-off-by: Filip Navara <navara@emclient.com> * Fix GetCommitsInfo for repository with only one commit. Signed-off-by: Filip Navara <navara@emclient.com> * Fix PGP signature verification. Signed-off-by: Filip Navara <navara@emclient.com> * Fix issues with walking commit graph across merges. Signed-off-by: Filip Navara <navara@emclient.com> * Fix typo in condition. Signed-off-by: Filip Navara <navara@emclient.com> * Speed up loading branch list by keeping the repository reference (and thus all the loaded packfile indexes). Signed-off-by: Filip Navara <navara@emclient.com> * Fix lising submodules. Signed-off-by: Filip Navara <navara@emclient.com> * Fix build Signed-off-by: Filip Navara <navara@emclient.com> * Add back commit cache because of name-rev Signed-off-by: Filip Navara <navara@emclient.com> * Fix tests Signed-off-by: Filip Navara <navara@emclient.com> * Fix code style * Fix spelling * Address PR feedback Signed-off-by: Filip Navara <navara@emclient.com> * Update vendor module list Signed-off-by: Filip Navara <navara@emclient.com> * Fix getting trees by commit id Signed-off-by: Filip Navara <navara@emclient.com> * Fix remaining unit test failures * Fix GetTreeBySHA * Avoid running `git name-rev` if not necessary Signed-off-by: Filip Navara <navara@emclient.com> * Move Branch code to git module * Clean up GPG signature verification and fix it for tagged commits * Address PR feedback (import formatting, copyright headers) * Make blob lookup by SHA working * Update tests to use public API * Allow getting content from any type of object through the blob interface * Change test to actually expect the object content that is in the GIT repository * Change one more test to actually expect the object content that is in the GIT repository * Add comments
5 years ago
  1. # cloud.google.com/go v0.45.0
  2. cloud.google.com/go/compute/metadata
  3. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  4. gitea.com/macaron/binding
  5. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  6. gitea.com/macaron/cache
  7. gitea.com/macaron/cache/memcache
  8. gitea.com/macaron/cache/redis
  9. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  10. gitea.com/macaron/captcha
  11. # gitea.com/macaron/cors v0.0.0-20190821152825-7dcef4a17175
  12. gitea.com/macaron/cors
  13. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  14. gitea.com/macaron/csrf
  15. # gitea.com/macaron/gzip v0.0.0-20191118033930-0c4c5566a0e5
  16. gitea.com/macaron/gzip
  17. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  18. gitea.com/macaron/i18n
  19. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  20. gitea.com/macaron/inject
  21. # gitea.com/macaron/macaron v1.3.3-0.20190821202302-9646c0587edb
  22. gitea.com/macaron/macaron
  23. # gitea.com/macaron/session v0.0.0-20190821211443-122c47c5f705
  24. gitea.com/macaron/session
  25. gitea.com/macaron/session/couchbase
  26. gitea.com/macaron/session/memcache
  27. gitea.com/macaron/session/mysql
  28. gitea.com/macaron/session/nodb
  29. gitea.com/macaron/session/postgres
  30. gitea.com/macaron/session/redis
  31. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  32. gitea.com/macaron/toolbox
  33. # github.com/BurntSushi/toml v0.3.1
  34. github.com/BurntSushi/toml
  35. # github.com/PuerkitoBio/goquery v1.5.0
  36. github.com/PuerkitoBio/goquery
  37. # github.com/PuerkitoBio/purell v1.1.1
  38. github.com/PuerkitoBio/purell
  39. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  40. github.com/PuerkitoBio/urlesc
  41. # github.com/RoaringBitmap/roaring v0.4.7
  42. github.com/RoaringBitmap/roaring
  43. # github.com/andybalholm/cascadia v1.0.0
  44. github.com/andybalholm/cascadia
  45. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  46. github.com/anmitsu/go-shlex
  47. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  48. github.com/asaskevich/govalidator
  49. # github.com/beorn7/perks v1.0.1
  50. github.com/beorn7/perks/quantile
  51. # github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3
  52. github.com/blevesearch/bleve
  53. github.com/blevesearch/bleve/analysis
  54. github.com/blevesearch/bleve/analysis/analyzer/custom
  55. github.com/blevesearch/bleve/analysis/analyzer/standard
  56. github.com/blevesearch/bleve/analysis/datetime/flexible
  57. github.com/blevesearch/bleve/analysis/datetime/optional
  58. github.com/blevesearch/bleve/analysis/lang/en
  59. github.com/blevesearch/bleve/analysis/token/lowercase
  60. github.com/blevesearch/bleve/analysis/token/porter
  61. github.com/blevesearch/bleve/analysis/token/stop
  62. github.com/blevesearch/bleve/analysis/token/unicodenorm
  63. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  64. github.com/blevesearch/bleve/document
  65. github.com/blevesearch/bleve/geo
  66. github.com/blevesearch/bleve/index
  67. github.com/blevesearch/bleve/index/scorch
  68. github.com/blevesearch/bleve/index/scorch/mergeplan
  69. github.com/blevesearch/bleve/index/scorch/segment
  70. github.com/blevesearch/bleve/index/scorch/segment/zap
  71. github.com/blevesearch/bleve/index/store
  72. github.com/blevesearch/bleve/index/store/boltdb
  73. github.com/blevesearch/bleve/index/store/gtreap
  74. github.com/blevesearch/bleve/index/upsidedown
  75. github.com/blevesearch/bleve/mapping
  76. github.com/blevesearch/bleve/numeric
  77. github.com/blevesearch/bleve/registry
  78. github.com/blevesearch/bleve/search
  79. github.com/blevesearch/bleve/search/collector
  80. github.com/blevesearch/bleve/search/facet
  81. github.com/blevesearch/bleve/search/highlight
  82. github.com/blevesearch/bleve/search/highlight/format/html
  83. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  84. github.com/blevesearch/bleve/search/highlight/highlighter/html
  85. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  86. github.com/blevesearch/bleve/search/query
  87. github.com/blevesearch/bleve/search/scorer
  88. github.com/blevesearch/bleve/search/searcher
  89. github.com/blevesearch/bleve/size
  90. # github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f
  91. github.com/blevesearch/go-porterstemmer
  92. # github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc
  93. github.com/blevesearch/segment
  94. # github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26
  95. github.com/boombuler/barcode
  96. github.com/boombuler/barcode/qr
  97. github.com/boombuler/barcode/utils
  98. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  99. github.com/bradfitz/gomemcache/memcache
  100. # github.com/couchbase/gomemcached v0.0.0-20190515232915-c4b4ca0eb21d
  101. github.com/couchbase/gomemcached
  102. github.com/couchbase/gomemcached/client
  103. # github.com/couchbase/goutils v0.0.0-20190315194238-f9d42b11473b
  104. github.com/couchbase/goutils/logging
  105. github.com/couchbase/goutils/scramsha
  106. # github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe
  107. github.com/couchbase/vellum
  108. github.com/couchbase/vellum/levenshtein2
  109. github.com/couchbase/vellum/regexp
  110. github.com/couchbase/vellum/utf8
  111. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  112. github.com/couchbaselabs/go-couchbase
  113. # github.com/davecgh/go-spew v1.1.1
  114. github.com/davecgh/go-spew/spew
  115. # github.com/denisenkom/go-mssqldb v0.0.0-20190924004331-208c0a498538
  116. github.com/denisenkom/go-mssqldb
  117. github.com/denisenkom/go-mssqldb/internal/cp
  118. github.com/denisenkom/go-mssqldb/internal/decimal
  119. github.com/denisenkom/go-mssqldb/internal/querytext
  120. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  121. github.com/dgrijalva/jwt-go
  122. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  123. github.com/editorconfig/editorconfig-core-go/v2
  124. # github.com/edsrzf/mmap-go v1.0.0
  125. github.com/edsrzf/mmap-go
  126. # github.com/emirpasic/gods v1.12.0
  127. github.com/emirpasic/gods/containers
  128. github.com/emirpasic/gods/lists
  129. github.com/emirpasic/gods/lists/arraylist
  130. github.com/emirpasic/gods/trees
  131. github.com/emirpasic/gods/trees/binaryheap
  132. github.com/emirpasic/gods/utils
  133. # github.com/etcd-io/bbolt v1.3.2
  134. github.com/etcd-io/bbolt
  135. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  136. github.com/ethantkoenig/rupture
  137. # github.com/fsnotify/fsnotify v1.4.7
  138. github.com/fsnotify/fsnotify
  139. # github.com/gliderlabs/ssh v0.2.2
  140. github.com/gliderlabs/ssh
  141. # github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd
  142. github.com/glycerine/go-unsnap-stream
  143. # github.com/go-openapi/analysis v0.19.5
  144. github.com/go-openapi/analysis
  145. github.com/go-openapi/analysis/internal
  146. # github.com/go-openapi/errors v0.19.2
  147. github.com/go-openapi/errors
  148. # github.com/go-openapi/inflect v0.19.0
  149. github.com/go-openapi/inflect
  150. # github.com/go-openapi/jsonpointer v0.19.3
  151. github.com/go-openapi/jsonpointer
  152. # github.com/go-openapi/jsonreference v0.19.3
  153. github.com/go-openapi/jsonreference
  154. # github.com/go-openapi/loads v0.19.3
  155. github.com/go-openapi/loads
  156. github.com/go-openapi/loads/fmts
  157. # github.com/go-openapi/runtime v0.19.5
  158. github.com/go-openapi/runtime
  159. github.com/go-openapi/runtime/logger
  160. github.com/go-openapi/runtime/middleware
  161. github.com/go-openapi/runtime/middleware/denco
  162. github.com/go-openapi/runtime/middleware/header
  163. github.com/go-openapi/runtime/middleware/untyped
  164. github.com/go-openapi/runtime/security
  165. # github.com/go-openapi/spec v0.19.3
  166. github.com/go-openapi/spec
  167. # github.com/go-openapi/strfmt v0.19.3
  168. github.com/go-openapi/strfmt
  169. # github.com/go-openapi/swag v0.19.5
  170. github.com/go-openapi/swag
  171. # github.com/go-openapi/validate v0.19.3
  172. github.com/go-openapi/validate
  173. # github.com/go-redis/redis v6.15.2+incompatible
  174. github.com/go-redis/redis
  175. github.com/go-redis/redis/internal
  176. github.com/go-redis/redis/internal/consistenthash
  177. github.com/go-redis/redis/internal/hashtag
  178. github.com/go-redis/redis/internal/pool
  179. github.com/go-redis/redis/internal/proto
  180. github.com/go-redis/redis/internal/util
  181. # github.com/go-sql-driver/mysql v1.4.1
  182. github.com/go-sql-driver/mysql
  183. # github.com/go-stack/stack v1.8.0
  184. github.com/go-stack/stack
  185. # github.com/go-swagger/go-swagger v0.20.1
  186. github.com/go-swagger/go-swagger/cmd/swagger
  187. github.com/go-swagger/go-swagger/cmd/swagger/commands
  188. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  189. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  190. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  191. github.com/go-swagger/go-swagger/codescan
  192. github.com/go-swagger/go-swagger/generator
  193. github.com/go-swagger/go-swagger/scan
  194. # github.com/gobwas/glob v0.2.3
  195. github.com/gobwas/glob
  196. github.com/gobwas/glob/compiler
  197. github.com/gobwas/glob/match
  198. github.com/gobwas/glob/syntax
  199. github.com/gobwas/glob/syntax/ast
  200. github.com/gobwas/glob/syntax/lexer
  201. github.com/gobwas/glob/util/runes
  202. github.com/gobwas/glob/util/strings
  203. # github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561
  204. github.com/gogits/chardet
  205. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  206. github.com/gogs/cron
  207. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  208. github.com/golang-sql/civil
  209. # github.com/golang/protobuf v1.3.2
  210. github.com/golang/protobuf/proto
  211. # github.com/golang/snappy v0.0.1
  212. github.com/golang/snappy
  213. # github.com/google/go-github/v24 v24.0.1
  214. github.com/google/go-github/v24/github
  215. # github.com/google/go-querystring v1.0.0
  216. github.com/google/go-querystring/query
  217. # github.com/gorilla/context v1.1.1
  218. github.com/gorilla/context
  219. # github.com/gorilla/handlers v1.4.2
  220. github.com/gorilla/handlers
  221. # github.com/gorilla/mux v1.6.2
  222. github.com/gorilla/mux
  223. # github.com/gorilla/securecookie v1.1.1
  224. github.com/gorilla/securecookie
  225. # github.com/gorilla/sessions v1.2.0
  226. github.com/gorilla/sessions
  227. # github.com/hashicorp/hcl v1.0.0
  228. github.com/hashicorp/hcl
  229. github.com/hashicorp/hcl/hcl/ast
  230. github.com/hashicorp/hcl/hcl/parser
  231. github.com/hashicorp/hcl/hcl/printer
  232. github.com/hashicorp/hcl/hcl/scanner
  233. github.com/hashicorp/hcl/hcl/strconv
  234. github.com/hashicorp/hcl/hcl/token
  235. github.com/hashicorp/hcl/json/parser
  236. github.com/hashicorp/hcl/json/scanner
  237. github.com/hashicorp/hcl/json/token
  238. # github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c
  239. github.com/issue9/identicon
  240. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  241. github.com/jaytaylor/html2text
  242. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  243. github.com/jbenet/go-context/io
  244. # github.com/jessevdk/go-flags v1.4.0
  245. github.com/jessevdk/go-flags
  246. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  247. github.com/kballard/go-shellquote
  248. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  249. github.com/kevinburke/ssh_config
  250. # github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6
  251. github.com/keybase/go-crypto/brainpool
  252. github.com/keybase/go-crypto/cast5
  253. github.com/keybase/go-crypto/curve25519
  254. github.com/keybase/go-crypto/ed25519
  255. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  256. github.com/keybase/go-crypto/openpgp
  257. github.com/keybase/go-crypto/openpgp/armor
  258. github.com/keybase/go-crypto/openpgp/ecdh
  259. github.com/keybase/go-crypto/openpgp/elgamal
  260. github.com/keybase/go-crypto/openpgp/errors
  261. github.com/keybase/go-crypto/openpgp/packet
  262. github.com/keybase/go-crypto/openpgp/s2k
  263. github.com/keybase/go-crypto/rsa
  264. # github.com/klauspost/compress v1.9.2
  265. github.com/klauspost/compress/flate
  266. github.com/klauspost/compress/gzip
  267. # github.com/kr/pretty v0.1.0
  268. github.com/kr/pretty
  269. # github.com/kr/text v0.1.0
  270. github.com/kr/text
  271. # github.com/lafriks/xormstore v1.3.2
  272. github.com/lafriks/xormstore
  273. github.com/lafriks/xormstore/util
  274. # github.com/lib/pq v1.2.0
  275. github.com/lib/pq
  276. github.com/lib/pq/oid
  277. github.com/lib/pq/scram
  278. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  279. github.com/lunny/dingtalk_webhook
  280. # github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
  281. github.com/lunny/levelqueue
  282. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  283. github.com/lunny/log
  284. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  285. github.com/lunny/nodb
  286. github.com/lunny/nodb/config
  287. github.com/lunny/nodb/store
  288. github.com/lunny/nodb/store/driver
  289. github.com/lunny/nodb/store/goleveldb
  290. # github.com/magiconair/properties v1.8.1
  291. github.com/magiconair/properties
  292. # github.com/mailru/easyjson v0.7.0
  293. github.com/mailru/easyjson/buffer
  294. github.com/mailru/easyjson/jlexer
  295. github.com/mailru/easyjson/jwriter
  296. # github.com/markbates/goth v1.56.0
  297. github.com/markbates/goth
  298. github.com/markbates/goth/gothic
  299. github.com/markbates/goth/providers/bitbucket
  300. github.com/markbates/goth/providers/discord
  301. github.com/markbates/goth/providers/dropbox
  302. github.com/markbates/goth/providers/facebook
  303. github.com/markbates/goth/providers/gitea
  304. github.com/markbates/goth/providers/github
  305. github.com/markbates/goth/providers/gitlab
  306. github.com/markbates/goth/providers/google
  307. github.com/markbates/goth/providers/openidConnect
  308. github.com/markbates/goth/providers/twitter
  309. # github.com/mattn/go-isatty v0.0.7
  310. github.com/mattn/go-isatty
  311. # github.com/mattn/go-sqlite3 v1.11.0
  312. github.com/mattn/go-sqlite3
  313. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  314. github.com/matttproud/golang_protobuf_extensions/pbutil
  315. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  316. github.com/mcuadros/go-version
  317. # github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a
  318. github.com/microcosm-cc/bluemonday
  319. # github.com/mitchellh/go-homedir v1.1.0
  320. github.com/mitchellh/go-homedir
  321. # github.com/mitchellh/mapstructure v1.1.2
  322. github.com/mitchellh/mapstructure
  323. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  324. github.com/mrjones/oauth
  325. # github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
  326. github.com/mschoch/smat
  327. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  328. github.com/msteinert/pam
  329. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  330. github.com/nfnt/resize
  331. # github.com/niklasfasching/go-org v0.1.8
  332. github.com/niklasfasching/go-org/org
  333. # github.com/oliamb/cutter v0.2.2
  334. github.com/oliamb/cutter
  335. # github.com/pelletier/go-toml v1.4.0
  336. github.com/pelletier/go-toml
  337. # github.com/philhofer/fwd v1.0.0
  338. github.com/philhofer/fwd
  339. # github.com/pkg/errors v0.8.1
  340. github.com/pkg/errors
  341. # github.com/pmezard/go-difflib v1.0.0
  342. github.com/pmezard/go-difflib/difflib
  343. # github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e
  344. github.com/pquerna/otp
  345. github.com/pquerna/otp/hotp
  346. github.com/pquerna/otp/totp
  347. # github.com/prometheus/client_golang v1.1.0
  348. github.com/prometheus/client_golang/prometheus
  349. github.com/prometheus/client_golang/prometheus/internal
  350. github.com/prometheus/client_golang/prometheus/promhttp
  351. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  352. github.com/prometheus/client_model/go
  353. # github.com/prometheus/common v0.6.0
  354. github.com/prometheus/common/expfmt
  355. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  356. github.com/prometheus/common/model
  357. # github.com/prometheus/procfs v0.0.4
  358. github.com/prometheus/procfs
  359. github.com/prometheus/procfs/internal/fs
  360. github.com/prometheus/procfs/internal/util
  361. # github.com/russross/blackfriday/v2 v2.0.1
  362. github.com/russross/blackfriday/v2
  363. # github.com/satori/go.uuid v1.2.0
  364. github.com/satori/go.uuid
  365. # github.com/sergi/go-diff v1.0.0
  366. github.com/sergi/go-diff/diffmatchpatch
  367. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  368. github.com/shurcooL/httpfs/vfsutil
  369. # github.com/shurcooL/sanitized_anchor_name v1.0.0
  370. github.com/shurcooL/sanitized_anchor_name
  371. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  372. github.com/shurcooL/vfsgen
  373. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  374. github.com/siddontang/go-snappy/snappy
  375. # github.com/spf13/afero v1.2.2
  376. github.com/spf13/afero
  377. github.com/spf13/afero/mem
  378. # github.com/spf13/cast v1.3.0
  379. github.com/spf13/cast
  380. # github.com/spf13/jwalterweatherman v1.1.0
  381. github.com/spf13/jwalterweatherman
  382. # github.com/spf13/pflag v1.0.3
  383. github.com/spf13/pflag
  384. # github.com/spf13/viper v1.4.0
  385. github.com/spf13/viper
  386. # github.com/src-d/gcfg v1.4.0
  387. github.com/src-d/gcfg
  388. github.com/src-d/gcfg/scanner
  389. github.com/src-d/gcfg/token
  390. github.com/src-d/gcfg/types
  391. # github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2
  392. github.com/steveyen/gtreap
  393. # github.com/stretchr/testify v1.4.0
  394. github.com/stretchr/testify/assert
  395. github.com/stretchr/testify/require
  396. # github.com/syndtr/goleveldb v1.0.0
  397. github.com/syndtr/goleveldb/leveldb
  398. github.com/syndtr/goleveldb/leveldb/cache
  399. github.com/syndtr/goleveldb/leveldb/comparer
  400. github.com/syndtr/goleveldb/leveldb/errors
  401. github.com/syndtr/goleveldb/leveldb/filter
  402. github.com/syndtr/goleveldb/leveldb/iterator
  403. github.com/syndtr/goleveldb/leveldb/journal
  404. github.com/syndtr/goleveldb/leveldb/memdb
  405. github.com/syndtr/goleveldb/leveldb/opt
  406. github.com/syndtr/goleveldb/leveldb/storage
  407. github.com/syndtr/goleveldb/leveldb/table
  408. github.com/syndtr/goleveldb/leveldb/util
  409. # github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200
  410. github.com/tinylib/msgp/msgp
  411. # github.com/toqueteos/webbrowser v1.2.0
  412. github.com/toqueteos/webbrowser
  413. # github.com/tstranex/u2f v1.0.0
  414. github.com/tstranex/u2f
  415. # github.com/unknwon/cae v0.0.0-20190822084630-55a0b64484a1
  416. github.com/unknwon/cae
  417. github.com/unknwon/cae/zip
  418. # github.com/unknwon/com v0.0.0-20190804042917-757f69c95f3e
  419. github.com/unknwon/com
  420. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  421. github.com/unknwon/i18n
  422. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  423. github.com/unknwon/paginater
  424. # github.com/urfave/cli v1.20.0
  425. github.com/urfave/cli
  426. # github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621
  427. github.com/willf/bitset
  428. # github.com/xanzy/ssh-agent v0.2.1
  429. github.com/xanzy/ssh-agent
  430. # github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53
  431. github.com/yohcop/openid-go
  432. # go.mongodb.org/mongo-driver v1.1.1
  433. go.mongodb.org/mongo-driver/bson
  434. go.mongodb.org/mongo-driver/bson/bsoncodec
  435. go.mongodb.org/mongo-driver/bson/bsonrw
  436. go.mongodb.org/mongo-driver/bson/bsontype
  437. go.mongodb.org/mongo-driver/bson/primitive
  438. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  439. # golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad
  440. golang.org/x/crypto/acme
  441. golang.org/x/crypto/acme/autocert
  442. golang.org/x/crypto/argon2
  443. golang.org/x/crypto/bcrypt
  444. golang.org/x/crypto/blake2b
  445. golang.org/x/crypto/blowfish
  446. golang.org/x/crypto/cast5
  447. golang.org/x/crypto/curve25519
  448. golang.org/x/crypto/ed25519
  449. golang.org/x/crypto/ed25519/internal/edwards25519
  450. golang.org/x/crypto/internal/chacha20
  451. golang.org/x/crypto/internal/subtle
  452. golang.org/x/crypto/md4
  453. golang.org/x/crypto/openpgp
  454. golang.org/x/crypto/openpgp/armor
  455. golang.org/x/crypto/openpgp/elgamal
  456. golang.org/x/crypto/openpgp/errors
  457. golang.org/x/crypto/openpgp/packet
  458. golang.org/x/crypto/openpgp/s2k
  459. golang.org/x/crypto/pbkdf2
  460. golang.org/x/crypto/poly1305
  461. golang.org/x/crypto/scrypt
  462. golang.org/x/crypto/ssh
  463. golang.org/x/crypto/ssh/agent
  464. golang.org/x/crypto/ssh/knownhosts
  465. # golang.org/x/net v0.0.0-20191101175033-0deb6923b6d9
  466. golang.org/x/net/context
  467. golang.org/x/net/context/ctxhttp
  468. golang.org/x/net/html
  469. golang.org/x/net/html/atom
  470. golang.org/x/net/html/charset
  471. golang.org/x/net/idna
  472. golang.org/x/net/internal/socks
  473. golang.org/x/net/proxy
  474. # golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  475. golang.org/x/oauth2
  476. golang.org/x/oauth2/google
  477. golang.org/x/oauth2/internal
  478. golang.org/x/oauth2/jws
  479. golang.org/x/oauth2/jwt
  480. # golang.org/x/sys v0.0.0-20190910064555-bbd175535a8b
  481. golang.org/x/sys/cpu
  482. golang.org/x/sys/unix
  483. golang.org/x/sys/windows
  484. golang.org/x/sys/windows/svc
  485. # golang.org/x/text v0.3.2
  486. golang.org/x/text/encoding
  487. golang.org/x/text/encoding/charmap
  488. golang.org/x/text/encoding/htmlindex
  489. golang.org/x/text/encoding/internal
  490. golang.org/x/text/encoding/internal/identifier
  491. golang.org/x/text/encoding/japanese
  492. golang.org/x/text/encoding/korean
  493. golang.org/x/text/encoding/simplifiedchinese
  494. golang.org/x/text/encoding/traditionalchinese
  495. golang.org/x/text/encoding/unicode
  496. golang.org/x/text/internal/language
  497. golang.org/x/text/internal/language/compact
  498. golang.org/x/text/internal/tag
  499. golang.org/x/text/internal/utf8internal
  500. golang.org/x/text/language
  501. golang.org/x/text/runes
  502. golang.org/x/text/secure/bidirule
  503. golang.org/x/text/transform
  504. golang.org/x/text/unicode/bidi
  505. golang.org/x/text/unicode/norm
  506. golang.org/x/text/width
  507. # golang.org/x/tools v0.0.0-20190910221609-7f5965fd7709
  508. golang.org/x/tools/go/ast/astutil
  509. golang.org/x/tools/go/buildutil
  510. golang.org/x/tools/go/gcexportdata
  511. golang.org/x/tools/go/internal/cgo
  512. golang.org/x/tools/go/internal/gcimporter
  513. golang.org/x/tools/go/internal/packagesdriver
  514. golang.org/x/tools/go/loader
  515. golang.org/x/tools/go/packages
  516. golang.org/x/tools/imports
  517. golang.org/x/tools/internal/fastwalk
  518. golang.org/x/tools/internal/gopathwalk
  519. golang.org/x/tools/internal/imports
  520. golang.org/x/tools/internal/module
  521. golang.org/x/tools/internal/semver
  522. # google.golang.org/appengine v1.6.4
  523. google.golang.org/appengine
  524. google.golang.org/appengine/cloudsql
  525. google.golang.org/appengine/internal
  526. google.golang.org/appengine/internal/app_identity
  527. google.golang.org/appengine/internal/base
  528. google.golang.org/appengine/internal/datastore
  529. google.golang.org/appengine/internal/log
  530. google.golang.org/appengine/internal/modules
  531. google.golang.org/appengine/internal/remote_api
  532. google.golang.org/appengine/internal/urlfetch
  533. google.golang.org/appengine/urlfetch
  534. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  535. gopkg.in/alexcesaro/quotedprintable.v3
  536. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  537. gopkg.in/asn1-ber.v1
  538. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  539. gopkg.in/gomail.v2
  540. # gopkg.in/ini.v1 v1.48.0
  541. gopkg.in/ini.v1
  542. # gopkg.in/ldap.v3 v3.0.2
  543. gopkg.in/ldap.v3
  544. # gopkg.in/src-d/go-billy.v4 v4.3.2
  545. gopkg.in/src-d/go-billy.v4
  546. gopkg.in/src-d/go-billy.v4/helper/chroot
  547. gopkg.in/src-d/go-billy.v4/helper/polyfill
  548. gopkg.in/src-d/go-billy.v4/osfs
  549. gopkg.in/src-d/go-billy.v4/util
  550. # gopkg.in/src-d/go-git.v4 v4.13.1
  551. gopkg.in/src-d/go-git.v4
  552. gopkg.in/src-d/go-git.v4/config
  553. gopkg.in/src-d/go-git.v4/internal/revision
  554. gopkg.in/src-d/go-git.v4/internal/url
  555. gopkg.in/src-d/go-git.v4/plumbing
  556. gopkg.in/src-d/go-git.v4/plumbing/cache
  557. gopkg.in/src-d/go-git.v4/plumbing/filemode
  558. gopkg.in/src-d/go-git.v4/plumbing/format/commitgraph
  559. gopkg.in/src-d/go-git.v4/plumbing/format/config
  560. gopkg.in/src-d/go-git.v4/plumbing/format/diff
  561. gopkg.in/src-d/go-git.v4/plumbing/format/gitignore
  562. gopkg.in/src-d/go-git.v4/plumbing/format/idxfile
  563. gopkg.in/src-d/go-git.v4/plumbing/format/index
  564. gopkg.in/src-d/go-git.v4/plumbing/format/objfile
  565. gopkg.in/src-d/go-git.v4/plumbing/format/packfile
  566. gopkg.in/src-d/go-git.v4/plumbing/format/pktline
  567. gopkg.in/src-d/go-git.v4/plumbing/object
  568. gopkg.in/src-d/go-git.v4/plumbing/object/commitgraph
  569. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp
  570. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability
  571. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband
  572. gopkg.in/src-d/go-git.v4/plumbing/revlist
  573. gopkg.in/src-d/go-git.v4/plumbing/storer
  574. gopkg.in/src-d/go-git.v4/plumbing/transport
  575. gopkg.in/src-d/go-git.v4/plumbing/transport/client
  576. gopkg.in/src-d/go-git.v4/plumbing/transport/file
  577. gopkg.in/src-d/go-git.v4/plumbing/transport/git
  578. gopkg.in/src-d/go-git.v4/plumbing/transport/http
  579. gopkg.in/src-d/go-git.v4/plumbing/transport/internal/common
  580. gopkg.in/src-d/go-git.v4/plumbing/transport/server
  581. gopkg.in/src-d/go-git.v4/plumbing/transport/ssh
  582. gopkg.in/src-d/go-git.v4/storage
  583. gopkg.in/src-d/go-git.v4/storage/filesystem
  584. gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit
  585. gopkg.in/src-d/go-git.v4/storage/memory
  586. gopkg.in/src-d/go-git.v4/utils/binary
  587. gopkg.in/src-d/go-git.v4/utils/diff
  588. gopkg.in/src-d/go-git.v4/utils/ioutil
  589. gopkg.in/src-d/go-git.v4/utils/merkletrie
  590. gopkg.in/src-d/go-git.v4/utils/merkletrie/filesystem
  591. gopkg.in/src-d/go-git.v4/utils/merkletrie/index
  592. gopkg.in/src-d/go-git.v4/utils/merkletrie/internal/frame
  593. gopkg.in/src-d/go-git.v4/utils/merkletrie/noder
  594. # gopkg.in/testfixtures.v2 v2.5.0
  595. gopkg.in/testfixtures.v2
  596. # gopkg.in/warnings.v0 v0.1.2
  597. gopkg.in/warnings.v0
  598. # gopkg.in/yaml.v2 v2.2.2
  599. gopkg.in/yaml.v2
  600. # mvdan.cc/xurls/v2 v2.1.0
  601. mvdan.cc/xurls/v2
  602. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  603. strk.kbt.io/projects/go/libravatar
  604. # xorm.io/builder v0.3.6
  605. xorm.io/builder
  606. # xorm.io/core v0.7.2
  607. xorm.io/core
  608. # xorm.io/xorm v0.8.0
  609. xorm.io/xorm