Lunny Xiao
49ceb80965
Check if file is a symlink with web editor ( #3687 ) ( #445 )
* Check if file is a symlink with web editor (#3687 )
* editor checks for symlinks
* translate file_is_a_symlink message
* credit translation author
* fix error constant
9 years ago
Lunny Xiao
8181ebf5d3
fix bug #1122 log.smtp receiver configure error ( #3602 ) ( #451 )
9 years ago
Lunny Xiao
c64c578acf
New settings option for a custom SSH host ( #3763 ) ( #446 )
* New settings option for a custom SSH host (#3763 )
* let default ssh listen addr empty
9 years ago
Lunny Xiao
77e09d2876
init script gentoo ( #447 )
* init script for gentoo (#3761 )
* replace Gogs to Gitea
* remove override port number
* remove port
9 years ago
Lunny Xiao
301dcd4876
update code.gitea.io/git ( #450 )
9 years ago
Lunny Xiao
c14f3f747f
UpdateIssueUsersByMentions was calling database write operations while ( #443 )
a transaction session was in progress. MailParticipants was failing
silently because of the SQLITE_LOCKED error. Make sure failures in
MailParticipants enter the log, and pass on the transaction context.
issue: let caller pass in database context, and use it
issue_comment: obtain database context to pass to UpdateIssueMentions
issue_comment: log any error from call to MailParticipants
issue_mail: pass on database context to UpdateIssueMentions
9 years ago
Ethan Koenig
e9093cb8e8
Bug fixes and tests for modules/base ( #442 )
Also address other TODOs
9 years ago
Kim "BKC" Carlbäcker
acd5a98218
issue comment api fix ( #449 )
* ListAllInRepo & Delete Issue-Comments
* Moar data in issue-comments
9 years ago
Alexander Lunegov
ace89e326a
Fix string format verbs ( #3637 )
9 years ago
Lunny Xiao
6847f58975
Fix homepage docs link broken ( #417 )
* fix homepage docs link broken
* fix homepage docs links after docs updated
9 years ago
Lunny Xiao
0826d8c3f7
Update locales ( #440 )
* Update locales
* replace Gogs to Gitea
9 years ago
Lunny Xiao
a57a740b6b
Add Korean support ( #437 )
* Add Korean support
* replace Gogs to Gitea
9 years ago
Joubert RedRat
6f5bd631a2
Remove remaining Gogs reference on locales and cmd ( #430 )
9 years ago
Thomas Boerger
b1fa645fb1
Do not override the binary version name from drone ( #436 )
Signed-off-by: Thomas Boerger <tboerger@suse.de>
9 years ago
Andrey Nering
b12fa401dc
Change default Android theme color meta tag ( #389 )
9 years ago
Andrey Nering
681ff22998
Merge pull request #412 from strk/libravatar-source
Add support for using "libravatar" as the GravatarSource
9 years ago
Denis Denisov
820c295d94
Fix random string generator ( #384 )
* Remove unused custom-alphabet feature of random string generator
Fix random string generator
Random string generator should return error if it fails to read random data via crypto/rand
* Fixes variable (un)initialization mixed assign
Update test GetRandomString
9 years ago
Andrey Nering
2ddedca5ee
Merge pull request #422 from mjwwit/master
Change test mail subject and body to 'Gitea Test Mail!'
9 years ago
Michael de Wit
f7dc0e2df7
change test mail subject and body to 'Gitea Test Mail!'
Signed-off-by: Michael de Wit <mjwwit@gmail.com>
9 years ago
Nico Mandery
49e76e5976
serve video files using the HTML5 video tag ( #418 )
* serve video files using the HTML5 video tag
* lint fix: add comment to IsVideoFile
9 years ago
Sandro Santilli
f99e97c857
Add support for using "libravatar" as the GravatarSource
Just to make it easier for administrator to configure libre avatar,
as it is done for "duoshuo" and "gravatar"
9 years ago
Lunny Xiao
b43036e864
add ZH readme ( #405 )
9 years ago
Lunny Xiao
11452ffbad
fixed vulnerabilities labels ( #409 )
9 years ago
Richie B2B
fc77e7c7bf
Remove fixed FIXME ( #408 )
9 years ago
Richie B2B
cfbda06133
Fix typo ( #407 )
9 years ago
Martin Hebnes Pedersen
c599e46a3e
Update gitea/sdk vendor ( #406 )
9 years ago
Andrey Nering
27546125ef
Revert "Disable coverage report for now" ( #400 )
9 years ago
Lunny Xiao
bdf8452447
fixed vulnerabilities on deleting release ( #399 )
9 years ago
Thomas Boerger
0c0910dea4
Disable coverage report for now ( #395 )
Until aircover gets updated so that it works again I have disabled to
coverage report upload for now.
9 years ago
Thomas Boerger
8d4f08e574
Fixing multiple docker issues ( #386 )
* Added stupid docker task to makefile
* Dropped unknown option PrintLastLog from docker ssh config
* OpenSSH should log to docker stdout
* Set random pw for docker git user, otherwise it is locked
* Stop using templates and public within docker
9 years ago
Sandro Santilli
4a3ce016e4
Update example install url from try.gogs.io to try.gitea.io ( #385 )
* 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
9 years ago
Lunny Xiao
e0f49993f5
fixed vulnerabilities ( #392 )
9 years ago
Lunny Xiao
8d42710d03
Don't use custom PBKDF2 function ( #382 )
9 years ago
Lunny Xiao
4f165ac458
bug fixed branch name for pushupdate ( #380 )
9 years ago
Kim "BKC" Carlbäcker
8fda1b2465
Autogenerate Version on build ( #190 )
* Autogenerate Version On Build
* Fixes
* Changed Version to v0.9.0
* balls
* I hate newlines
* Don't remove .VERSION-file on `make clean`
* v0.9.0 => 1.0.0
* damn new-lines...
* Always rebuild templates/.VERSION
* Delete .VERSION
* Update Makefile
9 years ago
Denis Denisov
8fe209ff3e
Correction LDAP validation ( #342 )
* Correction LDAP username validation
As https://msdn.microsoft.com/en-us/library/aa366101(v=vs.85).aspx describe spaces should not be in start or at the end of username but they can be inside the username. So please check my solution for it.
* Check for zero length passwords in LDAP module.
According to https://tools.ietf.org/search/rfc4513#section-5.1.2 LDAP client should always check before bind whether a password is an empty value. There are at least one LDAP implementation which does not return error if you try to bind with DN set and empty password - AD.
* Clearing the login/email spaces at the [start/end]
9 years ago
Bwko
0cbb209b6c
In the wiki title replace tab with a space ( #371 )
9 years ago
Bwko
dd94092787
Fixes issue #283
Delete old temp local copy before we create a new temp local copy
9 years ago
Ethan Koenig
165606ce4c
Bug fix for edit-hook API endpoint
9 years ago
Henning Henkel
8fc64028b7
Fix alignment of tooltip and add bindata - related to #359 ( #364 )
9 years ago
Ethan Koenig
d44efe52ba
Remove stale comment in models/repo.go ( #366 )
9 years ago
Bwko
a48f0cae7d
Fix for #361 , renamed username to login
9 years ago
Ethan Koenig
2872b66e89
Bug fixes for repo permissions in API
Also move duplicated code into repo.APIFormat(..)
9 years ago
Henning Henkel
b76bc3744d
Added download tooltip - solves #221 ( #359 )
9 years ago
Bwko
f44e9b94b1
Fixes panic when there's no user initialized ( #358 )
9 years ago
Thomas Boerger
c7aa87988d
Integrate templates into bindata optionally ( #314 )
Integrated optional bindata for the templates
9 years ago
Kim "BKC" Carlbäcker
0525b30fce
Actually fix 'make build' ( #353 )
* Actually fix bloddy 'make build'
9 years ago
Thomas Boerger
00a606c96e
Enabled bindata build tag and generate bindata ( #352 )
9 years ago
Kim "BKC" Carlbäcker
e7a62302e5
Awlays build, even when it thinks it's up to date ( #351 )
9 years ago
Thomas Boerger
4e0bddc146
Merge pull request #348 from tboerger/release-fixes
Fix drone release publishing and test steps
9 years ago