summaryrefslogtreecommitdiffstats
path: root/cmd
Commit message (Collapse)AuthorAgeFilesLines
* Add env var check for updateUnknwon2016-02-151-5/+6
|
* Remove cache avatar support and add its testsUnknwon2016-02-141-6/+0
|
* #2569 delete repo local copy when transferUnknwon2016-02-141-1/+1
| | | | | | Remote repository path is renamed but does not delete outdated local copy which still has old repository path as remote.
* Add default branch to repo payloadJosh Frye2016-02-121-1/+1
|
* Bump git-module. Fixes #2589Josh Frye2016-02-111-1/+1
|
* Merge pull request #2530 from fnkr/hide-other-teams-repos-from-org-pageUnknwon2016-02-041-1/+4
|\ | | | | Hide other teams & repos from organization page
| * Only show teams the user has access toFlorian Kaiser2016-01-311-1/+4
| |
* | Escape unescaped periods in route regular expressionFlorian Kaiser2016-02-021-1/+1
|/
* #2491 minor fix for sr on dashboardUnknwon2016-01-291-1/+1
|
* stop compile bindata for TRANSLATORSUnknwon2016-01-111-1/+1
| | | | - update required version of git-module for #2373
* #2345 disallow access of some pages for empty repoUnknwon2016-01-071-6/+7
|
* update dep lib version requirementUnknwon2016-01-061-0/+2
|
* #2311 improve HTTP auth error messageUnknwon2015-12-301-1/+1
|
* #2282 fix utf-8 recognized as windows-1252Unknwon2015-12-251-1/+1
|
* #1692 APIs: Users FollowersUnknwon2015-12-211-1/+11
| | | | | - User profile un/follow - List user's followers/following
* #2251 show commits count in PR tabsUnknwon2015-12-191-2/+2
|
* #1692 add organization APIsUnknwon2015-12-171-1/+1
|
* fix #2204Unknwon2015-12-151-5/+4
|
* rename import pathUnknwon2015-12-151-1/+1
|
* fix possible disclosureUnknwon2015-12-141-6/+7
|
* fix huge diff hangsUnknwon2015-12-141-1/+1
|
* improve get commits performanceUnknwon2015-12-131-1/+1
|
* #2167 able to identify git version on WindowsUnknwon2015-12-131-1/+1
|
* #2156 admin able to edit organization max repo creationUnknwon2015-12-111-6/+3
|
* #2154 fix form submit errorUnknwon2015-12-111-1/+1
|
* #1575 Limit repo creationUnknwon2015-12-101-1/+1
|
* move out git module and #1573 send push hookUnknwon2015-12-091-2/+5
|
* Make serv/update use LOCAL_ROOT_URL instead publicAdam Strzelecki2015-12-091-1/+1
| | | | The reasoning for that is in the previous commit.
* force new INI versionUnknwon2015-12-071-1/+1
|
* #2063 Ability to delete repo from admin panelUnknwon2015-12-051-1/+2
|
* fix #2105 and fix #1857Unknwon2015-12-051-0/+1
|
* Set default language for i18nUnknwon2015-12-051-1/+2
|
* #2052 advanced select ops for system noticesUnknwon2015-12-051-1/+1
|
* fix #1829 and fix #890Unknwon2015-12-041-4/+4
|
* refactor API routes and some work for #976Unknwon2015-12-041-74/+2
|
* fix #2095Unknwon2015-12-031-1/+1
|
* fix #976Unknwon2015-12-031-5/+20
|
* more UI minor fixesUnknwon2015-12-021-11/+8
|
* UI: Always show menu on repo pagesAdam Strzelecki2015-12-031-2/+2
| | | | | Merges repo/sidebar.tmpl with repo/header.tmpl and makes every repo page use middleware.RepoRef() necessary to display information on this menu.
* #2052 Ability to batch delete system noticesUnknwon2015-12-011-0/+1
|
* Merge branch 'feature/wiki' into developUnknwon2015-11-302-20/+42
|\
| * finish wikiUnknwon2015-11-301-15/+23
| |
| * wiki: finish editUnknwon2015-11-271-3/+5
| |
| * wiki: finish newUnknwon2015-11-271-0/+1
| |
| * introduce git-shellUnknwon2015-11-261-1/+2
| |
| * Wiki: UI for page newUnknwon2015-11-251-5/+15
| |
* | Merge pull request #2053 from kakwa/developUnknwon2015-11-301-10/+33
|\ \ | | | | | | various fixes in gogs dump command
| * | add name of the dump file in last log messagekakwa2015-11-281-1/+1
| | |
| * | Fix dump of log and custom directory in dump cmdkakwa2015-11-281-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | Now, the dump cmd uses setting.CustomPath and setting.LogRootPath instead of setting.WorkDir which was kind of broken if the gogs binary was in a different directory than gogs data. Additionally, the backup of setting.CustomPath directory is only done if it exists.
| * | Using a tmp dir to generate db and repo dumpskakwa2015-11-281-6/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using a tmp dir makes gogs dump more robust to concurrent runs. It also permits an easier cleaning of the tmp files (gogs-db.sql and gog-repo.zip) by just removing the tmp dir. As a side effect, it partially fix bugs on workdir. Previously, 'gogs dump' created the archives in the current directory, and tried to include these archives from the directory where the gogs binary lies. ex: if gogs binary is in /usr/bin/gogs, and gogs dump is run from /tmp/, /tmp/gog-repo.zip is created, but gogs dump tried to include /usr/bin/gogs-repo.zip.