Commit Graph

245 Commits (6c90f5e4c0b4adc572c12f914beb5a04ca82328d)

Author SHA1 Message Date
Brad Albright 82be59e633
issue search on my related repositories ()
* adding search capability to user's issues dashboard

* global issue search

* placement of search bar on issues dashboard

* fixed some bugs in the issue dashboard search

* added unit test because IssueIDs option was added to UserIssueStatsOptions

* some renaming of fields in the issue dashboard code to be more clear; also trying to fix issue of searching the right repos based on the filter

* added unit test fro GetRepoIDsForIssuesOptions; fixed search lost on pagination; using shown issue status for open/close count; removed some debugging

* fix issue with all count showing incorrectly

* removed todo comment left in by mistake

* typo pulling wrong count

* fxied all count being off when selecting repositories

* setting the opts.IsClosed after pulling repos to search, this is done so that the list of repo ids to serach for the keyword is not limited, we need to get all the issue ids for the shown issue stats

* added "accessibleRepositoryCondition" check on the query to pull the repo ids to search for issues, this is an added protection to ensure we don't search repos the user does not have access to

* added code so that in the issues search, we won't use an in clause of issues ids that goes over 1000

* fixed unit test

* using 950 as the limit for issue search, removed unneeded group by in GetRepoIDsForIssuesOptions, showing search on pulls dashboard page too (not just issues)

Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
John Olheiser d3f618362a
Fix JS and Vue ()
Signed-off-by: jolheiser <john.olheiser@gmail.com>
John Olheiser 86fdba177a
Add Octicon SVG spritemap ()
* Add octicon SVG sprite

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Static prefix

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* SVG for all repo icons

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* make vendor

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Swap out octicons

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Move octicons to top of less imports

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Fix JS

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Definitely not a search/replace

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Missed regex

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Move to more generic calls and webpack

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* make svg -> make webpack

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Remove svg-sprite

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Update tests

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Missed a test

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Remove svg from makefile

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Suggestions

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Attempt to fix test

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Update tests

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Revert timetracking test

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Swap .octicon for .svg in less

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Add aria-hidden

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Replace mega-octicon

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Fix webpack globbing on Windows

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Revert

Co-Authored-By: silverwind <me@silverwind.io>

* Fix octions from upstream

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Fix Vue and missed JS function

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Add JS helper and PWA

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Preload SVG

Signed-off-by: jolheiser <john.olheiser@gmail.com>

Co-authored-by: silverwind <me@silverwind.io>
Co-authored-by: techknowlogick <matti@mdranta.net>
zeripath 9789e0ad53
Only show conflicted files if not merged ()
* Only show conflicted files if not merged

* try again

Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
Co-authored-by: techknowlogick <matti@mdranta.net>
James Lakin 6e6da2c276
Tweak locale to respect singular conflicting file message in P… ()
Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
guillep2k 727fc42db7
Fix issue/pull link ()
James Lakin 3ff95cef60
Show if a PR has conflicting files on the PR lists ()
Co-authored-by: Lauris BH <lauris@nix.lv>
silverwind c640a1818a add explicit dimensions to navbar avatar ()
* add explicit dimensions to navbar avatar

this prevents a temporary layout change when navigating between
pages with cache disabled.

* also add dimensions on frontpage

Co-authored-by: Lauris BH <lauris@nix.lv>
John Olheiser cd5a44d973 Fix milestones page ()
Signed-off-by: jolheiser <john.olheiser@gmail.com>
mrsdizzie 1df701fd1a Add ActionCommentPull action ()
* Add ActionCommentPull action

Adds ActionCommentPull action to distinguish between a comment on an
issue and on a pull request

* Update modules/notification/action/action.go

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
techknowlogick 590d56dbb3
switch to fomantic-ui ()
Brad Albright f6b29012e0 Add /milestones endpoint ()
Create a /milestones endpoint which basically serves as a dashboard view for milestones, very similar to the /issues or /pulls page.

Closes 
John Olheiser 23ef9ff516 Remove empty lines ()
Signed-off-by: jolheiser <john.olheiser@gmail.com>
6543 66028d58f9 [UI] IssuePage multi repo select ()
* Make repository list @ issues/PR page persist

Will partially fix 

* Enable multiple selections in repo list @ issues/PR page

Part of issue 

* Add RepoIDs to UserIssueStatsOptions to make "type" count correct when selecting one/multiple repos.
* Replace variable "repo" with list "repos[]" and enable multiple selections of repositories from list by including/excluding RepoIDs in list.
*

* Remove redundant code

* Add 'All' button 

Improves functionality of the page, so that backtracking is not necessary to reset the page

* Remove redundant variable

Completely replace 'RepoID' with 'RepoIDs' and remove redundant code

* Add RepoIDs to label link

* Revert part of code to previous version to troubleshoot build failure

* Implement old and new pieces of code whilst adhering to multi select

* Attempt to join the two versions

Last commit passed tests but doesn't work in practice, this works in practice and hopefully passes the tests.

* Update tests to desired state

* Fix pagination implementation and tests

* Pass repoIDs as `repos=[1,2,3...]` instead of several `repos[]=..`
* Update tests file to reflect new functionality
* Update template with new `repos` format
* Implement new solution to show constant "total issues" count for "All" button

* Correct behavior when passing zero to array

* Comment out test url returning 404

This keeps returning 404 in the test despite working in practice, for the sake of running more tests I am commenting it out

* Comment out another test url returning 404

Last attempt, if more tests crash I will uncomment the urls and request assistance.

* Reenable tests and test fix

* Re-enable tests
* Make selecting "In your repositories" reset selection as passing IDs of repos belonging to other profiles causes breakage
* Remove unnecessary (with multi-selection enable) code

* Drop repo from repo map and total count if permission denied

* Remove extra parenthesis

* make template work again

* find bug!

* forgot the '#' at bugfixing

* delete unused RepoID

* compile regex only one time

* make fmt

* local variable = capital letter lower

* check if repos query pattern is correct

* pagination remove last , - make regex work again

* use Replace instead of ReplaceAll; del delete

* fix test

* how did this test binary got in?!?
dont forgot the "-p" at git add * !

* dont replace -> cut fisrt & last string

Co-Authored-By: zeripath <art27@cantab.net>

* jet another regex

dont mind as long as it has the same result and is performatn ...

Co-Authored-By: zeripath <art27@cantab.net>

* dont use nonexisting repo for test

* exclude /issues?type=created_by from test

* add table to querys
use same syntax in each query (table.colum)

* add new issue for test

* dont make a workaround or something else
this need a refactor itself and is out of scope for this PR

* fix misspell

* CI.redo()

* englisch txt update

Co-Authored-By: zeripath <art27@cantab.net>

* add sugestions

* Tweak & Fix

* CI.restart()
John Olheiser 06a8504c78 Update dashboard context for PR reviews ()
* Update dashboard context for PR reviews

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Update options/locale/locale_en-US.ini

Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>

* Only append head action if it has content or is approval/rejection

Signed-off-by: jolheiser <john.olheiser@gmail.com>

* Update options/locale/locale_en-US.ini

Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
mrsdizzie b747501337 Show due date in dashboard issues list ()
* Show due date in dashboard issues list

Include due date when vieiwiing all issues on dashboard (matching what
we show for repo issue lists).

Fixes 

* Put in same order as repo issue list

* Add suggested changes and also update repo issue list to match
jaqra 1a2d7207ea Make 100% width issues page left menu and add reponame as title attribute ()
Elias Norberg 8a45070f62 Fix pull request commit status in user dashboard list ()
jaqra 28362195a0 Add 'Mentioning you' group to /issues page ()
jaqra d0ad47bd5d apply emoji on dashboard issue list labels ()
jaqra 59b194f4d1 Move ref (branch or tag) location on issue list page ()
* Move ref (branch or tag) location on issue list page

* Make looks better

* move branch label also on milestone/{id} page

* [/issues page] Add milestone, Add Ref, Fix Assignees

* [repo issues page] reorder tasks, milestone and ref
mrsdizzie 1f1ecda541 Display original author and URL information when showing migrated issues/comments ()
* Store original author info for migrated issues and comments

Keep original author name for displaying in Gitea interface and also
store original author user ID for potential future use in linking
accounts from old location.

* Add original_url for repo

Store the original URL for a migrated repo

Clean up migrations/tests

* fix migration

* fix golangci-lint

* make 'make revive' happy also

* Modify templates to use OriginalAuthor if set

Use the original author name in templates if it is set rather than the
user who migrated/currently owns the issues

* formatting fixes

* make generate-swagger

* Use default avatar for imported comments

* Remove no longer used IgnoreIssueAuthor option

* Add OriginalAuthorID to swagger also
Wim 4508380cf7 Show full name if DefaultShowFullName setting activated ()
Adds a new key DEFAULT_SHOW_FULL_NAME (default false) to the [ui] section.
If enabled the full name will be shown (unless it's empty, then
the default username will be used)
Mario Lubenka fcbac38d6f Unifies pagination template usage () ()
zeripath bdbbd816fc Add more title attributes on shortened names ()
Elias Norberg bf5af87eef Show last commit status in pull request lists ()
oscar.lofwenhamn 2019983e77 Make "Ghost" not link to 404 page ()
* 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
stevegt b257e0456b Add ability to sort issues by due date () ()
Signed-off-by: Steve Traugott <stevegt@t7a.org>
Muhammed TİFTİKÇİ 4512634604 Make organization dropdown scrollable when using mouse wheel ()
* Fix 
zeripath c0adb5ea8b
Create repository on organisation by default on its dashboard ()
* Create repository on organisation by default on its dashboard
* Only show owners the add new repositories to an organisation button.

Fix 

Signed-off-by: Andrew Thornton <art27@cantab.net>
silverwind 681345dc99 UI: Make dashboard navbar and footer full-width ()
* UI: Make dashboard navbar full-width

* more tweaks: full-width footer and consistent padding

* fix page layout causing unneccesary scrollbars on small pages
silverwind 0c721fe016 UI: Dashboard tweaks ()
- 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
silverwind af22df8314 UI: Better support for long repo names ()
* UI: Make long repo names wrap less often

* also adjust news feed column widths
kolaente 0b510725c9 Feature: Archive repos ()
Lauris BH e09fe48773 Refactor heatmap to vue component ()
Rodrigo Villablanca Vásquez 48badd59e9 Fix to 3819 - Filtering issues by tags on main screen issues ()
* Fix to 3819

* Changes suggested

* Empty line removed

* Fix error: non-name opts.Labels on left side of :=
kolaente 6759237eda User action heatmap ()
* Added basic heatmap data

* Added extra case for sqlite

* Built basic heatmap into user profile

* Get contribution data from api & styling

* Fixed lint & added extra group by statements for all database types

* generated swagger spec

* generated swagger spec

* generated swagger spec

* fixed swagger spec

* fmt

* Added tests

* Added setting to enable/disable user heatmap

* Added locale for loading text

* Removed UseTiDB

* Updated librejs & moment.js

* Fixed import order

* Fixed heatmap in postgresql

* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md

Co-Authored-By: kolaente <konrad@kola-entertainments.de>

* Added copyright header

* Fixed a bug to show the heatmap for the actual user instead of the currently logged in

* Added integration test for heatmaps

* Added a heatmap on the dashboard

* Fixed timestamp parsing

* Hide heatmap on mobile

* optimized postgresql group by query

* Improved sqlite group by statement
nubenum 756eafaaf6 Fix some issues with special chars in branch names ()
Signed-off-by: Robin Durner <github@nubenum.de>
Lauris BH fa4663e61e Add push webhook support for mirrored repositories ()
SagePtr a4fa6bbc89 Hide org/create menu item in Dashboard if user has no rights () ()
Guido Diepen 7c943b1cad Implemented hover text showing user FullName ()
For each action that is displayed in either the public activity overview
of a user, or in the dashboard overview, the link to the username is now
extended with a title attribute to show the FullName as hover text

Signed-off-by: Guido Diepen <site-github@guidodiepen.nl>
Jonas Franz 8d5f58d834 Shows total tracked time in issue and milestone list ()
* Show total tracked time in issue and milestone list
Show total tracked time at issue page

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Optimizing TotalTimes by using SumInt

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fixing wrong total times for milestones caused by a missing JOIN
Adding unit tests for total times

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Logging error instead of ignoring it

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Correcting spelling mistakes

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Change error message to a short version

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Add error handling to TotalTimes
Add variable for totalTimes

Signed-off-by: Jonas Franz <info@jonasfranz.de>

* Introduce TotalTrackedTimes as variable of issue
Load TotalTrackedTimes by loading attributes of IssueList
Load TotalTrackedTimes by loading attributes of single issue
Add Sec2Time as helper to use it in templates

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fixed test + gofmt

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Load TotalTrackedTimes via MilestoneList instead of single requests

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Add documentation for MilestoneList

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Add documentation for MilestoneList

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fix test

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Change comment from SQL query to description

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fix unit test by using int64 instead of int

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fix unit test by using int64 instead of int

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Check if timetracker is enabled

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Fix test by enabling timetracking

Signed-off-by: Jonas Franz <info@jonasfranz.de>
Lauris BH c0d41b1b77 Add label descriptions ()
* Add label descriptions

* Add default descriptions to label template
modmew8 ffd0062438 Fix checklist padding ()
* Changed style of checklist in issuelist.

* Adjusted padding for progressbar, updated index.css.

* Fixed another wrong tab to spaces.

Signed-off-by: modmew8 <modmew8@gmail.com>
modmew8 d996da6bab Added progressbar for issues (). ()
* Added progressbar for issues ().

* Updated the generated index.css.

Signed-off-by: modmew8 <modmew8@gmail.com>

* Removed stored progress percentage and changed it to css calc. Also added the issue task progress to the user/dashboard/issues.

Signed-off-by: modmew8 <modmew8@gmail.com>

* Removed unnecessary blanks.

Signed-off-by: modmew8 <modmew8@gmail.com>

* Formatted the files correctly, fmt-check terminates now without errors.

Signed-off-by: modmew8 <modmew8@gmail.com>

* Removed variables, made computing the tasks on demand with precompiled regexp.

Signed-off-by: modmew8 <modmew8@gmail.com>
Morgan Bazalgette 3d3faa2624 Responsive view ()
* 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
Lunny Xiao f2e20c81b6 Refactor struct's time to remove unnecessary memory usage ()
* refactor struct's time to remove unnecessary memory usage

* use AsTimePtr simple code

* fix tests

* fix time compare

* fix template on gpg

* use AddDuration instead of Add
silverwind 4947cfb7b0 Remove box-shadow from UI, fix dashboard issue ()
Morlinest 25acd6c822 Use custom search for each filter type in dashboard ()
* Do custom search for each filter in repo-search

* Fix search url

* Simplify code

* Remove loader and reset counts when changing filter
David Schneiderbauer 1eedd983ea Complete push webhooks ()
* implemented missing 'delete' push webhooks

moreover created ActionDeleteBranch and ActionDeleteTag

* add CommitRepoAction tests for tag/branch creation/deletion

* fixed error where push webhook not called if is new branch or tag
removed unnecessary code

* moved prepare unit test environment into separate method to be used across unit tests

* add missing if clause in pushUpdate

Signed-off-by: David Schneiderbauer <dschneiderbauer@gmail.com>
Lunny Xiao 9413b48a0b fix bug on create repo link on dashboard ()
Morlinest 7455604f0c Remove (almost) server side data rendering from repo-search component ()
* Rename some shorthands

* Remove (almost) server side data rendering from repo-search component template
Morlinest 53e6c947f1 Fix order of elements in dashboard html ()
Morlinest 4c13a8458b Fix repo-search template errors for go1.7 ()
Morlinest f3486360d2 Make use of Vue more universal ()
Morlinest 951fb572a7 Fix and improve dashboard repo UI ()
* Fix and improve dashboard repo UI

* Change order of scripts loading

* Remove "mirror" tab

* Remove single tab panel for "org user"

* Add localization strings

* Create vue component and change event for search

* Add "mirrors" filter
Ethan Koenig 7e0654bd9e Fix counts on issues dashboard ()
* Fix counts on issues dashboard

* setupSess -> setupSession

* Unit test

* Load repo owners for issues
Lauris BH 047a67a90b Refactor vue delimeters to use es6 template delimeters ()
Jonas Franz 441986a473 Fix "Dashboard shows deleted comments" ()
Andrey Nering e67ece26f0 Merge pull request from andreynering/dashboard-search-org-repos
More fixes for dashboard search
Ethan Koenig bafd778c25 Fix invalid reference in feeds template ()
* Fix invalid reference in feeds template

* Comment for GetActAvatar

* Add integration test
Patrick G cc2071c3fd Make side nav on dashboard stackable ()
Andrey Nering c746875fcf Remove colaborative repo panel
Jun Hsieh ♞ 2cf80f4b18 Hide the create organization button (in dashboard/organization section) ()
when the user has no such permission.
Andrey Nering ab79069dc7 Improve dashboard repo search ()
* Add VueJS

* Improve dashboard search

* Fix tab switching

* Fix input autofocus
Lunny Xiao 847527fd6d Fix all the bugs in issues and pulls on dashboard ()
* fix all the bugs in issues and pulls on dashboard

* small fix and refactor

* add method getRepoIDs for IssueList
Lunny Xiao 7a9a5c8a69 Fix assigned issues dashboard ()
* Fix assigned/created issues in dashboard. ()

* Fix assigned/created issues in dashboard.

* Use GetUserIssueStats for getting all Dashboard stats.

* Use gofmt to format the file properly.

* Replace &Issue{} with new(Issue).

* Check if user has access to given repository.

* Remove unnecessary filtering of issues.

* Return 404 error if invalid repository is given.

* Use correct number of issues in paginater.

* fix issues on dashboard
Sandro Santilli 23a7527e04 Allow rendering alerts in dashboard ()
NOTE: useful when logging in via OpenID and connecting to user
Lunny Xiao 02a881aa32 show tags on dashboard issues ()
Bo-Yi Wu d078aa30d6 feat: add search repository on dashboard. ()
Kazuki Sawada 3c4d5e1ed5 Fix: Pagenation on dashboard->issues does not work well ()
Unknwon 7e7613cdec Fix template nil error
Unknwon a5b88c4d0c Fix template error [CI SKIP]
Unknwon 50422f1fc2 always use relative avatar link in the template
Unknwon e74630ae3b add pagination for repositories
Unknwon 1f2e173a74 Refactor User.Id to User.ID
Unknwon 971e2c3bd6 Upgrade octicon to 4.3.0
Unknwon 414eb22ef9 fix activitity feeds for pull requests
Andrey Nering 13e71acadf Render emojis in more places.
Unknwon 912f7b51e9 add actions for close and reopen issues
Unknwon aa5e837c65 fix
Florian Kaiser 532f9fdd99 Use icon repo-forked instead of repo-lock for private, forked repos
Unknwon ee814bf8d6 minor fix for sr on dashboard
Unknwon c631a4a9b9 URL fix for
Unknwon f43cc90841 Truncate repository name if too long
Unknwon 13fe733037 use monospaced font for commit IDs in news feeds
Unknwon 837155577a use icon+tooltip to replace text
Unknwon 2a8d71367d not show content of issue in activity timeline
Unknwon b8d48bdb62 Add "New Mirror" button on Dashboard
Angus Gibson 06d293a84e Only show comparison link for >2 commits
We can look at the PushCommits object to see how many commits were
included in a commit, and add some template logic to only show the
comparison link when there are at least 2 commits in a push. We also
correct the link to display the number of commits.
Adam Strzelecki da2585c11e Indent all templates with tabs
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
Gibheer 3d54f6c0a4 add new mirror button to dashboard
This adds the button to create a new mirror on the dashboard at the same
place where "new repository" and "new organization" already exist.
Unknwon 3ca544912f Drop /org/ URL path prefix in organization home page
Unknwon 52c8f69163 fix
Arthur Ouyang e04c97b9fa Fix - the hyperlink and the display name of the branch
The hyperlink and the display name of the branch if the branch is in a folder or the branch name has '#'
Unknwon 1d57f0d64f Show custom avatars in commits
Unknwon 6a664e88c7 show issue content
Unknwon 0f438ef0b3 new dashboard ui
Alexey Makhov 1bfebdcdf6 improves
Alexey Makhov 588a0db218 issue title at dashboard
Unknwon 603c7389b8 Dashboard issues lacks sorting
Unknwon af324a6165 adjust icon css
Unknwon 7b0ae27549 org dashboard icon css
Unknwon 31e7b0f588 status button mrigin-right
Unknwon 645d4d0c5b Collaborative Repositories missing suburl on Dashboard
Unknwon 8481adb255 remove test strings
Unknwon 2a2a8cd619 ui and pulls index fix
Unknwon 5c5ccddb02 fix buttons style
Unknwon c0a899b151 css fix
Unknwon 83dc2468f5 finish initial version of pull request
Unknwon 842770d7fb add merger info and news feed
Unknwon 8af094967f add rename repo action
Unknwon ce386cfb61 fix suburl
Unknwon 2f2bf20aae fix menu overflow
Unknwon b3a45693c3 minor update
Unknwon 4330c1f0d8 update locale and org dashboard navbar
Unknwon a329bbc215 new org dashboard issues
Unknwon f808df5a7b new user dahsboard issues
Unknwon 3a32cbee44 Dashboard error: nil commits
Unknwon aede5cdb04 fix app suburl in feeds
Unknwon 686dd59916 fix with migration and update locale
Unknwon 471b8a18ab Revert "Merge pull request from ndarilek/accessibility-fixes"
This reverts commit c226e92284, reversing
changes made to 80b23854bc.
Nolan Darilek 37ab32b613 Various accessibility fixes, mostly labeling icons.
Unknwon 96a95e9dfd : fix one missing duplicated prefix
- update some locale files
Unknwon 0720d3988f : GetRepoLink already contains AppSubUrl
Unknwon f15fa9167a cmd: code fix for
- routers/admin: add rewrite update hook operation
- conf/locale: update locale file due to ini behavior changes
- cmd/cert_stub.go: remove useless code
- cmd/fix.go: no longer need fix command(at least now)
Unknwon 55dfe2c978 custom avatar upload
Unknwon 3600498c8f Add push tag action
Unknwon b2632dec09 Page: Compare 2 commits
Unknwon ad52b2d791 Mirror fix on transfer repo
Unknwon 71e4689d11 Page: User profile
Unknwon f69761563b Fix bug on transfer repo
Unknwon 7ba9257a7f Add suburl support
Martin van Beurden 0055cbd365 Allow Gogs to run from a suburl behind a reverse proxy. e.g. 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
Unknwon a596388ebf Add success message after transfer repository
Unknwon c1ceec45da Fix mirror UI style and work on
Unknwon c5ce33047e Mirror fix and hide missing pages for 0.5 release
Michael Dyrynda 1bbf4c9768 Add missing 'new migration' link
Addresses issue 
Tristan Storch 69e332f432 Removed trailing white spaces
Removed trailing whitespaces with

```sh
for file in `grep -r " $" * | cut -d : -f 1 | sort | uniq | grep -v " "`; do sed -i 's/[ \t]*$//' $file; done
```

and some handwork.
Unknwon 36b4c57ff1 Finish new organization members and invitation page
Unknwon 5fbf8531e6 Finish new home page of organization
Unknwon 9813161411 Reser repo owner to organization when error occurs in repo create page, dashboard news feed page, create organization page
Unknwon 5e81383413 Git installation check, show image in single file view, show short SHA1 instead of 40-length string, complete log module
Unknwon 5c4bc3c848 Huge updates!!!!! Be careful to merge!!!!
Unknwon 8dd07c0ddd New UI merge in progress