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

modules.txt 25 kB

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
6 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646
  1. # cloud.google.com/go v0.45.0
  2. cloud.google.com/go/compute/metadata
  3. # gitea.com/lunny/levelqueue v0.2.0
  4. gitea.com/lunny/levelqueue
  5. # gitea.com/macaron/binding v0.0.0-20190822013154-a5f53841ed2b
  6. gitea.com/macaron/binding
  7. # gitea.com/macaron/cache v0.0.0-20190822004001-a6e7fee4ee76
  8. gitea.com/macaron/cache
  9. gitea.com/macaron/cache/memcache
  10. gitea.com/macaron/cache/redis
  11. # gitea.com/macaron/captcha v0.0.0-20190822015246-daa973478bae
  12. gitea.com/macaron/captcha
  13. # gitea.com/macaron/cors v0.0.0-20190826180238-95aec09ea8b4
  14. gitea.com/macaron/cors
  15. # gitea.com/macaron/csrf v0.0.0-20190822024205-3dc5a4474439
  16. gitea.com/macaron/csrf
  17. # gitea.com/macaron/gzip v0.0.0-20191118041502-506895b47aae
  18. gitea.com/macaron/gzip
  19. # gitea.com/macaron/i18n v0.0.0-20190822004228-474e714e2223
  20. gitea.com/macaron/i18n
  21. # gitea.com/macaron/inject v0.0.0-20190805023432-d4c86e31027a
  22. gitea.com/macaron/inject
  23. # gitea.com/macaron/macaron v1.4.0
  24. gitea.com/macaron/macaron
  25. # gitea.com/macaron/session v0.0.0-20191207215012-613cebf0674d
  26. gitea.com/macaron/session
  27. gitea.com/macaron/session/couchbase
  28. gitea.com/macaron/session/memcache
  29. gitea.com/macaron/session/mysql
  30. gitea.com/macaron/session/nodb
  31. gitea.com/macaron/session/postgres
  32. gitea.com/macaron/session/redis
  33. # gitea.com/macaron/toolbox v0.0.0-20190822013122-05ff0fc766b7
  34. gitea.com/macaron/toolbox
  35. # github.com/BurntSushi/toml v0.3.1
  36. github.com/BurntSushi/toml
  37. # github.com/PuerkitoBio/goquery v1.5.0
  38. github.com/PuerkitoBio/goquery
  39. # github.com/PuerkitoBio/purell v1.1.1
  40. github.com/PuerkitoBio/purell
  41. # github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578
  42. github.com/PuerkitoBio/urlesc
  43. # github.com/RoaringBitmap/roaring v0.4.21
  44. github.com/RoaringBitmap/roaring
  45. # github.com/andybalholm/cascadia v1.0.0
  46. github.com/andybalholm/cascadia
  47. # github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239
  48. github.com/anmitsu/go-shlex
  49. # github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a
  50. github.com/asaskevich/govalidator
  51. # github.com/beorn7/perks v1.0.1
  52. github.com/beorn7/perks/quantile
  53. # github.com/blevesearch/bleve v0.8.1
  54. github.com/blevesearch/bleve
  55. github.com/blevesearch/bleve/analysis
  56. github.com/blevesearch/bleve/analysis/analyzer/custom
  57. github.com/blevesearch/bleve/analysis/analyzer/keyword
  58. github.com/blevesearch/bleve/analysis/analyzer/standard
  59. github.com/blevesearch/bleve/analysis/datetime/flexible
  60. github.com/blevesearch/bleve/analysis/datetime/optional
  61. github.com/blevesearch/bleve/analysis/lang/en
  62. github.com/blevesearch/bleve/analysis/token/lowercase
  63. github.com/blevesearch/bleve/analysis/token/porter
  64. github.com/blevesearch/bleve/analysis/token/stop
  65. github.com/blevesearch/bleve/analysis/token/unicodenorm
  66. github.com/blevesearch/bleve/analysis/tokenizer/single
  67. github.com/blevesearch/bleve/analysis/tokenizer/unicode
  68. github.com/blevesearch/bleve/document
  69. github.com/blevesearch/bleve/geo
  70. github.com/blevesearch/bleve/index
  71. github.com/blevesearch/bleve/index/scorch
  72. github.com/blevesearch/bleve/index/scorch/mergeplan
  73. github.com/blevesearch/bleve/index/scorch/segment
  74. github.com/blevesearch/bleve/index/scorch/segment/zap
  75. github.com/blevesearch/bleve/index/store
  76. github.com/blevesearch/bleve/index/store/boltdb
  77. github.com/blevesearch/bleve/index/store/gtreap
  78. github.com/blevesearch/bleve/index/upsidedown
  79. github.com/blevesearch/bleve/mapping
  80. github.com/blevesearch/bleve/numeric
  81. github.com/blevesearch/bleve/registry
  82. github.com/blevesearch/bleve/search
  83. github.com/blevesearch/bleve/search/collector
  84. github.com/blevesearch/bleve/search/facet
  85. github.com/blevesearch/bleve/search/highlight
  86. github.com/blevesearch/bleve/search/highlight/format/html
  87. github.com/blevesearch/bleve/search/highlight/fragmenter/simple
  88. github.com/blevesearch/bleve/search/highlight/highlighter/html
  89. github.com/blevesearch/bleve/search/highlight/highlighter/simple
  90. github.com/blevesearch/bleve/search/query
  91. github.com/blevesearch/bleve/search/scorer
  92. github.com/blevesearch/bleve/search/searcher
  93. github.com/blevesearch/bleve/size
  94. # github.com/blevesearch/go-porterstemmer v1.0.2
  95. github.com/blevesearch/go-porterstemmer
  96. # github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f
  97. github.com/blevesearch/segment
  98. # github.com/boombuler/barcode v0.0.0-20161226211916-fe0f26ff6d26
  99. github.com/boombuler/barcode
  100. github.com/boombuler/barcode/qr
  101. github.com/boombuler/barcode/utils
  102. # github.com/bradfitz/gomemcache v0.0.0-20190329173943-551aad21a668
  103. github.com/bradfitz/gomemcache/memcache
  104. # github.com/couchbase/gomemcached v0.0.0-20191004160342-7b5da2ec40b2
  105. github.com/couchbase/gomemcached
  106. github.com/couchbase/gomemcached/client
  107. # github.com/couchbase/goutils v0.0.0-20191018232750-b49639060d85
  108. github.com/couchbase/goutils/logging
  109. github.com/couchbase/goutils/scramsha
  110. # github.com/couchbase/vellum v0.0.0-20190829182332-ef2e028c01fd
  111. github.com/couchbase/vellum
  112. github.com/couchbase/vellum/levenshtein
  113. github.com/couchbase/vellum/regexp
  114. github.com/couchbase/vellum/utf8
  115. # github.com/couchbaselabs/go-couchbase v0.0.0-20190708161019-23e7ca2ce2b7
  116. github.com/couchbaselabs/go-couchbase
  117. # github.com/davecgh/go-spew v1.1.1
  118. github.com/davecgh/go-spew/spew
  119. # github.com/denisenkom/go-mssqldb v0.0.0-20191128021309-1d7a30a10f73
  120. github.com/denisenkom/go-mssqldb
  121. github.com/denisenkom/go-mssqldb/internal/cp
  122. github.com/denisenkom/go-mssqldb/internal/decimal
  123. github.com/denisenkom/go-mssqldb/internal/querytext
  124. # github.com/dgrijalva/jwt-go v3.2.0+incompatible
  125. github.com/dgrijalva/jwt-go
  126. # github.com/dustin/go-humanize v1.0.0
  127. github.com/dustin/go-humanize
  128. # github.com/editorconfig/editorconfig-core-go/v2 v2.1.1
  129. github.com/editorconfig/editorconfig-core-go/v2
  130. # github.com/edsrzf/mmap-go v1.0.0
  131. github.com/edsrzf/mmap-go
  132. # github.com/emirpasic/gods v1.12.0
  133. github.com/emirpasic/gods/containers
  134. github.com/emirpasic/gods/lists
  135. github.com/emirpasic/gods/lists/arraylist
  136. github.com/emirpasic/gods/trees
  137. github.com/emirpasic/gods/trees/binaryheap
  138. github.com/emirpasic/gods/utils
  139. # github.com/etcd-io/bbolt v1.3.3
  140. github.com/etcd-io/bbolt
  141. # github.com/ethantkoenig/rupture v0.0.0-20180203182544-0a76f03a811a
  142. github.com/ethantkoenig/rupture
  143. # github.com/fsnotify/fsnotify v1.4.7
  144. github.com/fsnotify/fsnotify
  145. # github.com/gliderlabs/ssh v0.2.2
  146. github.com/gliderlabs/ssh
  147. # github.com/glycerine/go-unsnap-stream v0.0.0-20190901134440-81cf024a9e0a
  148. github.com/glycerine/go-unsnap-stream
  149. # github.com/go-git/gcfg v1.5.0
  150. github.com/go-git/gcfg
  151. github.com/go-git/gcfg/scanner
  152. github.com/go-git/gcfg/token
  153. github.com/go-git/gcfg/types
  154. # github.com/go-git/go-billy/v5 v5.0.0
  155. github.com/go-git/go-billy/v5
  156. github.com/go-git/go-billy/v5/helper/chroot
  157. github.com/go-git/go-billy/v5/helper/polyfill
  158. github.com/go-git/go-billy/v5/osfs
  159. github.com/go-git/go-billy/v5/util
  160. # github.com/go-git/go-git/v5 v5.0.0
  161. github.com/go-git/go-git/v5
  162. github.com/go-git/go-git/v5/config
  163. github.com/go-git/go-git/v5/internal/revision
  164. github.com/go-git/go-git/v5/internal/url
  165. github.com/go-git/go-git/v5/plumbing
  166. github.com/go-git/go-git/v5/plumbing/cache
  167. github.com/go-git/go-git/v5/plumbing/filemode
  168. github.com/go-git/go-git/v5/plumbing/format/commitgraph
  169. github.com/go-git/go-git/v5/plumbing/format/config
  170. github.com/go-git/go-git/v5/plumbing/format/diff
  171. github.com/go-git/go-git/v5/plumbing/format/gitignore
  172. github.com/go-git/go-git/v5/plumbing/format/idxfile
  173. github.com/go-git/go-git/v5/plumbing/format/index
  174. github.com/go-git/go-git/v5/plumbing/format/objfile
  175. github.com/go-git/go-git/v5/plumbing/format/packfile
  176. github.com/go-git/go-git/v5/plumbing/format/pktline
  177. github.com/go-git/go-git/v5/plumbing/object
  178. github.com/go-git/go-git/v5/plumbing/object/commitgraph
  179. github.com/go-git/go-git/v5/plumbing/protocol/packp
  180. github.com/go-git/go-git/v5/plumbing/protocol/packp/capability
  181. github.com/go-git/go-git/v5/plumbing/protocol/packp/sideband
  182. github.com/go-git/go-git/v5/plumbing/revlist
  183. github.com/go-git/go-git/v5/plumbing/storer
  184. github.com/go-git/go-git/v5/plumbing/transport
  185. github.com/go-git/go-git/v5/plumbing/transport/client
  186. github.com/go-git/go-git/v5/plumbing/transport/file
  187. github.com/go-git/go-git/v5/plumbing/transport/git
  188. github.com/go-git/go-git/v5/plumbing/transport/http
  189. github.com/go-git/go-git/v5/plumbing/transport/internal/common
  190. github.com/go-git/go-git/v5/plumbing/transport/server
  191. github.com/go-git/go-git/v5/plumbing/transport/ssh
  192. github.com/go-git/go-git/v5/storage
  193. github.com/go-git/go-git/v5/storage/filesystem
  194. github.com/go-git/go-git/v5/storage/filesystem/dotgit
  195. github.com/go-git/go-git/v5/storage/memory
  196. github.com/go-git/go-git/v5/utils/binary
  197. github.com/go-git/go-git/v5/utils/diff
  198. github.com/go-git/go-git/v5/utils/ioutil
  199. github.com/go-git/go-git/v5/utils/merkletrie
  200. github.com/go-git/go-git/v5/utils/merkletrie/filesystem
  201. github.com/go-git/go-git/v5/utils/merkletrie/index
  202. github.com/go-git/go-git/v5/utils/merkletrie/internal/frame
  203. github.com/go-git/go-git/v5/utils/merkletrie/noder
  204. # github.com/go-openapi/analysis v0.19.5
  205. github.com/go-openapi/analysis
  206. github.com/go-openapi/analysis/internal
  207. # github.com/go-openapi/errors v0.19.2
  208. github.com/go-openapi/errors
  209. # github.com/go-openapi/inflect v0.19.0
  210. github.com/go-openapi/inflect
  211. # github.com/go-openapi/jsonpointer v0.19.3
  212. github.com/go-openapi/jsonpointer
  213. # github.com/go-openapi/jsonreference v0.19.3
  214. github.com/go-openapi/jsonreference
  215. # github.com/go-openapi/loads v0.19.3
  216. github.com/go-openapi/loads
  217. github.com/go-openapi/loads/fmts
  218. # github.com/go-openapi/runtime v0.19.5
  219. github.com/go-openapi/runtime
  220. github.com/go-openapi/runtime/logger
  221. github.com/go-openapi/runtime/middleware
  222. github.com/go-openapi/runtime/middleware/denco
  223. github.com/go-openapi/runtime/middleware/header
  224. github.com/go-openapi/runtime/middleware/untyped
  225. github.com/go-openapi/runtime/security
  226. # github.com/go-openapi/spec v0.19.3
  227. github.com/go-openapi/spec
  228. # github.com/go-openapi/strfmt v0.19.3
  229. github.com/go-openapi/strfmt
  230. # github.com/go-openapi/swag v0.19.5
  231. github.com/go-openapi/swag
  232. # github.com/go-openapi/validate v0.19.3
  233. github.com/go-openapi/validate
  234. # github.com/go-redis/redis v6.15.2+incompatible
  235. github.com/go-redis/redis
  236. github.com/go-redis/redis/internal
  237. github.com/go-redis/redis/internal/consistenthash
  238. github.com/go-redis/redis/internal/hashtag
  239. github.com/go-redis/redis/internal/pool
  240. github.com/go-redis/redis/internal/proto
  241. github.com/go-redis/redis/internal/util
  242. # github.com/go-sql-driver/mysql v1.4.1
  243. github.com/go-sql-driver/mysql
  244. # github.com/go-stack/stack v1.8.0
  245. github.com/go-stack/stack
  246. # github.com/go-swagger/go-swagger v0.21.0
  247. github.com/go-swagger/go-swagger/cmd/swagger
  248. github.com/go-swagger/go-swagger/cmd/swagger/commands
  249. github.com/go-swagger/go-swagger/cmd/swagger/commands/diff
  250. github.com/go-swagger/go-swagger/cmd/swagger/commands/generate
  251. github.com/go-swagger/go-swagger/cmd/swagger/commands/initcmd
  252. github.com/go-swagger/go-swagger/codescan
  253. github.com/go-swagger/go-swagger/generator
  254. github.com/go-swagger/go-swagger/scan
  255. # github.com/gobwas/glob v0.2.3
  256. github.com/gobwas/glob
  257. github.com/gobwas/glob/compiler
  258. github.com/gobwas/glob/match
  259. github.com/gobwas/glob/syntax
  260. github.com/gobwas/glob/syntax/ast
  261. github.com/gobwas/glob/syntax/lexer
  262. github.com/gobwas/glob/util/runes
  263. github.com/gobwas/glob/util/strings
  264. # github.com/gogs/chardet v0.0.0-20191104214054-4b6791f73a28
  265. github.com/gogs/chardet
  266. # github.com/gogs/cron v0.0.0-20171120032916-9f6c956d3e14
  267. github.com/gogs/cron
  268. # github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe
  269. github.com/golang-sql/civil
  270. # github.com/golang/protobuf v1.3.2
  271. github.com/golang/protobuf/proto
  272. # github.com/golang/snappy v0.0.1
  273. github.com/golang/snappy
  274. # github.com/google/go-github/v24 v24.0.1
  275. github.com/google/go-github/v24/github
  276. # github.com/google/go-querystring v1.0.0
  277. github.com/google/go-querystring/query
  278. # github.com/gorilla/context v1.1.1
  279. github.com/gorilla/context
  280. # github.com/gorilla/handlers v1.4.2
  281. github.com/gorilla/handlers
  282. # github.com/gorilla/mux v1.6.2
  283. github.com/gorilla/mux
  284. # github.com/gorilla/securecookie v1.1.1
  285. github.com/gorilla/securecookie
  286. # github.com/gorilla/sessions v1.2.0
  287. github.com/gorilla/sessions
  288. # github.com/hashicorp/hcl v1.0.0
  289. github.com/hashicorp/hcl
  290. github.com/hashicorp/hcl/hcl/ast
  291. github.com/hashicorp/hcl/hcl/parser
  292. github.com/hashicorp/hcl/hcl/printer
  293. github.com/hashicorp/hcl/hcl/scanner
  294. github.com/hashicorp/hcl/hcl/strconv
  295. github.com/hashicorp/hcl/hcl/token
  296. github.com/hashicorp/hcl/json/parser
  297. github.com/hashicorp/hcl/json/scanner
  298. github.com/hashicorp/hcl/json/token
  299. # github.com/huandu/xstrings v1.3.0
  300. github.com/huandu/xstrings
  301. # github.com/issue9/identicon v0.0.0-20160320065130-d36b54562f4c
  302. github.com/issue9/identicon
  303. # github.com/jaytaylor/html2text v0.0.0-20160923191438-8fb95d837f7d
  304. github.com/jaytaylor/html2text
  305. # github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
  306. github.com/jbenet/go-context/io
  307. # github.com/jessevdk/go-flags v1.4.0
  308. github.com/jessevdk/go-flags
  309. # github.com/kballard/go-shellquote v0.0.0-20170619183022-cd60e84ee657
  310. github.com/kballard/go-shellquote
  311. # github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd
  312. github.com/kevinburke/ssh_config
  313. # github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4
  314. github.com/keybase/go-crypto/brainpool
  315. github.com/keybase/go-crypto/cast5
  316. github.com/keybase/go-crypto/curve25519
  317. github.com/keybase/go-crypto/ed25519
  318. github.com/keybase/go-crypto/ed25519/internal/edwards25519
  319. github.com/keybase/go-crypto/openpgp
  320. github.com/keybase/go-crypto/openpgp/armor
  321. github.com/keybase/go-crypto/openpgp/ecdh
  322. github.com/keybase/go-crypto/openpgp/elgamal
  323. github.com/keybase/go-crypto/openpgp/errors
  324. github.com/keybase/go-crypto/openpgp/packet
  325. github.com/keybase/go-crypto/openpgp/s2k
  326. github.com/keybase/go-crypto/rsa
  327. # github.com/klauspost/compress v1.10.2
  328. github.com/klauspost/compress/flate
  329. github.com/klauspost/compress/gzip
  330. # github.com/kr/pretty v0.1.0
  331. github.com/kr/pretty
  332. # github.com/kr/text v0.2.0
  333. github.com/kr/text
  334. # github.com/lafriks/xormstore v1.3.2
  335. github.com/lafriks/xormstore
  336. github.com/lafriks/xormstore/util
  337. # github.com/lib/pq v1.2.0
  338. github.com/lib/pq
  339. github.com/lib/pq/oid
  340. github.com/lib/pq/scram
  341. # github.com/lunny/dingtalk_webhook v0.0.0-20171025031554-e3534c89ef96
  342. github.com/lunny/dingtalk_webhook
  343. # github.com/lunny/log v0.0.0-20160921050905-7887c61bf0de
  344. github.com/lunny/log
  345. # github.com/lunny/nodb v0.0.0-20160621015157-fc1ef06ad4af
  346. github.com/lunny/nodb
  347. github.com/lunny/nodb/config
  348. github.com/lunny/nodb/store
  349. github.com/lunny/nodb/store/driver
  350. github.com/lunny/nodb/store/goleveldb
  351. # github.com/magiconair/properties v1.8.1
  352. github.com/magiconair/properties
  353. # github.com/mailru/easyjson v0.7.0
  354. github.com/mailru/easyjson
  355. github.com/mailru/easyjson/buffer
  356. github.com/mailru/easyjson/jlexer
  357. github.com/mailru/easyjson/jwriter
  358. # github.com/markbates/goth v1.61.2
  359. github.com/markbates/goth
  360. github.com/markbates/goth/gothic
  361. github.com/markbates/goth/providers/bitbucket
  362. github.com/markbates/goth/providers/discord
  363. github.com/markbates/goth/providers/dropbox
  364. github.com/markbates/goth/providers/facebook
  365. github.com/markbates/goth/providers/gitea
  366. github.com/markbates/goth/providers/github
  367. github.com/markbates/goth/providers/gitlab
  368. github.com/markbates/goth/providers/google
  369. github.com/markbates/goth/providers/nextcloud
  370. github.com/markbates/goth/providers/openidConnect
  371. github.com/markbates/goth/providers/twitter
  372. github.com/markbates/goth/providers/yandex
  373. # github.com/mattn/go-isatty v0.0.7
  374. github.com/mattn/go-isatty
  375. # github.com/mattn/go-sqlite3 v1.11.0
  376. github.com/mattn/go-sqlite3
  377. # github.com/matttproud/golang_protobuf_extensions v1.0.1
  378. github.com/matttproud/golang_protobuf_extensions/pbutil
  379. # github.com/mcuadros/go-version v0.0.0-20190308113854-92cdf37c5b75
  380. github.com/mcuadros/go-version
  381. # github.com/microcosm-cc/bluemonday v0.0.0-20161012083705-f77f16ffc87a
  382. github.com/microcosm-cc/bluemonday
  383. # github.com/mitchellh/go-homedir v1.1.0
  384. github.com/mitchellh/go-homedir
  385. # github.com/mitchellh/mapstructure v1.1.2
  386. github.com/mitchellh/mapstructure
  387. # github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c
  388. github.com/mrjones/oauth
  389. # github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae
  390. github.com/mschoch/smat
  391. # github.com/msteinert/pam v0.0.0-20151204160544-02ccfbfaf0cc
  392. github.com/msteinert/pam
  393. # github.com/nfnt/resize v0.0.0-20160724205520-891127d8d1b5
  394. github.com/nfnt/resize
  395. # github.com/niklasfasching/go-org v0.1.9
  396. github.com/niklasfasching/go-org/org
  397. # github.com/oliamb/cutter v0.2.2
  398. github.com/oliamb/cutter
  399. # github.com/olivere/elastic/v7 v7.0.9
  400. github.com/olivere/elastic/v7
  401. github.com/olivere/elastic/v7/config
  402. github.com/olivere/elastic/v7/uritemplates
  403. # github.com/pelletier/go-toml v1.4.0
  404. github.com/pelletier/go-toml
  405. # github.com/philhofer/fwd v1.0.0
  406. github.com/philhofer/fwd
  407. # github.com/pkg/errors v0.8.1
  408. github.com/pkg/errors
  409. # github.com/pmezard/go-difflib v1.0.0
  410. github.com/pmezard/go-difflib/difflib
  411. # github.com/pquerna/otp v0.0.0-20160912161815-54653902c20e
  412. github.com/pquerna/otp
  413. github.com/pquerna/otp/hotp
  414. github.com/pquerna/otp/totp
  415. # github.com/prometheus/client_golang v1.1.0
  416. github.com/prometheus/client_golang/prometheus
  417. github.com/prometheus/client_golang/prometheus/internal
  418. github.com/prometheus/client_golang/prometheus/promhttp
  419. # github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
  420. github.com/prometheus/client_model/go
  421. # github.com/prometheus/common v0.6.0
  422. github.com/prometheus/common/expfmt
  423. github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg
  424. github.com/prometheus/common/model
  425. # github.com/prometheus/procfs v0.0.4
  426. github.com/prometheus/procfs
  427. github.com/prometheus/procfs/internal/fs
  428. github.com/prometheus/procfs/internal/util
  429. # github.com/quasoft/websspi v1.0.0
  430. github.com/quasoft/websspi
  431. github.com/quasoft/websspi/secctx
  432. # github.com/satori/go.uuid v1.2.0
  433. github.com/satori/go.uuid
  434. # github.com/sergi/go-diff v1.1.0
  435. github.com/sergi/go-diff/diffmatchpatch
  436. # github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b
  437. github.com/shurcooL/httpfs/vfsutil
  438. # github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
  439. github.com/shurcooL/vfsgen
  440. # github.com/siddontang/go-snappy v0.0.0-20140704025258-d8f7bb82a96d
  441. github.com/siddontang/go-snappy/snappy
  442. # github.com/spf13/afero v1.2.2
  443. github.com/spf13/afero
  444. github.com/spf13/afero/mem
  445. # github.com/spf13/cast v1.3.0
  446. github.com/spf13/cast
  447. # github.com/spf13/jwalterweatherman v1.1.0
  448. github.com/spf13/jwalterweatherman
  449. # github.com/spf13/pflag v1.0.3
  450. github.com/spf13/pflag
  451. # github.com/spf13/viper v1.4.0
  452. github.com/spf13/viper
  453. # github.com/src-d/enry/v2 v2.1.0
  454. github.com/src-d/enry/v2
  455. github.com/src-d/enry/v2/data
  456. github.com/src-d/enry/v2/data/rule
  457. github.com/src-d/enry/v2/internal/tokenizer
  458. github.com/src-d/enry/v2/internal/tokenizer/flex
  459. github.com/src-d/enry/v2/regex
  460. # github.com/src-d/go-oniguruma v1.1.0
  461. github.com/src-d/go-oniguruma
  462. # github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2
  463. github.com/steveyen/gtreap
  464. # github.com/stretchr/testify v1.4.0
  465. github.com/stretchr/testify/assert
  466. github.com/stretchr/testify/require
  467. # github.com/syndtr/goleveldb v1.0.0
  468. github.com/syndtr/goleveldb/leveldb
  469. github.com/syndtr/goleveldb/leveldb/cache
  470. github.com/syndtr/goleveldb/leveldb/comparer
  471. github.com/syndtr/goleveldb/leveldb/errors
  472. github.com/syndtr/goleveldb/leveldb/filter
  473. github.com/syndtr/goleveldb/leveldb/iterator
  474. github.com/syndtr/goleveldb/leveldb/journal
  475. github.com/syndtr/goleveldb/leveldb/memdb
  476. github.com/syndtr/goleveldb/leveldb/opt
  477. github.com/syndtr/goleveldb/leveldb/storage
  478. github.com/syndtr/goleveldb/leveldb/table
  479. github.com/syndtr/goleveldb/leveldb/util
  480. # github.com/tinylib/msgp v1.1.0
  481. github.com/tinylib/msgp/msgp
  482. # github.com/toqueteos/trie v1.0.0
  483. github.com/toqueteos/trie
  484. # github.com/toqueteos/webbrowser v1.2.0
  485. github.com/toqueteos/webbrowser
  486. # github.com/tstranex/u2f v1.0.0
  487. github.com/tstranex/u2f
  488. # github.com/unknwon/cae v1.0.0
  489. github.com/unknwon/cae
  490. github.com/unknwon/cae/zip
  491. # github.com/unknwon/com v1.0.1
  492. github.com/unknwon/com
  493. # github.com/unknwon/i18n v0.0.0-20190805065654-5c6446a380b6
  494. github.com/unknwon/i18n
  495. # github.com/unknwon/paginater v0.0.0-20151104151617-7748a72e0141
  496. github.com/unknwon/paginater
  497. # github.com/urfave/cli v1.20.0
  498. github.com/urfave/cli
  499. # github.com/willf/bitset v1.1.10
  500. github.com/willf/bitset
  501. # github.com/xanzy/ssh-agent v0.2.1
  502. github.com/xanzy/ssh-agent
  503. # github.com/yohcop/openid-go v0.0.0-20160914080427-2c050d2dae53
  504. github.com/yohcop/openid-go
  505. # github.com/yuin/goldmark v1.1.25
  506. github.com/yuin/goldmark
  507. github.com/yuin/goldmark/ast
  508. github.com/yuin/goldmark/extension
  509. github.com/yuin/goldmark/extension/ast
  510. github.com/yuin/goldmark/parser
  511. github.com/yuin/goldmark/renderer
  512. github.com/yuin/goldmark/renderer/html
  513. github.com/yuin/goldmark/text
  514. github.com/yuin/goldmark/util
  515. # go.mongodb.org/mongo-driver v1.1.1
  516. go.mongodb.org/mongo-driver/bson
  517. go.mongodb.org/mongo-driver/bson/bsoncodec
  518. go.mongodb.org/mongo-driver/bson/bsonrw
  519. go.mongodb.org/mongo-driver/bson/bsontype
  520. go.mongodb.org/mongo-driver/bson/primitive
  521. go.mongodb.org/mongo-driver/x/bsonx/bsoncore
  522. # golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
  523. golang.org/x/crypto/acme
  524. golang.org/x/crypto/acme/autocert
  525. golang.org/x/crypto/argon2
  526. golang.org/x/crypto/bcrypt
  527. golang.org/x/crypto/blake2b
  528. golang.org/x/crypto/blowfish
  529. golang.org/x/crypto/cast5
  530. golang.org/x/crypto/chacha20
  531. golang.org/x/crypto/curve25519
  532. golang.org/x/crypto/ed25519
  533. golang.org/x/crypto/ed25519/internal/edwards25519
  534. golang.org/x/crypto/internal/subtle
  535. golang.org/x/crypto/md4
  536. golang.org/x/crypto/openpgp
  537. golang.org/x/crypto/openpgp/armor
  538. golang.org/x/crypto/openpgp/elgamal
  539. golang.org/x/crypto/openpgp/errors
  540. golang.org/x/crypto/openpgp/packet
  541. golang.org/x/crypto/openpgp/s2k
  542. golang.org/x/crypto/pbkdf2
  543. golang.org/x/crypto/poly1305
  544. golang.org/x/crypto/scrypt
  545. golang.org/x/crypto/ssh
  546. golang.org/x/crypto/ssh/agent
  547. golang.org/x/crypto/ssh/internal/bcrypt_pbkdf
  548. golang.org/x/crypto/ssh/knownhosts
  549. # golang.org/x/net v0.0.0-20200301022130-244492dfa37a
  550. golang.org/x/net/context
  551. golang.org/x/net/context/ctxhttp
  552. golang.org/x/net/html
  553. golang.org/x/net/html/atom
  554. golang.org/x/net/html/charset
  555. golang.org/x/net/idna
  556. golang.org/x/net/internal/socks
  557. golang.org/x/net/proxy
  558. # golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
  559. golang.org/x/oauth2
  560. golang.org/x/oauth2/google
  561. golang.org/x/oauth2/internal
  562. golang.org/x/oauth2/jws
  563. golang.org/x/oauth2/jwt
  564. # golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527
  565. golang.org/x/sys/cpu
  566. golang.org/x/sys/unix
  567. golang.org/x/sys/windows
  568. golang.org/x/sys/windows/svc
  569. golang.org/x/sys/windows/svc/debug
  570. # golang.org/x/text v0.3.2
  571. golang.org/x/text/encoding
  572. golang.org/x/text/encoding/charmap
  573. golang.org/x/text/encoding/htmlindex
  574. golang.org/x/text/encoding/internal
  575. golang.org/x/text/encoding/internal/identifier
  576. golang.org/x/text/encoding/japanese
  577. golang.org/x/text/encoding/korean
  578. golang.org/x/text/encoding/simplifiedchinese
  579. golang.org/x/text/encoding/traditionalchinese
  580. golang.org/x/text/encoding/unicode
  581. golang.org/x/text/internal/language
  582. golang.org/x/text/internal/language/compact
  583. golang.org/x/text/internal/tag
  584. golang.org/x/text/internal/utf8internal
  585. golang.org/x/text/language
  586. golang.org/x/text/runes
  587. golang.org/x/text/secure/bidirule
  588. golang.org/x/text/transform
  589. golang.org/x/text/unicode/bidi
  590. golang.org/x/text/unicode/norm
  591. golang.org/x/text/width
  592. # golang.org/x/tools v0.0.0-20191213221258-04c2e8eff935
  593. golang.org/x/tools/go/ast/astutil
  594. golang.org/x/tools/go/buildutil
  595. golang.org/x/tools/go/gcexportdata
  596. golang.org/x/tools/go/internal/cgo
  597. golang.org/x/tools/go/internal/gcimporter
  598. golang.org/x/tools/go/internal/packagesdriver
  599. golang.org/x/tools/go/loader
  600. golang.org/x/tools/go/packages
  601. golang.org/x/tools/imports
  602. golang.org/x/tools/internal/fastwalk
  603. golang.org/x/tools/internal/gopathwalk
  604. golang.org/x/tools/internal/imports
  605. golang.org/x/tools/internal/module
  606. golang.org/x/tools/internal/semver
  607. # google.golang.org/appengine v1.6.4
  608. google.golang.org/appengine
  609. google.golang.org/appengine/cloudsql
  610. google.golang.org/appengine/internal
  611. google.golang.org/appengine/internal/app_identity
  612. google.golang.org/appengine/internal/base
  613. google.golang.org/appengine/internal/datastore
  614. google.golang.org/appengine/internal/log
  615. google.golang.org/appengine/internal/modules
  616. google.golang.org/appengine/internal/remote_api
  617. google.golang.org/appengine/internal/urlfetch
  618. google.golang.org/appengine/urlfetch
  619. # gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc
  620. gopkg.in/alexcesaro/quotedprintable.v3
  621. # gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175
  622. gopkg.in/asn1-ber.v1
  623. # gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
  624. gopkg.in/gomail.v2
  625. # gopkg.in/ini.v1 v1.52.0
  626. gopkg.in/ini.v1
  627. # gopkg.in/ldap.v3 v3.0.2
  628. gopkg.in/ldap.v3
  629. # gopkg.in/testfixtures.v2 v2.5.0
  630. gopkg.in/testfixtures.v2
  631. # gopkg.in/toqueteos/substring.v1 v1.0.2
  632. gopkg.in/toqueteos/substring.v1
  633. # gopkg.in/warnings.v0 v0.1.2
  634. gopkg.in/warnings.v0
  635. # gopkg.in/yaml.v2 v2.2.4
  636. gopkg.in/yaml.v2
  637. # mvdan.cc/xurls/v2 v2.1.0
  638. mvdan.cc/xurls/v2
  639. # strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
  640. strk.kbt.io/projects/go/libravatar
  641. # xorm.io/builder v0.3.6
  642. xorm.io/builder
  643. # xorm.io/core v0.7.3
  644. xorm.io/core
  645. # xorm.io/xorm v0.8.2-0.20200120024500-c37aff9b3a4a
  646. xorm.io/xorm