bcee9b76dd 
								
							 
						 
						
							
							
								
								Fix lint  
							
							
							
						 
						
							2017-01-23 20:56:25 -02:00  
				
					
						
							
							
								 
						
							
								fda4476061 
								
							 
						 
						
							
							
								
								Fix SSH server on Windows when running as service  
							
							... 
							
							
							
							Closes  #680  
						
							2017-01-23 20:44:23 -02:00  
				
					
						
							
							
								 
						
							
								44d4863ecf 
								
							 
						 
						
							
							
								
								Merge commit 'af636848622c8ad27cace63be5f9dd9aaa565502' as 'modules/minwinsvc'  
							
							
							
						 
						
							2017-01-23 20:40:11 -02:00  
				
					
						
							
							
								 
						
							
								8b87be63c5 
								
							 
						 
						
							
							
								
								fix logfile name ( #731 )  
							
							
							
						 
						
							2017-01-23 19:19:12 +08:00  
				
					
						
							
							
								 
						
							
								74ed6dc3ad 
								
							 
						 
						
							
							
								
								Add option to app.ini to enable local import paths ( #724 )  
							
							
							
						 
						
							2017-01-23 09:19:50 +08:00  
				
					
						
							
							
								 
						
							
								8c2c7b802f 
								
							 
						 
						
							
							
								
								Remove the default console logger when it is not set in the configuration ( #602 )  
							
							... 
							
							
							
							* Remove the default console logger when it is not set in the configuration
* Added comment to new function (lint failure)
* update based on PR comments (code style)
* code style fix (thanks bkcsoft)
* check if logger exists based on the l.outputs (like in l.DelLogger) instead of adapter, otherwise panic when reinstalling gitea (since the output adapter still exist, without outputs) 
							
						 
						
							2017-01-17 14:02:35 +08:00  
				
					
						
							
							
								 
						
							
								d1006150fb 
								
							 
						 
						
							
							
								
								Refactor process package and introduce ProcessManager{} with tests ( #75 )  
							
							... 
							
							
							
							* Add a process.Manager singleton with process.GetManager()
* Use process.GetManager everywhere
* Fix godoc comments for process module
* Increment process counter id after locking the mutex 
							
						 
						
							2017-01-17 13:58:58 +08:00  
				
					
						
							
							
								 
						
							
								6dd096b7f0 
								
							 
						 
						
							
							
								
								Two factor authentication support ( #630 )  
							
							... 
							
							
							
							* Initial commit for 2FA support
Signed-off-by: Andrew <write@imaginarycode.com>
* Add vendored files
* Add missing depends
* A few clean ups
* Added improvements, proper encryption
* Better encryption key
* Simplify "key" generation
* Make 2FA enrollment page more robust
* Fix typo
* Rename twofa/2FA to TwoFactor
* UNIQUE INDEX -> UNIQUE 
							
						 
						
							2017-01-16 10:14:29 +08:00  
				
					
						
							
							
								 
						
							
								64375d875b 
								
							 
						 
						
							
							
								
								Attach to release ( #673 )  
							
							... 
							
							
							
							* Moved attachaments POST url from /issues/attachments to /attachments
* Implemented attachment upload on release page
* Implemented downloading attachments on the release page
* Added zip and gzip files to default allowed attachments
* Implemented uploading attachments on edit release
* Renamed UploadIssueAttachment to UploadAttachment 
							
						 
						
							2017-01-15 22:57:00 +08:00  
				
					
						
							
							
								 
						
							
								4a1f36c3cc 
								
							 
						 
						
							
							
								
								Don't create a default pid file ( #637 )  
							
							
							
						 
						
							2017-01-14 10:15:43 +08:00  
				
					
						
							
							
								 
						
							
								0af9a24087 
								
							 
						 
						
							
							
								
								docs: update translation on homepage for zh-tw ( #634 )  
							
							
							
						 
						
							2017-01-11 09:23:42 +01:00  
				
					
						
							
							
								 
						
							
								f91b8c5f53 
								
							 
						 
						
							
							
								
								refactor: check the error returned by os.MkdirAll()  
							
							
							
						 
						
							2017-01-09 22:36:23 +08:00  
				
					
						
							
							
								 
						
							
								9f575986d8 
								
							 
						 
						
							
							
								
								feat: support pid file.  
							
							
							
						 
						
							2017-01-09 19:54:57 +08:00  
				
					
						
							
							
								 
						
							
								56614b2cbe 
								
							 
						 
						
							
							
								
								Add default SSH_LISTEN_PORT config value ( #603 ) ( #607 )  
							
							
							
						 
						
							2017-01-08 11:14:45 +08:00  
				
					
						
							
							
								 
						
							
								51d578ff33 
								
							 
						 
						
							
							
								
								Add Keep email private (see issue  #571 ). ( #571 )  
							
							... 
							
							
							
							- Add site-wide option DEFAULT_KEEP_EMAIL_PRIVATE.
- Add the new option to the install and admin/config pages.
- Add the new option to app.ini in the service section.
- Add the new option to the settings struct.
- Add English text strings to i18n.
- Add field KeepEmailPrivate to user struct.
- Add field KeepEmailPrivate to user form.
- Add option to UI.
- Add using noreply email address if user has "Keep Email Private".
An email address <LowerName>@<NO_REPLY_ADDRESS> is now used in commit
messages (and hopefully all other git log relevant places). The
change relies on the fact that git commands should use
user.NetGitSig().
- Add hiding of email address in UI, if user has set "Keep Email Private".
- Add condition to show email address only on explore/users and user
pages, if user has not set "Keep Email Private".
- Add noreply email in API if set "Keep Email Private".
- Add a new service setting NO_REPLY_ADDRESS. The value of this
setting is used as the domain part for the user's email address in
git log, iff he decides to keep his email address private.
If the user decides to keep his email address private and this
option is not set 'noreply.example.org' is used, which no MTA
should send email to.
Add NO_REPLY_ADDRESS to conf/app.ini. 
							
						 
						
							2017-01-08 11:12:03 +08:00  
				
					
						
							
							
								 
						
							
								787fda53ef 
								
							 
						 
						
							
							
								
								UI config to toggle whether user email shows up in Explore Users ( #336 )  
							
							... 
							
							
							
							* UI config to toggle whether user email shows up in Explore Users
* Recommendation made by @tboerger
66a1c59fe7 (r94122732)https://github.com/go-gitea/gitea/pull/336#issuecomment-269843725 
* Please replace MustBool() with MustBool(true) 
							
						 
						
							2017-01-01 10:51:10 +08:00  
				
					
						
							
							
								 
						
							
								c0904f1942 
								
							 
						 
						
							
							
								
								Restrict creating organisations by user ( #193 )  
							
							... 
							
							
							
							* restrict creating organizations based on right on user
* revert bindata.go
* reverse vendor lib
* revert goimports change
* set AllowCreateOrganization default value to true
* revert locale
* added default value for AllowCreateOrganization
* fix typo in migration-comment
* fix comment
* add coments in migration 
							
						 
						
							2016-12-31 10:33:30 +08:00  
				
					
						
							
							
								 
						
							
								6510e57758 
								
							 
						 
						
							
							
								
								fix gofmt error  
							
							... 
							
							
							
							Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> 
							
						 
						
							2016-12-30 20:41:10 +01:00  
				
					
						
							
							
								 
						
							
								42904cb98a 
								
							 
						 
						
							
							
								
								Notification - Step 1 ( #523 )  
							
							... 
							
							
							
							* Notification - Step 1
* Add copyright headers
* Cache issue and repository on notification model 
							
						 
						
							2016-12-31 00:44:54 +08:00  
				
					
						
							
							
								 
						
							
								6f4ba6884c 
								
							 
						 
						
							
							
								
								Repo permission bug fixes ( #513 )  
							
							
							
						 
						
							2016-12-29 21:17:32 +08:00  
				
					
						
							
							
								 
						
							
								ac51caa517 
								
							 
						 
						
							
							
								
								add default values for SSH settings ( #500 )  
							
							
							
						 
						
							2016-12-29 11:51:15 +01:00  
				
					
						
							
							
								 
						
							
								c22f9114c7 
								
							 
						 
						
							
							
								
								Implementation of Folder Jumping  
							
							
							
						 
						
							2016-12-28 18:09:52 +01:00  
				
					
						
							
							
								 
						
							
								a0f5471e21 
								
							 
						 
						
							
							
								
								Fix default cookie name  
							
							
							
						 
						
							2016-12-27 13:02:24 -02:00  
				
					
						
							
							
								 
						
							
								71634452e1 
								
							 
						 
						
							
							
								
								Improve issue references in markdown ( #471 )  
							
							... 
							
							
							
							* Improve issue references in markdown. (#3436 )
* Fix build
* Fix lint
* Fix comment typo 
							
						 
						
							2016-12-26 18:52:04 +08:00  
				
					
						
							
							
								 
						
							
								2e7ccecfe6 
								
							 
						 
						
							
							
								
								Git LFS support v2 ( #122 )  
							
							... 
							
							
							
							* Import github.com/git-lfs/lfs-test-server as lfs module base
Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198
Removed:
Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go
.dockerignore .gitignore README.md
* Remove config, add JWT support from github.com/mgit-at/lfs-test-server
Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83
* Add LFS settings
* Add LFS meta object model
* Add LFS routes and initialization
* Import github.com/dgrijalva/jwt-go into vendor/
* Adapt LFS module: handlers, routing, meta store
* Move LFS routes to /user/repo/info/lfs/*
* Add request header checks to LFS BatchHandler / PostHandler
* Implement LFS basic authentication
* Rework JWT secret generation / load
* Implement LFS SSH token authentication with JWT
Specification: https://github.com/github/git-lfs/tree/master/docs/api 
* Integrate LFS settings into install process
* Remove LFS objects when repository is deleted
Only removes objects from content store when deleted repo is the only
referencing repository
* Make LFS module stateless
Fixes bug where LFS would not work after installation without
restarting Gitea
* Change 500 'Internal Server Error' to 400 'Bad Request'
* Change sql query to xorm call
* Remove unneeded type from LFS module
* Change internal imports to code.gitea.io/gitea/
* Add Gitea authors copyright
* Change basic auth realm to "gitea-lfs"
* Add unique indexes to LFS model
* Use xorm count function in LFS check on repository delete
* Return io.ReadCloser from content store and close after usage
* Add LFS info to runWeb()
* Export LFS content store base path
* LFS file download from UI
* Work around git-lfs client issue with unauthenticated requests
Returning a dummy Authorization header for unauthenticated requests
lets git-lfs client skip asking for auth credentials
See: https://github.com/github/git-lfs/issues/1088 
* Fix unauthenticated UI downloads from public repositories
* Authentication check order, Finish LFS file view logic
* Ignore LFS hooks if installed for current OS user
Fixes Gitea UI actions for repositories tracking LFS files.
Checks for minimum needed git version by parsing the semantic version
string.
* Hide LFS metafile diff from commit view, marking as binary
* Show LFS notice if file in commit view is tracked
* Add notbefore/nbf JWT claim
* Correct lint suggestions - comments for structs and functions
- Add comments to LFS model
- Function comment for GetRandomBytesAsBase64
- LFS server function comments and lint variable suggestion
* Move secret generation code out of conditional
Ensures no LFS code may run with an empty secret
* Do not hand out JWT tokens if LFS server support is disabled 
							
						 
						
							2016-12-26 09:16:37 +08:00  
				
					
						
							
							
								 
						
							
								d4924d45d6 
								
							 
						 
						
							
							
								
								Implement sendmail ( #355 )  
							
							... 
							
							
							
							* Implemented sendmail. This piggybacks on existing configuration to keep the change simple
* Changed privicy of new sendSMTP and sendSendmail functions
* Fixed Lint errors
* Seperated SMTP and sendmail into their own senders
* Making new structs private as they should not be used externally now
* Added sendmail setting to ini file
* Minor code cleanup 
							
						 
						
							2016-12-25 14:55:22 +01:00  
				
					
						
							
							
								 
						
							
								c1e92eeb72 
								
							 
						 
						
							
							
								
								Simplified MinPasswordLength check ( #475 )  
							
							
							
						 
						
							2016-12-24 22:42:11 +08:00  
				
					
						
							
							
								 
						
							
								f27d87d93b 
								
							 
						 
						
							
							
								
								Added minimum password length to app.ini ( #223 )  
							
							
							
						 
						
							2016-12-24 21:40:44 +08:00  
				
					
						
							
							
								 
						
							
								25b5ffb6af 
								
							 
						 
						
							
							
								
								Enables mssql support ( #383 )  
							
							... 
							
							
							
							* Enables mssql support
Port of dlobs work in gogs.
Enables options in index.js
Enables MSSQL as a database option in go.
Sets ID to 0 on initial migration. Required for
MSSQL insert statements.
Signed-off-by: Beau Trepp <beautrepp@gmail.com>
* Vendors in denisenkom/go-mssqldb
Includes golang.org/x/crypto/md4
as this is required by go-msssqldb
Signed-off-by: Beau Trepp <beautrepp@gmail.com> 
							
						 
						
							2016-12-24 09:37:35 +08:00  
				
					
						
							
							
								 
						
							
								a822bba3e1 
								
							 
						 
						
							
							
								
								Add default values for settings ( #455 )  
							
							... 
							
							
							
							* add default values for settings
* more default values
* more default settings and labels resource
* mv locale to options 
							
						 
						
							2016-12-23 15:18:05 +08:00  
				
					
						
							
							
								 
						
							
								ec1fe1183d 
								
							 
						 
						
							
							
								
								Fix race condition in unit test ( #456 )  
							
							
							
						 
						
							2016-12-23 14:31:22 +08:00  
				
					
						
							
							
								 
						
							
								b33078fa33 
								
							 
						 
						
							
							
								
								Bindata is optional and over-writable on restart ( #354 )  
							
							... 
							
							
							
							* Moved conf assets into options folder
* Dropped old bindata
* Started to integrate options bindata and accessors
* Do not enforce a builtin app.ini
* Replaced bindata calls with options
* Dropped bindata task from makefile, it's the generate task now
* Always embedd app.ini to provide sane config defaults
* Use sane defaults for the configuration
* Defined default value for SSH_KEYGEN_PATH
* Dropped "NEVER EVER MODIFY THIS FILE" header from app.ini
* Fixed new paths in latest test additions
* Drop bindata with make clean task
* Set more proper default values 
							
						 
						
							2016-12-22 19:12:23 +01:00  
				
					
						
							
							
								 
						
							
								e0ecd9fd93 
								
							 
						 
						
							
							
								
								fix bug  #1122  log.smtp receiver configure error ( #3602 ) ( #451 )  
							
							
							
						 
						
							2016-12-22 13:27:13 +01:00  
				
					
						
							
							
								 
						
							
								65b1875d2b 
								
							 
						 
						
							
							
								
								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 
							
						 
						
							2016-12-22 13:26:43 +01:00  
				
					
						
							
							
								 
						
							
								47a7529d96 
								
							 
						 
						
							
							
								
								update code.gitea.io/git ( #450 )  
							
							
							
						 
						
							2016-12-22 10:30:52 +01:00  
				
					
						
							
							
								 
						
							
								4c89a9c33c 
								
							 
						 
						
							
							
								
								Bug fixes and tests for modules/base ( #442 )  
							
							... 
							
							
							
							Also address other TODOs 
							
						 
						
							2016-12-22 16:58:04 +08:00  
				
					
						
							
							
								 
						
							
								ce21ed6c34 
								
							 
						 
						
							
							
								
								Remove remaining Gogs reference on locales and cmd ( #430 )  
							
							
							
						 
						
							2016-12-21 20:13:17 +08:00  
				
					
						
							
							
								 
						
							
								235eb4c3d2 
								
							 
						 
						
							
							
								
								Merge pull request  #412  from strk/libravatar-source  
							
							... 
							
							
							
							Add support for using "libravatar" as the GravatarSource 
							
						 
						
							2016-12-20 10:32:45 -02:00  
				
					
						
							
							
								 
						
							
								380e32e129 
								
							 
						 
						
							
							
								
								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 
							
						 
						
							2016-12-20 13:32:02 +01:00  
				
					
						
							
							
								 
						
							
								6ade13e86e 
								
							 
						 
						
							
							
								
								serve video files using the HTML5 video tag ( #418 )  
							
							... 
							
							
							
							* serve video files using the HTML5 video tag
* lint fix: add comment to IsVideoFile 
							
						 
						
							2016-12-20 16:09:11 +08:00  
				
					
						
							
							
								 
						
							
								608a60fb94 
								
							 
						 
						
							
							
								
								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" 
							
						 
						
							2016-12-19 17:05:30 +01:00  
				
					
						
							
							
								 
						
							
								d771e978a1 
								
							 
						 
						
							
							
								
								Don't use custom PBKDF2 function ( #382 )  
							
							
							
						 
						
							2016-12-15 09:24:27 +08:00  
				
					
						
							
							
								 
						
							
								1d1c01875d 
								
							 
						 
						
							
							
								
								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 
							
						 
						
							2016-12-13 12:48:58 +08:00  
				
					
						
							
							
								 
						
							
								f0a989c1d0 
								
							 
						 
						
							
							
								
								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] 
							
						 
						
							2016-12-12 08:46:51 +08:00  
				
					
						
							
							
								 
						
							
								bab737bf02 
								
							 
						 
						
							
							
								
								Fix alignment of tooltip and add bindata - related to  #359  ( #364 )  
							
							
							
						 
						
							2016-12-08 20:59:47 +08:00  
				
					
						
							
							
								 
						
							
								83ed234472 
								
							 
						 
						
							
							
								
								Integrate templates into bindata optionally ( #314 )  
							
							... 
							
							
							
							Integrated optional bindata for the templates 
							
						 
						
							2016-12-06 18:58:31 +01:00  
				
					
						
							
							
								 
						
							
								0f05470cb8 
								
							 
						 
						
							
							
								
								[API] Pull Requests ( #248 )  
							
							
							
						 
						
							2016-12-02 12:10:39 +01:00  
				
					
						
							
							
								 
						
							
								e6cfccdd40 
								
							 
						 
						
							
							
								
								GitHub API Compliance (& linting)  
							
							
							
						 
						
							2016-12-02 09:18:15 +01:00  
				
					
						
							
							
								 
						
							
								bea9d55da6 
								
							 
						 
						
							
							
								
								Fixed project name on setting module key APP_NAME  
							
							
							
						 
						
							2016-12-02 07:52:27 +01:00  
				
					
						
							
							
								 
						
							
								4ff0db0246 
								
							 
						 
						
							
							
								
								Catch os... errors  
							
							
							
						 
						
							2016-12-02 07:41:19 +01:00  
				
					
						
							
							
								 
						
							
								2932042a6d 
								
							 
						 
						
							
							
								
								Get rid of bin folder within makefile, enabled TiDB ( #319 )  
							
							... 
							
							
							
							* Get rid of the bin folder within the build process
Signed-off-by: Thomas Boerger <thomas@webhippie.de>
* Dropped latest make task, it is unused
Signed-off-by: Thomas Boerger <thomas@webhippie.de>
* Added tidb tag to drone config
Signed-off-by: Thomas Boerger <thomas@webhippie.de>
* Dropped the cert build tag
Signed-off-by: Thomas Boerger <thomas@webhippie.de>
* Dropped useless minwinsvc build tag
Signed-off-by: Thomas Boerger <thomas@webhippie.de>
* Dropped the useless build tags from drone config
Signed-off-by: Thomas Boerger <thomas@webhippie.de> 
							
						 
						
							2016-12-01 15:28:43 +08:00  
				
					
						
							
							
								 
						
							
								1e9730a779 
								
							 
						 
						
							
							
								
								Fixes xss, clickjacking & password autocompletion  
							
							
							
						 
						
							2016-11-29 22:49:06 +01:00  
				
					
						
							
							
								 
						
							
								b6a95a8cb3 
								
							 
						 
						
							
							
								
								Integrate public as bindata optionally ( #293 )  
							
							... 
							
							
							
							* Dropped unused codekit config
* Integrated dynamic and static bindata for public
* Ignore public bindata
* Add a general generate make task
* Integrated flexible public assets into web command
* Updated vendoring, added all missiong govendor deps
* Made the linter happy with the bindata and dynamic code
* Moved public bindata definition to modules directory
* Ignoring the new bindata path now
* Updated to the new public modules import path
* Updated public bindata command and drop the new prefix 
							
						 
						
							2016-11-30 00:26:36 +08:00  
				
					
						
							
							
								 
						
							
								60e3e5b4e1 
								
							 
						 
						
							
							
								
								Updated bindata to latest version  
							
							
							
						 
						
							2016-11-29 14:14:40 +01:00  
				
					
						
							
							
								 
						
							
								ec87a75c00 
								
							 
						 
						
							
							
								
								golint fixed for modules/auth  
							
							
							
						 
						
							2016-11-27 21:39:06 +08:00  
				
					
						
							
							
								 
						
							
								7a92519bd7 
								
							 
						 
						
							
							
								
								Merge pull request  #269  from lunny/lunny/golint_modules_log  
							
							... 
							
							
							
							Golint fixed for modules/log 
							
						 
						
							2016-11-27 12:16:35 +01:00  
				
					
						
							
							
								 
						
							
								9aaf2a6d9a 
								
							 
						 
						
							
							
								
								modules/process: add ExecDirEnv (next to ExecDir)  
							
							... 
							
							
							
							Add a sibling to ExecDir which is capable of specifying environment variables,
so that we can invoke `git` with GIT_INDEX_FILE, GIT_DIR, etc..
For #258  
							
						 
						
							2016-11-27 18:53:57 +08:00  
				
					
						
							
							
								 
						
							
								94da472717 
								
							 
						 
						
							
							
								
								Golint fixed for modules/setting ( #262 )  
							
							... 
							
							
							
							* golint fixed for modules/setting
* typo fixed and renamed UNIXSOCKET to UnixSocket 
							
						 
						
							2016-11-27 18:14:25 +08:00  
				
					
						
							
							
								 
						
							
								3228544c31 
								
							 
						 
						
							
							
								
								golint fixed for modules/log  
							
							
							
						 
						
							2016-11-26 19:53:29 +08:00  
				
					
						
							
							
								 
						
							
								e9c6053b86 
								
							 
						 
						
							
							
								
								Merge pull request  #246  from Bwko/fix/typo  
							
							... 
							
							
							
							Fix typos 
							
						 
						
							2016-11-25 12:54:57 +01:00  
				
					
						
							
							
								 
						
							
								32f8a38f6c 
								
							 
						 
						
							
							
								
								Merge pull request  #254  from lunny/lunny/golint_modules_context  
							
							... 
							
							
							
							Golint fixed for modules/context 
							
						 
						
							2016-11-25 10:11:52 +01:00  
				
					
						
							
							
								 
						
							
								3e6f363471 
								
							 
						 
						
							
							
								
								Merge pull request  #256  from lunny/lunny/golint_modules_avatar  
							
							... 
							
							
							
							Golint fixed for modules/avatar 
							
						 
						
							2016-11-25 10:11:44 +01:00  
				
					
						
							
							
								 
						
							
								2255a9af6a 
								
							 
						 
						
							
							
								
								Merge pull request  #255  from lunny/lunny/golint_modules_cron  
							
							... 
							
							
							
							Golint fixed for modules/cron 
							
						 
						
							2016-11-25 10:11:36 +01:00  
				
					
						
							
							
								 
						
							
								26ae2ff86d 
								
							 
						 
						
							
							
								
								Merge pull request  #252  from lunny/lunny/golint_fixed_modules_httplib  
							
							... 
							
							
							
							Golint fixed for modules/httplib 
							
						 
						
							2016-11-25 10:08:49 +01:00  
				
					
						
							
							
								 
						
							
								d39266228c 
								
							 
						 
						
							
							
								
								Merge pull request  #251  from lunny/lunny/golint_modules_template  
							
							... 
							
							
							
							Golint fixed for modules/template 
							
						 
						
							2016-11-25 10:08:37 +01:00  
				
					
						
							
							
								 
						
							
								7c5de1e393 
								
							 
						 
						
							
							
								
								Merge pull request  #250  from lunny/lunny/golint_modules_markdown  
							
							... 
							
							
							
							Golint fixed for modules/markdown 
							
						 
						
							2016-11-25 10:08:23 +01:00  
				
					
						
							
							
								 
						
							
								3c87c57d96 
								
							 
						 
						
							
							
								
								golint fixed for modules/avatar  
							
							
							
						 
						
							2016-11-25 16:37:04 +08:00  
				
					
						
							
							
								 
						
							
								b47051e59b 
								
							 
						 
						
							
							
								
								golint fixed for modules/cron  
							
							
							
						 
						
							2016-11-25 16:19:24 +08:00  
				
					
						
							
							
								 
						
							
								76604d8f90 
								
							 
						 
						
							
							
								
								fixed test build error  
							
							
							
						 
						
							2016-11-25 16:02:10 +08:00  
				
					
						
							
							
								 
						
							
								faabc76fd6 
								
							 
						 
						
							
							
								
								Golint fixed for modules/context  
							
							
							
						 
						
							2016-11-25 14:53:59 +08:00  
				
					
						
							
							
								 
						
							
								bd5ea3e222 
								
							 
						 
						
							
							
								
								Golint fixed for modules/httplib  
							
							
							
						 
						
							2016-11-25 14:32:09 +08:00  
				
					
						
							
							
								 
						
							
								229ec927b9 
								
							 
						 
						
							
							
								
								Golint fixed for modules/template  
							
							
							
						 
						
							2016-11-25 14:23:48 +08:00  
				
					
						
							
							
								 
						
							
								304bbd3f25 
								
							 
						 
						
							
							
								
								golint fixed for modules/markdown  
							
							
							
						 
						
							2016-11-25 09:58:05 +08:00  
				
					
						
							
							
								 
						
							
								2e565bc1c4 
								
							 
						 
						
							
							
								
								Golint fixed for modules/mailer  
							
							
							
						 
						
							2016-11-25 09:44:04 +08:00  
				
					
						
							
							
								 
						
							
								2ccdcda072 
								
							 
						 
						
							
							
								
								Merge pull request  #235  from lunny/lunny/golint_modules_user  
							
							... 
							
							
							
							golint fixed for modules/user 
							
						 
						
							2016-11-24 11:33:47 +01:00  
				
					
						
							
							
								 
						
							
								8ba0ac976f 
								
							 
						 
						
							
							
								
								Merge pull request  #231  from lunny/lunny/golint_modules_base  
							
							... 
							
							
							
							golint fixed for modules/base 
							
						 
						
							2016-11-24 11:28:31 +01:00  
				
					
						
							
							
								 
						
							
								46ecb0a14d 
								
							 
						 
						
							
							
								
								golint fixed for modules/user  
							
							
							
						 
						
							2016-11-24 17:37:11 +08:00  
				
					
						
							
							
								 
						
							
								ad3d6b7fff 
								
							 
						 
						
							
							
								
								Lint and document manager api  
							
							
							
						 
						
							2016-11-24 09:02:10 +01:00  
				
					
						
							
							
								 
						
							
								fb3bb69ec6 
								
							 
						 
						
							
							
								
								golint fixed for modules/base  
							
							
							
						 
						
							2016-11-24 15:17:44 +08:00  
				
					
						
							
							
								 
						
							
								2a449bd4b1 
								
							 
						 
						
							
							
								
								Fix typos  
							
							
							
						 
						
							2016-11-21 20:08:21 +01:00  
				
					
						
							
							
								 
						
							
								0834e492c0 
								
							 
						 
						
							
							
								
								API endpoints for stars  
							
							
							
						 
						
							2016-11-16 22:51:54 -05:00  
				
					
						
							
							
								 
						
							
								d9ffe99972 
								
							 
						 
						
							
							
								
								fix variable assigned and not used.  
							
							... 
							
							
							
							Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> 
							
						 
						
							2016-11-15 14:16:27 +08:00  
				
					
						
							
							
								 
						
							
								ddee4c8b58 
								
							 
						 
						
							
							
								
								Normalize files with gofmt  
							
							
							
						 
						
							2016-11-11 13:11:45 +01:00  
				
					
						
							
							
								 
						
							
								4247304f5a 
								
							 
						 
						
							
							
								
								Update import paths from github.com/go-gitea to code.gitea.io ( #135 )  
							
							... 
							
							
							
							- Update import paths from github.com/go-gitea to code.gitea.io
- Fix import path for travis
See https://docs.travis-ci.com/user/languages/go#Go-Import-Path  
							
						 
						
							2016-11-10 17:24:48 +01:00  
				
					
						
							
							
								 
						
							
								1b238fe4d5 
								
							 
						 
						
							
							
								
								Merge pull request  #121  from joubertredrat/feature-last-login  
							
							... 
							
							
							
							Last Login for admin manage your users 
							
						 
						
							2016-11-10 17:20:55 +08:00  
				
					
						
							
							
								 
						
							
								f91cbf0fed 
								
							 
						 
						
							
							
								
								Support to last login feature  
							
							
							
						 
						
							2016-11-09 08:53:45 -02:00  
				
					
						
							
							
								 
						
							
								45c4539c61 
								
							 
						 
						
							
							
								
								Merge pull request  #17  from LefsFlarey/issue/3666  
							
							... 
							
							
							
							Fixed 404 caused by unexpected question mark 
							
						 
						
							2016-11-08 18:27:59 +01:00  
				
					
						
							
							
								 
						
							
								01c5233b53 
								
							 
						 
						
							
							
								
								Fixed 404 caused by unexpected question mark  
							
							... 
							
							
							
							This fixes 404 caused when creating new files or wiki pages with question marks. Amended to force CI rebuild 
							
						 
						
							2016-11-08 22:09:48 +08:00  
				
					
						
							
							
								 
						
							
								e74868a850 
								
							 
						 
						
							
							
								
								Add test for IsTextFile()  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								95d4cd9292 
								
							 
						 
						
							
							
								
								Make long godoc comment 2 lines  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								2bb188ae79 
								
							 
						 
						
							
							
								
								Add test for IsLetter()  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								4235fff9ee 
								
							 
						 
						
							
							
								
								Add test for Int64sToMap()  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								d417aedcfa 
								
							 
						 
						
							
							
								
								Add tests for StringsToInt64s() & Int64sToStrings()  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								b00d82d679 
								
							 
						 
						
							
							
								
								Add tests for TruncateString()  
							
							
							
						 
						
							2016-11-07 23:31:40 +01:00  
				
					
						
							
							
								 
						
							
								86c32f2706 
								
							 
						 
						
							
							
								
								Use TruncateString(sha1,10) in ShortSha and deprecate it.  
							
							
							
						 
						
							2016-11-07 23:31:39 +01:00  
				
					
						
							
							
								 
						
							
								030ba2894f 
								
							 
						 
						
							
							
								
								Add tests for EllipsisString() and fix bug if param length < 3  
							
							
							
						 
						
							2016-11-07 23:31:39 +01:00  
				
					
						
							
							
								 
						
							
								f81711f40d 
								
							 
						 
						
							
							
								
								Test AvatarLink and refactor with tests passing  
							
							
							
						 
						
							2016-11-07 23:31:39 +01:00  
				
					
						
							
							
								 
						
							
								70fb1cf9d1 
								
							 
						 
						
							
							
								
								Use testify/assert for all tests in tool_test.go  
							
							
							
						 
						
							2016-11-07 23:29:42 +01:00  
				
					
						
							
							
								 
						
							
								d874a9bf6b 
								
							 
						 
						
							
							
								
								Add unit test for base.FileSize()  
							
							
							
						 
						
							2016-11-07 23:29:42 +01:00  
				
					
						
							
							
								 
						
							
								11c9160cd3 
								
							 
						 
						
							
							
								
								Start to add tests for modules/base/tool  
							
							
							
						 
						
							2016-11-07 23:29:41 +01:00  
				
					
						
							
							
								 
						
							
								864d1b1f9f 
								
							 
						 
						
							
							
								
								Fix type in unused constant name ( #111 )  
							
							... 
							
							
							
							* Write LDAP, SMTP, PAM, DLDAP back to all uppercase
* Fix type in unused constant name
* Other MixCased fixes
* Complete MixerCasing of template constants
* Re uppercase LTS and LDAPS suffixes
* Uppercase JSON suffix in constant names
* Proper case LoginNoType
* Prefix unexported template path constants with "tpl" 
							
						 
						
							2016-11-07 18:58:22 -02:00  
				
					
						
							
							
								 
						
							
								b7bf9dfd28 
								
							 
						 
						
							
							
								
								more  
							
							
							
						 
						
							2016-11-07 17:55:31 +01:00  
				
					
						
							
							
								 
						
							
								05fd9d3f09 
								
							 
						 
						
							
							
								
								Security protocols  
							
							
							
						 
						
							2016-11-07 17:38:43 +01:00  
				
					
						
							
							
								 
						
							
								f388661bda 
								
							 
						 
						
							
							
								
								ACCESS_MODE_* -> AccessMode*  
							
							
							
						 
						
							2016-11-07 17:20:37 +01:00  
				
					
						
							
							
								 
						
							
								5d430c9e68 
								
							 
						 
						
							
							
								
								Merge pull request  #108  from go-gitea/go-sdk  
							
							... 
							
							
							
							Replaced gogits go-gogs-client with go-sdk 
							
						 
						
							2016-11-07 16:31:17 +01:00  
				
					
						
							
							
								 
						
							
								ee963f67c1 
								
							 
						 
						
							
							
								
								Merge pull request  #103  from strk/GOGS_drop  
							
							... 
							
							
							
							Replace GOGS with GITEA in variable names 
							
						 
						
							2016-11-07 16:30:48 +01:00  
				
					
						
							
							
								 
						
							
								28bee28102 
								
							 
						 
						
							
							
								
								Replace Gogs to Gitea in installation options  
							
							
							
						 
						
							2016-11-07 13:26:19 -02:00  
				
					
						
							
							
								 
						
							
								77f9c7e571 
								
							 
						 
						
							
							
								
								Fixed links to sdk docs  
							
							
							
						 
						
							2016-11-07 16:10:32 +01:00  
				
					
						
							
							
								 
						
							
								b7263f31a5 
								
							 
						 
						
							
							
								
								Replace GOGS with GITEA in variable names  
							
							... 
							
							
							
							Still use GOGS_WORK_DIR and GOGS_CUSTOM env variables
as a fallback if the equivalent GITEA_* are not set,
warning user about the need for change.
Does not change "gogs" to "gitea" in webhook type name
Because "gogs" hook type is part of the API (routes) and used
in templates...
Closes  #87  
							
						 
						
							2016-11-07 16:05:18 +01:00  
				
					
						
							
							
								 
						
							
								6bf9910975 
								
							 
						 
						
							
							
								
								Set correct doc url for go-sdk  
							
							
							
						 
						
							2016-11-07 14:49:25 +01:00  
				
					
						
							
							
								 
						
							
								be5607e510 
								
							 
						 
						
							
							
								
								Merge pull request  #50  from 0xbaadf00d/feature/2583-disablehttpcloning  
							
							... 
							
							
							
							Disable HTTP cloning 
							
						 
						
							2016-11-07 11:23:30 +01:00  
				
					
						
							
							
								 
						
							
								6e4252dad4 
								
							 
						 
						
							
							
								
								Replace gogits/git-module dependency with go-gitea/git ( #94 )  
							
							... 
							
							
							
							* Replace gogits/git-module dependency with go-gitea/git
Fixes  #92 
* Remove git alias for git module import (not needed) 
							
						 
						
							2016-11-06 11:18:34 -02:00  
				
					
						
							
							
								 
						
							
								d318f612a9 
								
							 
						 
						
							
							
								
								Add tests for CurrentUsername() ( #88 )  
							
							
							
						 
						
							2016-11-06 09:47:25 +01:00  
				
					
						
							
							
								 
						
							
								1f44b01e2a 
								
							 
						 
						
							
							
								
								Fix imports found by goimports.  
							
							
							
						 
						
							2016-11-05 17:56:35 +01:00  
				
					
						
							
							
								 
						
							
								eb25d1f252 
								
							 
						 
						
							
							
								
								Regenerated bindata  
							
							
							
						 
						
							2016-11-04 23:45:06 +01:00  
				
					
						
							
							
								 
						
							
								f960b776f0 
								
							 
						 
						
							
							
								
								Simply made go vet happy, fixed tags  
							
							
							
						 
						
							2016-11-04 23:45:06 +01:00  
				
					
						
							
							
								 
						
							
								e05a5ca36c 
								
							 
						 
						
							
							
								
								Executed go fmt for all files  
							
							
							
						 
						
							2016-11-04 23:45:06 +01:00  
				
					
						
							
							
								 
						
							
								a4fa889ced 
								
							 
						 
						
							
							
								
								Run goimports on the whole project ( #34 )  
							
							... 
							
							
							
							Signed-off-by: Matthias Loibl <mail@matthiasloibl.com> 
							
						 
						
							2016-11-04 09:57:27 -02:00  
				
					
						
							
							
								 
						
							
								8dc49dc114 
								
							 
						 
						
							
							
								
								Implementation of the feature to redirect to an external issue tracker  
							
							
							
						 
						
							2016-11-04 09:06:54 +01:00  
				
					
						
							
							
								 
						
							
								2d68bd1ef9 
								
							 
						 
						
							
							
								
								Change import reference to match gitea instead of gogs ( #37 )  
							
							
							
						 
						
							2016-11-03 10:29:56 -02:00  
				
					
						
							
							
								 
						
							
								af03d00780 
								
							 
						 
						
							
							
								
								Fix sender of issue notifications  
							
							... 
							
							
							
							It is the FROM field in mailer configuration that needs be used,
not the USER field, which is for authentication.
Closes https://github.com/gogits/gogs/issues/3615  
							
						 
						
							2016-11-02 21:00:54 +01:00  
				
					
						
							
							
								 
						
							
								d59a48a255 
								
							 
						 
						
							
							
								
								Use proper url for libravatar dep  
							
							
							
						 
						
							2016-11-02 18:18:04 +01:00  
				
					
						
							
							
								 
						
							
								6bcff7828f 
								
							 
						 
						
							
							
								
								Fix mention in comments like (@dblk) ( #3655 )  
							
							... 
							
							
							
							* Fix mention in comments like (@dblk)
* Better fix to avoid making link for "Hello@DblK" 
							
						 
						
							2016-10-16 22:17:59 -04:00  
				
					
						
							
							
								 
						
							
								93f1eabe30 
								
							 
						 
						
							
							
								
								rename variable + fix wiki link  
							
							
							
						 
						
							2016-10-04 18:58:14 +02:00  
				
					
						
							
							
								 
						
							
								9d66497abc 
								
							 
						 
						
							
							
								
								Can disable GIT interactions by HTTP protocol  
							
							
							
						 
						
							2016-09-18 10:54:33 +02:00  
				
					
						
							
							
								 
						
							
								7e15ff9486 
								
							 
						 
						
							
							
								
								Update locales  
							
							... 
							
							
							
							Add new locale Serbian (Cyrillic) 
							
						 
						
							2016-09-15 20:03:36 -04:00  
				
					
						
							
							
								 
						
							
								b3d9ca4ccd 
								
							 
						 
						
							
							
								
								Add the ability to explore organizations ( #3573 )  
							
							... 
							
							
							
							* Add ability to explore organizations
* Use right icon for org explore links 
							
						 
						
							2016-09-01 09:08:05 -04:00  
				
					
						
							
							
								 
						
							
								7c1fbed057 
								
							 
						 
						
							
							
								
								Fix panic when attempt login with non-exist user  
							
							
							
						 
						
							2016-09-01 05:12:34 -04:00  
				
					
						
							
							
								 
						
							
								bc902b8f74 
								
							 
						 
						
							
							
								
								Feature  #3492 : Add option to hide footer load times ( #3562 )  
							
							... 
							
							
							
							* Add option to hide footer load times
* Rename option variable + minor changes 
							
						 
						
							2016-09-01 01:01:32 -04:00  
				
					
						
							
							
								 
						
							
								8ee14db51e 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-09-01 00:35:04 -04:00  
				
					
						
							
							
								 
						
							
								5d35578811 
								
							 
						 
						
							
							
								
								Update size of SHA to  fix   #3538  ( #3563 )  
							
							
							
						 
						
							2016-08-31 14:22:17 -07:00  
				
					
						
							
							
								 
						
							
								dadd35b636 
								
							 
						 
						
							
							
								
								#3559  fix template error  
							
							
							
						 
						
							2016-08-31 13:59:23 -07:00  
				
					
						
							
							
								 
						
							
								99c2ae7b35 
								
							 
						 
						
							
							
								
								#3515  use alert instead 500 for duplicated login source name  
							
							
							
						 
						
							2016-08-31 00:56:10 -07:00  
				
					
						
							
							
								 
						
							
								8516dfcb6c 
								
							 
						 
						
							
							
								
								#2018  able to sync now for mirrors  
							
							... 
							
							
							
							- Refactor code to use sync.UniqueQueue
- Closes  #3509  
							
						 
						
							2016-08-30 16:18:33 -07:00  
				
					
						
							
							
								 
						
							
								c1ecb6c60a 
								
							 
						 
						
							
							
								
								modules/sync: add UniqueQueue  
							
							
							
						 
						
							2016-08-30 15:50:30 -07:00  
				
					
						
							
							
								 
						
							
								43297148b2 
								
							 
						 
						
							
							
								
								modules/sync: rename SingleInstancePool to ExclusivePool  
							
							
							
						 
						
							2016-08-30 15:19:53 -07:00  
				
					
						
							
							
								 
						
							
								6f90835f95 
								
							 
						 
						
							
							
								
								Make bindata  
							
							
							
						 
						
							2016-08-30 05:24:34 -07:00  
				
					
						
							
							
								 
						
							
								643142acab 
								
							 
						 
						
							
							
								
								Web editor: support upload files  
							
							
							
						 
						
							2016-08-30 05:23:59 -07:00  
				
					
						
							
							
								 
						
							
								7c31f235da 
								
							 
						 
						
							
							
								
								Web editor: support upload files  
							
							
							
						 
						
							2016-08-30 05:12:37 -07:00  
				
					
						
							
							
								 
						
							
								780cc2d110 
								
							 
						 
						
							
							
								
								router/repo: code refactoring  
							
							
							
						 
						
							2016-08-30 02:08:38 -07:00  
				
					
						
							
							
								 
						
							
								28cf0e6aaa 
								
							 
						 
						
							
							
								
								#3459  code quality improvement  
							
							
							
						 
						
							2016-08-29 20:00:06 -07:00  
				
					
						
							
							
								 
						
							
								92fb30c526 
								
							 
						 
						
							
							
								
								Load a set of predefined labels ( #3459 )  
							
							... 
							
							
							
							* Can use a predefined set of labels
* Change UI
* Fix HTML file indentation
* Avoid reading file from other directory (security issue)
* Apply a better fix
* Remove not used variable
* Merge upstream/develop
* Do modifications
* Raname
* remove binding + rename variable 
							
						 
						
							2016-08-29 19:02:49 -07:00  
				
					
						
							
							
								 
						
							
								62b0dc4853 
								
							 
						 
						
							
							
								
								Web editor: fix cannot create new file in subdirectory  
							
							
							
						 
						
							2016-08-29 00:10:21 -07:00  
				
					
						
							
							
								 
						
							
								ba27d71abe 
								
							 
						 
						
							
							
								
								Web editor: improve edit file  
							
							
							
						 
						
							2016-08-28 04:31:42 -07:00  
				
					
						
							
							
								 
						
							
								0114fdcba4 
								
							 
						 
						
							
							
								
								Web editor: improve delete file process  
							
							
							
						 
						
							2016-08-28 01:41:44 -07:00  
				
					
						
							
							
								 
						
							
								dad5c15520 
								
							 
						 
						
							
							
								
								#2901  allow setting preferred licenses  
							
							... 
							
							
							
							- Closes  #3488  
							
						 
						
							2016-08-28 00:06:22 -07:00  
				
					
						
							
							
								 
						
							
								6e171c5225 
								
							 
						 
						
							
							
								
								Web editor: improve edit file tooltip  
							
							
							
						 
						
							2016-08-27 15:25:01 -07:00  
				
					
						
							
							
								 
						
							
								13c106af77 
								
							 
						 
						
							
							
								
								label: adjust forecolor boundary  
							
							
							
						 
						
							2016-08-27 12:44:39 -07:00  
				
					
						
							
							
								 
						
							
								f8a48ffaad 
								
							 
						 
						
							
							
								
								Web editor: improve code quality  
							
							
							
						 
						
							2016-08-24 21:35:03 -07:00  
				
					
						
							
							
								 
						
							
								0b273ac4d5 
								
							 
						 
						
							
							
								
								#3383  code cleanup  
							
							
							
						 
						
							2016-08-24 16:05:56 -07:00  
				
					
						
							
							
								 
						
							
								ec332cf903 
								
							 
						 
						
							
							
								
								Minor naming improvement  
							
							
							
						 
						
							2016-08-17 16:10:07 -07:00  
				
					
						
							
							
								 
						
							
								a00c932bbc 
								
							 
						 
						
							
							
								
								General code quality improvement  
							
							
							
						 
						
							2016-08-16 23:06:38 -07:00  
				
					
						
							
							
								 
						
							
								4042d1f0c3 
								
							 
						 
						
							
							
								
								models/issue: improve quality and performance of NewIssue function  
							
							
							
						 
						
							2016-08-15 18:40:32 -07:00  
				
					
						
							
							
								 
						
							
								4a46613916 
								
							 
						 
						
							
							
								
								markdown: fix treating pure number as SHA1  
							
							... 
							
							
							
							- Detect non-exist commit and return 404 not 500 
							
						 
						
							2016-08-15 15:27:19 -07:00  
				
					
						
							
							
								 
						
							
								8637e67e6f 
								
							 
						 
						
							
							
								
								Fix outdated edit can’t overwrite changes  
							
							
							
						 
						
							2016-08-15 02:06:35 -07:00  
				
					
						
							
							
								 
						
							
								cd89f6c502 
								
							 
						 
						
							
							
								
								Web editor: improve edit file and diff preview  
							
							
							
						 
						
							2016-08-14 23:52:24 -07:00  
				
					
						
							
							
								 
						
							
								660e7a178a 
								
							 
						 
						
							
							
								
								modules/sync: move sync objects to independent module  
							
							
							
						 
						
							2016-08-14 23:52:24 -07:00  
				
					
						
							
							
								 
						
							
								15845cb287 
								
							 
						 
						
							
							
								
								Code clean up for new config options  
							
							
							
						 
						
							2016-08-14 23:52:24 -07:00  
				
					
						
							
							
								 
						
							
								d0a0239bac 
								
							 
						 
						
							
							
								
								Squashed commit of the following:  
							
							... 
							
							
							
							commit 0afcb843d7ffd596991c4885cab768273a6eb42c
Author: Richard Mahn <richard_mahn@wycliffeassociates.org>
Date:   Sun Jul 31 17:13:29 2016 -0600
    Removed Upload stats as the upload table is just a temporary table
commit 7ecd73ff5535612d79d471409173ee7f1fcfa157
Author: Richard Mahn <richard_mahn@wycliffeassociates.org>
Date:   Sun Jul 31 08:42:41 2016 -0600
    Fix for CodeMirror mode
commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174
Author: Richard Mahn <richard_mahn@wycliffeassociates.org>
Date:   Sun Jul 31 08:03:33 2016 -0600
    Made tabbing in editor use spaces
commit 23af384c53206a8a40e11e45bf49d7a149c4adcd
Author: Richard Mahn <richard_mahn@wycliffeassociates.org>
Date:   Sun Jul 31 07:56:46 2016 -0600
    Fix for data-url
commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9
Merge: 7fc8a89 991ce42ad7ea88cf85e9e1c7dcdd 
							
						 
						
							2016-08-14 23:52:24 -07:00  
				
					
						
							
							
								 
						
							
								3f7f4852ef 
								
							 
						 
						
							
							
								
								#2246  fully support of webhooks for pull request  
							
							
							
						 
						
							2016-08-14 03:32:24 -07:00  
				
					
						
							
							
								 
						
							
								5544a7037b 
								
							 
						 
						
							
							
								
								Add new dependency  
							
							
							
						 
						
							2016-08-11 17:12:55 -07:00  
				
					
						
							
							
								 
						
							
								dbed39ba05 
								
							 
						 
						
							
							
								
								On showing diff/file, use the tab_width specified on .editorconfig, if any ( #3241 )  
							
							... 
							
							
							
							Closes  #3182  
						
							2016-08-11 17:07:09 -07:00  
				
					
						
							
							
								 
						
							
								25b23c4bc9 
								
							 
						 
						
							
							
								
								Do not show non-image attachment in a <img> tag.  Fixes   #3215  ( #3311 )  
							
							
							
						 
						
							2016-08-11 16:16:36 -07:00  
				
					
						
							
							
								 
						
							
								7eafe3213f 
								
							 
						 
						
							
							
								
								Fix   #3321 : commit tag shortener ( #3418 )  
							
							... 
							
							
							
							* Fix  #3321 : commit tag shortener
* Check short commit
* remove debug
* Edit unit tests
* Show 10-char short SHA 
							
						 
						
							2016-08-11 15:34:00 -07:00  
				
					
						
							
							
								 
						
							
								a47aef5460 
								
							 
						 
						
							
							
								
								#2852  code cleanup  
							
							
							
						 
						
							2016-08-11 14:55:10 -07:00  
				
					
						
							
							
								 
						
							
								1dd003bd4c 
								
							 
						 
						
							
							
								
								Add initial support for unix sockets ( #2852 )  
							
							
							
						 
						
							2016-08-11 14:46:33 -07:00  
				
					
						
							
							
								 
						
							
								5077408d78 
								
							 
						 
						
							
							
								
								#3233  code cleanup and minor issue fix  
							
							
							
						 
						
							2016-08-11 10:53:51 -07:00  
				
					
						
							
							
								 
						
							
								0885784f13 
								
							 
						 
						
							
							
								
								Wiki mirroring implementation ( #3233 )  
							
							... 
							
							
							
							* Implement wiki mirroring, add Update mirrors operation to admin dashboard
* bindata.go update after merge
* Implement checking Git repo endpoint existence, support for BB included
* Remove admin dashboard operation
Fix bindata.go
* Apply gofmt to repo model file
* Try to remove bindata from PR
* Revert accepted wiki names change in favor of better system
* Remove unused imports 
							
						 
						
							2016-08-11 10:18:51 -07:00  
				
					
						
							
							
								 
						
							
								d625e41c6c 
								
							 
						 
						
							
							
								
								#3408  minor code fix  
							
							
							
						 
						
							2016-08-11 07:41:01 -07:00  
				
					
						
							
							
								 
						
							
								6a81632e36 
								
							 
						 
						
							
							
								
								Fix typo CacheInternal -> CacheInterval ( #3432 )  
							
							
							
						 
						
							2016-08-11 05:59:11 -07:00  
				
					
						
							
							
								 
						
							
								29f76f3936 
								
							 
						 
						
							
							
								
								Update locales [CI SKIP]  
							
							
							
						 
						
							2016-08-10 11:54:52 -07:00  
				
					
						
							
							
								 
						
							
								99812a80fd 
								
							 
						 
						
							
							
								
								Fix   #3420 : Bad commit URL generation ( #3424 )  
							
							
							
						 
						
							2016-08-10 11:35:06 -07:00  
				
					
						
							
							
								 
						
							
								b85927e488 
								
							 
						 
						
							
							
								
								#3091  show Git configs on admin panel  
							
							
							
						 
						
							2016-08-10 11:01:42 -07:00  
				
					
						
							
							
								 
						
							
								87b408a2e5 
								
							 
						 
						
							
							
								
								Update bindata.go [CI SKIP]  
							
							
							
						 
						
							2016-08-09 23:58:15 -07:00  
				
					
						
							
							
								 
						
							
								fc68fb951c 
								
							 
						 
						
							
							
								
								Feature  #3398 : Redefine global mirror interval ( #3409 )  
							
							... 
							
							
							
							* add mirror::GLOBAL_INTERVAL on app.ini
* rename key to DEFAULT_INTERVAL
* add key on default app.ini + move code 
							
						 
						
							2016-08-09 23:47:16 -07:00  
				
					
						
							
							
								 
						
							
								edd786446c 
								
							 
						 
						
							
							
								
								#3158  skip RUN_USER check on Windows  
							
							
							
						 
						
							2016-08-09 17:41:18 -07:00  
				
					
						
							
							
								 
						
							
								b0b88d9bc5 
								
							 
						 
						
							
							
								
								#3091  add config option for Git GC  
							
							
							
						 
						
							2016-08-09 17:24:32 -07:00  
				
					
						
							
							
								 
						
							
								f70343660d 
								
							 
						 
						
							
							
								
								Little code refactoring  
							
							
							
						 
						
							2016-08-09 12:56:00 -07:00  
				
					
						
							
							
								 
						
							
								9e8a8867ea 
								
							 
						 
						
							
							
								
								#3325  use correct word for .gitignore  
							
							
							
						 
						
							2016-08-09 12:16:21 -07:00  
				
					
						
							
							
								 
						
							
								90af997fec 
								
							 
						 
						
							
							
								
								#3399  500 for upstream pulls page if user has forked repository  
							
							
							
						 
						
							2016-08-08 13:02:55 -07:00  
				
					
						
							
							
								 
						
							
								e5bf4281b5 
								
							 
						 
						
							
							
								
								#2825  early response 200 when ?go-get=1  
							
							
							
						 
						
							2016-08-07 14:29:16 -07:00  
				
					
						
							
							
								 
						
							
								99385db0c4 
								
							 
						 
						
							
							
								
								#3320  code cleanup  
							
							
							
						 
						
							2016-08-07 11:01:47 -07:00  
				
					
						
							
							
								 
						
							
								90dd0657b5 
								
							 
						 
						
							
							
								
								Add support for federated avatars ( #3320 )  
							
							... 
							
							
							
							* Add support for federated avatars
Fixes  #3105 
Removes avatar fetching duplication code
Adds an "Enable Federated Avatar" checkbox in user settings
(defaults to unchecked)
Moves avatar settings all in the same form, making
local and remote avatars mutually exclusive
Renames UploadAvatarForm to AvatarForm
as it's not anymore only for uploading
* Run gofmt on all modified files
* Move Avatar form in its own page
* Add go-libravatar dependency to vendor/ dir
Hopefully helps with accepting the contribution.
See also #3214 
* Revert "Add go-libravatar dependency to vendor/ dir"
This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82.
* Make federated avatar setting a global configuration
Removes the per-user setting
* Move avatar handling back to base tool, disable federated avatar in offline mode
* Format, handle error
* Properly set fallback host
* Use unsupported github.com mirror for importing go-libravatar
* Remove comment showing life exists outside of github.com
... pity, but contribution would not be accepted otherwise
* Use Combo for Get and Post methods over /avatar
* FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR
* Fix persistance of federated avatar lookup checkbox at install time
* Federated Avatars -> Enable Federated Avatars
* Use len(string) == 0 instead of string == ""
* Move import line where it belong
See
https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md 
Pity the import url is still the unofficial one, but oh well...
* Save a line (and waste much more expensive time)
* Remove redundant parens
* Remove an empty line
* Remove empty lines
* Reorder lines to make diff smaller
* Remove another newline
Unknwon review got me start a fight against newlines
* Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE
On re-reading the diff I figured what Unknwon meant here:
https://github.com/gogits/gogs/pull/3320/files#r73741106 
* Remove newlines that weren't there before my intervention 
							
						 
						
							2016-08-07 10:27:38 -07:00  
				
					
						
							
							
								 
						
							
								ec92565f23 
								
							 
						 
						
							
							
								
								#3393  fix missing sub-url prefix in relative avatar link  
							
							
							
						 
						
							2016-08-07 10:13:05 -07:00  
				
					
						
							
							
								 
						
							
								2772791fda 
								
							 
						 
						
							
							
								
								Improve diff highlight ( #3390 )  
							
							... 
							
							
							
							- Try to reduce memory allocations
- Add possibility to disable diff highlight (can improve performance for large diffs)
- Tweaking with cost for prettier (cleaner) diffs
- Do not calculate diff when the number of removed lines in a block is not equal to the number of added lines (this usually resulted in ugly diffs) 
							
						 
						
							2016-08-07 09:49:47 -07:00  
				
					
						
							
							
								 
						
							
								ee28fd9255 
								
							 
						 
						
							
							
								
								Update locales [CI SKIP]  
							
							
							
						 
						
							2016-08-03 12:24:53 -07:00  
				
					
						
							
							
								 
						
							
								991ce42c48 
								
							 
						 
						
							
							
								
								#2162  improve repository advance options UI display  
							
							... 
							
							
							
							Enable/disable input based on user chosen options for wiki and issue tracker. 
							
						 
						
							2016-07-31 01:26:43 +08:00  
				
					
						
							
							
								 
						
							
								3e22ae3412 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-07-30 22:28:23 +08:00  
				
					
						
							
							
								 
						
							
								899e799459 
								
							 
						 
						
							
							
								
								#1601  support delete issue comment  
							
							
							
						 
						
							2016-07-26 02:48:17 +08:00  
				
					
						
							
							
								 
						
							
								2295fafb34 
								
							 
						 
						
							
							
								
								repo/settings/options: take naming style examples out of locale string  
							
							
							
						 
						
							2016-07-25 16:55:51 +08:00  
				
					
						
							
							
								 
						
							
								a562228c5e 
								
							 
						 
						
							
							
								
								Add org.getUserTeams to reduce redundant code  
							
							
							
						 
						
							2016-07-24 18:09:45 +08:00  
				
					
						
							
							
								 
						
							
								e74630ae3b 
								
							 
						 
						
							
							
								
								#1384  add pagination for repositories  
							
							
							
						 
						
							2016-07-24 14:32:46 +08:00  
				
					
						
							
							
								 
						
							
								1f2e173a74 
								
							 
						 
						
							
							
								
								Refactor User.Id to User.ID  
							
							
							
						 
						
							2016-07-24 01:08:22 +08:00  
				
					
						
							
							
								 
						
							
								46e96c008c 
								
							 
						 
						
							
							
								
								Use struct for UI settings  
							
							
							
						 
						
							2016-07-24 00:23:54 +08:00  
				
					
						
							
							
								 
						
							
								4e822c1911 
								
							 
						 
						
							
							
								
								conf: change default mirror checking interval to 10m  
							
							
							
						 
						
							2016-07-23 20:20:09 +08:00  
				
					
						
							
							
								 
						
							
								d7bdc1de8d 
								
							 
						 
						
							
							
								
								#3107  fix mention regex does not include dash  
							
							
							
						 
						
							2016-07-23 17:29:34 +08:00  
				
					
						
							
							
								 
						
							
								c912494609 
								
							 
						 
						
							
							
								
								#3076  detect invalid tag name git error  
							
							
							
						 
						
							2016-07-23 15:59:19 +08:00  
				
					
						
							
							
								 
						
							
								599716bb1b 
								
							 
						 
						
							
							
								
								Update locales [CI SKIP]  
							
							
							
						 
						
							2016-07-22 22:21:26 +08:00  
				
					
						
							
							
								 
						
							
								6488ee12be 
								
							 
						 
						
							
							
								
								avatar: make custom and generated avatars equal ( #3301 )  
							
							... 
							
							
							
							Sets all avatars to use PNG image format.
Keeps avatars consistent at 290x290px resolution.
Signed-off-by: Dennis Chen <barracks510@gmail.com> 
							
						 
						
							2016-07-21 15:31:14 +08:00  
				
					
						
							
							
								 
						
							
								5aa2bf86f4 
								
							 
						 
						
							
							
								
								Update locales and .gopmfile  
							
							
							
						 
						
							2016-07-17 09:25:30 +08:00  
				
					
						
							
							
								 
						
							
								e3d3d424b2 
								
							 
						 
						
							
							
								
								Minor fix for go vet  
							
							
							
						 
						
							2016-07-16 15:15:00 +08:00  
				
					
						
							
							
								 
						
							
								971e2c3bd6 
								
							 
						 
						
							
							
								
								Upgrade octicon to 4.3.0  
							
							
							
						 
						
							2016-07-16 12:45:13 +08:00  
				
					
						
							
							
								 
						
							
								c083d76567 
								
							 
						 
						
							
							
								
								#2937  able to prohibit user login  
							
							
							
						 
						
							2016-07-16 10:22:16 +08:00  
				
					
						
							
							
								 
						
							
								f1b8d52eb3 
								
							 
						 
						
							
							
								
								#2854  fix no mail notification when issue is closed/reopened  
							
							
							
						 
						
							2016-07-16 00:36:39 +08:00  
				
					
						
							
							
								 
						
							
								7ca5f8f119 
								
							 
						 
						
							
							
								
								models/repo: remove redundant info for some repo methods  
							
							... 
							
							
							
							RepoLink -> Link, RepoRelLink -> RelLink, FullRepoLink -> FullLink 
							
						 
						
							2016-07-15 21:53:43 +08:00  
				
					
						
							
							
								 
						
							
								194a742fb9 
								
							 
						 
						
							
							
								
								#2798  fix assign operation not take effect  
							
							
							
						 
						
							2016-07-15 17:06:17 +08:00  
				
					
						
							
							
								 
						
							
								089bacd54e 
								
							 
						 
						
							
							
								
								Update bindata and CSS  
							
							
							
						 
						
							2016-07-15 14:13:30 +08:00  
				
					
						
							
							
								 
						
							
								a752f09055 
								
							 
						 
						
							
							
								
								#2709  validate username attribute fetched from LDAP  
							
							
							
						 
						
							2016-07-12 07:07:57 +08:00  
				
					
						
							
							
								 
						
							
								f4ab50501e 
								
							 
						 
						
							
							
								
								[Fix] Don't display way too large files  #1513  ( #3253 )  
							
							... 
							
							
							
							* Add MaxDisplayFileSize setting
* Don't show files that are too large
* Localized FileTooLarge
* Change IsFileTooBig => IsFileTooLarge 
							
						 
						
							2016-07-12 06:21:26 +08:00  
				
					
						
							
							
								 
						
							
								a1f717f65a 
								
							 
						 
						
							
							
								
								Update locale  
							
							
							
						 
						
							2016-07-09 23:59:13 +08:00  
				
					
						
							
							
								 
						
							
								9fcf66f0e0 
								
							 
						 
						
							
							
								
								Minor fix for  #3246  
							
							
							
						 
						
							2016-07-09 13:42:05 +08:00  
				
					
						
							
							
								 
						
							
								98b152030d 
								
							 
						 
						
							
							
								
								The pruning for the synchronized mirrors is a option now. Default value: enable_prune = true ( #3246 )  
							
							... 
							
							
							
							Executed go fmt
getEngine() not handles DB parameters (#2972 ) (#2974 )
Uses .AllCols() for Update in updateMirror()
Spanish traslation removed
Fixed a wrong way to ommit the --prune option in process.ExecDir() for MirrorUpdate function 
							
						 
						
							2016-07-09 13:22:28 +08:00  
				
					
						
							
							
								 
						
							
								467d7dacb6 
								
							 
						 
						
							
							
								
								Modify behaviour of repo-delete. ( #3232 )  
							
							... 
							
							
							
							Re: issues gogits/gogs#2863  and gogits/gogs#3231 
As a result of modifications to the contents of the conf folder, `make bindata`
was run, causing an update to bindata.go.
Meta
-----
This commit will be rebased onto the 'develop' branch. 
							
						 
						
							2016-07-09 13:13:57 +08:00  
				
					
						
							
							
								 
						
							
								401bf944ef 
								
							 
						 
						
							
							
								
								Use SecurityProtocol to replace UseSSL in LDAP config  
							
							... 
							
							
							
							Initially proposed by #2376  and fixes  #3068  as well. 
							
						 
						
							2016-07-08 07:25:09 +08:00  
				
					
						
							
							
								 
						
							
								4b25bdfbc4 
								
							 
						 
						
							
							
								
								#3058   #3059  support correct page size and link header  
							
							
							
						 
						
							2016-07-04 17:27:06 +08:00  
				
					
						
							
							
								 
						
							
								6aa00f7bcf 
								
							 
						 
						
							
							
								
								#2968  use HTTP_ADDR to replace localhost  
							
							
							
						 
						
							2016-07-02 18:54:48 +08:00  
				
					
						
							
							
								 
						
							
								6f6b37f148 
								
							 
						 
						
							
							
								
								#3078  update default app.ini  
							
							
							
						 
						
							2016-07-01 22:27:52 +08:00  
				
					
						
							
							
								 
						
							
								99c3a9390f 
								
							 
						 
						
							
							
								
								change setting.go -> LocalUrl default   value to ( #3078 )  
							
							
							
						 
						
							2016-07-01 22:26:15 +08:00  
				
					
						
							
							
								 
						
							
								e84ac64964 
								
							 
						 
						
							
							
								
								Do not show filename not have suffifx .md  
							
							
							
						 
						
							2016-07-01 15:34:03 +08:00  
				
					
						
							
							
								 
						
							
								6f7276278d 
								
							 
						 
						
							
							
								
								#3174  genetate bindata  
							
							
							
						 
						
							2016-06-29 23:25:41 +08:00  
				
					
						
							
							
								 
						
							
								743d22669a 
								
							 
						 
						
							
							
								
								Re-work MAX_DIFF_LINES: supress diff per file, not the whole diff ( #3174 )  
							
							
							
						 
						
							2016-06-29 23:11:00 +08:00  
				
					
						
							
							
								 
						
							
								84841c8c4b 
								
							 
						 
						
							
							
								
								Stricter parsing of issue URLs and commit URLs. ( #3121 )  
							
							
							
						 
						
							2016-06-29 23:07:39 +08:00  
				
					
						
							
							
								 
						
							
								274a2ca528 
								
							 
						 
						
							
							
								
								Update locale bindata  
							
							
							
						 
						
							2016-06-28 00:26:18 +08:00  
				
					
						
							
							
								 
						
							
								8a248696e9 
								
							 
						 
						
							
							
								
								Use a gopher as default avatar (rather than the gravatar logo) ( #3208 )  
							
							... 
							
							
							
							Also changes the avatar from a jpeg to a png, to allow for
transparent background. The indexed png is also smaller in size.
Note that at the moment the default avatar is only used when
the user requested a custom avatar and the custom avatar file
is not found (should never happen).
In the future the default avatar could be used as a default
return when by-mail avatar lookups fail too (both gravatar
and libravatar support passing a default) 
							
						 
						
							2016-06-27 18:12:30 +08:00  
				
					
						
							
							
								 
						
							
								8b35c194ec 
								
							 
						 
						
							
							
								
								Fixes   #3110  ( #3136 )  
							
							
							
						 
						
							2016-06-27 17:02:39 +08:00  
				
					
						
							
							
								 
						
							
								4bbb878d20 
								
							 
						 
						
							
							
								
								Minor fix for  #3194  
							
							... 
							
							
							
							- Update locale bindata 
							
						 
						
							2016-06-27 16:38:35 +08:00  
				
					
						
							
							
								 
						
							
								26342b0c24 
								
							 
						 
						
							
							
								
								Update locale  
							
							
							
						 
						
							2016-06-12 18:03:51 +08:00  
				
					
						
							
							
								 
						
							
								fb970b9d87 
								
							 
						 
						
							
							
								
								Add ServerName to tls.Config in LDAP auth ( #3104 )  
							
							... 
							
							
							
							From https://godoc.org/crypto/tls#Config 
    ServerName is used to verify the hostname on the returned
    certificates unless InsecureSkipVerify is given. It is also included
    in the client's handshake to support virtual hosting unless it is
    an IP address.
This is needed for certificate validation without InsecureSkipVerify. 
							
						 
						
							2016-06-01 01:11:28 -07:00  
				
					
						
							
							
								 
						
							
								0240f520ab 
								
							 
						 
						
							
							
								
								#2954  minor fix for when to set HTML alternative  
							
							
							
						 
						
							2016-05-30 01:50:20 -07:00  
				
					
						
							
							
								 
						
							
								8df3ba96f3 
								
							 
						 
						
							
							
								
								#2954  use text/plain as default email content format  
							
							
							
						 
						
							2016-05-30 01:32:01 -07:00  
				
					
						
							
							
								 
						
							
								d35a1c30f4 
								
							 
						 
						
							
							
								
								Do not write HTML in text/plain mail part ( #2954 )  
							
							... 
							
							
							
							* Do not write HTML in text/plain mail part
Fixes  #2928 
* Pass text/plain first, text/html second
* Do not send plain/text email if html2text failed (untested) 
							
						 
						
							2016-05-30 01:18:49 -07:00  
				
					
						
							
							
								 
						
							
								8a2347592d 
								
							 
						 
						
							
							
								
								locale: update Czech  
							
							
							
						 
						
							2016-05-12 14:31:06 -04:00  
				
					
						
							
							
								 
						
							
								f473895c41 
								
							 
						 
						
							
							
								
								bindata: follow up data clean  
							
							
							
						 
						
							2016-05-11 12:17:52 -04:00  
				
					
						
							
							
								 
						
							
								fbf43c31e5 
								
							 
						 
						
							
							
								
								Add Czech support  
							
							
							
						 
						
							2016-05-11 12:00:47 -04:00  
				
					
						
							
							
								 
						
							
								3df8eb60e3 
								
							 
						 
						
							
							
								
								PDF-Previews in file-lists now working ( #3000 )  
							
							
							
						 
						
							2016-04-26 21:48:44 -04:00  
				
					
						
							
							
								 
						
							
								7049cb9d97 
								
							 
						 
						
							
							
								
								Add new language support  
							
							... 
							
							
							
							- Update language choose dropdown to fit more languages 
							
						 
						
							2016-04-25 13:40:23 -04:00  
				
					
						
							
							
								 
						
							
								78b8b63774 
								
							 
						 
						
							
							
								
								#2992  set default style name when empty in AfterSet  
							
							
							
						 
						
							2016-04-22 18:36:05 -04:00  
				
					
						
							
							
								 
						
							
								ba314a7a36 
								
							 
						 
						
							
							
								
								Support alphanumeric issue style (ABC-1234) for external issue tracker ( #2992 )  
							
							
							
						 
						
							2016-04-22 18:28:08 -04:00  
				
					
						
							
							
								 
						
							
								ce36fd7a49 
								
							 
						 
						
							
							
								
								Fixed   #2909  ( #2979 )  
							
							
							
						 
						
							2016-04-19 16:35:36 -04:00  
				
					
						
							
							
								 
						
							
								3257df0da3 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-04-11 18:38:25 -04:00  
				
					
						
							
							
								 
						
							
								ac53bb593d 
								
							 
						 
						
							
							
								
								#2878  print error of JSON unmarshal and always returns a valid object  
							
							
							
						 
						
							2016-03-26 16:42:20 -04:00  
				
					
						
							
							
								 
						
							
								b1d41cfa60 
								
							 
						 
						
							
							
								
								#1692  add admin APIs to add/remove a user from teams  
							
							
							
						 
						
							2016-03-25 18:04:02 -04:00  
				
					
						
							
							
								 
						
							
								9a43fcb61c 
								
							 
						 
						
							
							
								
								Changed EscapePound function with string replace function  
							
							
							
						 
						
							2016-03-24 20:48:52 -05:00  
				
					
						
							
							
								 
						
							
								5ec8ef0230 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-03-23 15:56:56 -04:00  
				
					
						
							
							
								 
						
							
								004fb30ebe 
								
							 
						 
						
							
							
								
								Remove code for checking ssh-keygen  
							
							
							
						 
						
							2016-03-19 20:31:23 -04:00  
				
					
						
							
							
								 
						
							
								3fb4f7f498 
								
							 
						 
						
							
							
								
								Prepare release  
							
							
							
						 
						
							2016-03-19 14:51:41 -04:00  
				
					
						
							
							
								 
						
							
								9e09e48502 
								
							 
						 
						
							
							
								
								#2850  fix potential SSH commands dislocation  
							
							... 
							
							
							
							When use builtin SSH server with concurrent operations, there are probabilities
One connection could use the command from another connections.
Fix this by set SSH_ORIGINAL_COMMAND for each command, not set in global scope. 
							
						 
						
							2016-03-18 06:13:16 -04:00  
				
					
						
							
							
								 
						
							
								c79774e8d4 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-03-18 04:03:13 -04:00  
				
					
						
							
							
								 
						
							
								8540043c45 
								
							 
						 
						
							
							
								
								Make separate string variables for space  
							
							
							
						 
						
							2016-03-15 21:28:55 +01:00  
				
					
						
							
							
								 
						
							
								f57adf3637 
								
							 
						 
						
							
							
								
								Fix relative links in markdown files  
							
							... 
							
							
							
							Replace spaces with "%20" in "urlPrefix", before markdon processing.
The spaces were causing blackfriday (markdown processor) to behave
strange. This fixes  #2545 . 
							
						 
						
							2016-03-15 20:43:46 +01:00  
				
					
						
							
							
								 
						
							
								9976fc6782 
								
							 
						 
						
							
							
								
								Generate bindata for  #2823  
							
							
							
						 
						
							2016-03-14 16:46:36 -04:00  
				
					
						
							
							
								 
						
							
								9bd9ad4205 
								
							 
						 
						
							
							
								
								#1692  add CRUD issue APIs  
							
							... 
							
							
							
							- Fix go-gogs-client#10
- Related to #809  
							
						 
						
							2016-03-13 23:20:22 -04:00  
				
					
						
							
							
								 
						
							
								dd6faf7f9b 
								
							 
						 
						
							
							
								
								Convert all API handers to use *context.APIContext  
							
							
							
						 
						
							2016-03-13 18:49:16 -04:00  
				
					
						
							
							
								 
						
							
								db4da7beec 
								
							 
						 
						
							
							
								
								Add APIContext  
							
							
							
						 
						
							2016-03-13 17:37:44 -04:00  
				
					
						
							
							
								 
						
							
								b4f47a7623 
								
							 
						 
						
							
							
								
								#1891  attempt to fix invalid csrf token  
							
							
							
						 
						
							2016-03-12 20:56:03 -05:00  
				
					
						
							
							
								 
						
							
								af8eccc02e 
								
							 
						 
						
							
							
								
								Update glide.lock  
							
							
							
						 
						
							2016-03-12 14:44:28 -05:00  
				
					
						
							
							
								 
						
							
								820be19cf5 
								
							 
						 
						
							
							
								
								Merge pull request  #2796  from saboya/custom_app_data_path  
							
							... 
							
							
							
							Making AppDataPath customizable. 
							
						 
						
							2016-03-12 13:53:37 -05:00  
				
					
						
							
							
								 
						
							
								ebea20b4e7 
								
							 
						 
						
							
							
								
								remove errant debug statement  
							
							
							
						 
						
							2016-03-11 16:44:09 -06:00  
				
					
						
							
							
								 
						
							
								73e98c91c3 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-03-11 15:47:49 -05:00  
				
					
						
							
							
								 
						
							
								2bf8494332 
								
							 
						 
						
							
							
								
								#13  finish user and repository search  
							
							... 
							
							
							
							Both are possible on explore and admin panel 
							
						 
						
							2016-03-11 15:33:12 -05:00  
				
					
						
							
							
								 
						
							
								514382e2eb 
								
							 
						 
						
							
							
								
								Rename module: middleware -> context  
							
							
							
						 
						
							2016-03-11 11:56:52 -05:00  
				
					
						
							
							
								 
						
							
								5267dce210 
								
							 
						 
						
							
							
								
								Fix ref comment from commit create empty feed  
							
							
							
						 
						
							2016-03-11 05:11:58 -05:00  
				
					
						
							
							
								 
						
							
								eed9966ad6 
								
							 
						 
						
							
							
								
								#2727  fix incompatible SQL in PostgreSQL  
							
							
							
						 
						
							2016-03-09 23:18:39 -05:00  
				
					
						
							
							
								 
						
							
								3cacec9163 
								
							 
						 
						
							
							
								
								Making AppDataPath customizable.  
							
							
							
						 
						
							2016-03-09 22:53:42 -03:00  
				
					
						
							
							
								 
						
							
								0e9bc2d410 
								
							 
						 
						
							
							
								
								Fix pull request availability check  
							
							
							
						 
						
							2016-03-06 23:57:46 -05:00  
				
					
						
							
							
								 
						
							
								0ea0c5ec4f 
								
							 
						 
						
							
							
								
								Prepare release  
							
							
							
						 
						
							2016-03-06 19:55:38 -05:00  
				
					
						
							
							
								 
						
							
								58f0c68151 
								
							 
						 
						
							
							
								
								Some minor changes  
							
							
							
						 
						
							2016-03-06 16:40:04 -05:00  
				
					
						
							
							
								 
						
							
								c18f67ac6a 
								
							 
						 
						
							
							
								
								Add Finnish support  
							
							
							
						 
						
							2016-03-05 21:13:04 -05:00  
				
					
						
							
							
								 
						
							
								a5b0400be7 
								
							 
						 
						
							
							
								
								#1146  finish new access rights for collaborators  
							
							
							
						 
						
							2016-03-05 20:45:23 -05:00  
				
					
						
							
							
								 
						
							
								045f14fbd0 
								
							 
						 
						
							
							
								
								#1146  finsih UI work for access mode of collaborators  
							
							... 
							
							
							
							Collaborators have write access as default, and can be changed via repository
collaboration settings page to change between read, write and admin. 
							
						 
						
							2016-03-05 18:08:42 -05:00  
				
					
						
							
							
								 
						
							
								414eb22ef9 
								
							 
						 
						
							
							
								
								#1597  fix activitity feeds for pull requests  
							
							
							
						 
						
							2016-03-05 12:58:51 -05:00  
				
					
						
							
							
								 
						
							
								a2f13eae55 
								
							 
						 
						
							
							
								
								#1157  some avatar setting changes  
							
							... 
							
							
							
							- Allow to delete current avatar 
							
						 
						
							2016-03-05 00:51:51 -05:00  
				
					
						
							
							
								 
						
							
								2a931937a8 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-03-04 18:51:18 -05:00  
				
					
						
							
							
								 
						
							
								2d2d85bba4 
								
							 
						 
						
							
							
								
								#1597  support pull requests in same repository  
							
							
							
						 
						
							2016-03-04 15:43:01 -05:00  
				
					
						
							
							
								 
						
							
								9df6ce48c5 
								
							 
						 
						
							
							
								
								Minor fixes for  #2746  
							
							
							
						 
						
							2016-03-04 13:32:17 -05:00  
				
					
						
							
							
								 
						
							
								1ca171dbe9 
								
							 
						 
						
							
							
								
								Add ability to delete single wiki pages.  
							
							
							
						 
						
							2016-03-04 09:26:52 -05:00  
				
					
						
							
							
								 
						
							
								f6759a731a 
								
							 
						 
						
							
							
								
								#2748  fix redirect loop with auto-signin  
							
							
							
						 
						
							2016-03-04 09:15:11 -05:00  
				
					
						
							
							
								 
						
							
								260723e2cc 
								
							 
						 
						
							
							
								
								Minor fixes for  #2745  
							
							
							
						 
						
							2016-03-03 23:24:22 -05:00  
				
					
						
							
							
								 
						
							
								f3358f5927 
								
							 
						 
						
							
							
								
								Repo setting to delete and disable wiki  
							
							
							
						 
						
							2016-03-03 16:12:48 -05:00  
				
					
						
							
							
								 
						
							
								f946040fa9 
								
							 
						 
						
							
							
								
								#1891  attempt to fix expected invalid CSRF token  
							
							... 
							
							
							
							- Remove unused config settings `[picture] service` 
							
						 
						
							2016-03-03 15:09:43 -05:00  
				
					
						
							
							
								 
						
							
								9e89584cb4 
								
							 
						 
						
							
							
								
								Allow setting git operations timeouts  
							
							... 
							
							
							
							- Migrate: #2704  #2653 
- Clone: #2701 
- Mirror, Pull 
							
						 
						
							2016-02-29 19:29:49 -05:00  
				
					
						
							
							
								 
						
							
								ea80274229 
								
							 
						 
						
							
							
								
								#2700  fix sqlite3 can't create issue with more than one label  
							
							
							
						 
						
							2016-02-29 18:45:12 -05:00  
				
					
						
							
							
								 
						
							
								8055a0bdac 
								
							 
						 
						
							
							
								
								Post work for  #2637  
							
							... 
							
							
							
							Improve test cases, config settings, also show SSH config settings on admin config panel. 
							
						 
						
							2016-02-27 20:48:39 -05:00  
				
					
						
							
							
								 
						
							
								83c74878df 
								
							 
						 
						
							
							
								
								Merge pull request  #2637  from Gibheer/ssh-publickeys  
							
							... 
							
							
							
							allow native and ssh-keygen public key check 
							
						 
						
							2016-02-27 18:55:14 -05:00  
				
					
						
							
							
								 
						
							
								4438b7793b 
								
							 
						 
						
							
							
								
								Add new config option for builtin SSH server  
							
							... 
							
							
							
							Config option [server] SSH_LISTEN_PORT to the port the builtin SSH server will be listen.
It can be different from SSH_PORT which is supposed to be exposed in the clone URL.
This should solve the problem when user runs Gogs inside Docker container
and still want to use builtin SSH server. 
							
						 
						
							2016-02-25 00:21:48 -05:00  
				
					
						
							
							
								 
						
							
								baaf6046a1 
								
							 
						 
						
							
							
								
								Minor fix for  #2660  
							
							
							
						 
						
							2016-02-24 23:59:17 -05:00  
				
					
						
							
							
								 
						
							
								c27038e392 
								
							 
						 
						
							
							
								
								Test mailer button. Addresses  #1531  
							
							
							
						 
						
							2016-02-24 09:48:05 -05:00  
				
					
						
							
							
								 
						
							
								d324500959 
								
							 
						 
						
							
							
								
								Prepare to release  
							
							
							
						 
						
							2016-02-24 01:14:43 -05:00  
				
					
						
							
							
								 
						
							
								e721c5cf86 
								
							 
						 
						
							
							
								
								use StartSSHServer instead of DisableSSH  
							
							... 
							
							
							
							DisableSSH doesn't check the kind of ssh server to use, so that was
wrong. Use StartSSHServer instead. 
							
						 
						
							2016-02-23 15:43:52 +01:00  
				
					
						
							
							
								 
						
							
								e3570ae45d 
								
							 
						 
						
							
							
								
								seperate ssh constants from schema constants  
							
							... 
							
							
							
							The contants were placed in the same section as the scheme ones, which
may lead to confusion. 
							
						 
						
							2016-02-23 15:41:44 +01:00  
				
					
						
							
							
								 
						
							
								72ce06eab8 
								
							 
						 
						
							
							
								
								#2682  fix missing slash for go-get meta  
							
							
							
						 
						
							2016-02-23 00:12:04 -05:00  
				
					
						
							
							
								 
						
							
								912f7b51e9 
								
							 
						 
						
							
							
								
								#1821  add actions for close and reopen issues  
							
							
							
						 
						
							2016-02-22 12:40:00 -05:00  
				
					
						
							
							
								 
						
							
								ac78bae7b5 
								
							 
						 
						
							
							
								
								Replace uuid module with original package  
							
							
							
						 
						
							2016-02-20 18:13:12 -05:00  
				
					
						
							
							
								 
						
							
								926e75d721 
								
							 
						 
						
							
							
								
								#2334  strip whitespace for migrate URL  
							
							... 
							
							
							
							Also fix a possible race condition while install 
							
						 
						
							2016-02-20 17:32:34 -05:00  
				
					
						
							
							
								 
						
							
								d5a3021a7d 
								
							 
						 
						
							
							
								
								Make markdown as an independent module  
							
							
							
						 
						
							2016-02-20 17:10:05 -05:00  
				
					
						
							
							
								 
						
							
								d8a994ef24 
								
							 
						 
						
							
							
								
								Move cron module to independent package  
							
							... 
							
							
							
							Make it easier to keep track of upstream changes and bug fixes 
							
						 
						
							2016-02-20 15:58:09 -05:00  
				
					
						
							
							
								 
						
							
								7140dbac95 
								
							 
						 
						
							
							
								
								Fix   #857  
							
							
							
						 
						
							2016-02-20 15:10:34 -05:00  
				
					
						
							
							
								 
						
							
								a9981d8099 
								
							 
						 
						
							
							
								
								Update bindata for LDAP changes  
							
							
							
						 
						
							2016-02-20 14:17:24 +01:00  
				
					
						
							
							
								 
						
							
								5649556a33 
								
							 
						 
						
							
							
								
								LDAP: Make a bit more detailed log traces  
							
							... 
							
							
							
							This is useful especially to check whether we fetch right attributes, using
right LDAP search base and in right order. 
							
						 
						
							2016-02-20 14:12:32 +01:00  
				
					
						
							
							
								 
						
							
								834d92a47b 
								
							 
						 
						
							
							
								
								LDAP: Fetch attributes in Bind DN context option  
							
							... 
							
							
							
							This is feature is workaround for #2628  (JumpCloud) and some other services
that allow LDAP search only under BindDN user account, but not allow any LDAP
search query in logged user DN context.
Such approach is an alternative to minimal permissions security pattern for
BindDN user. 
							
						 
						
							2016-02-20 14:12:32 +01:00  
				
					
						
							
							
								 
						
							
								e2f95c2845 
								
							 
						 
						
							
							
								
								LDAP: Use single connection in BindDN mode auth  
							
							... 
							
							
							
							According to RFC 4511 4.2.1. Processing of the Bind Request "Clients may send
multiple Bind requests to change the authentication and/or security
associations or to complete a multi-stage Bind process. Authentication from
earlier binds is subsequently ignored."
Therefore we should not use 2 connections, but single one just sending two bind
requests. 
							
						 
						
							2016-02-20 14:01:47 +01:00  
				
					
						
							
							
								 
						
							
								341da3cea7 
								
							 
						 
						
							
							
								
								Fix inappropriate markdown post process end tag check  
							
							... 
							
							
							
							When <code> is nested inside <pre>, the next end tag token would not able to be the same
as outer-most start tag. So we only check outer-most start and end tag token to be the same. 
							
						 
						
							2016-02-19 17:39:50 -05:00  
				
					
						
							
							
								 
						
							
								2408df3f35 
								
							 
						 
						
							
							
								
								Merge pull request  #2663  from Download-Fritz/MirrorForks  
							
							... 
							
							
							
							#2505  Allow to fork and disallow to create PRs for mirrors. 
						
							2016-02-19 15:04:50 -05:00  
				
					
						
							
							
								 
						
							
								a467184e13 
								
							 
						 
						
							
							
								
								#2505  Allow to fork and disallow to create PRs for mirrors.  
							
							
							
						 
						
							2016-02-19 20:33:06 +01:00  
				
					
						
							
							
								 
						
							
								736a46dff9 
								
							 
						 
						
							
							
								
								Merge pull request  #2659  from joshfng/fix-issue-email-format  
							
							... 
							
							
							
							Fix issue email formatting. Addresses #2331  
							
						 
						
							2016-02-18 16:19:23 -05:00  
				
					
						
							
							
								 
						
							
								0f1b26ed1e 
								
							 
						 
						
							
							
								
								Fix issue email formatting. Addresses  #2331  
							
							
							
						 
						
							2016-02-18 16:08:20 -05:00  
				
					
						
							
							
								 
						
							
								338af89d56 
								
							 
						 
						
							
							
								
								#2650  fix possbility that use email as pusher user name  
							
							... 
							
							
							
							Remove the possibility of using email as user name when user actually push
through combination of email and password with HTTP.
Also refactor update action function to replcae tons of arguments with
single PushUpdateOptions struct.
And define the user who pushes code as pusher, therefore variable names shouldn't
be confusing any more. 
							
						 
						
							2016-02-17 22:47:06 -05:00  
				
					
						
							
							
								 
						
							
								12403bdfb0 
								
							 
						 
						
							
							
								
								allow native and ssh-keygen public key check  
							
							... 
							
							
							
							This commit adds the possibibility to use either the native golang
libraries or ssh-keygen to check public keys. The check is adjusted
depending on the settings, so that only supported keys are let through.
This commit also brings back the blacklist feature, which was removed in
7ef9a05588#2179  it also includes a way to adjust the path to
ssh-keygen and the working directory for ssh-keygen. With this,
sysadmins should be able to adjust the settings in a way, that SELinux
is okay with it. In the worst case, they can switch to the native
implementation and only loose support for ed25519 keys at the moment.
There are some other places which need adjustment to utilize the
parameters and the native implementation, but this sets the ground work. 
							
						 
						
							2016-02-16 23:01:56 +01:00  
				
					
						
							
							
								 
						
							
								9cf4fe043b 
								
							 
						 
						
							
							
								
								Add env var check for update  
							
							
							
						 
						
							2016-02-15 23:11:22 -05:00  
				
					
						
							
							
								 
						
							
								632c27802c 
								
							 
						 
						
							
							
								
								Minor fix for  #2624  
							
							
							
						 
						
							2016-02-15 14:57:15 -05:00  
				
					
						
							
							
								 
						
							
								58e004f7da 
								
							 
						 
						
							
							
								
								Remove cache avatar support and add its tests  
							
							
							
						 
						
							2016-02-14 23:14:55 -05:00  
				
					
						
							
							
								 
						
							
								aa5e837c65 
								
							 
						 
						
							
							
								
								fix   #2454  
							
							
							
						 
						
							2016-02-14 20:26:49 -05:00  
				
					
						
							
							
								 
						
							
								de3be370f7 
								
							 
						 
						
							
							
								
								Remove unused tests  
							
							... 
							
							
							
							Module httplib will be replaced a well done third-party package
soon, so remove its unused tests 
							
						 
						
							2016-02-13 18:11:15 -05:00  
				
					
						
							
							
								 
						
							
								8ab5399e83 
								
							 
						 
						
							
							
								
								Make log path required  
							
							
							
						 
						
							2016-02-12 10:10:02 -05:00  
				
					
						
							
							
								 
						
							
								1feecd6beb 
								
							 
						 
						
							
							
								
								Add helper text for log path.  
							
							
							
						 
						
							2016-02-12 09:24:09 -05:00  
				
					
						
							
							
								 
						
							
								a3e8c32a30 
								
							 
						 
						
							
							
								
								Add install option for log path  
							
							
							
						 
						
							2016-02-12 09:19:45 -05:00  
				
					
						
							
							
								 
						
							
								5258ee3740 
								
							 
						 
						
							
							
								
								Update locales and update sponsor  
							
							
							
						 
						
							2016-02-11 13:34:21 -05:00  
				
					
						
							
							
								 
						
							
								297e772c20 
								
							 
						 
						
							
							
								
								#2485  fix payloads mixed up for webhook  
							
							... 
							
							
							
							When repository contains a Slack type hook,
it changes original payload content.
This patch fixes it by using a local object to store
newly created Slack payload instead of assigning
back to the same variable. 
							
						 
						
							2016-02-10 15:21:39 -05:00  
				
					
						
							
							
								 
						
							
								e40d94bb4f 
								
							 
						 
						
							
							
								
								Implementing the "theme-color" meta tag.  
							
							... 
							
							
							
							Used by Android >= 5.0 to make the top bar colored.
Reference: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android  
							
						 
						
							2016-02-08 17:03:18 -02:00  
				
					
						
							
							
								 
						
							
								08ff1b7d4b 
								
							 
						 
						
							
							
								
								Merge pull request  #2579  from nanoant/patch/fix-ldap-username  
							
							... 
							
							
							
							Fix  #2221  LDAP username attribute must be fetched 
						
							2016-02-07 12:27:10 -05:00  
				
					
						
							
							
								 
						
							
								3808638df1 
								
							 
						 
						
							
							
								
								Fix   #2221  LDAP username attribute must be fetched  
							
							... 
							
							
							
							This is fix-up for 573305f 
							
						 
						
							2016-02-07 18:18:29 +01:00  
				
					
						
							
							
								 
						
							
								ee53204e02 
								
							 
						 
						
							
							
								
								Improve db path prompt when install  
							
							
							
						 
						
							2016-02-07 11:51:53 -05:00  
				
					
						
							
							
								 
						
							
								f15a2f9b25 
								
							 
						 
						
							
							
								
								Merge pull request  #2528  from andreynering/diff-sintax-highlight-733  
							
							... 
							
							
							
							Enable syntax highlighting on diff view 
							
						 
						
							2016-02-07 11:49:11 -05:00  
				
					
						
							
							
								 
						
							
								acfc942ad7 
								
							 
						 
						
							
							
								
								Generate CSS for  #2561  
							
							
							
						 
						
							2016-02-05 14:53:45 -05:00  
				
					
						
							
							
								 
						
							
								4e96a4a62b 
								
							 
						 
						
							
							
								
								Merge pull request  #2406  from bkcsoft/feature/markdown-custom-url-scheme  
							
							... 
							
							
							
							Feature/markdown custom url scheme 
							
						 
						
							2016-02-05 13:11:45 -05:00  
				
					
						
							
							
								 
						
							
								8e40f86d2c 
								
							 
						 
						
							
							
								
								#2556  handle space in image URL  
							
							
							
						 
						
							2016-02-04 22:51:40 -05:00  
				
					
						
							
							
								 
						
							
								2bfb8bb5fd 
								
							 
						 
						
							
							
								
								Enable sintax highlighting on diff view.  Close   #733  
							
							
							
						 
						
							2016-02-04 18:21:47 -02:00  
				
					
						
							
							
								 
						
							
								ddf9fa06c7 
								
							 
						 
						
							
							
								
								Minor fix for  #2530  
							
							
							
						 
						
							2016-02-04 13:03:34 -05:00  
				
					
						
							
							
								 
						
							
								739d5aa1d3 
								
							 
						 
						
							
							
								
								Merge pull request  #2530  from fnkr/hide-other-teams-repos-from-org-page  
							
							... 
							
							
							
							Hide other teams & repos from organization page 
							
						 
						
							2016-02-04 12:52:11 -05:00  
				
					
						
							
							
								 
						
							
								04be8c0de5 
								
							 
						 
						
							
							
								
								#2554  reinitialize all repos from the db  
							
							... 
							
							
							
							- Update locales 
							
						 
						
							2016-02-04 12:51:00 -05:00  
				
					
						
							
							
								 
						
							
								1c74612b3c 
								
							 
						 
						
							
							
								
								Minor fix for  #2444  
							
							
							
						 
						
							2016-02-01 20:55:12 -05:00  
				
					
						
							
							
								 
						
							
								3abad75a1b 
								
							 
						 
						
							
							
								
								Fix one user may block entire listen loop for builtin SSH  
							
							
							
						 
						
							2016-02-01 12:10:49 -05:00  
				
					
						
							
							
								 
						
							
								4848620594 
								
							 
						 
						
							
							
								
								#2229  adjust URL verbose depth for reverse proxy sub-path  
							
							
							
						 
						
							2016-01-31 15:38:20 -05:00  
				
					
						
							
							
								 
						
							
								9cf95e4e37 
								
							 
						 
						
							
							
								
								Organization owners see all repositories & teams  
							
							
							
						 
						
							2016-01-31 16:14:24 +00:00  
				
					
						
							
							
								 
						
							
								8c4588c4c9 
								
							 
						 
						
							
							
								
								Refactor .IsAdminTeam to .IsTeamAdmin and requireAdminTeam to requireTeamAdmin  
							
							
							
						 
						
							2016-01-31 15:30:07 +00:00  
				
					
						
							
							
								 
						
							
								e35791b2b2 
								
							 
						 
						
							
							
								
								Only show teams the user has access to  
							
							
							
						 
						
							2016-01-31 15:30:07 +00:00  
				
					
						
							
							
								 
						
							
								abc5abce30 
								
							 
						 
						
							
							
								
								Allow modification of a release if Content is empty ( fix   #2516 )  
							
							
							
						 
						
							2016-01-30 13:39:02 +00:00  
				
					
						
							
							
								 
						
							
								112a7cab31 
								
							 
						 
						
							
							
								
								#2497  incorrect error handle for team name  
							
							
							
						 
						
							2016-01-29 17:06:14 -05:00  
				
					
						
							
							
								 
						
							
								a4a23c0268 
								
							 
						 
						
							
							
								
								Merge pull request  #2508  from MilesPong/develop  
							
							... 
							
							
							
							Fixed gravatar url 
							
						 
						
							2016-01-29 05:44:00 -05:00  
				
					
						
							
							
								 
						
							
								beefc53e59 
								
							 
						 
						
							
							
								
								Using https for gravatar  
							
							
							
						 
						
							2016-01-29 13:06:17 +08:00  
				
					
						
							
							
								 
						
							
								1becf01cfa 
								
							 
						 
						
							
							
								
								Fixed gravatar url  
							
							
							
						 
						
							2016-01-29 11:05:41 +08:00  
				
					
						
							
							
								 
						
							
								b900150b1d 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-01-28 06:15:49 -05:00  
				
					
						
							
							
								 
						
							
								1ab8a60d73 
								
							 
						 
						
							
							
								
								Not working, but slightly better...  
							
							
							
						 
						
							2016-01-27 21:48:57 +01:00  
				
					
						
							
							
								 
						
							
								3a9fd81f59 
								
							 
						 
						
							
							
								
								Custom URL-Schemas for Markdown  
							
							
							
						 
						
							2016-01-27 02:02:03 +01:00  
				
					
						
							
							
								 
						
							
								e33ddac9bf 
								
							 
						 
						
							
							
								
								Minor fix for  #2396  
							
							
							
						 
						
							2016-01-25 14:04:46 -05:00  
				
					
						
							
							
								 
						
							
								71b9537393 
								
							 
						 
						
							
							
								
								Merge pull request  #2396  from bkcsoft/feature/markdown-checklist  
							
							... 
							
							
							
							[Feature] Markdown Checklist-rendering 
							
						 
						
							2016-01-25 13:56:13 -05:00  
				
					
						
							
							
								 
						
							
								b33abc6280 
								
							 
						 
						
							
							
								
								Merge pull request  #2432  from nd/develop  
							
							... 
							
							
							
							Fix  #2431  - handle requests waiting for reply 
						
							2016-01-25 13:16:32 -05:00  
				
					
						
							
							
								 
						
							
								38efa72146 
								
							 
						 
						
							
							
								
								Update locales  
							
							
							
						 
						
							2016-01-25 02:33:52 -05:00  
				
					
						
							
							
								 
						
							
								863ff19e1f 
								
							 
						 
						
							
							
								
								Fixed forgotten err variable assignment  
							
							
							
						 
						
							2016-01-24 10:24:21 +03:30  
				
					
						
							
							
								 
						
							
								fb99d50fa1 
								
							 
						 
						
							
							
								
								Fix   #2431  - handle requests waiting for reply  
							
							... 
							
							
							
							According to the docs [1], the Reply method must be called for all
requests where WantReply is true. This fixes a hanging java ssh
implementation (jsch) which sets WantReply flag and waits for reply from
the server.
[1] https://godoc.org/golang.org/x/crypto/ssh#Request.Reply  
							
						 
						
							2016-01-18 16:54:10 +01:00  
				
					
						
							
							
								 
						
							
								7ef9a05588 
								
							 
						 
						
							
							
								
								#2179  use Go sub-repo ssh to verify public key content  
							
							
							
						 
						
							2016-01-15 18:39:51 +08:00  
				
					
						
							
							
								 
						
							
								a1a4f1103c 
								
							 
						 
						
							
							
								
								Made Sanitizer-setup cleaner  
							
							
							
						 
						
							2016-01-14 03:00:05 +01:00  
				
					
						
							
							
								 
						
							
								8e09e03127 
								
							 
						 
						
							
							
								
								Checklist-rendering implemented  
							
							
							
						 
						
							2016-01-13 13:25:52 +01:00  
				
					
						
							
							
								 
						
							
								f43cc90841 
								
							 
						 
						
							
							
								
								#2287  Truncate repository name if too long  
							
							
							
						 
						
							2016-01-11 20:41:43 +08:00  
				
					
						
							
							
								 
						
							
								a2ef9a2b64 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2016-01-11 18:30:44 +08:00  
				
					
						
							
							
								 
						
							
								db719abff2 
								
							 
						 
						
							
							
								
								stop compile bindata for TRANSLATORS  
							
							... 
							
							
							
							- update required version of git-module for #2373  
							
						 
						
							2016-01-11 15:01:38 +08:00  
				
					
						
							
							
								 
						
							
								cc8c67ff29 
								
							 
						 
						
							
							
								
								fix markdown autolink error  
							
							
							
						 
						
							2016-01-09 10:59:04 +08:00  
				
					
						
							
							
								 
						
							
								ca35ddd078 
								
							 
						 
						
							
							
								
								fix   #2350  
							
							
							
						 
						
							2016-01-07 09:24:19 +08:00  
				
					
						
							
							
								 
						
							
								0d5dc8a064 
								
							 
						 
						
							
							
								
								typo fix  
							
							
							
						 
						
							2016-01-06 22:41:42 +03:00  
				
					
						
							
							
								 
						
							
								0cb7396840 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2016-01-06 18:44:57 +08:00  
				
					
						
							
							
								 
						
							
								8fe5d887ae 
								
							 
						 
						
							
							
								
								Changed name from inline to unified  
							
							
							
						 
						
							2016-01-05 19:21:50 +01:00  
				
					
						
							
							
								 
						
							
								4e6d048ba1 
								
							 
						 
						
							
							
								
								i18n-fix for split-view  
							
							
							
						 
						
							2016-01-05 19:21:49 +01:00  
				
					
						
							
							
								 
						
							
								7392b6a755 
								
							 
						 
						
							
							
								
								fix   #2327  
							
							
							
						 
						
							2016-01-05 12:43:19 +08:00  
				
					
						
							
							
								 
						
							
								4993ab1a76 
								
							 
						 
						
							
							
								
								#2185  fall back to use custom chardet lib  
							
							
							
						 
						
							2015-12-31 22:13:47 -05:00  
				
					
						
							
							
								 
						
							
								44637f03cc 
								
							 
						 
						
							
							
								
								#2282  fast detection of utf-8  
							
							
							
						 
						
							2015-12-27 17:02:36 -05:00  
				
					
						
							
							
								 
						
							
								93f03707a7 
								
							 
						 
						
							
							
								
								#2283  set text/plain for non-binary files in raw mode  
							
							
							
						 
						
							2015-12-25 05:45:07 -05:00  
				
					
						
							
							
								 
						
							
								85af36332b 
								
							 
						 
						
							
							
								
								#2282  fix utf-8 recognized as windows-1252  
							
							
							
						 
						
							2015-12-25 05:25:47 -05:00  
				
					
						
							
							
								 
						
							
								13fe733037 
								
							 
						 
						
							
							
								
								#2264  use monospaced font for commit IDs in news feeds  
							
							
							
						 
						
							2015-12-24 20:43:45 -05:00  
				
					
						
							
							
								 
						
							
								a49af93faf 
								
							 
						 
						
							
							
								
								#1692  APIs: Users Followers  
							
							... 
							
							
							
							- User profile un/follow
- List user's followers/following 
							
						 
						
							2015-12-21 04:24:11 -08:00  
				
					
						
							
							
								 
						
							
								c62a6b7a12 
								
							 
						 
						
							
							
								
								#2014  allow switch branches between two orgs in compose PR  
							
							
							
						 
						
							2015-12-20 01:06:54 -05:00  
				
					
						
							
							
								 
						
							
								53eb37d529 
								
							 
						 
						
							
							
								
								fix   #1436  
							
							
							
						 
						
							2015-12-19 21:43:32 -05:00  
				
					
						
							
							
								 
						
							
								2d3ecbe5b2 
								
							 
						 
						
							
							
								
								make mailer log more verbose  
							
							
							
						 
						
							2015-12-19 02:44:34 -05:00  
				
					
						
							
							
								 
						
							
								09c981846b 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-12-18 07:54:44 -05:00  
				
					
						
							
							
								 
						
							
								037a01c4e4 
								
							 
						 
						
							
							
								
								fix   #2189  
							
							
							
						 
						
							2015-12-18 05:49:28 -05:00  
				
					
						
							
							
								 
						
							
								1d95844d55 
								
							 
						 
						
							
							
								
								prepare release  
							
							
							
						 
						
							2015-12-18 00:54:27 -05:00  
				
					
						
							
							
								 
						
							
								1e7e092992 
								
							 
						 
						
							
							
								
								#2103  Ability to map extensions for syntax highlighting in config  
							
							
							
						 
						
							2015-12-17 22:31:34 -05:00  
				
					
						
							
							
								 
						
							
								9cd16c5b12 
								
							 
						 
						
							
							
								
								#1692  add organization APIs  
							
							
							
						 
						
							2015-12-17 02:28:47 -05:00  
				
					
						
							
							
								 
						
							
								6673dcb038 
								
							 
						 
						
							
							
								
								#2103   #2181  improvments of highlight class name  
							
							
							
						 
						
							2015-12-16 22:13:12 -05:00  
				
					
						
							
							
								 
						
							
								b117befc2b 
								
							 
						 
						
							
							
								
								#1692  add user email APIs  
							
							
							
						 
						
							2015-12-15 22:57:18 -05:00  
				
					
						
							
							
								 
						
							
								8ecbf0f16d 
								
							 
						 
						
							
							
								
								fix   #2204  
							
							
							
						 
						
							2015-12-15 19:42:20 -05:00  
				
					
						
							
							
								 
						
							
								19423957b1 
								
							 
						 
						
							
							
								
								rename import path  
							
							
							
						 
						
							2015-12-15 17:25:45 -05:00  
				
					
						
							
							
								 
						
							
								ea375c0dcc 
								
							 
						 
						
							
							
								
								new template func  
							
							
							
						 
						
							2015-12-13 23:16:58 -05:00  
				
					
						
							
							
								 
						
							
								acdb4d8bdd 
								
							 
						 
						
							
							
								
								Drop Go 1.3 support  
							
							
							
						 
						
							2015-12-13 20:20:52 -05:00  
				
					
						
							
							
								 
						
							
								95f9c85bcc 
								
							 
						 
						
							
							
								
								#2185  use Go sub-repo to detect encoding  
							
							
							
						 
						
							2015-12-13 19:56:33 -05:00  
				
					
						
							
							
								 
						
							
								9a27e5ccdc 
								
							 
						 
						
							
							
								
								ignore invalid env  
							
							
							
						 
						
							2015-12-13 20:17:47 +08:00  
				
					
						
							
							
								 
						
							
								7e88420bc6 
								
							 
						 
						
							
							
								
								#2161  fix wrong regexp  
							
							
							
						 
						
							2015-12-12 16:13:18 -05:00  
				
					
						
							
							
								 
						
							
								5911fc3512 
								
							 
						 
						
							
							
								
								#2161  No issue linking in commits when issue number in brackets  
							
							
							
						 
						
							2015-12-12 16:01:54 -05:00  
				
					
						
							
							
								 
						
							
								e444a67d59 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-12-12 14:47:11 -05:00  
				
					
						
							
							
								 
						
							
								59c965a5ec 
								
							 
						 
						
							
							
								
								#2156  admin able to edit organization max repo creation  
							
							
							
						 
						
							2015-12-11 19:24:57 -05:00  
				
					
						
							
							
								 
						
							
								477b4d3b50 
								
							 
						 
						
							
							
								
								#2154  fix form submit error  
							
							
							
						 
						
							2015-12-11 18:52:28 -05:00  
				
					
						
							
							
								 
						
							
								d0b0d24f22 
								
							 
						 
						
							
							
								
								#2154  disable change user for non-local users  
							
							... 
							
							
							
							- #2153  remove require for gravatar 
							
						 
						
							2015-12-11 15:31:02 -05:00  
				
					
						
							
							
								 
						
							
								98da7241a0 
								
							 
						 
						
							
							
								
								fix sqlite3 cannot create repo  
							
							
							
						 
						
							2015-12-11 10:13:19 -05:00  
				
					
						
							
							
								 
						
							
								40f3142264 
								
							 
						 
						
							
							
								
								#2114  External URL for wiki  
							
							
							
						 
						
							2015-12-11 04:55:08 -05:00  
				
					
						
							
							
								 
						
							
								3d5d61778a 
								
							 
						 
						
							
							
								
								#1938   #1374  disable password change for non-local users  
							
							
							
						 
						
							2015-12-10 19:02:57 -05:00  
				
					
						
							
							
								 
						
							
								df5ed64cca 
								
							 
						 
						
							
							
								
								#1301  "read-only" users  
							
							
							
						 
						
							2015-12-10 12:46:05 -05:00  
				
					
						
							
							
								 
						
							
								2a0bb1fa90 
								
							 
						 
						
							
							
								
								#1575  Limit repo creation  
							
							
							
						 
						
							2015-12-10 12:37:53 -05:00  
				
					
						
							
							
								 
						
							
								c6083c335e 
								
							 
						 
						
							
							
								
								#1612  Ability to send mail when a new pull request is submitted  
							
							
							
						 
						
							2015-12-10 11:18:56 -05:00  
				
					
						
							
							
								 
						
							
								9a2e43bff2 
								
							 
						 
						
							
							
								
								move out git module and  #1573  send push hook  
							
							
							
						 
						
							2015-12-09 20:46:05 -05:00  
				
					
						
							
							
								 
						
							
								bd5dc626e8 
								
							 
						 
						
							
							
								
								Merge pull request  #2139  from angus-g/fixes/pr-messages  
							
							... 
							
							
							
							Reword messages for PR auto merging (#2117 ) 
							
						 
						
							2015-12-09 17:31:46 -05:00  
				
					
						
							
							
								 
						
							
								626dc1f0bd 
								
							 
						 
						
							
							
								
								Reword messages for PR auto merging ( #2117 )  
							
							
							
						 
						
							2015-12-10 09:28:49 +11:00  
				
					
						
							
							
								 
						
							
								b886fb4bf0 
								
							 
						 
						
							
							
								
								LOCAL_ROOT_URL for workers accessing web service  
							
							... 
							
							
							
							Local (DMZ) URL for gogs workers (such as ssh update) accessing web service. In
most cases you do not need to change default http://localhost:HTTP_PORT/ . You
may need to alter it only if your ssh server node is not the same as http node,
eg. running behind proxy on different node than web server.
                     --- 80 public port -> 8080 -- web server node
                    /
    public proxy --<
                    \
                     --- 22 public port -> 10022 -- ssh server node
This option is not intended to be accessible via web GUI settings, since it is
unlikely someone needs to change it to somethings else than default
http://localhost:HTTP_PORT/  which should work for most of the cases.
But this should land into the documentation somewhere.
fixup 
							
						 
						
							2015-12-09 23:11:07 +01:00  
				
					
						
							
							
								 
						
							
								718d3ae258 
								
							 
						 
						
							
							
								
								#1943  Able to config fsck timeout  
							
							
							
						 
						
							2015-12-09 11:38:12 -05:00  
				
					
						
							
							
								 
						
							
								b8d48bdb62 
								
							 
						 
						
							
							
								
								#2037  Add "New Mirror" button on Dashboard  
							
							
							
						 
						
							2015-12-09 11:24:56 -05:00  
				
					
						
							
							
								 
						
							
								a576224d0e 
								
							 
						 
						
							
							
								
								unified name: IsViewBranch, IsViewCommit and IsViewTag  
							
							
							
						 
						
							2015-12-09 00:32:53 -05:00  
				
					
						
							
							
								 
						
							
								06d293a84e 
								
							 
						 
						
							
							
								
								Only show comparison link for >2 commits  #1110  
							
							... 
							
							
							
							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. 
							
						 
						
							2015-12-09 14:36:39 +11:00  
				
					
						
							
							
								 
						
							
								120cd4e471 
								
							 
						 
						
							
							
								
								#1984  Better mirror repo management  
							
							
							
						 
						
							2015-12-08 20:06:12 -05:00  
				
					
						
							
							
								 
						
							
								1cbd4c01fb 
								
							 
						 
						
							
							
								
								#2115  more precise error message  
							
							
							
						 
						
							2015-12-08 01:11:40 -05:00  
				
					
						
							
							
								 
						
							
								3df5dcc1dc 
								
							 
						 
						
							
							
								
								Allow pre-receive hook customization  
							
							... 
							
							
							
							This hook can be used for example to reject too large commits and it is
executed before "update" hook, used exclusively by Gogs to update its state.
https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks  
							
						 
						
							2015-12-08 01:28:32 +01:00  
				
					
						
							
							
								 
						
							
								4e0c697aaf 
								
							 
						 
						
							
							
								
								force new INI version  
							
							
							
						 
						
							2015-12-07 11:33:04 -05:00  
				
					
						
							
							
								 
						
							
								3ffbb54337 
								
							 
						 
						
							
							
								
								minor fix for  #2113  and other locales  
							
							
							
						 
						
							2015-12-07 00:10:08 -05:00  
				
					
						
							
							
								 
						
							
								e2ca53029e 
								
							 
						 
						
							
							
								
								Render commit msg as header + verbatim description  
							
							... 
							
							
							
							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. 
							
						 
						
							2015-12-07 01:50:45 +01:00  
				
					
						
							
							
								 
						
							
								b5f6206a65 
								
							 
						 
						
							
							
								
								prepare release  
							
							
							
						 
						
							2015-12-06 15:34:17 -05:00  
				
					
						
							
							
								 
						
							
								ae54d878c0 
								
							 
						 
						
							
							
								
								Fix misspelled words  
							
							
							
						 
						
							2015-12-06 16:42:23 +02:00  
				
					
						
							
							
								 
						
							
								ca8ce793d1 
								
							 
						 
						
							
							
								
								#2063  Ability to delete repo from admin panel  
							
							
							
						 
						
							2015-12-05 17:39:29 -05:00  
				
					
						
							
							
								 
						
							
								978dc00305 
								
							 
						 
						
							
							
								
								APIs: admin users  
							
							
							
						 
						
							2015-12-05 17:13:13 -05:00  
				
					
						
							
							
								 
						
							
								404867f206 
								
							 
						 
						
							
							
								
								fix   #2105  and  fix   #1857  
							
							
							
						 
						
							2015-12-05 13:24:13 -05:00  
				
					
						
							
							
								 
						
							
								f41360d864 
								
							 
						 
						
							
							
								
								#2052  advanced select ops for system notices  
							
							
							
						 
						
							2015-12-05 01:09:14 -05:00  
				
					
						
							
							
								 
						
							
								e538ff2770 
								
							 
						 
						
							
							
								
								fix   #1829  and  fix   #890  
							
							
							
						 
						
							2015-12-04 21:30:33 -05:00  
				
					
						
							
							
								 
						
							
								942fd6be53 
								
							 
						 
						
							
							
								
								fix panic for  #2045  
							
							
							
						 
						
							2015-12-04 17:20:23 -05:00  
				
					
						
							
							
								 
						
							
								56dd430a10 
								
							 
						 
						
							
							
								
								refactor API routes and some work for  #976  
							
							
							
						 
						
							2015-12-04 17:16:42 -05:00  
				
					
						
							
							
								 
						
							
								b83cb36049 
								
							 
						 
						
							
							
								
								minor fix for  #2086  
							
							
							
						 
						
							2015-12-02 19:45:43 -05:00  
				
					
						
							
							
								 
						
							
								e350d74c8a 
								
							 
						 
						
							
							
								
								fix   #2085  
							
							
							
						 
						
							2015-12-02 18:58:13 -05:00  
				
					
						
							
							
								 
						
							
								4a64ae4abf 
								
							 
						 
						
							
							
								
								fix   #2083  
							
							
							
						 
						
							2015-12-02 13:47:22 -05:00  
				
					
						
							
							
								 
						
							
								926e91820a 
								
							 
						 
						
							
							
								
								#2071  Diff is not showing full content when has super long one line  
							
							
							
						 
						
							2015-12-02 01:10:13 -05:00  
				
					
						
							
							
								 
						
							
								0be8b1b1a1 
								
							 
						 
						
							
							
								
								#2052  Ability to batch delete system notices  
							
							
							
						 
						
							2015-12-01 23:33:08 -05:00  
				
					
						
							
							
								 
						
							
								3460ec1039 
								
							 
						 
						
							
							
								
								update REMADE and locale  
							
							
							
						 
						
							2015-12-01 19:53:19 -05:00  
				
					
						
							
							
								 
						
							
								573305f3d3 
								
							 
						 
						
							
							
								
								LDAP: Optional user name attribute specification  
							
							... 
							
							
							
							Consider following LDAP search query example:
    (&(objectClass=Person)(|(uid=%s)(mail=%s)))
Right now on first login attempt Gogs will use the text supplied on login form
as the newly created user name. In example query above the text matches against
both e-mail or user name. So if user puts the e-mail then the new Gogs user
name will be e-mail which may be undesired.
Using optional user name attribute setting we can explicitly say we want Gogs
user name to be certain LDAP attribute eg. `uid`, so even user will use e-mail
to login 1st time, the new account will receive correct user name. 
							
						 
						
							2015-12-02 00:20:14 +01:00  
				
					
						
							
							
								 
						
							
								117afe7620 
								
							 
						 
						
							
							
								
								Merge pull request  #2069  from nanoant/patch/admin-see-all-organizations  
							
							... 
							
							
							
							Admin should be able to see all organizations 
							
						 
						
							2015-11-30 21:18:33 -05:00  
				
					
						
							
							
								 
						
							
								dcb391d341 
								
							 
						 
						
							
							
								
								Merge branch 'feature/wiki' into develop  
							
							
							
						 
						
							2015-11-30 20:46:19 -05:00  
				
					
						
							
							
								 
						
							
								830d000667 
								
							 
						 
						
							
							
								
								finish wiki  
							
							
							
						 
						
							2015-11-30 20:45:55 -05:00  
				
					
						
							
							
								 
						
							
								e57b2dffa4 
								
							 
						 
						
							
							
								
								Admin should be able to see all organizations  
							
							... 
							
							
							
							This is follow-up for 56c66ee486 
							
						 
						
							2015-11-30 21:46:01 +01:00  
				
					
						
							
							
								 
						
							
								ca96e04e5f 
								
							 
						 
						
							
							
								
								#1681  carry --config flag for builtin SSH  
							
							
							
						 
						
							2015-11-30 15:40:05 -05:00  
				
					
						
							
							
								 
						
							
								5d1f5f32d0 
								
							 
						 
						
							
							
								
								wiki: finish pages  
							
							
							
						 
						
							2015-11-27 02:16:12 -05:00  
				
					
						
							
							
								 
						
							
								e42fcb033d 
								
							 
						 
						
							
							
								
								wiki: finish edit  
							
							
							
						 
						
							2015-11-27 01:50:38 -05:00  
				
					
						
							
							
								 
						
							
								392f3ee210 
								
							 
						 
						
							
							
								
								wiki: finish new  
							
							
							
						 
						
							2015-11-27 00:24:24 -05:00  
				
					
						
							
							
								 
						
							
								c50a3503e6 
								
							 
						 
						
							
							
								
								introduce git-shell  
							
							
							
						 
						
							2015-11-26 17:33:45 -05:00  
				
					
						
							
							
								 
						
							
								aaa3f1b2b9 
								
							 
						 
						
							
							
								
								Use better LDAP lib and should  fix   #1139  
							
							
							
						 
						
							2015-11-26 14:04:58 -05:00  
				
					
						
							
							
								 
						
							
								2b10fdc4dc 
								
							 
						 
						
							
							
								
								Wiki: UI for page new  
							
							
							
						 
						
							2015-11-25 20:10:25 -05:00  
				
					
						
							
							
								 
						
							
								144663a3cf 
								
							 
						 
						
							
							
								
								allow admin to migrate for any user/org  
							
							
							
						 
						
							2015-11-25 00:55:37 -05:00  
				
					
						
							
							
								 
						
							
								ba92f4687e 
								
							 
						 
						
							
							
								
								minor fix markdown post process  
							
							
							
						 
						
							2015-11-24 19:29:35 -05:00  
				
					
						
							
							
								 
						
							
								968edb3e44 
								
							 
						 
						
							
							
								
								more link fix  
							
							
							
						 
						
							2015-11-24 19:28:24 -05:00  
				
					
						
							
							
								 
						
							
								3ca544912f 
								
							 
						 
						
							
							
								
								#1944  Drop /org/ URL path prefix in organization home page  
							
							
							
						 
						
							2015-11-24 19:14:00 -05:00  
				
					
						
							
							
								 
						
							
								7f9598141b 
								
							 
						 
						
							
							
								
								fix   #2020  
							
							
							
						 
						
							2015-11-24 18:49:34 -05:00  
				
					
						
							
							
								 
						
							
								56c66ee486 
								
							 
						 
						
							
							
								
								#2008  more supported git hooks  
							
							
							
						 
						
							2015-11-24 16:30:47 -05:00  
				
					
						
							
							
								 
						
							
								b2fb7e3fd2 
								
							 
						 
						
							
							
								
								more HTTP clone word fix  
							
							
							
						 
						
							2015-11-22 13:01:42 -05:00  
				
					
						
							
							
								 
						
							
								efaf60ba5a 
								
							 
						 
						
							
							
								
								fix   #2013  
							
							
							
						 
						
							2015-11-22 02:42:39 -05:00  
				
					
						
							
							
								 
						
							
								52c8f69163 
								
							 
						 
						
							
							
								
								fix   #650  
							
							
							
						 
						
							2015-11-22 01:32:09 -05:00  
				
					
						
							
							
								 
						
							
								f12832c61e 
								
							 
						 
						
							
							
								
								fix possible panic  
							
							
							
						 
						
							2015-11-21 21:06:11 -05:00  
				
					
						
							
							
								 
						
							
								3623b0927e 
								
							 
						 
						
							
							
								
								remove tags redis and memcache  
							
							
							
						 
						
							2015-11-21 17:21:22 -05:00  
				
					
						
							
							
								 
						
							
								cefc50b278 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-11-21 14:08:23 -05:00  
				
					
						
							
							
								 
						
							
								126228d146 
								
							 
						 
						
							
							
								
								HTML render fix  
							
							
							
						 
						
							2015-11-20 05:37:51 -05:00  
				
					
						
							
							
								 
						
							
								987dcc5372 
								
							 
						 
						
							
							
								
								fix   #1383  
							
							
							
						 
						
							2015-11-20 02:38:41 -05:00  
				
					
						
							
							
								 
						
							
								9b6c835715 
								
							 
						 
						
							
							
								
								fix   #1873  
							
							
							
						 
						
							2015-11-20 01:52:11 -05:00  
				
					
						
							
							
								 
						
							
								902b578465 
								
							 
						 
						
							
							
								
								better escape char handle  
							
							
							
						 
						
							2015-11-20 01:18:50 -05:00  
				
					
						
							
							
								 
						
							
								3d14e73fd8 
								
							 
						 
						
							
							
								
								fix   #1119  and data race in timming tasks  
							
							
							
						 
						
							2015-11-20 00:47:35 -05:00  
				
					
						
							
							
								 
						
							
								6a66e5fc98 
								
							 
						 
						
							
							
								
								better error message  
							
							
							
						 
						
							2015-11-19 13:45:07 -05:00  
				
					
						
							
							
								 
						
							
								2158e6fc43 
								
							 
						 
						
							
							
								
								fix   #1997  
							
							
							
						 
						
							2015-11-19 11:40:00 -05:00  
				
					
						
							
							
								 
						
							
								ee686f6231 
								
							 
						 
						
							
							
								
								minor fix on auto sign in  
							
							
							
						 
						
							2015-11-19 00:22:16 -05:00  
				
					
						
							
							
								 
						
							
								481be9b5c9 
								
							 
						 
						
							
							
								
								update locale  #1965  
							
							
							
						 
						
							2015-11-19 00:08:31 -05:00  
				
					
						
							
							
								 
						
							
								9330c943cd 
								
							 
						 
						
							
							
								
								work on  #1891  
							
							
							
						 
						
							2015-11-18 23:52:09 -05:00  
				
					
						
							
							
								 
						
							
								915bf1d2e3 
								
							 
						 
						
							
							
								
								Merge pull request  #1994  from arthuroy/develop  
							
							... 
							
							
							
							Fix  #1965  - the hyperlink and the display name of the branch 
						
							2015-11-18 23:01:06 -05:00  
				
					
						
							
							
								 
						
							
								df339ad8b0 
								
							 
						 
						
							
							
								
								#1401   #493  Admin should be able to see private repositories  
							
							
							
						 
						
							2015-11-18 19:49:11 -05:00  
				
					
						
							
							
								 
						
							
								2c653141a8 
								
							 
						 
						
							
							
								
								#1742  Update default branch in git repository while change in web view  
							
							
							
						 
						
							2015-11-18 19:32:23 -05:00  
				
					
						
							
							
								 
						
							
								fc56f42dc3 
								
							 
						 
						
							
							
								
								Use refStr[len("refs/heads/"):] instead of refStr[11:] and fix error  
							
							... 
							
							
							
							Fix  #1965  
						
							2015-11-19 08:10:44 +08:00  
				
					
						
							
							
								 
						
							
								0bd4d15e47 
								
							 
						 
						
							
							
								
								Use refStr[11:] instead of TrimPrefix  
							
							... 
							
							
							
							Fix  #1965  
						
							2015-11-19 08:05:27 +08:00  
				
					
						
							
							
								 
						
							
								e04c97b9fa 
								
							 
						 
						
							
							
								
								Fix   #1965  - 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 '#' 
							
						 
						
							2015-11-19 07:31:55 +08:00  
				
					
						
							
							
								 
						
							
								f04d773f4f 
								
							 
						 
						
							
							
								
								UI: long organization name in create repository owner list  
							
							
							
						 
						
							2015-11-18 17:42:20 -05:00  
				
					
						
							
							
								 
						
							
								4325b01a58 
								
							 
						 
						
							
							
								
								minor fix for  #1992  
							
							
							
						 
						
							2015-11-18 17:19:36 -05:00  
				
					
						
							
							
								 
						
							
								e347736c9e 
								
							 
						 
						
							
							
								
								fix old naming  
							
							... 
							
							
							
							This is the old naming of the variable and I forgot to fix it. It now
works and is tested. 
							
						 
						
							2015-11-18 23:12:42 +01:00  
				
					
						
							
							
								 
						
							
								56006da34b 
								
							 
						 
						
							
							
								
								fix   #1957  - disable version display  
							
							... 
							
							
							
							This allows the admin to disable the version information about gogs and
go in use in the footer. 
							
						 
						
							2015-11-18 22:32:31 +01:00  
				
					
						
							
							
								 
						
							
								efea642d6c 
								
							 
						 
						
							
							
								
								add admin op: delete missing repos  
							
							
							
						 
						
							2015-11-18 15:37:48 -05:00  
				
					
						
							
							
								 
						
							
								9a0902523b 
								
							 
						 
						
							
							
								
								fix   #1987  
							
							
							
						 
						
							2015-11-18 15:01:11 -05:00  
				
					
						
							
							
								 
						
							
								62533560ce 
								
							 
						 
						
							
							
								
								fix   #1988  
							
							
							
						 
						
							2015-11-18 13:14:46 -05:00  
				
					
						
							
							
								 
						
							
								ff5f14431e 
								
							 
						 
						
							
							
								
								fix   #1448  
							
							
							
						 
						
							2015-11-17 02:18:05 -05:00  
				
					
						
							
							
								 
						
							
								9ab96172fc 
								
							 
						 
						
							
							
								
								new watchers, stars and forks UI  
							
							
							
						 
						
							2015-11-16 23:28:46 -05:00  
				
					
						
							
							
								 
						
							
								e06558e208 
								
							 
						 
						
							
							
								
								#1922  Pull request fail to merge with BIN  
							
							
							
						 
						
							2015-11-16 21:18:04 -05:00  
				
					
						
							
							
								 
						
							
								bb1fbe4e70 
								
							 
						 
						
							
							
								
								octicon fix in feeds  
							
							
							
						 
						
							2015-11-16 11:39:48 -05:00  
				
					
						
							
							
								 
						
							
								5dc3dd1704 
								
							 
						 
						
							
							
								
								fix   #1960  
							
							
							
						 
						
							2015-11-16 11:11:59 -05:00  
				
					
						
							
							
								 
						
							
								134d8e7681 
								
							 
						 
						
							
							
								
								work on  #1961  
							
							
							
						 
						
							2015-11-16 10:14:12 -05:00  
				
					
						
							
							
								 
						
							
								18de67380c 
								
							 
						 
						
							
							
								
								fix   #1958  
							
							
							
						 
						
							2015-11-15 23:52:46 -05:00  
				
					
						
							
							
								 
						
							
								1a901433e2 
								
							 
						 
						
							
							
								
								minor fix for  #1949  
							
							
							
						 
						
							2015-11-15 17:37:26 -05:00  
				
					
						
							
							
								 
						
							
								e030109b5a 
								
							 
						 
						
							
							
								
								fix api broken  
							
							
							
						 
						
							2015-11-15 17:07:44 -05:00  
				
					
						
							
							
								 
						
							
								35d49d3b34 
								
							 
						 
						
							
							
								
								Merge pull request  #1949  from TheHowl/develop  
							
							... 
							
							
							
							Fix bad issue links in non-readme markdown files 
							
						 
						
							2015-11-15 16:23:55 -05:00  
				
					
						
							
							
								 
						
							
								ca5678da32 
								
							 
						 
						
							
							
								
								Safely detect urlPrefix in the format /:owner/:repo  
							
							
							
						 
						
							2015-11-15 22:22:25 +01:00  
				
					
						
							
							
								 
						
							
								4f03b81ec7 
								
							 
						 
						
							
							
								
								#1931  Test patch does not checkout correct base branch  
							
							
							
						 
						
							2015-11-15 14:41:36 -05:00  
				
					
						
							
							
								 
						
							
								b4970b3cc3 
								
							 
						 
						
							
							
								
								fix   #1948  
							
							
							
						 
						
							2015-11-15 14:05:51 -05:00  
				
					
						
							
							
								 
						
							
								85c58eba90 
								
							 
						 
						
							
							
								
								Fix bad issue links in non-readme markdown files  
							
							
							
						 
						
							2015-11-15 12:04:43 +01:00  
				
					
						
							
							
								 
						
							
								7c80eba77f 
								
							 
						 
						
							
							
								
								minor UI fix and fix ssh race  
							
							
							
						 
						
							2015-11-14 13:21:31 -05:00  
				
					
						
							
							
								 
						
							
								9c12ed3b6e 
								
							 
						 
						
							
							
								
								clean up  
							
							
							
						 
						
							2015-11-14 04:54:27 -05:00  
				
					
						
							
							
								 
						
							
								7b1c10ea7e 
								
							 
						 
						
							
							
								
								new repo ui  
							
							... 
							
							
							
							- copy link button: #1396 , #1168 , #1668 ,
- synxtax highlight: #1712 , #1549 , #1315 , #670 
- z-index: #1942  
							
						 
						
							2015-11-14 04:34:01 -05:00  
				
					
						
							
							
								 
						
							
								679af4ddea 
								
							 
						 
						
							
							
								
								clean up  
							
							
							
						 
						
							2015-11-13 22:45:33 -05:00  
				
					
						
							
							
								 
						
							
								1d57f0d64f 
								
							 
						 
						
							
							
								
								Show custom avatars in commits  
							
							
							
						 
						
							2015-11-13 17:10:25 -05:00  
				
					
						
							
							
								 
						
							
								1559bd58e7 
								
							 
						 
						
							
							
								
								save custom avatar as PNG  
							
							
							
						 
						
							2015-11-13 16:43:43 -05:00  
				
					
						
							
							
								 
						
							
								523dc8b613 
								
							 
						 
						
							
							
								
								prepare release  
							
							
							
						 
						
							2015-11-12 12:42:39 -05:00  
				
					
						
							
							
								 
						
							
								3b62a0fe0e 
								
							 
						 
						
							
							
								
								fix   #1572  fix file histrory paging issue  
							
							
							
						 
						
							2015-11-10 16:46:17 -05:00  
				
					
						
							
							
								 
						
							
								18c841050b 
								
							 
						 
						
							
							
								
								fix 1540 and experimental SSH server support  
							
							
							
						 
						
							2015-11-08 16:59:56 -05:00  
				
					
						
							
							
								 
						
							
								b55499d039 
								
							 
						 
						
							
							
								
								go vet and  fix   #1890  
							
							
							
						 
						
							2015-11-08 14:31:49 -05:00  
				
					
						
							
							
								 
						
							
								676d774d88 
								
							 
						 
						
							
							
								
								fix   #1902  
							
							
							
						 
						
							2015-11-07 00:39:45 -05:00  
				
					
						
							
							
								 
						
							
								54ca0b2f09 
								
							 
						 
						
							
							
								
								#1433  images with links in Markdown  
							
							... 
							
							
							
							- #1904  minor fix on image link 
							
						 
						
							2015-11-06 11:10:27 -05:00  
				
					
						
							
							
								 
						
							
								f255b1e86d 
								
							 
						 
						
							
							
								
								#1896  fatal when no needed update task  
							
							
							
						 
						
							2015-11-04 21:57:10 -05:00  
				
					
						
							
							
								 
						
							
								3a81fdf092 
								
							 
						 
						
							
							
								
								rename fields  
							
							
							
						 
						
							2015-11-03 22:49:06 -05:00  
				
					
						
							
							
								 
						
							
								6f0a41b8b2 
								
							 
						 
						
							
							
								
								#1511  Allow local import only for admin users  
							
							
							
						 
						
							2015-11-03 18:40:52 -05:00  
				
					
						
							
							
								 
						
							
								25ec20d525 
								
							 
						 
						
							
							
								
								#1838  update merge base before generate new patch  
							
							
							
						 
						
							2015-11-03 17:25:39 -05:00  
				
					
						
							
							
								 
						
							
								8e262f3ec4 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-11-03 14:34:21 -05:00  
				
					
						
							
							
								 
						
							
								a374751eb8 
								
							 
						 
						
							
							
								
								add Makefile  
							
							
							
						 
						
							2015-11-03 12:16:43 -05:00  
				
					
						
							
							
								 
						
							
								0af035c37e 
								
							 
						 
						
							
							
								
								#1078  not show bin when rename a file  
							
							
							
						 
						
							2015-11-03 09:52:17 -05:00  
				
					
						
							
							
								 
						
							
								75aab86a8d 
								
							 
						 
						
							
							
								
								fix problem with  #1879  
							
							
							
						 
						
							2015-11-02 14:01:19 -05:00  
				
					
						
							
							
								 
						
							
								50058b3c6d 
								
							 
						 
						
							
							
								
								Merge pull request  #1871  from Gibheer/config_minimum_key_sizes  
							
							... 
							
							
							
							move minimum key sizes to config 
							
						 
						
							2015-11-01 12:39:12 -05:00  
				
					
						
							
							
								 
						
							
								b0226a1d05 
								
							 
						 
						
							
							
								
								fix   #1831  
							
							
							
						 
						
							2015-11-01 12:30:27 -05:00  
				
					
						
							
							
								 
						
							
								5cad124704 
								
							 
						 
						
							
							
								
								fix   #1697  
							
							
							
						 
						
							2015-10-31 19:10:44 -04:00  
				
					
						
							
							
								 
						
							
								940898a3ff 
								
							 
						 
						
							
							
								
								minor fix for  #1865  
							
							
							
						 
						
							2015-10-31 12:35:26 -04:00  
				
					
						
							
							
								 
						
							
								16feb5b655 
								
							 
						 
						
							
							
								
								minor fix on  #1863  
							
							
							
						 
						
							2015-10-31 12:04:04 -04:00  
				
					
						
							
							
								 
						
							
								659bd29bc5 
								
							 
						 
						
							
							
								
								Merge pull request  #1863  from nathan7/go-source-meta  
							
							... 
							
							
							
							Add go-source directive to repo pages 
							
						 
						
							2015-10-31 11:45:40 -04:00  
				
					
						
							
							
								 
						
							
								91c9069c4d 
								
							 
						 
						
							
							
								
								Merge pull request  #1862  from nathan7/fix-private  
							
							... 
							
							
							
							Fix the JSON field names for MigrateRepoForm 
							
						 
						
							2015-10-31 11:14:38 -04:00  
				
					
						
							
							
								 
						
							
								4323a89c03 
								
							 
						 
						
							
							
								
								Add go-source directive to repo pages  
							
							... 
							
							
							
							This makes Gogs repos work with godoc.org: https://github.com/golang/gddo/wiki/Source-Code-Links  
							
						 
						
							2015-10-30 14:00:09 +01:00  
				
					
						
							
							
								 
						
							
								b90b0c1191 
								
							 
						 
						
							
							
								
								move minimum key sizes to config  
							
							... 
							
							
							
							This moves the minimum key sizes into the config file, so that anyone
can modify the restrictions. 
							
						 
						
							2015-10-30 13:53:06 +01:00  
				
					
						
							
							
								 
						
							
								f1aa4c0524 
								
							 
						 
						
							
							
								
								Fix the JSON field names for MigrateRepoForm  
							
							... 
							
							
							
							For some reason, the field names for Private and Mirror got swapped. 
							
						 
						
							2015-10-30 02:44:45 +01:00  
				
					
						
							
							
								 
						
							
								073da3c49d 
								
							 
						 
						
							
							
								
								#470  fix max length of email  
							
							
							
						 
						
							2015-10-29 21:12:41 -04:00  
				
					
						
							
							
								 
						
							
								7d72c8333e 
								
							 
						 
						
							
							
								
								work on  #470  and fix miror JS issue when choose targets on compare and pull  
							
							
							
						 
						
							2015-10-29 21:09:48 -04:00  
				
					
						
							
							
								 
						
							
								706b0f72e2 
								
							 
						 
						
							
							
								
								fix issue comment mention and autofix count when start  
							
							
							
						 
						
							2015-10-29 20:40:57 -04:00  
				
					
						
							
							
								 
						
							
								4f0e31e96d 
								
							 
						 
						
							
							
								
								update README  
							
							
							
						 
						
							2015-10-29 03:21:59 -04:00  
				
					
						
							
							
								 
						
							
								f5689ee3a5 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-10-28 02:30:24 -04:00  
				
					
						
							
							
								 
						
							
								630ebbe6c2 
								
							 
						 
						
							
							
								
								Sanitizing input to LDAP authentication module.  
							
							
							
						 
						
							2015-10-26 18:08:59 -07:00  
				
					
						
							
							
								 
						
							
								b9f5def5dc 
								
							 
						 
						
							
							
								
								fix insecure tls when trigger task  
							
							
							
						 
						
							2015-10-26 09:16:24 -04:00  
				
					
						
							
							
								 
						
							
								022820103d 
								
							 
						 
						
							
							
								
								#1657  allow forcing all private repos  
							
							
							
						 
						
							2015-10-25 04:26:26 -04:00  
				
					
						
							
							
								 
						
							
								379629d28a 
								
							 
						 
						
							
							
								
								Merge pull request  #1836  from likeit92/develop  
							
							... 
							
							
							
							workaround for reverse proxy, ssh, submodule 
							
						 
						
							2015-10-24 16:51:59 -04:00  
				
					
						
							
							
								 
						
							
								8b92f9cca6 
								
							 
						 
						
							
							
								
								fix workaround for reverse proxy, ssh, submodule  
							
							
							
						 
						
							2015-10-24 22:46:13 +02:00  
				
					
						
							
							
								 
						
							
								78a4e71245 
								
							 
						 
						
							
							
								
								workaround for reverse proxy, ssh, submodule  
							
							
							
						 
						
							2015-10-24 22:03:08 +02:00  
				
					
						
							
							
								 
						
							
								63e6e31271 
								
							 
						 
						
							
							
								
								add config and update locale  
							
							
							
						 
						
							2015-10-24 15:35:26 -04:00  
				
					
						
							
							
								 
						
							
								71d8ff247d 
								
							 
						 
						
							
							
								
								update some locales  
							
							
							
						 
						
							2015-10-24 03:40:47 -04:00  
				
					
						
							
							
								 
						
							
								0fbb8c8826 
								
							 
						 
						
							
							
								
								New push to head repo of head branch: regenerate patch and retest apply  
							
							
							
						 
						
							2015-10-24 03:36:47 -04:00  
				
					
						
							
							
								 
						
							
								c6ce6bd4c2 
								
							 
						 
						
							
							
								
								work on  #1830  
							
							
							
						 
						
							2015-10-23 10:31:13 -04:00  
				
					
						
							
							
								 
						
							
								eac91a74d8 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of github.com:gogits/gogs into develop  
							
							
							
						 
						
							2015-10-21 06:40:56 -04:00  
				
					
						
							
							
								 
						
							
								f17b746a01 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-10-21 06:40:44 -04:00  
				
					
						
							
							
								 
						
							
								1f1abb17e2 
								
							 
						 
						
							
							
								
								Fix import path  
							
							
							
						 
						
							2015-10-19 23:43:11 +11:00  
				
					
						
							
							
								 
						
							
								fc7959d3bc 
								
							 
						 
						
							
							
								
								New/reopen PR checks if there is any unmerged and open PR  
							
							
							
						 
						
							2015-10-18 19:30:39 -04:00  
				
					
						
							
							
								 
						
							
								932dbccb67 
								
							 
						 
						
							
							
								
								fix import path,  fix   #1782  
							
							
							
						 
						
							2015-10-15 21:28:12 -04:00  
				
					
						
							
							
								 
						
							
								6a6e43f964 
								
							 
						 
						
							
							
								
								print out git version  
							
							
							
						 
						
							2015-10-13 16:01:57 -04:00  
				
					
						
							
							
								 
						
							
								b5e6af9587 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-10-08 22:49:08 -04:00  
				
					
						
							
							
								 
						
							
								aff49b1c9e 
								
							 
						 
						
							
							
								
								unified API error response  
							
							
							
						 
						
							2015-10-08 20:36:07 -04:00  
				
					
						
							
							
								 
						
							
								215920772a 
								
							 
						 
						
							
							
								
								save PR info as patch and minor fix on PR  
							
							
							
						 
						
							2015-10-04 20:54:06 -04:00  
				
					
						
							
							
								 
						
							
								4465c58f4b 
								
							 
						 
						
							
							
								
								new quick start page  
							
							
							
						 
						
							2015-10-02 19:58:36 -04:00  
				
					
						
							
							
								 
						
							
								c60d8bc069 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-10-02 02:55:52 -04:00  
				
					
						
							
							
								 
						
							
								a205acf829 
								
							 
						 
						
							
							
								
								drop go 1.2 support  
							
							
							
						 
						
							2015-09-26 17:54:02 -04:00  
				
					
						
							
							
								 
						
							
								d5ad4e1141 
								
							 
						 
						
							
							
								
								prepare release  
							
							
							
						 
						
							2015-09-26 14:09:09 -04:00  
				
					
						
							
							
								 
						
							
								6dfee30bf0 
								
							 
						 
						
							
							
								
								#1602  Wrong commit order on issue page when pushing multiple commits  
							
							
							
						 
						
							2015-09-25 20:35:56 -04:00  
				
					
						
							
							
								 
						
							
								21e13cb51e 
								
							 
						 
						
							
							
								
								#1525  Triggere mailer for admin created accounts  
							
							
							
						 
						
							2015-09-25 19:45:44 -04:00  
				
					
						
							
							
								 
						
							
								84c727ae66 
								
							 
						 
						
							
							
								
								Merge pull request  #1693  from sapk/fix-admin-repo-new-ui  
							
							... 
							
							
							
							Fix admin repos new ui 
							
						 
						
							2015-09-25 19:05:27 -04:00  
				
					
						
							
							
								 
						
							
								ee1256cf74 
								
							 
						 
						
							
							
								
								Merge pull request  #1691  from sapk/fix-admin-organization-new-ui  
							
							... 
							
							
							
							Fix admin organization new ui 
							
						 
						
							2015-09-25 19:03:53 -04:00  
				
					
						
							
							
								 
						
							
								dfc16d0879 
								
							 
						 
						
							
							
								
								Fix admin repos new ui  
							
							
							
						 
						
							2015-09-26 00:38:43 +02:00  
				
					
						
							
							
								 
						
							
								c98dad1cf3 
								
							 
						 
						
							
							
								
								New admin organization UI  
							
							
							
						 
						
							2015-09-25 19:54:52 +02:00  
				
					
						
							
							
								 
						
							
								0d5e57e4ae 
								
							 
						 
						
							
							
								
								#1689  minor fixes and update locale  
							
							
							
						 
						
							2015-09-25 12:58:39 -04:00  
				
					
						
							
							
								 
						
							
								14a1101139 
								
							 
						 
						
							
							
								
								New admin notice UI based on user list example  
							
							
							
						 
						
							2015-09-25 18:13:38 +02:00  
				
					
						
							
							
								 
						
							
								4f8b209956 
								
							 
						 
						
							
							
								
								Merge pull request  #1678  from TheHowl/TheHowl/fix-go-get-not-working-with-user-or-repo-names-with-uppercase-letters  
							
							... 
							
							
							
							Fix `go get` not working when there is a username or repository name with some uppercase letters. 
							
						 
						
							2015-09-24 18:51:02 -04:00  
				
					
						
							
							
								 
						
							
								e07675b480 
								
							 
						 
						
							
							
								
								fix test custom import path  
							
							
							
						 
						
							2015-09-24 18:03:08 -04:00  
				
					
						
							
							
								 
						
							
								4c30caad1c 
								
							 
						 
						
							
							
								
								fix test import path  
							
							
							
						 
						
							2015-09-24 17:58:40 -04:00  
				
					
						
							
							
								 
						
							
								216f0477b5 
								
							 
						 
						
							
							
								
								fix subrepo break change  
							
							
							
						 
						
							2015-09-24 17:55:01 -04:00  
				
					
						
							
							
								 
						
							
								befed9c20c 
								
							 
						 
						
							
							
								
								Merge pull request  #1662  from SergioBenitez/develop  
							
							... 
							
							
							
							Commit messages now rendered with line breaks and prefix spacing. 
							
						 
						
							2015-09-24 17:23:53 -04:00  
				
					
						
							
							
								 
						
							
								f8c09dc1ff 
								
							 
						 
						
							
							
								
								Fix `go get` not working when there is a username or repository name with some uppercase letters.  
							
							
							
						 
						
							2015-09-23 16:16:52 +02:00  
				
					
						
							
							
								 
						
							
								700ac8dea7 
								
							 
						 
						
							
							
								
								fix   #1664  
							
							
							
						 
						
							2015-09-21 10:09:21 -04:00  
				
					
						
							
							
								 
						
							
								69b1d65c9b 
								
							 
						 
						
							
							
								
								remove unused file and update locale  
							
							
							
						 
						
							2015-09-20 23:29:59 -04:00  
				
					
						
							
							
								 
						
							
								7acbcf9ddd 
								
							 
						 
						
							
							
								
								Commit messages now rendered with line breaks and prefix spacing.  
							
							
							
						 
						
							2015-09-18 19:02:23 -07:00  
				
					
						
							
							
								 
						
							
								2340bb1ed2 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-09-18 10:02:17 -04:00  
				
					
						
							
							
								 
						
							
								86d3c5cbb3 
								
							 
						 
						
							
							
								
								update Docker info  
							
							
							
						 
						
							2015-09-17 19:18:49 -04:00  
				
					
						
							
							
								 
						
							
								3fb1b6a608 
								
							 
						 
						
							
							
								
								drop oauth2 feature support  
							
							
							
						 
						
							2015-09-17 16:11:44 -04:00  
				
					
						
							
							
								 
						
							
								562e47f31c 
								
							 
						 
						
							
							
								
								finish all new template for current ones  
							
							
							
						 
						
							2015-09-17 15:45:36 -04:00  
				
					
						
							
							
								 
						
							
								9d36fc6986 
								
							 
						 
						
							
							
								
								finish new auth e-mails  
							
							
							
						 
						
							2015-09-17 14:57:24 -04:00  
				
					
						
							
							
								 
						
							
								373731f5e8 
								
							 
						 
						
							
							
								
								user gomail and new activate account email tpl  
							
							... 
							
							
							
							- #1496 : fallback plain text
- #1002 : add date header
- #913 : fix encoding of header 
							
						 
						
							2015-09-17 01:54:12 -04:00  
				
					
						
							
							
								 
						
							
								e75fd2f783 
								
							 
						 
						
							
							
								
								simplify names  
							
							
							
						 
						
							2015-09-16 23:08:46 -04:00  
				
					
						
							
							
								 
						
							
								2729eb998c 
								
							 
						 
						
							
							
								
								#1646  and other minor fixes  
							
							
							
						 
						
							2015-09-16 15:34:46 -04:00  
				
					
						
							
							
								 
						
							
								b003b18788 
								
							 
						 
						
							
							
								
								#1649  Using commas to delineate emails  
							
							
							
						 
						
							2015-09-16 15:04:54 -04:00  
				
					
						
							
							
								 
						
							
								6a1907d994 
								
							 
						 
						
							
							
								
								revert simple LDAP userDN and update example  
							
							
							
						 
						
							2015-09-16 12:15:14 -04:00  
				
					
						
							
							
								 
						
							
								e4ecbcdf4a 
								
							 
						 
						
							
							
								
								new sign in page  
							
							
							
						 
						
							2015-09-14 22:50:44 -04:00  
				
					
						
							
							
								 
						
							
								f5c7f22cc8 
								
							 
						 
						
							
							
								
								#1637  able to skip verify for LDAP  
							
							
							
						 
						
							2015-09-14 15:48:51 -04:00  
				
					
						
							
							
								 
						
							
								2bc3e83e1c 
								
							 
						 
						
							
							
								
								fix simple LDAP userDN  
							
							
							
						 
						
							2015-09-14 12:24:37 -04:00  
				
					
						
							
							
								 
						
							
								2d1bb0cf49 
								
							 
						 
						
							
							
								
								#1633  admin delete user  
							
							
							
						 
						
							2015-09-13 13:26:20 -04:00  
				
					
						
							
							
								 
						
							
								5f1183cecf 
								
							 
						 
						
							
							
								
								#697  add install option  
							
							
							
						 
						
							2015-09-13 12:14:32 -04:00  
				
					
						
							
							
								 
						
							
								98108e379d 
								
							 
						 
						
							
							
								
								#697  update locale and admin panel  
							
							
							
						 
						
							2015-09-13 11:16:29 -04:00  
				
					
						
							
							
								 
						
							
								83e747bfda 
								
							 
						 
						
							
							
								
								#697  and  #1606  and new admin edit user UI  
							
							
							
						 
						
							2015-09-13 11:07:21 -04:00  
				
					
						
							
							
								 
						
							
								e5ed5904c6 
								
							 
						 
						
							
							
								
								#1606  GUI bug while adding ldap user  
							
							
							
						 
						
							2015-09-13 10:05:18 -04:00  
				
					
						
							
							
								 
						
							
								8e0a69f86a 
								
							 
						 
						
							
							
								
								#697  disable captcha and new admin create user UI  
							
							
							
						 
						
							2015-09-13 09:51:51 -04:00  
				
					
						
							
							
								 
						
							
								cd37fccdfb 
								
							 
						 
						
							
							
								
								#1625  remove auto_register and makes it default  
							
							
							
						 
						
							2015-09-12 20:58:51 -04:00  
				
					
						
							
							
								 
						
							
								aff773f1b9 
								
							 
						 
						
							
							
								
								add tidb support  
							
							
							
						 
						
							2015-09-12 15:31:36 -04:00  
				
					
						
							
							
								 
						
							
								be89802bd8 
								
							 
						 
						
							
							
								
								new admin user list UI  
							
							
							
						 
						
							2015-09-11 20:42:26 -04:00  
				
					
						
							
							
								 
						
							
								362d64df04 
								
							 
						 
						
							
							
								
								#1620  add allowed domains for SMTP auth  
							
							
							
						 
						
							2015-09-11 13:32:33 -04:00  
				
					
						
							
							
								 
						
							
								121a81a2c5 
								
							 
						 
						
							
							
								
								finish new edit auth UI  
							
							
							
						 
						
							2015-09-11 12:03:08 -04:00  
				
					
						
							
							
								 
						
							
								0617448282 
								
							 
						 
						
							
							
								
								finish new add auth UI  
							
							
							
						 
						
							2015-09-10 17:11:41 -04:00  
				
					
						
							
							
								 
						
							
								fa728d8dff 
								
							 
						 
						
							
							
								
								more minor fix on 1581  
							
							
							
						 
						
							2015-09-10 15:45:03 -04:00  
				
					
						
							
							
								 
						
							
								26ac016b9f 
								
							 
						 
						
							
							
								
								minor fix on  #1581  
							
							
							
						 
						
							2015-09-10 15:03:14 -04:00  
				
					
						
							
							
								 
						
							
								cbd6276200 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of  https://github.com/SergioBenitez/gogs  into develop  
							
							... 
							
							
							
							# Conflicts:
#	modules/bindata/bindata.go 
							
						 
						
							2015-09-10 14:55:29 -04:00  
				
					
						
							
							
								 
						
							
								52ec80fa18 
								
							 
						 
						
							
							
								
								finish all new user settings UI  
							
							
							
						 
						
							2015-09-10 11:40:34 -04:00  
				
					
						
							
							
								 
						
							
								c8d92fad30 
								
							 
						 
						
							
							
								
								#1595  pushing new branch will rereference issues in previous branch  
							
							
							
						 
						
							2015-09-10 07:53:40 -04:00  
				
					
						
							
							
								 
						
							
								e4d4662074 
								
							 
						 
						
							
							
								
								add regexp to restrict `<code class=""></code>`  
							
							
							
						 
						
							2015-09-10 09:06:09 +08:00  
				
					
						
							
							
								 
						
							
								b954a22ce2 
								
							 
						 
						
							
							
								
								Updated binary data.  
							
							
							
						 
						
							2015-09-09 13:45:38 -07:00  
				
					
						
							
							
								 
						
							
								964d0262ff 
								
							 
						 
						
							
							
								
								Merged conflicts.  
							
							
							
						 
						
							2015-09-09 13:44:51 -07:00  
				
					
						
							
							
								 
						
							
								357c002c03 
								
							 
						 
						
							
							
								
								add allow attribute `class` to `<code>`  
							
							
							
						 
						
							2015-09-09 17:31:14 +08:00  
				
					
						
							
							
								 
						
							
								32c12d553c 
								
							 
						 
						
							
							
								
								Able to use `GOGS_WORK_DIR` environment variable to specify work directory  
							
							
							
						 
						
							2015-09-07 14:06:05 -04:00  
				
					
						
							
							
								 
						
							
								cc83043edc 
								
							 
						 
						
							
							
								
								minor fix on template  
							
							
							
						 
						
							2015-09-07 14:02:09 -04:00  
				
					
						
							
							
								 
						
							
								36405d0faa 
								
							 
						 
						
							
							
								
								Merge pull request  #1596  from denghongcai/develop  
							
							... 
							
							
							
							implemented #1528  
							
						 
						
							2015-09-07 13:10:59 -04:00  
				
					
						
							
							
								 
						
							
								56eb252098 
								
							 
						 
						
							
							
								
								#1593  fix repo name router bug  
							
							
							
						 
						
							2015-09-07 11:51:53 -04:00  
				
					
						
							
							
								 
						
							
								fbb3486c95 
								
							 
						 
						
							
							
								
								fix syntax error  
							
							
							
						 
						
							2015-09-07 18:28:56 +08:00  
				
					
						
							
							
								 
						
							
								7b92dc3d9d 
								
							 
						 
						
							
							
								
								implemented  #1528  
							
							
							
						 
						
							2015-09-07 18:25:15 +08:00  
				
					
						
							
							
								 
						
							
								645d4d0c5b 
								
							 
						 
						
							
							
								
								#1594  Collaborative Repositories missing suburl on Dashboard  
							
							
							
						 
						
							2015-09-07 05:57:19 -04:00  
				
					
						
							
							
								 
						
							
								c38754d432 
								
							 
						 
						
							
							
								
								#1191  allow upload avatar for org  
							
							... 
							
							
							
							Signed-off-by: Unknwon <u@gogs.io> 
							
						 
						
							2015-09-06 17:12:02 -04:00  
				
					
						
							
							
								 
						
							
								85f34ba538 
								
							 
						 
						
							
							
								
								new user profile settings UI  
							
							... 
							
							
							
							Signed-off-by: Unknwon <u@gogs.io> 
							
						 
						
							2015-09-06 16:31:22 -04:00  
				
					
						
							
							
								 
						
							
								edc99bc8a4 
								
							 
						 
						
							
							
								
								new org options UI  
							
							
							
						 
						
							2015-09-06 10:56:31 -04:00  
				
					
						
							
							
								 
						
							
								80701d45bb 
								
							 
						 
						
							
							
								
								#1193  Make organization emails non-mandatory  
							
							
							
						 
						
							2015-09-06 10:08:14 -04:00  
				
					
						
							
							
								 
						
							
								079a2d68db 
								
							 
						 
						
							
							
								
								Minor fixes to the LDAP module readme  
							
							
							
						 
						
							2015-09-05 15:26:31 -07:00  
				
					
						
							
							
								 
						
							
								e885d34aa6 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-09-05 04:55:23 -04:00  
				
					
						
							
							
								 
						
							
								0f07a5cb84 
								
							 
						 
						
							
							
								
								Updated the LDAP auth module README.  
							
							
							
						 
						
							2015-09-04 21:14:20 -07:00  
				
					
						
							
							
								 
						
							
								7cb4aa8d82 
								
							 
						 
						
							
							
								
								Updated binary data.  
							
							
							
						 
						
							2015-09-04 20:52:35 -07:00  
				
					
						
							
							
								 
						
							
								aa9c36514f 
								
							 
						 
						
							
							
								
								Merged conflicts.  
							
							
							
						 
						
							2015-09-04 20:49:07 -07:00  
				
					
						
							
							
								 
						
							
								2d1db4bf05 
								
							 
						 
						
							
							
								
								Added LDAP simple auth support.  
							
							
							
						 
						
							2015-09-04 20:48:34 -07:00  
				
					
						
							
							
								 
						
							
								07fe846c9f 
								
							 
						 
						
							
							
								
								#1579  change e-mail max length to 254  
							
							
							
						 
						
							2015-09-04 10:59:34 -04:00  
				
					
						
							
							
								 
						
							
								d023e81a8f 
								
							 
						 
						
							
							
								
								#1577  explore paginator problem  
							
							
							
						 
						
							2015-09-04 05:54:22 -04:00  
				
					
						
							
							
								 
						
							
								6a5c87afdd 
								
							 
						 
						
							
							
								
								prepare 0.6.9 release  
							
							
							
						 
						
							2015-09-03 17:19:50 -04:00  
				
					
						
							
							
								 
						
							
								38eb000d13 
								
							 
						 
						
							
							
								
								work on  #1570  
							
							
							
						 
						
							2015-09-03 08:09:08 -04:00  
				
					
						
							
							
								 
						
							
								7ec991326d 
								
							 
						 
						
							
							
								
								fix migrate api  
							
							
							
						 
						
							2015-09-03 06:48:52 -04:00  
				
					
						
							
							
								 
						
							
								e5b105e513 
								
							 
						 
						
							
							
								
								fix migrate API  
							
							
							
						 
						
							2015-09-03 06:17:33 -04:00  
				
					
						
							
							
								 
						
							
								83dc2468f5 
								
							 
						 
						
							
							
								
								finish initial version of pull request  
							
							
							
						 
						
							2015-09-02 16:18:09 -04:00  
				
					
						
							
							
								 
						
							
								842770d7fb 
								
							 
						 
						
							
							
								
								add merger info and news feed  
							
							
							
						 
						
							2015-09-02 11:24:55 -04:00  
				
					
						
							
							
								 
						
							
								953bb06857 
								
							 
						 
						
							
							
								
								basic PR feature  
							
							
							
						 
						
							2015-09-02 09:26:56 -04:00  
				
					
						
							
							
								 
						
							
								1abfe4e05f 
								
							 
						 
						
							
							
								
								PR: nothing to commit and has pull request check  
							
							
							
						 
						
							2015-09-02 05:09:12 -04:00  
				
					
						
							
							
								 
						
							
								37e0cee877 
								
							 
						 
						
							
							
								
								finish PR UI  
							
							
							
						 
						
							2015-09-02 04:08:05 -04:00  
				
					
						
							
							
								 
						
							
								65e73c4ac6 
								
							 
						 
						
							
							
								
								support URL param to token, but still restrict to APIs  
							
							
							
						 
						
							2015-09-02 02:45:01 -04:00  
				
					
						
							
							
								 
						
							
								2ac8e11f46 
								
							 
						 
						
							
							
								
								#842  able to use access token replace basic auth  
							
							
							
						 
						
							2015-09-02 02:40:15 -04:00  
				
					
						
							
							
								 
						
							
								ebf1bd4f51 
								
							 
						 
						
							
							
								
								add view pull desc  
							
							
							
						 
						
							2015-09-01 19:26:39 -04:00  
				
					
						
							
							
								 
						
							
								8c046073a8 
								
							 
						 
						
							
							
								
								work on PR conversation  
							
							
							
						 
						
							2015-09-01 19:07:02 -04:00  
				
					
						
							
							
								 
						
							
								398569f6f8 
								
							 
						 
						
							
							
								
								#1021  Forked repo unavailable after deleting original repo  
							
							
							
						 
						
							2015-09-01 11:43:53 -04:00  
				
					
						
							
							
								 
						
							
								8af094967f 
								
							 
						 
						
							
							
								
								#1377  add rename repo action  
							
							
							
						 
						
							2015-09-01 09:29:52 -04:00  
				
					
						
							
							
								 
						
							
								f1adbca0f1 
								
							 
						 
						
							
							
								
								#1554  check adminFilter length before LDAP search  
							
							
							
						 
						
							2015-09-01 08:40:11 -04:00  
				
					
						
							
							
								 
						
							
								90a6553c37 
								
							 
						 
						
							
							
								
								#1009  Config option for preserving hard line breaks  
							
							
							
						 
						
							2015-09-01 08:32:02 -04:00  
				
					
						
							
							
								 
						
							
								7714e792a4 
								
							 
						 
						
							
							
								
								minor fixes on  #1551  
							
							
							
						 
						
							2015-09-01 07:04:35 -04:00  
				
					
						
							
							
								 
						
							
								17c2d1fc7c 
								
							 
						 
						
							
							
								
								fix dashboard 500 when no issues at all  
							
							... 
							
							
							
							- update locales
- update README 
							
						 
						
							2015-09-01 06:31:47 -04:00  
				
					
						
							
							
								 
						
							
								1ca257ad9f 
								
							 
						 
						
							
							
								
								rename fields  
							
							
							
						 
						
							2015-08-31 16:24:28 +09:00  
				
					
						
							
							
								 
						
							
								cb381078ff 
								
							 
						 
						
							
							
								
								finish new repo options page  
							
							
							
						 
						
							2015-08-31 13:36:31 +08:00  
				
					
						
							
							
								 
						
							
								c6b039c6f9 
								
							 
						 
						
							
							
								
								new repo options UI  
							
							
							
						 
						
							2015-08-30 03:21:59 +08:00  
				
					
						
							
							
								 
						
							
								9b9e5f0290 
								
							 
						 
						
							
							
								
								#1545  Cross reference the commit from the issue when it is closed by the commit  
							
							
							
						 
						
							2015-08-30 00:45:56 +08:00  
				
					
						
							
							
								 
						
							
								302938e646 
								
							 
						 
						
							
							
								
								#1333  Disable Gravatar option when install  
							
							
							
						 
						
							2015-08-30 00:22:26 +08:00  
				
					
						
							
							
								 
						
							
								ea454c21f7 
								
							 
						 
						
							
							
								
								#1542  A way to skip TLS verify for SMTP authentication  
							
							
							
						 
						
							2015-08-29 15:45:58 +08:00  
				
					
						
							
							
								 
						
							
								384fbeca80 
								
							 
						 
						
							
							
								
								#1474  logic fix  
							
							
							
						 
						
							2015-08-29 14:44:38 +08:00  
				
					
						
							
							
								 
						
							
								5ddcd8420b 
								
							 
						 
						
							
							
								
								#1474  minor fix  
							
							
							
						 
						
							2015-08-29 12:03:40 +08:00  
				
					
						
							
							
								 
						
							
								55ddf225bb 
								
							 
						 
						
							
							
								
								webhook APIs  
							
							
							
						 
						
							2015-08-29 11:49:59 +08:00  
				
					
						
							
							
								 
						
							
								f509c59ac1 
								
							 
						 
						
							
							
								
								new create webhook event  
							
							
							
						 
						
							2015-08-28 23:36:13 +08:00  
				
					
						
							
							
								 
						
							
								125d314465 
								
							 
						 
						
							
							
								
								more clear error  
							
							
							
						 
						
							2015-08-28 19:28:26 +08:00  
				
					
						
							
							
								 
						
							
								bb3b90fcd6 
								
							 
						 
						
							
							
								
								#1487  Readme Template  
							
							
							
						 
						
							2015-08-28 18:33:09 +08:00  
				
					
						
							
							
								 
						
							
								46bee50e45 
								
							 
						 
						
							
							
								
								complate list of gitignores and licenses  
							
							
							
						 
						
							2015-08-28 16:44:04 +08:00  
				
					
						
							
							
								 
						
							
								4cfa2ca40d 
								
							 
						 
						
							
							
								
								#1474    Edit New issue UpdateGravatarSource() assumes insecure protocol  
							
							
							
						 
						
							2015-08-28 14:35:08 +08:00  
				
					
						
							
							
								 
						
							
								a7686e8749 
								
							 
						 
						
							
							
								
								#1203  bundle jquery with gogs  
							
							
							
						 
						
							2015-08-28 14:24:05 +08:00  
				
					
						
							
							
								 
						
							
								23f42d92c9 
								
							 
						 
						
							
							
								
								add webhook recent deliveries  
							
							
							
						 
						
							2015-08-27 23:06:14 +08:00  
				
					
						
							
							
								 
						
							
								fc2d0e5470 
								
							 
						 
						
							
							
								
								fix locale  
							
							
							
						 
						
							2015-08-27 14:15:31 +08:00  
				
					
						
							
							
								 
						
							
								ce386cfb61 
								
							 
						 
						
							
							
								
								fix suburl  
							
							
							
						 
						
							2015-08-27 14:05:24 +08:00  
				
					
						
							
							
								 
						
							
								c08600c59b 
								
							 
						 
						
							
							
								
								new edit webhook UI  
							
							
							
						 
						
							2015-08-27 01:04:23 +08:00  
				
					
						
							
							
								 
						
							
								4217c2333c 
								
							 
						 
						
							
							
								
								new create webhook UI  
							
							
							
						 
						
							2015-08-27 00:30:06 +08:00  
				
					
						
							
							
								 
						
							
								2881456421 
								
							 
						 
						
							
							
								
								new webhooks list UI  
							
							
							
						 
						
							2015-08-26 21:45:51 +08:00  
				
					
						
							
							
								 
						
							
								1cb03135b7 
								
							 
						 
						
							
							
								
								new repo git hooks UI  
							
							
							
						 
						
							2015-08-26 18:03:30 +08:00  
				
					
						
							
							
								 
						
							
								4330c1f0d8 
								
							 
						 
						
							
							
								
								update locale and org dashboard navbar  
							
							
							
						 
						
							2015-08-26 00:01:06 +08:00  
				
					
						
							
							
								 
						
							
								a329bbc215 
								
							 
						 
						
							
							
								
								new org dashboard issues  
							
							
							
						 
						
							2015-08-25 23:22:05 +08:00  
				
					
						
							
							
								 
						
							
								f808df5a7b 
								
							 
						 
						
							
							
								
								new user dahsboard issues  
							
							
							
						 
						
							2015-08-25 22:58:34 +08:00  
				
					
						
							
							
								 
						
							
								e6917b6be8 
								
							 
						 
						
							
							
								
								Fix missing space in issue emails subject  
							
							
							
						 
						
							2015-08-24 21:05:20 +02:00  
				
					
						
							
							
								 
						
							
								a104248792 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-08-24 22:57:22 +08:00  
				
					
						
							
							
								 
						
							
								aa65761d81 
								
							 
						 
						
							
							
								
								new commits table  
							
							
							
						 
						
							2015-08-20 20:18:49 +08:00  
				
					
						
							
							
								 
						
							
								d7c3c79c00 
								
							 
						 
						
							
							
								
								minor fix on  #1517  
							
							
							
						 
						
							2015-08-20 19:12:55 +08:00  
				
					
						
							
							
								 
						
							
								062adbed8a 
								
							 
						 
						
							
							
								
								add confirmation to delete ssh key  
							
							
							
						 
						
							2015-08-20 17:11:29 +08:00  
				
					
						
							
							
								 
						
							
								9b01a3501b 
								
							 
						 
						
							
							
								
								Merge pull request  #1517  from haoyixin/master  
							
							... 
							
							
							
							Added supported of 'AUTH LOGIN' 
							
						 
						
							2015-08-20 16:32:13 +08:00  
				
					
						
							
							
								 
						
							
								ac616c07de 
								
							 
						 
						
							
							
								
								fix   #966  
							
							
							
						 
						
							2015-08-20 15:57:51 +08:00  
				
					
						
							
							
								 
						
							
								d720c92d99 
								
							 
						 
						
							
							
								
								Added supported of 'AUTH LOGIN'  
							
							... 
							
							
							
							i've been missing a 'r' in previous, lol~ 
							
						 
						
							2015-08-20 13:56:25 +08:00  
				
					
						
							
							
								 
						
							
								78b717f202 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-08-20 04:36:59 +08:00  
				
					
						
							
							
								 
						
							
								6c2536b89c 
								
							 
						 
						
							
							
								
								fix timezone  
							
							
							
						 
						
							2015-08-20 00:32:18 +08:00  
				
					
						
							
							
								 
						
							
								a5b09b30d0 
								
							 
						 
						
							
							
								
								print time to debug  
							
							
							
						 
						
							2015-08-20 00:25:32 +08:00  
				
					
						
							
							
								 
						
							
								390027496c 
								
							 
						 
						
							
							
								
								#1500  use UTC for TimeSince  
							
							
							
						 
						
							2015-08-20 00:16:54 +08:00  
				
					
						
							
							
								 
						
							
								87f5ca8e1f 
								
							 
						 
						
							
							
								
								able edit issue title  
							
							
							
						 
						
							2015-08-19 23:14:57 +08:00  
				
					
						
							
							
								 
						
							
								bd1d7d1509 
								
							 
						 
						
							
							
								
								Able to set SSH port when install, update Docker docs  
							
							
							
						 
						
							2015-08-19 20:36:19 +08:00  
				
					
						
							
							
								 
						
							
								2b393f5b03 
								
							 
						 
						
							
							
								
								Merge pull request  #1507  from cloudron-io/develop  
							
							... 
							
							
							
							Set IsAdmin using LDAP 
							
						 
						
							2015-08-19 18:46:28 +08:00  
				
					
						
							
							
								 
						
							
								a5e1ada474 
								
							 
						 
						
							
							
								
								Merge pull request  #1414  from nice-software/wip/currentUser  
							
							... 
							
							
							
							Factor out function to get the current user 
							
						 
						
							2015-08-19 18:29:04 +08:00  
				
					
						
							
							
								 
						
							
								24d7a86a8d 
								
							 
						 
						
							
							
								
								Set IsAdmin using LDAP  
							
							... 
							
							
							
							The IsAdmin flag is set based on whether the admin filter
returned any result. The admin filter is applied with the user dn
as the search root.
In the future, we should update IsAdmin as well on each login.
Alternately, we can have a periodic sync operation. 
							
						 
						
							2015-08-18 23:49:12 -07:00  
				
					
						
							
							
								 
						
							
								03b85b73af 
								
							 
						 
						
							
							
								
								token recent activity  
							
							
							
						 
						
							2015-08-19 06:22:33 +08:00  
				
					
						
							
							
								 
						
							
								47ac579f09 
								
							 
						 
						
							
							
								
								only assign auto-admin when sign up by web  
							
							
							
						 
						
							2015-08-19 04:58:45 +08:00  
				
					
						
							
							
								 
						
							
								4c7b6414eb 
								
							 
						 
						
							
							
								
								new access token UI  
							
							
							
						 
						
							2015-08-19 03:36:16 +08:00  
				
					
						
							
							
								 
						
							
								6235bd1fe9 
								
							 
						 
						
							
							
								
								work on  #986  and fix a LDAP crash  
							
							
							
						 
						
							2015-08-18 04:03:11 +08:00  
				
					
						
							
							
								 
						
							
								71fd10dd37 
								
							 
						 
						
							
							
								
								change minimum password length to 1  
							
							
							
						 
						
							2015-08-18 02:30:33 +08:00  
				
					
						
							
							
								 
						
							
								b1696665bd 
								
							 
						 
						
							
							
								
								make cron task configurable  
							
							
							
						 
						
							2015-08-18 02:19:29 +08:00  
				
					
						
							
							
								 
						
							
								407385db7e 
								
							 
						 
						
							
							
								
								work on  #1493  
							
							
							
						 
						
							2015-08-17 17:05:37 +08:00  
				
					
						
							
							
								 
						
							
								bb8e763ede 
								
							 
						 
						
							
							
								
								Small style fixes to the LDAP module README  
							
							
							
						 
						
							2015-08-16 17:29:56 -07:00  
				
					
						
							
							
								 
						
							
								55ccb00a47 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of  https://github.com/SergioBenitez/gogs  into develop  
							
							... 
							
							
							
							# Conflicts:
#	modules/bindata/bindata.go 
							
						 
						
							2015-08-16 14:31:54 +08:00  
				
					
						
							
							
								 
						
							
								77ade6855d 
								
							 
						 
						
							
							
								
								fix style and locale name  
							
							
							
						 
						
							2015-08-16 00:05:15 +08:00  
				
					
						
							
							
								 
						
							
								a8a2992758 
								
							 
						 
						
							
							
								
								update locale and TRANSLATOR  
							
							
							
						 
						
							2015-08-15 22:28:06 +08:00  
				
					
						
							
							
								 
						
							
								c8bb475abb 
								
							 
						 
						
							
							
								
								fix autocomplete on migration  
							
							
							
						 
						
							2015-08-15 18:16:39 +08:00  
				
					
						
							
							
								 
						
							
								ce8864c69a 
								
							 
						 
						
							
							
								
								Merge pull request  #1475  from donbowman/master  
							
							... 
							
							
							
							Fix race condition on ssh key delete, and revert re-revert of hard line break 
							
						 
						
							2015-08-15 17:27:20 +08:00  
				
					
						
							
							
								 
						
							
								c7d5e1f182 
								
							 
						 
						
							
							
								
								clean file and update locales  
							
							
							
						 
						
							2015-08-15 16:30:24 +08:00  
				
					
						
							
							
								 
						
							
								0d38794c7f 
								
							 
						 
						
							
							
								
								Factor out function to get the current user  
							
							... 
							
							
							
							The same logic was duplicated in three places. Factor it
out so that we can add further fallbacks in a single place. 
							
						 
						
							2015-08-15 10:05:12 +02:00  
				
					
						
							
							
								 
						
							
								e633425f27 
								
							 
						 
						
							
							
								
								#1180  and  #1250 : migration  
							
							
							
						 
						
							2015-08-15 16:03:20 +08:00  
				
					
						
							
							
								 
						
							
								b35d7eee31 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-08-15 14:14:55 +08:00  
				
					
						
							
							
								 
						
							
								a52324a5f9 
								
							 
						 
						
							
							
								
								able sort issues  
							
							
							
						 
						
							2015-08-15 12:07:08 +08:00  
				
					
						
							
							
								 
						
							
								4ce003dc15 
								
							 
						 
						
							
							
								
								Filter issues by assignee  
							
							
							
						 
						
							2015-08-15 11:24:41 +08:00  
				
					
						
							
							
								 
						
							
								a24141ec9c 
								
							 
						 
						
							
							
								
								more on  #1319  
							
							
							
						 
						
							2015-08-15 02:54:39 +08:00  
				
					
						
							
							
								 
						
							
								cec38f2a8c 
								
							 
						 
						
							
							
								
								able edit issue labels/milestone/assignee  
							
							
							
						 
						
							2015-08-15 00:42:43 +08:00  
				
					
						
							
							
								 
						
							
								817b48ed1e 
								
							 
						 
						
							
							
								
								Show owner/poster tags of comments and  fix   #1312  
							
							
							
						 
						
							2015-08-14 02:43:40 +08:00  
				
					
						
							
							
								 
						
							
								1fb53067f4 
								
							 
						 
						
							
							
								
								finish close/reopen issue  
							
							
							
						 
						
							2015-08-13 23:21:43 +08:00  
				
					
						
							
							
								 
						
							
								133b19d0c5 
								
							 
						 
						
							
							
								
								finish view comments on issue page  
							
							
							
						 
						
							2015-08-13 16:07:11 +08:00  
				
					
						
							
							
								 
						
							
								f8a4ab25fd 
								
							 
						 
						
							
							
								
								Updated the LDAP module readme.  
							
							
							
						 
						
							2015-08-12 17:08:16 -07:00  
				
					
						
							
							
								 
						
							
								7d84d4a8f0 
								
							 
						 
						
							
							
								
								Significantly enhanced LDAP support in Gogs.  
							
							
							
						 
						
							2015-08-12 17:01:22 -07:00  
				
					
						
							
							
								 
						
							
								1cb46ede1a 
								
							 
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/gogits/gogs  
							
							... 
							
							
							
							Conflicts:
	routers/repo/download.go 
							
						 
						
							2015-08-12 21:10:00 +00:00  
				
					
						
							
							
								 
						
							
								9e6bd31d76 
								
							 
						 
						
							
							
								
								fixes for binary  
							
							
							
						 
						
							2015-08-12 21:07:44 +00:00  
				
					
						
							
							
								 
						
							
								ab2d0b3b44 
								
							 
						 
						
							
							
								
								add comment form UI  
							
							
							
						 
						
							2015-08-12 18:44:09 +08:00  
				
					
						
							
							
								 
						
							
								b4c0b7b98b 
								
							 
						 
						
							
							
								
								finish view issue without comments and ops  
							
							
							
						 
						
							2015-08-12 17:04:23 +08:00  
				
					
						
							
							
								 
						
							
								496a65ed29 
								
							 
						 
						
							
							
								
								update locales  
							
							
							
						 
						
							2015-08-12 02:29:47 +08:00  
				
					
						
							
							
								 
						
							
								34f6cbfc2a 
								
							 
						 
						
							
							
								
								finish attachments when create issue  
							
							
							
						 
						
							2015-08-11 23:24:40 +08:00  
				
					
						
							
							
								 
						
							
								89c2bd4a0d 
								
							 
						 
						
							
							
								
								finish create issue attachment UI  
							
							
							
						 
						
							2015-08-11 17:54:00 +08:00  
				
					
						
							
							
								 
						
							
								887bc1b594 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of github.com:gogits/gogs into feature/pull_request2  
							
							... 
							
							
							
							# Conflicts:
#	modules/bindata/bindata.go
#	public/css/gogs.min.css 
							
						 
						
							2015-08-10 23:01:41 +08:00  
				
					
						
							
							
								 
						
							
								2aea247208 
								
							 
						 
						
							
							
								
								minor fix on  #1460  
							
							
							
						 
						
							2015-08-10 22:59:12 +08:00  
				
					
						
							
							
								 
						
							
								2cef9ef5e2 
								
							 
						 
						
							
							
								
								Merge pull request  #1460  from manfer/semantic  
							
							... 
							
							
							
							new top menu 
							
						 
						
							2015-08-10 22:44:37 +08:00  
				
					
						
							
							
								 
						
							
								4cc198179c 
								
							 
						 
						
							
							
								
								new top menu  
							
							
							
						 
						
							2015-08-10 16:38:21 +02:00  
				
					
						
							
							
								 
						
							
								75aff60c90 
								
							 
						 
						
							
							
								
								finish create issue with milestone and assignee  
							
							
							
						 
						
							2015-08-10 21:47:23 +08:00  
				
					
						
							
							
								 
						
							
								09a1b2a1f5 
								
							 
						 
						
							
							
								
								finish create issue with milestone  
							
							
							
						 
						
							2015-08-10 18:57:57 +08:00  
				
					
						
							
							
								 
						
							
								922f3f3062 
								
							 
						 
						
							
							
								
								finish create issue with labels  
							
							
							
						 
						
							2015-08-10 16:52:08 +08:00  
				
					
						
							
							
								 
						
							
								17de3ab0a3 
								
							 
						 
						
							
							
								
								add migrate from issue.label_ids to issue_label  
							
							
							
						 
						
							2015-08-10 14:42:50 +08:00  
				
					
						
							
							
								 
						
							
								8f2a184e04 
								
							 
						 
						
							
							
								
								Merge pull request  #1457  from jqs7/customAvatar  
							
							... 
							
							
							
							add custom avatar source support 
							
						 
						
							2015-08-10 11:36:59 +08:00  
				
					
						
							
							
								 
						
							
								16f74b62b9 
								
							 
						 
						
							
							
								
								custom avatar source  
							
							
							
						 
						
							2015-08-10 09:46:42 +08:00  
				
					
						
							
							
								 
						
							
								48f12d4ead 
								
							 
						 
						
							
							
								
								upgrade new issue to SUI v2  
							
							
							
						 
						
							2015-08-10 01:04:23 +08:00  
				
					
						
							
							
								 
						
							
								a79586cc54 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of github.com:gogits/gogs into feature/pull_request2  
							
							... 
							
							
							
							# Conflicts:
#	modules/bindata/bindata.go
#	public/css/gogs.min.css
#	templates/repo/header.tmpl 
							
						 
						
							2015-08-10 00:37:42 +08:00  
				
					
						
							
							
								 
						
							
								7372042441 
								
							 
						 
						
							
							
								
								list view: issue, label, milestone  
							
							
							
						 
						
							2015-08-09 22:45:38 +08:00  
				
					
						
							
							
								 
						
							
								590c464c56 
								
							 
						 
						
							
							
								
								UI: create issue with title and content  
							
							
							
						 
						
							2015-08-09 15:23:02 +08:00  
				
					
						
							
							
								 
						
							
								68b9d78386 
								
							 
						 
						
							
							
								
								remove sync.Pool and support go1.2 again  
							
							
							
						 
						
							2015-08-09 12:06:08 +08:00  
				
					
						
							
							
								 
						
							
								4b43ffc96c 
								
							 
						 
						
							
							
								
								Generate random avatar based on e-mail when disable Gravatar  
							
							
							
						 
						
							2015-08-09 11:46:10 +08:00  
				
					
						
							
							
								 
						
							
								dea3a8c6a4 
								
							 
						 
						
							
							
								
								WIP: create PR - choose branch  
							
							
							
						 
						
							2015-08-08 22:43:14 +08:00  
				
					
						
							
							
								 
						
							
								9db4acc62e 
								
							 
						 
						
							
							
								
								improve fork process  
							
							
							
						 
						
							2015-08-08 17:10:34 +08:00  
				
					
						
							
							
								 
						
							
								9ba0d8b87a 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-08-06 23:41:29 +08:00  
				
					
						
							
							
								 
						
							
								39a3b768bc 
								
							 
						 
						
							
							
								
								#334 : Add Deployment Key Support  
							
							
							
						 
						
							2015-08-06 22:48:11 +08:00  
				
					
						
							
							
								 
						
							
								9f12ab0e88 
								
							 
						 
						
							
							
								
								update locale  
							
							
							
						 
						
							2015-08-05 21:12:52 +08:00  
				
					
						
							
							
								 
						
							
								77dcef0cab 
								
							 
						 
						
							
							
								
								fix milestone format parse  
							
							
							
						 
						
							2015-08-05 20:37:14 +08:00  
				
					
						
							
							
								 
						
							
								2c507667bf 
								
							 
						 
						
							
							
								
								Merge branch 'develop' of github.com:gogits/gogs into feature/milestone  
							
							... 
							
							
							
							# Conflicts:
#	gogs.go
#	models/issue.go
#	templates/.VERSION 
							
						 
						
							2015-08-05 20:26:00 +08:00  
				
					
						
							
							
								 
						
							
								0705f55ce0 
								
							 
						 
						
							
							
								
								finish new milestone page  
							
							
							
						 
						
							2015-08-05 20:23:08 +08:00  
				
					
						
							
							
								 
						
							
								74bd6b939c 
								
							 
						 
						
							
							
								
								milestone: edit  
							
							
							
						 
						
							2015-08-05 18:26:18 +08:00  
				
					
						
							
							
								 
						
							
								3e4cdccf6b 
								
							 
						 
						
							
							
								
								milestone: create page  
							
							
							
						 
						
							2015-08-05 15:24:26 +08:00  
				
					
						
							
							
								 
						
							
								e50982f5ec 
								
							 
						 
						
							
							
								
								allow anonymous SSH clone  
							
							
							
						 
						
							2015-08-05 11:14:17 +08:00  
				
					
						
							
							
								 
						
							
								487fc8ca39 
								
							 
						 
						
							
							
								
								fix   #1439  
							
							
							
						 
						
							2015-08-05 10:16:21 +08:00  
				
					
						
							
							
								 
						
							
								e6792796cc 
								
							 
						 
						
							
							
								
								minor fix on  #1432  
							
							
							
						 
						
							2015-08-04 09:13:37 +08:00  
				
					
						
							
							
								 
						
							
								96c1ce9606 
								
							 
						 
						
							
							
								
								Merge pull request  #1432  from manfer/enhance-copy-clipboard  
							
							... 
							
							
							
							Enhance copy clipboard 
							
						 
						
							2015-08-04 08:51:06 +08:00  
				
					
						
							
							
								 
						
							
								6a89eeedf3 
								
							 
						 
						
							
							
								
								browser supports copy detection  
							
							
							
						 
						
							2015-08-03 21:27:07 +02:00  
				
					
						
							
							
								 
						
							
								04458d49a0 
								
							 
						 
						
							
							
								
								milestone: list view  
							
							
							
						 
						
							2015-08-03 17:42:09 +08:00  
				
					
						
							
							
								 
						
							
								cbb78b6a63 
								
							 
						 
						
							
							
								
								better wording  
							
							
							
						 
						
							2015-08-02 12:37:29 +08:00  
				
					
						
							
							
								 
						
							
								d496d0cc4d 
								
							 
						 
						
							
							
								
								replace path.Join  
							
							
							
						 
						
							2015-08-02 11:52:48 +08:00  
				
					
						
							
							
								 
						
							
								1490e862cc 
								
							 
						 
						
							
							
								
								custom workDir function to handle speical case in Windows  
							
							
							
						 
						
							2015-08-02 11:41:28 +08:00  
				
					
						
							
							
								 
						
							
								03011e31fe 
								
							 
						 
						
							
							
								
								update locale and .gopmfile  
							
							
							
						 
						
							2015-08-01 15:57:03 +08:00  
				
					
						
							
							
								 
						
							
								c5be40decb 
								
							 
						 
						
							
							
								
								new markdown styles  
							
							
							
						 
						
							2015-08-01 02:26:14 +02:00  
				
					
						
							
							
								 
						
							
								b983912fce 
								
							 
						 
						
							
							
								
								add italian support  
							
							
							
						 
						
							2015-07-31 12:19:40 +08:00  
				
					
						
							
							
								 
						
							
								c541938a3d 
								
							 
						 
						
							
							
								
								update locale and prepare for 0.6.3 release  
							
							
							
						 
						
							2015-07-30 22:14:06 +08:00  
				
					
						
							
							
								 
						
							
								2cc050e21e 
								
							 
						 
						
							
							
								
								Fix UTF-8 in upper-case, use ansi charset for all non UTF-8 encodings  
							
							
							
						 
						
							2015-07-29 17:58:03 +03:00  
				
					
						
							
							
								 
						
							
								72377c721c 
								
							 
						 
						
							
							
								
								update gopmfile  
							
							
							
						 
						
							2015-07-28 22:36:41 +08:00