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.

459 lines
19 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
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
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
  1. # code.gitea.io/sdk v0.0.0-20190321154058-a669487e86e0
  2. code.gitea.io/sdk/gitea
  3. # github.com/BurntSushi/toml v0.3.1
  4. github.com/BurntSushi/toml
  5. # github.com/PuerkitoBio/goquery v0.0.0-20170324135448-ed7d758e9a34
  6. github.com/PuerkitoBio/goquery
  7. # github.com/RoaringBitmap/roaring v0.4.7
  8. github.com/RoaringBitmap/roaring
  9. # github.com/Unknwon/cae v0.0.0-20160715032808-c6aac99ea2ca
  10. github.com/Unknwon/cae/zip
  11. github.com/Unknwon/cae
  12. # github.com/Unknwon/com v0.0.0-20170819223952-7677a1d7c113
  13. github.com/Unknwon/com
  14. # github.com/Unknwon/i18n v0.0.0-20171114194641-b64d33658966
  15. github.com/Unknwon/i18n
  16. # github.com/Unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  17. github.com/Unknwon/paginater
  18. # github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470
  19. github.com/andybalholm/cascadia
  20. # github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973
  21. github.com/beorn7/perks/quantile
  22. # github.com/blevesearch/bleve v0.0.0-20190214220507-05d86ea8f6e3
  23. github.com/blevesearch/bleve
  24. github.com/blevesearch/bleve/analysis/analyzer/custom
  25. github.com/blevesearch/bleve/analysis/token/camelcase
  26. github.com/blevesearch/bleve/analysis/token/lowercase
  27. github.com/blevesearch/bleve/analysis/token/unicodenorm
  28. github.com/blevesearch/bleve/analysis/token/unique
  29. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  30. github.com/blevesearch/bleve/index/upsidedown
  31. github.com/blevesearch/bleve/mapping
  32. github.com/blevesearch/bleve/search/query
  33. github.com/blevesearch/bleve/document
  34. github.com/blevesearch/bleve/analysis
  35. github.com/blevesearch/bleve/analysis/datetime/optional
  36. github.com/blevesearch/bleve/index
  37. github.com/blevesearch/bleve/index/scorch
  38. github.com/blevesearch/bleve/index/store
  39. github.com/blevesearch/bleve/index/store/boltdb
  40. github.com/blevesearch/bleve/index/store/gtreap
  41. github.com/blevesearch/bleve/registry
  42. github.com/blevesearch/bleve/search
  43. github.com/blevesearch/bleve/search/collector
  44. github.com/blevesearch/bleve/search/facet
  45. github.com/blevesearch/bleve/search/highlight
  46. github.com/blevesearch/bleve/search/highlight/highlighter/html
  47. github.com/blevesearch/bleve/size
  48. github.com/blevesearch/bleve/analysis/analyzer/standard
  49. github.com/blevesearch/bleve/geo
  50. github.com/blevesearch/bleve/numeric
  51. github.com/blevesearch/bleve/search/searcher
  52. github.com/blevesearch/bleve/analysis/datetime/flexible
  53. github.com/blevesearch/bleve/index/scorch/mergeplan
  54. github.com/blevesearch/bleve/index/scorch/segment
  55. github.com/blevesearch/bleve/index/scorch/segment/zap
  56. github.com/blevesearch/bleve/search/highlight/format/html
  57. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  58. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  59. github.com/blevesearch/bleve/analysis/lang/en
  60. github.com/blevesearch/bleve/search/scorer
  61. github.com/blevesearch/bleve/analysis/token/porter
  62. github.com/blevesearch/bleve/analysis/token/stop
  63. # github.com/blevesearch/go-porterstemmer v0.0.0-20141230013033-23a2c8e5cf1f
  64. github.com/blevesearch/go-porterstemmer
  65. # github.com/blevesearch/segment v0.0.0-20160105220820-db70c57796cc
  66. github.com/blevesearch/segment
  67. # github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26
  68. github.com/boombuler/barcode
  69. github.com/boombuler/barcode/qr
  70. github.com/boombuler/barcode/utils
  71. # github.com/bradfitz/gomemcache v0.0.0-20160117192205-fb1f79c6b65a
  72. github.com/bradfitz/gomemcache/memcache
  73. # github.com/chaseadamsio/goorgeous v0.0.0-20170901132237-098da33fde5f
  74. github.com/chaseadamsio/goorgeous
  75. # github.com/couchbase/gomemcached v0.0.0-20181122193126-5125a94a666c
  76. github.com/couchbase/gomemcached
  77. github.com/couchbase/gomemcached/client
  78. # github.com/couchbase/goutils v0.0.0-20180530154633-e865a1461c8a
  79. github.com/couchbase/goutils/logging
  80. github.com/couchbase/goutils/scramsha
  81. # github.com/couchbase/vellum v0.0.0-20190111184608-e91b68ff3efe
  82. github.com/couchbase/vellum
  83. github.com/couchbase/vellum/levenshtein2
  84. github.com/couchbase/vellum/regexp
  85. github.com/couchbase/vellum/utf8
  86. # github.com/couchbaselabs/go-couchbase v0.0.0-20190117181324-d904413d884d
  87. github.com/couchbaselabs/go-couchbase
  88. # github.com/davecgh/go-spew v1.1.1
  89. github.com/davecgh/go-spew/spew
  90. # github.com/denisenkom/go-mssqldb v0.0.0-20181014144952-4e0d7dc8888f => github.com/denisenkom/go-mssqldb v0.0.0-20161128230840-e32ca5036449
  91. github.com/denisenkom/go-mssqldb
  92. # github.com/dgrijalva/jwt-go v0.0.0-20161101193935-9ed569b5d1ac
  93. github.com/dgrijalva/jwt-go
  94. # github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712
  95. github.com/edsrzf/mmap-go
  96. # github.com/elazarl/go-bindata-assetfs v0.0.0-20151224045452-57eb5e1fc594
  97. github.com/elazarl/go-bindata-assetfs
  98. # github.com/emirpasic/gods v1.12.0
  99. github.com/emirpasic/gods/trees/binaryheap
  100. github.com/emirpasic/gods/containers
  101. github.com/emirpasic/gods/lists/arraylist
  102. github.com/emirpasic/gods/trees
  103. github.com/emirpasic/gods/utils
  104. github.com/emirpasic/gods/lists
  105. # github.com/etcd-io/bbolt v1.3.2
  106. github.com/etcd-io/bbolt
  107. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  108. github.com/ethantkoenig/rupture
  109. # github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a
  110. github.com/facebookgo/clock
  111. # github.com/facebookgo/grace v0.0.0-20160926231715-5729e484473f
  112. github.com/facebookgo/grace/gracehttp
  113. github.com/facebookgo/grace/gracenet
  114. # github.com/facebookgo/httpdown v0.0.0-20160323221027-a3b1354551a2
  115. github.com/facebookgo/httpdown
  116. # github.com/facebookgo/stats v0.0.0-20151006221625-1b76add642e4
  117. github.com/facebookgo/stats
  118. # github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd
  119. github.com/glycerine/go-unsnap-stream
  120. # github.com/go-macaron/bindata v0.0.0-20161222093048-85786f57eee3
  121. github.com/go-macaron/bindata
  122. # github.com/go-macaron/binding v0.0.0-20160711225916-9440f336b443
  123. github.com/go-macaron/binding
  124. # github.com/go-macaron/cache v0.0.0-20151013081102-561735312776
  125. github.com/go-macaron/cache
  126. github.com/go-macaron/cache/memcache
  127. github.com/go-macaron/cache/redis
  128. # github.com/go-macaron/captcha v0.0.0-20151123225153-8aa5919789ab
  129. github.com/go-macaron/captcha
  130. # github.com/go-macaron/csrf v0.0.0-20180426211211-503617c6b372
  131. github.com/go-macaron/csrf
  132. # github.com/go-macaron/i18n v0.0.0-20160612092837-ef57533c3b0f
  133. github.com/go-macaron/i18n
  134. # github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191
  135. github.com/go-macaron/inject
  136. # github.com/go-macaron/session v0.0.0-20190131233854-0a0a789bf193
  137. github.com/go-macaron/session
  138. github.com/go-macaron/session/couchbase
  139. github.com/go-macaron/session/memcache
  140. github.com/go-macaron/session/mysql
  141. github.com/go-macaron/session/nodb
  142. github.com/go-macaron/session/postgres
  143. github.com/go-macaron/session/redis
  144. # github.com/go-macaron/toolbox v0.0.0-20180818072302-a77f45a7ce90
  145. github.com/go-macaron/toolbox
  146. # github.com/go-sql-driver/mysql v1.4.0 => github.com/go-sql-driver/mysql v0.0.0-20181218123637-c45f530f8e7f
  147. github.com/go-sql-driver/mysql
  148. # github.com/go-xorm/builder v0.3.3
  149. github.com/go-xorm/builder
  150. # github.com/go-xorm/core v0.6.0
  151. github.com/go-xorm/core
  152. # github.com/go-xorm/xorm v0.0.0-20190116032649-a6300f2a45e0
  153. github.com/go-xorm/xorm
  154. # github.com/gogits/chardet v0.0.0-20150115103509-2404f7772561
  155. github.com/gogits/chardet
  156. # github.com/gogits/cron v0.0.0-20160810035002-7f3990acf183
  157. github.com/gogits/cron
  158. # github.com/golang/protobuf v1.2.0
  159. github.com/golang/protobuf/proto
  160. # github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db
  161. github.com/golang/snappy
  162. # github.com/gorilla/context v1.1.1
  163. github.com/gorilla/context
  164. # github.com/gorilla/mux v1.6.2
  165. github.com/gorilla/mux
  166. # github.com/gorilla/securecookie v1.1.1
  167. github.com/gorilla/securecookie
  168. # github.com/gorilla/sessions v1.1.1
  169. github.com/gorilla/sessions
  170. # github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c
  171. github.com/issue9/identicon
  172. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  173. github.com/jaytaylor/html2text
  174. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  175. github.com/jbenet/go-context/io
  176. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  177. github.com/kballard/go-shellquote
  178. # github.com/kevinburke/ssh_config v0.0.0-20180830205328-81db2a75821e
  179. github.com/kevinburke/ssh_config
  180. # github.com/keybase/go-crypto v0.0.0-20170605145657-00ac4db533f6
  181. github.com/keybase/go-crypto/openpgp
  182. github.com/keybase/go-crypto/openpgp/armor
  183. github.com/keybase/go-crypto/openpgp/packet
  184. github.com/keybase/go-crypto/openpgp/errors
  185. github.com/keybase/go-crypto/openpgp/s2k
  186. github.com/keybase/go-crypto/rsa
  187. github.com/keybase/go-crypto/brainpool
  188. github.com/keybase/go-crypto/cast5
  189. github.com/keybase/go-crypto/curve25519
  190. github.com/keybase/go-crypto/ed25519
  191. github.com/keybase/go-crypto/openpgp/ecdh
  192. github.com/keybase/go-crypto/openpgp/elgamal
  193. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  194. # github.com/klauspost/compress v0.0.0-20161025140425-8df558b6cb6f
  195. github.com/klauspost/compress/gzip
  196. github.com/klauspost/compress/flate
  197. # github.com/klauspost/cpuid v0.0.0-20160302075316-09cded8978dc
  198. github.com/klauspost/cpuid
  199. # github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6
  200. github.com/klauspost/crc32
  201. # github.com/lafriks/xormstore v1.0.0
  202. github.com/lafriks/xormstore
  203. github.com/lafriks/xormstore/util
  204. # github.com/lib/pq v1.0.0
  205. github.com/lib/pq
  206. github.com/lib/pq/oid
  207. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  208. github.com/lunny/dingtalk_webhook
  209. # github.com/lunny/levelqueue v0.0.0-20190217115915-02b525a4418e
  210. github.com/lunny/levelqueue
  211. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  212. github.com/lunny/log
  213. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  214. github.com/lunny/nodb
  215. github.com/lunny/nodb/config
  216. github.com/lunny/nodb/store
  217. github.com/lunny/nodb/store/driver
  218. github.com/lunny/nodb/store/goleveldb
  219. # github.com/markbates/goth v1.49.0
  220. github.com/markbates/goth
  221. github.com/markbates/goth/gothic
  222. github.com/markbates/goth/providers/bitbucket
  223. github.com/markbates/goth/providers/discord
  224. github.com/markbates/goth/providers/dropbox
  225. github.com/markbates/goth/providers/facebook
  226. github.com/markbates/goth/providers/github
  227. github.com/markbates/goth/providers/gitlab
  228. github.com/markbates/goth/providers/gplus
  229. github.com/markbates/goth/providers/openidConnect
  230. github.com/markbates/goth/providers/twitter
  231. # github.com/mattn/go-isatty v0.0.7
  232. github.com/mattn/go-isatty
  233. # github.com/mattn/go-sqlite3 v1.10.0
  234. github.com/mattn/go-sqlite3
  235. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  236. github.com/matttproud/golang_protobuf_extensions/pbutil
  237. # github.com/mcuadros/go-version v0.0.0-20171003094716-88e56e02bea1
  238. github.com/mcuadros/go-version
  239. # github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a
  240. github.com/microcosm-cc/bluemonday
  241. # github.com/mitchellh/go-homedir v1.0.0
  242. github.com/mitchellh/go-homedir
  243. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  244. github.com/mrjones/oauth
  245. # github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
  246. github.com/mschoch/smat
  247. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  248. github.com/msteinert/pam
  249. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  250. github.com/nfnt/resize
  251. # github.com/pelletier/go-buffruneio v0.2.0
  252. github.com/pelletier/go-buffruneio
  253. # github.com/philhofer/fwd v1.0.0
  254. github.com/philhofer/fwd
  255. # github.com/pkg/errors v0.8.1
  256. github.com/pkg/errors
  257. # github.com/pmezard/go-difflib v1.0.0
  258. github.com/pmezard/go-difflib/difflib
  259. # github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e
  260. github.com/pquerna/otp/totp
  261. github.com/pquerna/otp
  262. github.com/pquerna/otp/hotp
  263. # github.com/prometheus/client_golang v0.9.0
  264. github.com/prometheus/client_golang/prometheus
  265. github.com/prometheus/client_golang/prometheus/promhttp
  266. github.com/prometheus/client_golang/prometheus/internal
  267. # github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
  268. github.com/prometheus/client_model/go
  269. # github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39
  270. github.com/prometheus/common/expfmt
  271. github.com/prometheus/common/model
  272. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  273. # github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d
  274. github.com/prometheus/procfs
  275. github.com/prometheus/procfs/nfs
  276. github.com/prometheus/procfs/xfs
  277. github.com/prometheus/procfs/internal/util
  278. # github.com/russross/blackfriday v0.0.0-20180428102519-11635eb403ff
  279. github.com/russross/blackfriday
  280. # github.com/satori/go.uuid v1.2.0
  281. github.com/satori/go.uuid
  282. # github.com/sergi/go-diff v1.0.0
  283. github.com/sergi/go-diff/diffmatchpatch
  284. # github.com/shurcooL/sanitized_anchor_name v0.0.0-20160918041101-1dba4b3954bc
  285. github.com/shurcooL/sanitized_anchor_name
  286. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  287. github.com/siddontang/go-snappy/snappy
  288. # github.com/src-d/gcfg v1.4.0
  289. github.com/src-d/gcfg
  290. github.com/src-d/gcfg/scanner
  291. github.com/src-d/gcfg/token
  292. github.com/src-d/gcfg/types
  293. # github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2
  294. github.com/steveyen/gtreap
  295. # github.com/stretchr/testify v1.2.2
  296. github.com/stretchr/testify/assert
  297. github.com/stretchr/testify/require
  298. # github.com/syndtr/goleveldb v0.0.0-20190203031304-2f17a3356c66
  299. github.com/syndtr/goleveldb/leveldb
  300. github.com/syndtr/goleveldb/leveldb/cache
  301. github.com/syndtr/goleveldb/leveldb/comparer
  302. github.com/syndtr/goleveldb/leveldb/errors
  303. github.com/syndtr/goleveldb/leveldb/filter
  304. github.com/syndtr/goleveldb/leveldb/iterator
  305. github.com/syndtr/goleveldb/leveldb/journal
  306. github.com/syndtr/goleveldb/leveldb/memdb
  307. github.com/syndtr/goleveldb/leveldb/opt
  308. github.com/syndtr/goleveldb/leveldb/storage
  309. github.com/syndtr/goleveldb/leveldb/table
  310. github.com/syndtr/goleveldb/leveldb/util
  311. # github.com/tinylib/msgp v0.0.0-20180516164116-c8cf64dff200
  312. github.com/tinylib/msgp/msgp
  313. # github.com/tstranex/u2f v1.0.0
  314. github.com/tstranex/u2f
  315. # github.com/urfave/cli v0.0.0-20161102131801-d86a009f5e13
  316. github.com/urfave/cli
  317. # github.com/willf/bitset v0.0.0-20180426185212-8ce1146b8621
  318. github.com/willf/bitset
  319. # github.com/xanzy/ssh-agent v0.2.0
  320. github.com/xanzy/ssh-agent
  321. # github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53
  322. github.com/yohcop/openid-go
  323. # golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
  324. golang.org/x/crypto/acme/autocert
  325. golang.org/x/crypto/bcrypt
  326. golang.org/x/crypto/pbkdf2
  327. golang.org/x/crypto/ssh
  328. golang.org/x/crypto/acme
  329. golang.org/x/crypto/openpgp
  330. golang.org/x/crypto/md4
  331. golang.org/x/crypto/blowfish
  332. golang.org/x/crypto/curve25519
  333. golang.org/x/crypto/ed25519
  334. golang.org/x/crypto/internal/chacha20
  335. golang.org/x/crypto/poly1305
  336. golang.org/x/crypto/openpgp/armor
  337. golang.org/x/crypto/openpgp/errors
  338. golang.org/x/crypto/openpgp/packet
  339. golang.org/x/crypto/openpgp/s2k
  340. golang.org/x/crypto/ed25519/internal/edwards25519
  341. golang.org/x/crypto/internal/subtle
  342. golang.org/x/crypto/cast5
  343. golang.org/x/crypto/openpgp/elgamal
  344. golang.org/x/crypto/ssh/knownhosts
  345. golang.org/x/crypto/ssh/agent
  346. # golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519
  347. golang.org/x/net/html/charset
  348. golang.org/x/net/html
  349. golang.org/x/net/html/atom
  350. golang.org/x/net/context
  351. golang.org/x/net/context/ctxhttp
  352. # golang.org/x/oauth2 v0.0.0-20181101160152-c453e0c75759
  353. golang.org/x/oauth2
  354. golang.org/x/oauth2/internal
  355. # golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223
  356. golang.org/x/sys/windows
  357. golang.org/x/sys/windows/svc
  358. golang.org/x/sys/unix
  359. # golang.org/x/text v0.3.0
  360. golang.org/x/text/transform
  361. golang.org/x/text/encoding
  362. golang.org/x/text/encoding/charmap
  363. golang.org/x/text/encoding/htmlindex
  364. golang.org/x/text/language
  365. golang.org/x/text/unicode/norm
  366. golang.org/x/text/encoding/internal/identifier
  367. golang.org/x/text/encoding/internal
  368. golang.org/x/text/encoding/japanese
  369. golang.org/x/text/encoding/korean
  370. golang.org/x/text/encoding/simplifiedchinese
  371. golang.org/x/text/encoding/traditionalchinese
  372. golang.org/x/text/encoding/unicode
  373. golang.org/x/text/internal/tag
  374. golang.org/x/text/internal/utf8internal
  375. golang.org/x/text/runes
  376. # google.golang.org/appengine v1.2.0
  377. google.golang.org/appengine/cloudsql
  378. google.golang.org/appengine/urlfetch
  379. google.golang.org/appengine/internal
  380. google.golang.org/appengine/internal/urlfetch
  381. google.golang.org/appengine/internal/base
  382. google.golang.org/appengine/internal/datastore
  383. google.golang.org/appengine/internal/log
  384. google.golang.org/appengine/internal/remote_api
  385. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  386. gopkg.in/alexcesaro/quotedprintable.v3
  387. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  388. gopkg.in/asn1-ber.v1
  389. # gopkg.in/bufio.v1 v1.0.0-20140618132640-567b2bfa514e
  390. gopkg.in/bufio.v1
  391. # gopkg.in/editorconfig/editorconfig-core-go.v1 v1.2.0
  392. gopkg.in/editorconfig/editorconfig-core-go.v1
  393. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  394. gopkg.in/gomail.v2
  395. # gopkg.in/ini.v1 v1.31.1
  396. gopkg.in/ini.v1
  397. # gopkg.in/ldap.v3 v3.0.2
  398. gopkg.in/ldap.v3
  399. # gopkg.in/macaron.v1 v1.3.2
  400. gopkg.in/macaron.v1
  401. # gopkg.in/redis.v2 v2.3.2
  402. gopkg.in/redis.v2
  403. # gopkg.in/src-d/go-billy.v4 v4.3.0
  404. gopkg.in/src-d/go-billy.v4
  405. gopkg.in/src-d/go-billy.v4/osfs
  406. gopkg.in/src-d/go-billy.v4/util
  407. gopkg.in/src-d/go-billy.v4/helper/chroot
  408. gopkg.in/src-d/go-billy.v4/helper/polyfill
  409. # gopkg.in/src-d/go-git.v4 v4.8.0
  410. gopkg.in/src-d/go-git.v4
  411. gopkg.in/src-d/go-git.v4/config
  412. gopkg.in/src-d/go-git.v4/plumbing
  413. gopkg.in/src-d/go-git.v4/internal/revision
  414. gopkg.in/src-d/go-git.v4/plumbing/cache
  415. gopkg.in/src-d/go-git.v4/plumbing/filemode
  416. gopkg.in/src-d/go-git.v4/plumbing/format/gitignore
  417. gopkg.in/src-d/go-git.v4/plumbing/format/index
  418. gopkg.in/src-d/go-git.v4/plumbing/format/packfile
  419. gopkg.in/src-d/go-git.v4/plumbing/object
  420. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp
  421. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/capability
  422. gopkg.in/src-d/go-git.v4/plumbing/protocol/packp/sideband
  423. gopkg.in/src-d/go-git.v4/plumbing/revlist
  424. gopkg.in/src-d/go-git.v4/plumbing/storer
  425. gopkg.in/src-d/go-git.v4/plumbing/transport
  426. gopkg.in/src-d/go-git.v4/plumbing/transport/client
  427. gopkg.in/src-d/go-git.v4/storage
  428. gopkg.in/src-d/go-git.v4/storage/filesystem
  429. gopkg.in/src-d/go-git.v4/storage/memory
  430. gopkg.in/src-d/go-git.v4/utils/diff
  431. gopkg.in/src-d/go-git.v4/utils/ioutil
  432. gopkg.in/src-d/go-git.v4/utils/merkletrie
  433. gopkg.in/src-d/go-git.v4/utils/merkletrie/filesystem
  434. gopkg.in/src-d/go-git.v4/utils/merkletrie/index
  435. gopkg.in/src-d/go-git.v4/utils/merkletrie/noder
  436. gopkg.in/src-d/go-git.v4/plumbing/format/config
  437. gopkg.in/src-d/go-git.v4/utils/binary
  438. gopkg.in/src-d/go-git.v4/plumbing/format/idxfile
  439. gopkg.in/src-d/go-git.v4/plumbing/format/diff
  440. gopkg.in/src-d/go-git.v4/plumbing/format/pktline
  441. gopkg.in/src-d/go-git.v4/plumbing/transport/file
  442. gopkg.in/src-d/go-git.v4/plumbing/transport/git
  443. gopkg.in/src-d/go-git.v4/plumbing/transport/http
  444. gopkg.in/src-d/go-git.v4/plumbing/transport/ssh
  445. gopkg.in/src-d/go-git.v4/plumbing/format/objfile
  446. gopkg.in/src-d/go-git.v4/storage/filesystem/dotgit
  447. gopkg.in/src-d/go-git.v4/utils/merkletrie/internal/frame
  448. gopkg.in/src-d/go-git.v4/plumbing/transport/internal/common
  449. gopkg.in/src-d/go-git.v4/plumbing/transport/server
  450. # gopkg.in/testfixtures.v2 v2.5.0
  451. gopkg.in/testfixtures.v2
  452. # gopkg.in/warnings.v0 v0.1.2
  453. gopkg.in/warnings.v0
  454. # gopkg.in/yaml.v2 v2.2.1
  455. gopkg.in/yaml.v2
  456. # mvdan.cc/xurls/v2 v2.0.0
  457. mvdan.cc/xurls/v2
  458. # strk.kbt.io/projects/go/libravatar v0.0.0-20160628055650-5eed7bff870a
  459. strk.kbt.io/projects/go/libravatar