summaryrefslogtreecommitdiffstats
path: root/templates/repo/commits_table.tmpl
Commit message (Collapse)AuthorAgeFilesLines
* Modify pagination. (#3766)Pheng Heong TAN2018-04-081-21/+1
| | | | | | | I wanted navigation to the page "first" and the page "last" of the pages of commits. I discovered this has already been implemented in one of the templates. Signed-off-by: Tan Pheng Heong <phtan90@gmail.com>
* Don't warn users about *every* dirty form (#3707)Gerben2018-03-231-1/+1
| | | | | | | | | | | The choice regarding which forms should or should not trigger a warning is subjective. I tried to be consistent and not warn about forms that: - run an action, rather than edit data: search, send an email. - delete data: a warning about losing data would be confusing Note that forms on sign-in pages were already ignored (using a selector, rather than an explicit class on the form element). Fixes #3698.
* Responsive view (#2750)Morgan Bazalgette2017-12-301-17/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Viewport meta tag * responsive: dashboard * responsive: issues page * responsive: Explore page * responsive: navbar, and some navbar css refactoring * responsive: button for collapsing navbar in mobile view * Mark the hamburger button as active when pressed * better homepage for responsive views * Bring back jump class in navbar The class was necessary, because this way the dropdown doesn't assume the contents of the selected item. * make repository homes responsive * Make file view page responsive * Make forms look good on responsive views * make commits and commit diff view responsive * issues and PRs * responsive wiki * Don't place auto-init far off the page * Minor changes to amend broken stuff minor improvements - make login/sign up in navbar stackable - make navbar in explore and sign in not stackable Change selected class in TestPullCompare Fix typo that happened when rebasing fix dashboard on org view improve profile UI Use clearing on file diff to fix broken UI caused by floating elements remove unresolved merge conflict, and | Sanitize Fix repo home not loading
* Expandable commit bodies (#2980)Sondre Nilsen2017-11-301-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Initial working state of expandable commit bodies * Fix all commits having showing button for multiline commits * Refactor checking multiline messages method * Force newlines with <br> in commit body * Show multiple lines in the list view of repositories * Fixed proper newlines and minor refactor Use <pre> instead of <p>, this is so we can use \n instead of having to manually place <br> into the HTML. Makes it easier to display commit bodies. * Fix commit list messages jumping around * Fix indentation in view_list.tmpl * Use vertical-align: baseline instead of top * Refactor commit button toggle function * Remove RenderCommitBodyLink function * Add comments * Add newline at the end of _repository.less * Fix long commit bodies not properly wrapping inside <pre> * Don't split on double newlines * Show the commit body in commit view * Update stylesheets * Add/fix comments and run make fmt * Fix spaces not being tabs
* Fix issue link rendering in commit messages (#2897)Ethan Koenig2017-11-131-1/+1
| | | | | | | | | | * Fix issue link rendering in commit messages * Update page.tmpl * No links for parens * remove comment
* Make URL scheme unambiguous (#2408)Ethan Koenig2017-10-301-4/+4
| | | | | | | | | | * Make URL scheme unambiguous Redirect old routes to new routes * Fix redirects to new URL scheme, and update template * Fix branches/_new endpoints, and update integration test
* Display commit status on landing page of repo (#1784)Rémy Boulanouar2017-09-141-15/+1
| | | | | | | | * Display commit status on landing page of repo * improve last status of commits and add link to ci * fix last commit status since the order of ids are desc
* Show commit status icon in commits table (#1688)Lauris BH2017-05-071-0/+15
| | | | | | | | | | | | | | | | | | * Show commit status icon in commits table * Add comments * Fix icons * Few more places where commit table is displayed * Change integration test to use goquery for parsing html * Add integration tests for commit table and status icons * Fix status to return lates status correctly on all databases * Rewrote lates commit status selects
* Commit search appearence fixes (#1254)Patrick G2017-04-051-1/+5
| | | | | | * Fix button text to be consisstent with rest of UI * Make all commits checkbox look nicer
* GPG commit validation (#1150)Antoine GIRARD2017-03-221-3/+16
| | | | | | | | | | | | * GPG commit validation * Add translation + some little fix * Move hash calc after retrieving of potential key + missing translation * Add some little test
* Fixes #794 by moving emoji tag to the correct span (#848)Stephen Brown2017-02-061-2/+2
| | | Signed-off-by: Stephen Brown <steve@evolvedlight.co.uk>
* Add checkbox to search for all the branches by commit message (#813)Zsombor2017-02-051-0/+1
| | | and updating the vendor directory
* Use user fullname if resolvedThibault Meyer2016-11-041-1/+5
|
* #3348 always use relative avatar link in the templateUnknwon2016-08-051-1/+1
|
* Minor fixes for #2761Unknwon2016-03-111-3/+2
|
* Put if statement of grey merge commits on one lineSteven Oud2016-03-051-5/+2
|
* Grey out merge commitsSteven Oud2016-03-051-0/+5
|
* Render emojis in more places.Andrey Nering2016-03-021-1/+1
|
* Indent all templates with tabsAdam Strzelecki2015-12-081-62/+62
| | | | | | | | | | | | 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
* Render commit msg as header + verbatim descriptionAdam Strzelecki2015-12-071-1/+1
| | | | | | | | | Most commit in Git are expected to follow standard of single header line, followed by description paragraphs, separated by empty line from previous block. Previously Gogs were treating everything as single header. Now we are trying to render only first line as header, but following lines (description chunks) as a verbatim.
* fix #1829 and fix #890Unknwon2015-12-041-1/+1
|
* UI: Use more subtle grey SHA1 labelsAdam Strzelecki2015-12-031-1/+1
| | | | | | | | | | | Current green SHA1 labels are more pronounced than other UI elements attracting attention as if they were most important thing in the UI, while they are not as important, especially without real Git client. Using grey SHA1 labels makes the UI more balanced, less aggressive and lets user to focus on other content elements. NOTE: Neither GitHub or Bitbucket uses so heavy pronunciation as Gogs.
* more UI minor fixesUnknwon2015-12-021-2/+2
|
* clean test dataUnknwon2015-12-021-3/+1
|
* minor CSS fixUnknwon2015-12-021-2/+4
|
* Commits & files UI: SUI fixed single line tableAdam Strzelecki2015-12-021-8/+9
| | | | | | | | Instead using own ellipsis, uses Semantic UI fixed single line table which effectively applies ellipsis to all overflowing table cells. NOTE: File list cannot use colspan="2" for 1st "Last commit" elements, otherwise layout breaks with fixed table.
* fix #1572 fix file histrory paging issueUnknwon2015-11-101-1/+1
|
* fix #1886Unknwon2015-11-041-1/+1
|
* work on PR conversationUnknwon2015-09-011-5/+6
|
* rename fieldsUnknwon2015-08-311-1/+1
|
* fix styleUnknwon2015-08-211-0/+2
|
* finsih diff and compareUnknwon2015-08-211-1/+1
|
* new commits tableUnknwon2015-08-201-46/+64
|
* modules/base: add RenderCommitMessage with XSS-safe and special linksUnknwon2015-01-301-1/+1
| | | | - update russian locale
* Added issue link rendering in commit messagesdennis-smurf2014-12-051-1/+1
|
* custom avatar uploadUnknwon2014-11-211-1/+7
|
* Fix #572Unknwon2014-10-151-1/+1
|
* Page: Compare 2 commitsUnknwon2014-10-101-1/+3
|
* Page: Commits and fix #249Unknwon2014-09-231-21/+19
|
* Add suburl supportUnknwon2014-09-191-2/+2
|
* Allow Gogs to run from a suburl behind a reverse proxy. e.g. ↵Martin van Beurden2014-09-181-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
* add commit compare functionalityChristopher Brickley2014-09-011-0/+42