9ed60d96a9 
								
							
								 
							
						 
						
							
							
								
								fix API  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								b6d2b96259 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #2076  from Gibheer/new_mirror  
							
							... 
							
							
 
							
							add new mirror button to dashboard 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								e5fe367b82 
								
							
								 
							
						 
						
							
							
								
								scripts: Remove less.sh superseded by Makefile  
							
							... 
							
							
 
							
							We no longer need to manually build CSS files as Makefile keeps track of it. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								19e8ce0354 
								
							
								 
							
						 
						
							
							
								
								Makefile: Remove trailing whitespace & add last LF  
							
							... 
							
							
 
							
							This is pure cleanup commit. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								f907a5c98b 
								
							
								 
							
						 
						
							
							
								
								Makefile: Auto-build CSS & bin-data when necessary  
							
							... 
							
							
 
							
							This will ensure that running `make` we will get all necessary files built and
we do not need manually remember to rebuild them. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								da607c611d 
								
							
								 
							
						 
						
							
							
								
								Makefile: Copy installed binary instead 2nd build  
							
							... 
							
							
 
							
							This speeds up single build/rebuild rather than install & build which compiles
everything twice, we just copy installed binary back to the project root. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								3d54f6c0a4 
								
							
								 
							
						 
						
							
							
								
								add new mirror button to dashboard  
							
							... 
							
							
 
							
							This adds the button to create a new mirror on the dashboard at the same
place where "new repository" and "new organization" already exist. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								2093586241 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #2016  from raxetul/develop  
							
							... 
							
							
 
							
							Dockerfile for RaspberryPi is added. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								117afe7620 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #2069  from nanoant/patch/admin-see-all-organizations  
							
							... 
							
							
 
							
							Admin should be able to see all organizations 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								d3a5ff7b6b 
								
							
								 
							
						 
						
							
							
								
								fix   #2042  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								dcb391d341 
								
							
								 
							
						 
						
							
							
								
								Merge branch 'feature/wiki' into develop  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								830d000667 
								
							
								 
							
						 
						
							
							
								
								finish wiki  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								5a14c3cf98 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #2053  from kakwa/develop  
							
							... 
							
							
 
							
							various fixes in gogs dump command 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								e57b2dffa4 
								
							
								 
							
						 
						
							
							
								
								Admin should be able to see all organizations  
							
							... 
							
							
 
							
							This is follow-up for 56c66ee486 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								ca96e04e5f 
								
							
								 
							
						 
						
							
							
								
								#1681  carry --config flag for builtin SSH  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								9950f5a5bd 
								
							
								 
							
						 
						
							
							
								
								add line break after SSH error message  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								1d7a1b6034 
								
							
								 
							
						 
						
							
							
								
								add name of the dump file in last log message  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								a59b1fcc21 
								
							
								 
							
						 
						
							
							
								
								Fix dump of log and custom directory in dump cmd  
							
							... 
							
							
 
							
							Now, the dump cmd uses setting.CustomPath and setting.LogRootPath
instead of setting.WorkDir which was kind of broken if the gogs
binary was in a different directory than gogs data.
Additionally, the backup of setting.CustomPath directory is only done
if it exists. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								c5a9be9115 
								
							
								 
							
						 
						
							
							
								
								Using a tmp dir to generate db and repo dumps  
							
							... 
							
							
 
							
							Using a tmp dir makes gogs dump more robust to concurrent runs.
It also permits an easier cleaning of the tmp files (gogs-db.sql and
gog-repo.zip) by just removing the tmp dir.
As a side effect, it partially fix bugs on workdir.
Previously, 'gogs dump' created the archives in the current directory,
and tried to include these archives from the directory where the
gogs binary lies.
ex: if gogs binary is in /usr/bin/gogs, and gogs dump is run from /tmp/,
/tmp/gog-repo.zip is created, but gogs dump tried to include
/usr/bin/gogs-repo.zip. 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								f86afb04a2 
								
							
								 
							
						 
						
							
							
								
								Adding more error handling in dump cmd  
							
							... 
							
							
 
							
							The dump cmd did not check the return value of the z.AddFile or
z.AddDir when building the final archive.
It caused the dump command to succeed even if an error occurred.
The resulted dump archive could be corrupted/empty.
(errors could be various: removal by a concurrent process, disk full,
bugs in the dump cmd itself) 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								5d1f5f32d0 
								
							
								 
							
						 
						
							
							
								
								wiki: finish pages  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								e42fcb033d 
								
							
								 
							
						 
						
							
							
								
								wiki: finish edit  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								392f3ee210 
								
							
								 
							
						 
						
							
							
								
								wiki: finish new  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								c50a3503e6 
								
							
								 
							
						 
						
							
							
								
								introduce git-shell  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								aaa3f1b2b9 
								
							
								 
							
						 
						
							
							
								
								Use better LDAP lib and should  fix   #1139  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								2b10fdc4dc 
								
							
								 
							
						 
						
							
							
								
								Wiki: UI for page new  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								2f28a0310b 
								
							
								 
							
						 
						
							
							
								
								Merge branch '0.8.0' of github.com:gogits/gogs into develop  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								253513cedd 
								
							
								 
							
						 
						
							
							
								
								prepare for release  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								eb30cbab81 
								
							
								 
							
						 
						
							
							
								
								add unsupported migration prompt  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								144663a3cf 
								
							
								 
							
						 
						
							
							
								
								allow admin to migrate for any user/org  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								ba92f4687e 
								
							
								 
							
						 
						
							
							
								
								minor fix markdown post process  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								968edb3e44 
								
							
								 
							
						 
						
							
							
								
								more link fix  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								3ca544912f 
								
							
								 
							
						 
						
							
							
								
								#1944  Drop /org/ URL path prefix in organization home page  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								7f9598141b 
								
							
								 
							
						 
						
							
							
								
								fix   #2020  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								56c66ee486 
								
							
								 
							
						 
						
							
							
								
								#2008  more supported git hooks  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								21ad4bf0fe 
								
							
								 
							
						 
						
							
							
								
								print error log to client side when dev mode  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								0128036514 
								
							
								 
							
						 
						
							
							
								
								#1681  some fixes for builtin SSH server on Windows  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								ec8d41765d 
								
							
								 
							
						 
						
							
							
								
								some fix to  #2026  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								ffbeda077c 
								
							
								 
							
						 
						
							
							
								
								Merge pull request  #2024  from andreynering/dropzone-allow-all-files  
							
							... 
							
							
 
							
							Fixing Dropzone should accept all files when config is "*/*". 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								880849a283 
								
							
								 
							
						 
						
							
							
								
								Fixing Dropzone should accept all files when config is "*/*".  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								b2fb7e3fd2 
								
							
								 
							
						 
						
							
							
								
								more HTTP clone word fix  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								737da1a374 
								
							
								 
							
						 
						
							
							
								
								Latest develop updates is merged with my RaspberryPi Dockerfile version.  
							
							... 
							
							
 
							
							Merge branch 'develop' of https://github.com/gogits/gogs  into develop 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								f63a468dfc 
								
							
								 
							
						 
						
							
							
								
								Dockerfile for RaspberryPi is added.  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								efaf60ba5a 
								
							
								 
							
						 
						
							
							
								
								fix   #2013  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								e6b2a01e5d 
								
							
								 
							
						 
						
							
							
								
								minor JS fix  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								52c8f69163 
								
							
								 
							
						 
						
							
							
								
								fix   #650  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								b80e848d02 
								
							
								 
							
						 
						
							
							
								
								upgrade libs  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								f12832c61e 
								
							
								 
							
						 
						
							
							
								
								fix possible panic  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								dcc740fd26 
								
							
								 
							
						 
						
							
							
								
								fix incorrect  
							
							
 
							
						 
						
							10 years ago  
				
					
						
							
							
								 
						
							
							
								8966750fd4 
								
							
								 
							
						 
						
							
							
								
								add some log  
							
							
 
							
						 
						
							10 years ago