summaryrefslogtreecommitdiffstats
path: root/options
Commit message (Collapse)AuthorAgeFilesLines
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-1924-147/+32
|
* Telegram webhook (#4227)techknowlogick2019-04-181-0/+3
|
* UX + Security current user password reset (#5042)AJ ONeal2019-04-181-7/+9
| | | | | | | | | | | | | | * allow current user to reset their own password * handle reset password edge cases properly and consistently * remove dangling assignment * properly label account recovery instead of reset password * remove 'Click here' from button * update English-only account-recovery templates
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-1823-23/+4
|
* Fixes 4762 - Content API for Creating, Updating, Deleting Files (#6314)Richard Mahn2019-04-171-1/+4
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-172-0/+15
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-1729-0/+29
|
* OAuth2 Grant UI (#6625)Jonas Franz2019-04-171-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add oauth2 grants ui Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add delete functionality Add translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * Refactor DeleteOAuth2Grant Use results.Close() Signed-off-by: Jonas Franz <info@jonasfranz.software> * Refactor DeleteOAuth2Grant (again) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if user ID is zero Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if grant ID is zero Signed-off-by: Jonas Franz <info@jonasfranz.software>
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-151-0/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-141-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-141-0/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-131-0/+5
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-1312-12/+0
|
* Correctly adjust mirror url (#6593)zeripath2019-04-121-1/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-121-0/+1
|
* Support search operators for commits search (#6479)Mura Li2019-04-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Support searching commits with prefix syntax For now, support auther: committer: When more than one prefix is supplied is presented, the result is the union. When different prefixes are supplied, the result is the intersection. For example, "author:alice author:bob" => the result is all commits authored by Alice OR Bob "hello committer:alice" => the result is all commits committed by Alice AND has the keyword 'hello' in the message. Note that there should NOT have any space after the colon(:) of the prefix. For example, "author:bill" => correct "author: bill" => wrong * Remove unneeded logging * Add missing files of test repository * Add missing repo_unit entries to test fixtures * Update test cases * Add tooltip for commits search button * Update tooltip text I have no idea about how to format it with line breaks. * Make the usage example more real * Add a test case * Add new options struct for SearchCommits * Prefer len(s) > 0 over s != "" * Add NewSearchCommitsOptions
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-112-0/+13
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-112-1/+5
|
* Prevent server 500 on compare branches with no common history (#6555)zeripath2019-04-091-0/+1
| | | | | * Prevent 500 if there is no common mergebase * Prevent creation of PR with no history
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-062-1/+20
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-041-0/+10
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-021-0/+10
|
* Better logging (#6038) (#6095)zeripath2019-04-021-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* [skip ci] Updated translations via CrowdinGiteaBot2019-04-011-0/+2
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-282-0/+4
|
* Make "Ghost" not link to 404 page (#6410)oscar.lofwenhamn2019-03-271-0/+2
| | | | | | | | | | | | | * Make Ghost not link to 404 page * Make correct localization label show * Create and use GetLastEventLabelFake for when a Ghost user has made the action, thus not linking to a user profile * Add corresponding _fake entries to locale_en-US * Make Ghost avatar not link to 404 page * Make Ghost on milestone_issues not link to 404 page
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-221-0/+10
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-214-1/+84
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-201-0/+6
|
* Include more variables on admin/config page (#6378)mrsdizzie2019-03-191-0/+1
| | | | | | | | | | Include the current CustomPath location in the admin section and also display GITEA_WORK_DIR and/or GITEA_CUSTOM env var if they are set. Right now there is no easy way to see this information, and if you try and help most users they won't be able to tell you anything about these values -- just that their custom template isn't working, files aren't in the right place, etc... Now you can see all paths and if they were set by ENV or not.
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-193-0/+16
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-1929-0/+29
|
* Implement Default Webhooks (#4299)Russell Aunger2019-03-181-0/+5
| | | | | | | | Partially implement #770. Add "Default Webhooks" page in site admin UI. Persist to the existing webhooks table, but store with RepoID=0 and OrgID=0. Upon repo creation, copy the set of default webhooks into the new repo.
* Add bio field for user (#6113)techknowlogick2019-03-181-0/+1
| | | | Fix #4339
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-181-0/+33
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-171-1/+1
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-111-0/+27
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-102-1/+26
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-092-0/+51
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-0829-3/+63
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-081-3/+3
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-081-6/+6
|
* Integrate OAuth2 Provider (#5378)Jonas Franz2019-03-081-0/+32
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-074-13/+16
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-061-0/+7
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-051-9/+28
|
* Add ability to sort issues by due date (#6206) (#6244)stevegt2019-03-051-0/+2
| | | Signed-off-by: Steve Traugott <stevegt@t7a.org>
* [skip ci] Updated translations via CrowdinGiteaBot2019-03-011-3/+69
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-281-0/+7
|
* [skip ci] Updated translations via CrowdinGiteaBot2019-02-271-0/+26
|