summaryrefslogtreecommitdiffstats
path: root/templates
Commit message (Collapse)AuthorAgeFilesLines
* Notifications: mark as read/unread and pin (#629)Andrey Nering2017-01-122-23/+55
| | | | | | | | | | * Use relative URLs * Notifications - Mark as read/unread * Feature of pinning a notification * On view issue, do not mark as read a pinned notification
* docs: update translation on homepage for zh-tw (#634)Bo-Yi Wu2017-01-111-0/+37
|
* Add Keep email private (see issue #571). (#571)derSuessmann2017-01-085-2/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Add site-wide option DEFAULT_KEEP_EMAIL_PRIVATE. - Add the new option to the install and admin/config pages. - Add the new option to app.ini in the service section. - Add the new option to the settings struct. - Add English text strings to i18n. - Add field KeepEmailPrivate to user struct. - Add field KeepEmailPrivate to user form. - Add option to UI. - Add using noreply email address if user has "Keep Email Private". An email address <LowerName>@<NO_REPLY_ADDRESS> is now used in commit messages (and hopefully all other git log relevant places). The change relies on the fact that git commands should use user.NetGitSig(). - Add hiding of email address in UI, if user has set "Keep Email Private". - Add condition to show email address only on explore/users and user pages, if user has not set "Keep Email Private". - Add noreply email in API if set "Keep Email Private". - Add a new service setting NO_REPLY_ADDRESS. The value of this setting is used as the domain part for the user's email address in git log, iff he decides to keep his email address private. If the user decides to keep his email address private and this option is not set 'noreply.example.org' is used, which no MTA should send email to. Add NO_REPLY_ADDRESS to conf/app.ini.
* Merge pull request #539 from andreynering/notifications-step-2Andrey Nering2017-01-052-0/+82
|\ | | | | Notifications - Step 2
| * Add pagination for notificationsAndrey Nering2017-01-031-2/+4
| |
| * Showing index in front of issue titleAndrey Nering2017-01-021-1/+1
| |
| * Notifications - Step 2Andrey Nering2016-12-302-0/+80
| |
* | Fix unified diff view styling (#585)Manuel Kuhlmann2017-01-051-1/+1
| | | | | | Signed-off-by: Manuel Kuhlmann <manuel@mkuhlmann.org>
* | Fix diff split view coloring (#553) (#584)Manuel Kuhlmann2017-01-051-3/+6
| | | | | | Signed-off-by: Manuel Kuhlmann <manuel@mkuhlmann.org>
* | fix config session missing data row & resolved #517 (#549)Lunny Xiao2017-01-021-1/+1
| |
* | UI config to toggle whether user email shows up in Explore Users (#336)Thiago Avelino2017-01-012-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * UI config to toggle whether user email shows up in Explore Users * Recommendation made by @tboerger https://github.com/go-gitea/gitea/pull/336/commits/66a1c59fe730eff019ce100673c6800cce7d102d#r94122732 * fixed typo, rename ShowUserEmailInExplore to ShowUserEmail * Fixed typo merged conflict * Hide email in the user profile page if you are active ShowUserEmail ref https://github.com/go-gitea/gitea/pull/336#issuecomment-269843725 * Please replace MustBool() with MustBool(true)
* | resolved #517: fix admin ui data row missingLunny Xiao2016-12-311-5/+5
| |
* | Restrict creating organisations by user (#193)Schwobaland2016-12-312-0/+8
|/ | | | | | | | | | | | | | | | | | | | | | * restrict creating organizations based on right on user * revert bindata.go * reverse vendor lib * revert goimports change * set AllowCreateOrganization default value to true * revert locale * added default value for AllowCreateOrganization * fix typo in migration-comment * fix comment * add coments in migration
* Tab on user profile to show starred repos (#519)Andrey Nering2016-12-292-10/+19
| | | | | | | | | | | | | | * Tab on user profile to show starred repos * Make golint happy and use transactions on StarRepo function * x -> sess * Use sess.Close() instead of sess.Rollback() * Add copyright * Fix lint
* commithgraph / timeline (#428)Kjell Kvinge2016-12-293-2/+65
| | | | | | | | | | * Add model and tests for graph * Add route and router for graph * Add assets for graph * Add template for graph
* Implementation of Folder JumpingSl@ny2016-12-281-2/+15
|
* Replace Gogs with Gitea (#520)Bwko2016-12-281-1/+1
|
* Added Dutch translations to the landingpageBwko2016-12-261-0/+37
|
* Improve the way how branches are deletedBwko2016-12-261-4/+14
| | | | | | Delete branch from HeadRepo instead of BaseRepo Prevent the deletion of a master branch Show a yes/no overlay when you press the delete branch button
* Git LFS support v2 (#122)Fabian Zaremba2016-12-263-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
* Provide button to delete merged pull request (#441)Lunny Xiao2016-12-251-1/+10
| | | | | | * provide button to delete merged pull request * golint fix
* Added sorting to organizations, repos & users page (#222)Bwko2016-12-242-2/+36
|
* Added sorting to the labels & milestones page (#199)Bwko2016-12-242-0/+32
|
* Fix homepage docs link broken (#417)Lunny Xiao2016-12-221-8/+8
| | | | | | * fix homepage docs link broken * fix homepage docs links after docs updated
* Remove remaining Gogs reference on locales and cmd (#430)Joubert RedRat2016-12-211-1/+1
|
* serve video files using the HTML5 video tag (#418)Nico Mandery2016-12-201-0/+4
| | | | | | * serve video files using the HTML5 video tag * lint fix: add comment to IsVideoFile
* Update example install url from try.gogs.io to try.gitea.io (#385)Sandro Santilli2016-12-151-2/+2
| | | | | | | | * Update example install url from try.gogs.io to try.gitea.io * Ask if issue can be reproduced on try.gitea.io * Link try.gitea.io to the README
* Fix alignment of tooltip and add bindata - related to #359 (#364)Henning Henkel2016-12-081-1/+1
|
* Added download tooltip - solves #221 (#359)Henning Henkel2016-12-071-1/+1
|
* Integrate templates into bindata optionally (#314)Thomas Boerger2016-12-061-1/+0
| | | Integrated optional bindata for the templates
* Fixed project name on base template headAvelino2016-12-021-2/+2
|
* Fixed project name on repo template mailAvelino2016-12-023-3/+3
|
* Fixed project on repo template hook settingsAvelino2016-12-022-2/+2
|
* Added rel="noopener" to target="_blank" hrefs (#327)Bwko2016-12-0214-44/+42
| | | | | | * Added rel="noopener" to target="_blank" hrefs * Replaced gogs.io/docs with docs.gitea.io
* Resolved #296 (#324)Lunny Xiao2016-12-013-0/+8
| | | | | | * resolved #296 * Indentation fixed
* resolved #310: hide fork to self (#323)Lunny Xiao2016-12-011-1/+1
|
* Fixes xss, clickjacking & password autocompletionBwko2016-11-294-8/+8
|
* bug fixed caused by #295 (#299)Lunny Xiao2016-11-292-2/+2
|
* Update link on user’s profile avatar to avatar settings (#287)Matthias Loibl2016-11-281-1/+1
|
* Allow updating draft releases while keeping them as draftSandro Santilli2016-11-141-3/+10
| | | | Closes #162
* replace footer gogs to gitea (#157)Lunny Xiao2016-11-121-2/+2
|
* Update home page to Gitea (#138)Andrey Nering2016-11-111-23/+23
|
* Fix bug that tries to load mistyped templatesMatthias Loibl2016-11-102-2/+2
|
* Merge pull request #121 from joubertredrat/feature-last-loginLunny Xiao2016-11-101-0/+6
|\ | | | | Last Login for admin manage your users
| * Support to last login featureJoubert RedRat2016-11-091-0/+6
| |
* | Merge pull request #17 from LefsFlarey/issue/3666Matthias Loibl2016-11-081-2/+2
|\ \ | |/ |/| Fixed 404 caused by unexpected question mark
| * Fixed 404 caused by unexpected question markFlare2016-11-081-2/+2
| | | | | | | | This fixes 404 caused when creating new files or wiki pages with question marks. Amended to force CI rebuild
* | Merge pull request #73 from bkcsoft/gt/2164-release-paginationLunny Xiao2016-11-0811-32/+12
|\ \ | | | | | | Add Pagination to Releases-page (and de-duplicate pagination templates)
| * | Merge all pagination-templates into 'base/paginate'Kim "BKC" Carlbäcker2016-11-0711-33/+12
| | | | | | | | | | | | to reduce code-duplicity
| * | Add Pagination to Releases-pageKim "BKC" Carlbäcker2016-11-071-0/+1
| | |