summaryrefslogtreecommitdiffstats
path: root/templates/status
Commit message (Collapse)AuthorAgeFilesLines
* Refactor `i18n` to `locale` (#20153)Gusted2022-06-272-5/+5
| | | | | | | | | | | * Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
* Refactor HTTP request context (#17979)wxiaoguang2021-12-151-2/+4
|
* Rename StaticUrlPrefix to AssetUrlPrefix (#15779)silverwind2021-05-082-2/+2
| | | | Use a new name for this template/frontend variable to make it distinct from the server variable StaticURLPrefix.
* Style and template tweaks (#13828)silverwind2020-12-042-2/+2
| | | | | | | | | | | | | | | * Style and template tweaks - Get red and green buttons on arc green closer to base theme - EasyMDE adjustments, toolbar and focus border - Fix header on 404 repo page - Tweaks to frontpage search, add 'Create Repo' button - Fix misaligned box headers - Fix pagination on arc-green - Fix background and footer on explore and repo search * better fix for header button alignment * add label hover for reactions
* Add class to page content to unify top margin (#13766)silverwind2020-11-302-8/+10
| | | | | | | | | | | | | | | | | | | * Add class to page content to unify top margin Previously pages would individually set this margin but some didn't so content would stick to the header without any space. Resolve this by adding a new class that is added on all pages. The only place where we remove this margin again is on the pages with menu or wrapper in the header. * fix admin notices * fix team pages * fix loading segment on gitgraph for arc-green * fix last missing case Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Make error pages translatable (#11163)65432020-04-272-4/+4
| | | | | | | * make error pages translatable * dont translate ":" * link need Safe
* fix 404 and 500 image size in small size screen (#11043)赵智超2020-04-112-2/+2
| | | | | | | do it by define Semantic UI image class Signed-off-by: a1012112796 <1012112796@qq.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
* Improve 404 error message (#10214)guillep2k2020-02-101-0/+1
|
* [assets] configurable URL for static resources (#7911)Jakob Ackermann2019-10-222-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * static url * add cors support for static resources * [assets] work on the migration to configurable url for assets Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * [misc] fix whitespace Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * [assets] fix the loading of the manifest.json It is generated dynamically, and as such can not be served by the cdn. Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * Revert "add cors support for static resources" This reverts commit 42f964fd181dbb8b139808b9be623470d4f0e40f Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * [docs] add the STATIC_URL_PREFIX option Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * [docs] reverse-proxy: nginx: add two setups for STATIC_URL_PREFIX Signed-off-by: Jakob Ackermann <das7pad@outlook.com> * [assets] migrate the url of a new asset to the static url prefix REF: f2a3abc683ad4b2177b7c7c6160a2c0b4316120a Signed-off-by: Jakob Ackermann <das7pad@outlook.com>
* Minor UI tweaks (#5980)John Olheiser2019-02-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove all CommitStatus when a repo is deleted Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor UI tweaks (#5782) Added 'No License' option Added link and octicon change for external issue trackers Reset password now notifies right away if the code is invalid Signed-off-by: jolheiser <john.olheiser@gmail.com> * More UI tweaks More info in PR * Generate stylesheet for arc-green * Make gofmt work * Change PR integration since the button is changed * Rebase * Generate stylesheet * UI updates Made the PR button a "basic" button Vertically centered the issue checkboxes Labels will update only once after modal is closed * Commit to reference related issues Resolves #5782 Resolves #5861 Addresses original question in #5993 * Change the comment wording since PR button is no longer little and green. * Revert changes that made Windows work * Regenerate stylesheet * Regenerate stylesheets * make generate-stylesheets * Update integration again, changed button style Signed-off-by: jolheiser <john.olheiser@gmail.com> * Added ID to PR button Changed integration to use the ID to avoid breaking in the future * Added missing semi-colons * Added back distinction between issue actions and filters (overlooked it before) Moved action button over next to other action dropdowns * Remove extra tab formatting in list.tmpl * Remove more formatting from GoLand * Replace hardcoded "No License" with i18n license helper.
* 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>
* Add gitea/issues link to 500 page (#4654)SagePtr2018-08-111-0/+1
|
* Remove link to GitHub issues (#4639)techknowlogick2018-08-081-1/+0
|
* Change import reference to match gitea instead of gogs (#37)Rémy Boulanouar2016-11-031-1/+1
|
* Indent all templates with tabsAdam Strzelecki2015-12-082-10/+10
| | | | | | | | | | | | This commit improves templates readability, since all of them use consistent indent with all template command blocks indented too. 1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks such as {{if}} {{with}} 2. Cleans all trailing white-space 3. Adds trailing last line-break to each file
* introduce git-shellUnknwon2015-11-262-10/+0
|
* fix #2020Unknwon2015-11-242-2/+2
|
* #1545 Cross reference the commit from the issue when it is closed by the commitUnknwon2015-08-304-20/+15
|
* Add suburl supportUnknwon2014-09-192-2/+2
|
* Allow Gogs to run from a suburl behind a reverse proxy. e.g. ↵Martin van Beurden2014-09-182-2/+2
| | | | | | | | | | | | | | http://mydomain.com/gogs/ Conflicts: modules/setting/setting.go Conflicts: templates/repo/release/list.tmpl templates/user/dashboard/dashboard.tmpl Conflicts: routers/repo/setting.go
* Fix #348Unknwon2014-09-051-2/+2
|
* Huge updates!!!!! Be careful to merge!!!!Unknwon2014-07-262-3/+4
|
* Merge branch 'dev' of github.com:gogits/gogs into devUnknwon2014-07-262-9/+2
|\ | | | | | | | | Conflicts: templates/status/500.tmpl
| * Change "an error is occurred" to "has occurred"Ciaran Downey2014-07-252-4/+4
| |
* | New UI merge in progressUnknwon2014-07-264-15/+16
|/
* Corrected grammar and spelling mistakes in templates. Normalizing to ↵twitchyliquid642014-04-201-2/+2
| | | | American English.
* Add flashUnknown2014-04-101-2/+2
|
* add ssl support for webLunny Xiao2014-04-051-0/+6
|
* change css name styleFuXiaoHei2014-03-253-3/+3
|
* SSL enable config optionUnknown2014-03-231-0/+1
|
* 404 and 500 page uiFuXiaoHei2014-03-232-3/+7
|
* use ctx.Handle to handle 404 pageFuXiaoHei2014-03-232-0/+14
|
* Add log.handleUnknown2014-03-141-0/+7
|
* Add UI for register userUnknown2014-02-171-0/+6