aboutsummaryrefslogtreecommitdiffstats
path: root/templates
Commit message (Collapse)AuthorAgeFilesLines
* fix #3200 (#6033)Lanre Adelowo2019-02-111-1/+1
|
* Add option to close issues via commit on a non master branch (#5992)Lanre Adelowo2019-02-101-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fixes #5957 * add tests to make sure config option is respected * use already defined struct * - use migration to make the flag repo wide not for the entire gitea instance Also note that the config value can still be set so as to be able to control the value for new repositories that are to be created - fix copy/paste error in copyright header year and rearrange import - use repo config instead of server config value to determine if a commit should close an issue - update testsuite * use global config only when creating a new repository * allow repo admin toggle feature via UI * fix typo and improve testcase * fix fixtures * add DEFAULT prefix to config value * fix test
* Create repository on organisation by default on its dashboard (#6026)zeripath2019-02-101-1/+3
| | | | | | | | * Create repository on organisation by default on its dashboard * Only show owners the add new repositories to an organisation button. Fix #3253 Signed-off-by: Andrew Thornton <art27@cantab.net>
* UI: Make dashboard navbar and footer full-width (#6013)silverwind2019-02-091-1/+1
| | | | | | | | * UI: Make dashboard navbar full-width * more tweaks: full-width footer and consistent padding * fix page layout causing unneccesary scrollbars on small pages
* Remove extra spaces (#6016)Thomas Loubiou2019-02-091-3/+3
|
* fix header menu misalignment (#6002)silverwind2019-02-081-3/+3
|
* Feature - #3031 - search for org repos (#5986)Richard Mahn2019-02-082-0/+2
|
* Fix #5799 - swagger for mergePullRequest (#5996)Thomas Loubiou2019-02-081-0/+33
|
* Enhance closed PR and Issue status in the list (#6000)Lanre Adelowo2019-02-081-1/+17
| | | | | | | | | | * working version * Update options/locale/locale_en-US.ini Co-Authored-By: adelowo <adelowomailbox@gmail.com> * update templates
* Add API to list tags (#5850)Lunny Xiao2019-02-071-0/+75
| | | | | | | | | | | | | | * Add API to list tags * update dependency gitea sdk vendor * fix swagger generation * fix swagger * add tests * update code.gitea.io/git vendor
* Expose issue stopwatch toggling via API (#5970)Lanre Adelowo2019-02-061-0/+106
|
* Feature - Pagination for git tree API (#5838)Richard Mahn2019-02-061-0/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Feature - Pagination for git tree API * Handles case when page is negative * Does a for loop over the start and end rather than all entries * Removed redundent logic * Adds per_page as a query parameter * Adds DEFAULT_GIT_TREES_PER_PAGE for settings, ran make fmt * Fix typo in cheat-sheet en * Makes page start at 1, generated swagger * Use updates to SDK * Updates to use latest sdk * Updates swagger for tree api * Adds test for GetTreeBySHA * Updates per PR reviews * Updates per PR reviews * Remove file * Formatting * Fix to swagger file * Fix to swagger * Update v1_json.tmpl * Fix to swagger file
* Admin config page mailertype setting option update (#5973)techknowlogick2019-02-061-2/+2
| | | | * Fix #5972
* UI: Dashboard tweaks (#5974)silverwind2019-02-061-2/+2
| | | | | - Don't show divider below heatmap when it's hidden via media-query - Make divider between user menu adhere to container width - Remove excessiv margins on heatmap
* UI: Repo header tweaks (#5945)silverwind2019-02-052-22/+19
| | | | | | | | | | | | | | | | * UI: Repo header tweaks - Use basic buttons on the header buttons, matching gogs - Make 'Manage topic' text smaller, remove margin-left with no topics present - Move various inline styles to CSS - Use flexbox on header title and buttons * fix indentation * reverse media query wrapping * fix inconsisten whitespace
* Display the branch name in the commit view (#5950)Lanre Adelowo2019-02-051-0/+1
| | | | | | | | | | * add branch info * Remove blank lines * Remove blank lines * update git dependency
* UI: Fixes for repo topic editor (#5971)silverwind2019-02-051-1/+1
| | | | - Properly hides the edit interface when saving a empty topic list - Align the Done button with the edit box
* Pull request conflict files detection (#5951)Lunny Xiao2019-02-051-0/+9
| | | | | | | | | | * add conflict detection * test pull request conflict files * fix detection files number * fix comments
* Automatically clear stopwatch on merging a PR (#4327)Lanre Adelowo2019-02-051-0/+1
| | | | | | | | | | | | | | | | | | | | * Don't display buttons if there are no notices * clear stopwatch on merging a PR * remove redundant gt check * use ctx.Flash as per @bkcsoft comment * stop timer on closing issues/PRs too * updated translation as per review * redirect to login page after successfully activating account * remove unrelated changes * stop timer for issues that are closed via commits too..Not just the 'close' UI button
* Add label names as filter in issue search api (#5946)Lanre Adelowo2019-02-041-0/+6
|
* Issue 5924 fix compare button (#5929)zeripath2019-02-031-1/+1
| | | | | | | | | | | | * Revert #5877 This unfortunately was not the solution. Signed-off-by: Andrew Thornton <art27@cantab.net> * Change permission check to create pull requests to CanReadIssuesOrPulls Signed-off-by: Andrew Thornton <art27@cantab.net>
* Add single commit API support (#5843)Lunny Xiao2019-02-021-0/+142
| | | | * add single commit API support
* Fix wrapping long code lines in UI (#5927)silverwind2019-02-022-3/+3
| | | | | | | | | | | | | Wrapping was initially added in https://github.com/go-gitea/gitea/pull/2789 but it is currently disabled because the rule that applies wrapping to the wrap class did not have enough CSS specificity. Resolved the issue by using a general selector that matches all code boxes. The previous wrap class was removed because it had only been inconsistenly applied to various code boxes and because I found no easy way to add classes to code boxes rendered in Markdown. Also removed a seemingly useless :before on code view and added padding to restore the spacing.
* UI: Better support for long repo names (#5932)silverwind2019-02-022-4/+4
| | | | | | * UI: Make long repo names wrap less often * also adjust news feed column widths
* Provide better panic handling (#5902)zeripath2019-01-301-1/+2
| | | | | | | This PR gitea'ises the macaron.Recovery() handler meaning that in the event of panic we get proper gitea 500 pages and the stacktrace is logged with the gitea logger. Signed-off-by: Andrew Thornton <art27@cantab.net>
* don't allow pull requests to be created on an archived repository (#5883)Lanre Adelowo2019-01-301-1/+1
| | | | | | * don't allow pull requests to be created on an archived repository Also disable the "PR" button if the repo is archived * Refuse creating an issue/PR via API calls too
* Fix new release creation API to allow empty target (#5870)Lauris BH2019-01-301-0/+21
| | | | | | | | * Fix new release creation API to allow empty target * Add more test cases * Update swagger
* fix compare button on upstream repo leading to 404 (#5877)Lanre Adelowo2019-01-291-2/+2
|
* UI: Change GPG Validation colors and remove inline CSS; fixes #5404 (#5896)EpicCoder2019-01-291-4/+4
|
* New Issue ?body= query (#5851)kekero2019-01-281-1/+1
| | | | | | | | * New Issue ?body= query * Override issue template with body query * Add documentation for issue body query
* Revert #3711 overwrite of only show "No Description" to repo admins #2167 ↵Gabriel Silva Simões2019-01-271-1/+1
| | | | | (#5836) Revert #3711 overwrite of only show "No Description" to repo admins #2167 and add tests to prevent accidental overwrite again.
* Move input fields to add members to a team and repos to a team (#5853)sebastian-sauer2019-01-252-34/+34
| | | | | | Move input fields to the top so no scrolling is needed to add new members / repos to a team. Signed-off-by: Sebastian Sauer <sauer.sebastian@gmail.com>
* update swagger for release API pagination (#5841)Lunny Xiao2019-01-251-0/+12
|
* Added docs for the tree api (#5834)kolaente2019-01-241-0/+104
| | | | | | | | * Added docs for the tree api * Added missing response definition * Fixed swagger docs
* Fix topics saving internal error and disable for archived repos (#5821)Lauris BH2019-01-241-2/+2
|
* New API routes added (#5594)Shashvat Kedia2019-01-231-0/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * New API routes added * Comments added * Build fix * swagger_v1_json.tmpl without new line character * Typo fix * Code review changes * Code review changes * Add copyright * Add copyright * Add copyright * Update per @lafriks feedback * Update org.go * Update user.go * Update user.go * make fmt
* Feature: Archive repos (#5009)kolaente2019-01-2318-217/+320
|
* Add the ability to use multiple labels as filters(#5786)Lauris BH2019-01-221-2/+2
|
* Fix wording when user is unassigned from an issue (#5769)Lanre Adelowo2019-01-191-1/+5
| | | | Previous Gitea would display that the user had unassigned themselves even if the actor was not the user. Fixes #4418
* Refactor repo.isBare to repo.isEmpty #5629 (#5714)zeripath2019-01-175-8/+8
| | | | | | | | * Refactor repo.isBare to repo.isEmpty #5629 Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove Sync call
* api: Add missing GET teams endpoints (#5382)Harshit Bansal2019-01-161-0/+52
| | | | | | | | | | | | | | | | | | | | * api: Add an endpoint to list a particular member of team. * models: Rename `GetUserTeams()` to `GetUserOrgTeams()` in `org_team` model. `GetUserTeams()` sounds a bit misnomer since it actually returns the teams that user belongs to in a given organization rather than all the teams across all the organization that the user has joined. * models: Add `GetUserTeams()`. Returns all the teams that a user belongs to. * api: Add an endpoint for GET '/user/teams'. A GET request to this endpoint lists all the teams that a user belongs to.
* Don't list an issue on its own dependency list UI. (#5658)Harshit Bansal2019-01-151-1/+1
| | | Fixes: #4684.
* Discord Oauth2 support (#4476)techknowlogick2019-01-131-0/+2
| | | | | | | | | | | | | | * add discord auth * add vendor for discord * fix syntax error * make fmt * update version of goth in use * update markbates/goth
* fix: use correct value for "MSpan Structures Obtained" #4742 (#5706)Julian2019-01-121-1/+1
| | | Signed-off-by: Julian Tölle <julian.toelle97@gmail.com>
* allow user fork repo even when as a guest.. This will prompt the user to ↵Lanre Adelowo2019-01-101-1/+1
| | | | login and if authentication was successful, the user will be redirected to fork the repo (#5690)
* Allow for user specific themes (#5668)Lanre Adelowo2019-01-093-5/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | * add migration and basic UI for changing a user's theme * update user themem * use right text on button * load theme based on users' selection * load theme based on users' selection in pwa too * update sample config * delete older theme loading * implement AfterLoad to set users' theme properly * set up default theme when creating a user. This uses the installation wide theme * use flash messages for error * set default theme when creating a user from the cli * fix @lunny review
* Translate home template to Czech (#5665)Jan Breuer2019-01-081-0/+37
| | | Signed-off-by: Jan Breuer <jan.breuer@jaybee.cz>
* Added URL mapping for Release attachments like on github.com (#1707)gdeverlant2019-01-061-9/+9
|
* Display branch name in delete branch confirmation modal. (#5654)Harshit Bansal2019-01-062-4/+4
| | | Fixes: #5630.
* Issue is not overdue when it is on the same date #5566 (#5568)Rodrigo Villablanca Vásquez2019-01-011-3/+3
| | | | | | | | | | * Due date time of issues and milestones is set to 23:59:59 * Add docs * make gen swagger * fix swagger gen