Unknwon
11ce6b1785
modules/setting: simple behave change in startup
10 years ago
无闻
d79694eafe
Merge pull request #982 from nicolai86/bugfix/label-num_issues-2nd
Properly calculate the number of open issues per label
10 years ago
Unknwon
08b8901cd9
models: fix issue with transfer repository
README: fix typo
10 years ago
Raphael Randschau
64ca6513c2
Properly calculate the number of open issues per label
10 years ago
无闻
8b09169468
Merge pull request #960 from phsmit/access_action
Fix that owners also see actions on their repositories
10 years ago
无闻
59233609d4
Merge pull request #915 from Lafriks/dev
Get username, name, surname and e-mail from LDAP server
10 years ago
Peter Smit
c85b68a2c9
Merge branch 'access' into access_rewriteserv
10 years ago
Unknwon
56a29ce158
v4 migration, merge 'dev', clean code and mirror fix
10 years ago
Unknwon
8aec9956c1
Merge branch 'access' of github.com:gogits/gogs into access
10 years ago
无闻
dfc134d827
Merge pull request #961 from phsmit/access_removecoll
Remove collaborators when removing and transferring repository
10 years ago
Unknwon
df64dcfdfd
Merge branch 'access' of github.com:gogits/gogs into access
10 years ago
Unknwon
5a7bca797c
Merge branch 'dev' of github.com:gogits/gogs into access
Conflicts:
gogs.go
models/models.go
models/user.go
templates/.VERSION
templates/org/home.tmpl
10 years ago
Unknwon
a8b07e6688
Merge branch 'dev' of github.com:gogits/gogs into dev
10 years ago
Unknwon
f6e65b5e06
models: able to rename user with diff letter cases #981
- templates/org: mirror fix on name output
- routers: add missing error check
10 years ago
无闻
b72708ad0b
Merge pull request #978 from albang/dev
[docker] openssh-client provide ssh-keygen.
10 years ago
Alban Garrigue
c4c87d6f6b
openssh-client provide ssh-keygen. GOGS needs that binary to add a ssh key to a user
10 years ago
Unknwon
3b9771c4c0
Merge branch 'dev' of github.com:gogits/gogs into dev
10 years ago
Unknwon
51da9e41f0
routers: able to migrate repo from local path
- modules/middleware/context.go: add HandleAPI method
10 years ago
无闻
f6ca7e29ee
Merge pull request #977 from albang/dev
$DIRECTORY variable is never set
10 years ago
Alban Garrigue
608af76d6a
$DIRECTORY variable is never set
10 years ago
Unknwon
82766e2c19
templates/org/home.tmpl: fix org member can't see public repo
10 years ago
Unknwon
9885739046
reword
10 years ago
Unknwon
c16693e217
modules/git: able to parse RFC1123Z date format #663
10 years ago
Unknwon
9356bd502c
Merge branch 'dev' of github.com:gogits/gogs into dev
10 years ago
Unknwon
700626f527
templates/user/settings/emial.tmpl: little fix on UI
- routers/user: little code format
- conf/locale: update French locale
10 years ago
无闻
1d533bde7a
Merge pull request #975 from nicolai86/bugfix/label-num_issues
Bugfix for wrong label count
10 years ago
Raphael Randschau
a868ff0436
Fix #933
Not sure why, but xorm ignores the num_issues and num_closed_issues
columns when updating, even though the values changed.
Listing them explicitly fixes the issue with the wrong issue counts
10 years ago
无闻
3a2df08119
Merge pull request #959 from phsmit/access_update
Updating context and fixing permission issues
10 years ago
无闻
38ab4a9e07
Merge pull request #973 from uchti/dev
Fix: 504 5.5.2 <localhost>: Helo command rejected
10 years ago
Gogs
95b1c32f95
add error for hello func
10 years ago
无闻
9dd77e98c6
Merge pull request #972 from makhov/the-new-new-highlighting
fix typo mistake in highlighting
10 years ago
Alexey Makhov
842aafe4cc
js fix R1-L1 highlight
10 years ago
Gogs
187c114e53
Fix: 504 5.5.2 <localhost>: Helo command rejected
10 years ago
Alexey Makhov
0d33a62765
fix typo mistake
10 years ago
无闻
26ee8998e3
Merge pull request #970 from makhov/the-new-new-highlighting
The new new highlighting
10 years ago
Alexey Makhov
642b2e74a8
remove not using vars
10 years ago
Alexey Makhov
dabc9f4991
gitlab-like hash naming
10 years ago
无闻
cf8ab3b701
Merge pull request #968 from Stefan-Code/dev
Changed repo-clone url behavior on bare repo page, added LESS compile script
10 years ago
Stefan-Code
ce7e96765e
Merge branch 'dev' of https://github.com/gogits/gogs into dev
10 years ago
Stefan-Code
83a8ad573b
changed repo-clone-url behaviour for bare repo
10 years ago
Peter Smit
4ad9104c52
Update/simplify fix that owners also see actions on their repositories
10 years ago
Stefan-Code
208c1c0255
added less compile script
10 years ago
无闻
e507ef770f
Merge pull request #962 from phsmit/dont_mention_php
Remove the "PHP" style formatting function
10 years ago
无闻
5159867f76
Merge pull request #958 from phsmit/fix_mirror_access
Make sure that a mirror can't be written to by http or ssh
10 years ago
无闻
3c75627663
Merge pull request #963 from phsmit/goget
Remove GoGet option from repository and handle it with ?go-get=1 instead
10 years ago
Peter Smit
2bb8323ab5
Remove GoGet option from repository and handle it with ?go-get=1 instead
The normal go get protocol is to show the go-import meta tag when ?go-get=1 is appended to the url. This commit implements that behaviour and cleans the go-get option from the repository settings page.
10 years ago
Peter Smit
c3076b44c4
Rewrite/simplify gogs serve
10 years ago
Peter Smit
327d3cd26f
Remove the "PHP" style formatting function
The "PHP" formatting function doesn't add anything, except an undocumented date format.
All usages in the templates have been replaced with DateFmtShort and DateFmtLong for convenience.
10 years ago
Peter Smit
0d601634fb
Remove collaborators when removing and transferring repository
10 years ago
Peter Smit
893cda904a
Fix that owners also see actions on their repositories
This is a balance between speed and nice code, where speed has won. To prevent a repository query for each action the ownername is match with the current user.
It would be "cleaner" or "better" if we fetch the repository each time. Another option is to add the RepoOwnerID to action
10 years ago