]>
source.dussan.org Git - gitblit.git/log
Florian Zschocke [Wed, 21 Aug 2013 08:39:43 +0000 (10:39 +0200)]
Fix set-gid bit clearing under Linux when effective gid is different from file gid.
Florian Zschocke [Tue, 20 Aug 2013 19:20:17 +0000 (21:20 +0200)]
Fix setting wrrong custom mode on file and in config.
Florian Zschocke [Tue, 20 Aug 2013 17:59:54 +0000 (19:59 +0200)]
Remove unsupported option '-O' from 'ls' command.
Florian Zschocke [Tue, 20 Aug 2013 18:02:51 +0000 (20:02 +0200)]
Add commons-io to explicit dependencies.
Add the commons-io library explicitly to the depencencies.
It was already present as a transitive dependency but is now used in code.
Using the version 2.2 as that got so far already packaged in ext.
Florian Zschocke [Tue, 20 Aug 2013 17:42:17 +0000 (19:42 +0200)]
Adjust unit tests for Windows.
Florian Zschocke [Tue, 20 Aug 2013 12:32:23 +0000 (14:32 +0200)]
Add JavaDoc.
Florian Zschocke [Tue, 20 Aug 2013 11:41:20 +0000 (13:41 +0200)]
Add new property git.createRepositoriesShared.
Florian Zschocke [Tue, 20 Aug 2013 08:58:51 +0000 (10:58 +0200)]
Implement adjusting file permissions for shared repositories.
Implement adjusting file and directory permissions for shared
repositories in JGitUtils.
Florian Zschocke [Sat, 17 Aug 2013 16:37:41 +0000 (18:37 +0200)]
Add proper implementation of methods in JnaUtils.
Implement the methods getFilemode and setFilemode
in JnaUtils. Not using the libc names as we don't
necessarily use JNA and because it is not necessarily
a one to one mapping.
Florian Zschocke [Thu, 15 Aug 2013 14:03:25 +0000 (16:03 +0200)]
Add method JGitUtils.createRepository(folder, name, shared) to create a new
repository as if it was created with the --shared command line switch of git.
James Moger [Thu, 22 Aug 2013 16:55:18 +0000 (12:55 -0400)]
Prepare 1.3.2 release
James Moger [Wed, 21 Aug 2013 18:16:51 +0000 (14:16 -0400)]
Documentation
James Moger [Wed, 21 Aug 2013 18:00:36 +0000 (11:00 -0700)]
Merge pull request #115 from fzs/fu-close-finally
Close streams in finally block.
James Moger [Wed, 21 Aug 2013 17:35:46 +0000 (10:35 -0700)]
Merge pull request #114 from fzs/description
Maintain repository 'description' file.
Florian Zschocke [Wed, 21 Aug 2013 13:07:31 +0000 (15:07 +0200)]
Close streams in finally block.
Close input and output streams in a finally block so that they do not linger around and occupy system resources when an exception occurs.
Florian Zschocke [Wed, 21 Aug 2013 12:30:01 +0000 (14:30 +0200)]
Maintain repository 'description' file.
Make use of the 'description' file in Git repositories which is used by tools
like gitweb or cgit and often by standard hooks. Update the file when changing
the description and initialize the Gitblit description from the file when
Gitblit reads a new, existing repository.
James Moger [Fri, 16 Aug 2013 13:35:41 +0000 (09:35 -0400)]
Simplify when repository sizes are calculated (issue-295)
James Moger [Fri, 16 Aug 2013 13:17:23 +0000 (09:17 -0400)]
If we have a cache-miss in repository loading, return a deep copy
James Moger [Fri, 16 Aug 2013 12:57:05 +0000 (08:57 -0400)]
Fixed anonymous LDAP logins (issue-297)
Florian Zschocke [Tue, 9 Jul 2013 11:07:13 +0000 (13:07 +0200)]
Add an Apache htpasswd user service
Add a new class, HtpasswdUserService, which performs authentication
against a text file created with the Apache 'htpasswd' program.
Added dependency on commons-codec:1.7
James Moger [Mon, 12 Aug 2013 12:44:33 +0000 (05:44 -0700)]
Merge pull request #111 from atdt/master
Add setting to cap number of activity days to display
Ori Livneh [Sun, 11 Aug 2013 02:05:10 +0000 (10:05 +0800)]
Add setting to cap number of activity days to display
This patch adds a setting, 'web.activityDurationMaximum', that specifies the
maximum number of days of activity that may be requested. The default value is
30. When the number of days requested exceeds this value, the request is
handled as though the maximum value was requested.
James Moger [Fri, 9 Aug 2013 14:16:16 +0000 (10:16 -0400)]
Update to Moxie 0.8.1 and include gbapi in Maven repository on RELEASE build
James Moger [Fri, 9 Aug 2013 12:09:02 +0000 (08:09 -0400)]
Documentation
James Moger [Fri, 9 Aug 2013 12:05:59 +0000 (05:05 -0700)]
Merge pull request #110 from DouglasCAyers/patch-1
MyDashboard page bugfix for project links
Doug Ayers [Fri, 9 Aug 2013 03:52:26 +0000 (22:52 -0500)]
bugfix to make project links go to project page and not redirect to home page
Problem:
In version 1.3.1, on the MyDashboard page, in the "projects" tab, the project name html links listed in the section are formatted wrong; they are missing the ?p= parameter. Clicking on those links redirects back to the home page (MyDashboard).
What did I expect:
To be taken to the repositories page for the project I clicked.
What code needs to change:
FilterableProjectList.fm at line 9, needs to add the ?p= url parameter.
I'm basing this on how the WicketUtils.getProjectName(PageParameters params) method works at line 457 and logic in ProjectPage.java at lines 95-98.
Although explicitly changing the url to include the query param 'p' is a simple fix, based on what I read about in GitblitParamUrlCodingStrategy and its parent class MixedParamUrlCodingStrategy, it would seem that the url path "/project/foo" should end up adding a request parameter "p=foo" as setup in GitBligWebApp line 141: mount("/project", ProjectPage.class, "p"); However, I'm not familiar with Wicket and don't have Gitblit setup locally to build and run, so not able to debug further.
James Moger [Wed, 7 Aug 2013 18:58:49 +0000 (14:58 -0400)]
Update to Moxie 0.8.0
James Moger [Wed, 31 Jul 2013 20:05:58 +0000 (16:05 -0400)]
Documentation
James Moger [Wed, 31 Jul 2013 19:55:28 +0000 (15:55 -0400)]
Improvements to reflog branch deletion
James Moger [Wed, 31 Jul 2013 19:53:11 +0000 (15:53 -0400)]
Manually redirect after branch deletion (issue 282)
guriguri [Wed, 31 Jul 2013 15:20:49 +0000 (00:20 +0900)]
apply PageParameters(final Map<String, ?> parameterMap), encode filename of Content-Disposition
James Moger [Thu, 25 Jul 2013 20:53:18 +0000 (16:53 -0400)]
Removed obsolete/legacy code from build script
James Moger [Thu, 25 Jul 2013 21:45:51 +0000 (17:45 -0400)]
Added maintaining a Maven repository to the build release process
James Moger [Thu, 25 Jul 2013 21:27:36 +0000 (17:27 -0400)]
Fixed Gitblit Authority failing to load realm.NNN.backingUserService (issue-280)
James Moger [Wed, 24 Jul 2013 19:03:10 +0000 (15:03 -0400)]
Prepare 1.3.1 release
James Moger [Wed, 24 Jul 2013 19:03:10 +0000 (15:03 -0400)]
Reset build identifiers for next development cycle
James Moger [Wed, 24 Jul 2013 18:37:16 +0000 (14:37 -0400)]
Documentation
James Moger [Wed, 24 Jul 2013 18:35:36 +0000 (11:35 -0700)]
Merge pull request #106 from gustavohenrique/master
Fix Ant run target by copying resources to output directory
Gustavo Henrique [Wed, 24 Jul 2013 18:18:01 +0000 (15:18 -0300)]
Copy static files to classes dir.
James Moger [Wed, 24 Jul 2013 15:50:50 +0000 (11:50 -0400)]
Documentation
James Moger [Wed, 24 Jul 2013 15:23:39 +0000 (11:23 -0400)]
Documentation
James Moger [Wed, 24 Jul 2013 15:23:27 +0000 (11:23 -0400)]
Added missing GitblitWicketFilter to War and Express builds (issue-274)
James Moger [Wed, 24 Jul 2013 14:42:11 +0000 (10:42 -0400)]
Automatically decode %7E in repository names to ~ (issue-278)
James Moger [Wed, 24 Jul 2013 00:40:33 +0000 (17:40 -0700)]
Merge pull request #105 from rafaelcavazin/master
some few grammar adjustments in pt-br
Rafael Cavazin [Tue, 23 Jul 2013 23:56:36 +0000 (20:56 -0300)]
Merge branch 'update-lang-ptbr-
20130723 '
Rafael Cavazin [Tue, 23 Jul 2013 23:55:53 +0000 (20:55 -0300)]
Some few lang adjustments - Alguns ajustes de gramática
James Moger [Tue, 23 Jul 2013 22:04:30 +0000 (18:04 -0400)]
Documentation
James Moger [Tue, 23 Jul 2013 21:48:37 +0000 (17:48 -0400)]
Added PAMUserService for local Linux/Unix/MacOSX account authentication
James Moger [Tue, 23 Jul 2013 21:39:33 +0000 (17:39 -0400)]
Catch IOException which includes SocketException in DownloadZipServlet
James Moger [Mon, 22 Jul 2013 19:57:36 +0000 (15:57 -0400)]
Update Gitblit reflog on branch delete from UI if Gitblit has an existing reflog
James Moger [Mon, 22 Jul 2013 13:38:55 +0000 (09:38 -0400)]
Added GET_USER request to RPC interface (issue-275)
James Moger [Mon, 22 Jul 2013 12:44:01 +0000 (08:44 -0400)]
Ubuntu/Debian and CentOS/Fedora service tweaks per forum feedback
James Moger [Mon, 22 Jul 2013 12:26:22 +0000 (08:26 -0400)]
Documentation
James Moger [Mon, 22 Jul 2013 12:25:46 +0000 (08:25 -0400)]
Fixed incorrecter tagger in dashboard pages (issue-276)
James Moger [Mon, 22 Jul 2013 12:02:52 +0000 (05:02 -0700)]
Merge pull request #104 from rafaelcavazin/master
Update Brazilian Portuguese translation
James Moger [Mon, 22 Jul 2013 11:53:58 +0000 (04:53 -0700)]
Merge pull request #103 from ljader/fix-polish-locale-for-1.3.1
Updated Polish translation for 1.3.1
Rafael Cavazin [Sun, 21 Jul 2013 15:12:11 +0000 (12:12 -0300)]
Translation of lastest Strings up-do-date.
Tradução das últimas Strings até a data atual.
Rafael Cavazin [Sun, 21 Jul 2013 13:59:00 +0000 (10:59 -0300)]
Merge branch 'master' of https://github.com/gitblit/gitblit
Lukasz Jader [Sun, 21 Jul 2013 12:59:46 +0000 (14:59 +0200)]
Updated Polish translation for 1.3.1
James Moger [Sat, 20 Jul 2013 22:49:15 +0000 (15:49 -0700)]
Merge pull request #102 from Mrbytes/master
Updated Spanish translation
mrbytes [Fri, 19 Jul 2013 20:04:58 +0000 (22:04 +0200)]
GitBlitWebApp_es.properties:
- Best translation in three phrases.
James Moger [Fri, 19 Jul 2013 19:19:12 +0000 (12:19 -0700)]
Merge pull request #101 from svogt/fix-message-properties
Add missing equals sign in GitBlitWebApp.properties
Sascha Vogt [Fri, 19 Jul 2013 19:17:28 +0000 (21:17 +0200)]
Add missing equals sign in GitBlitWebApp.properties
James Moger [Fri, 19 Jul 2013 15:13:41 +0000 (11:13 -0400)]
Fixed missing clone url on the empty repository page
James Moger [Fri, 19 Jul 2013 14:46:16 +0000 (10:46 -0400)]
Implemented optional page caching
James Moger [Fri, 19 Jul 2013 14:49:34 +0000 (07:49 -0700)]
Merge pull request #100 from ds5apn/master
Update Korean Translation
James Moger [Fri, 19 Jul 2013 14:49:05 +0000 (07:49 -0700)]
Merge pull request #99 from Mrbytes/master
Updated Spanish translation
James Moger [Fri, 19 Jul 2013 14:47:56 +0000 (07:47 -0700)]
Merge pull request #98 from simonharrer/close-resources-correctly
Fixes findbugs warning - dereferencing null in exception case
Dongsu, KIM [Fri, 19 Jul 2013 09:39:08 +0000 (18:39 +0900)]
Update Korean Translation
mrbytes [Fri, 19 Jul 2013 07:25:05 +0000 (09:25 +0200)]
Merge branch 'master' of https://github.com/gitblit/gitblit
mrbytes [Fri, 19 Jul 2013 07:17:41 +0000 (09:17 +0200)]
Spanish translation:
- Improved translation
- Translated to the rev. 1.3.1
Signed-off-by: mrbytes <eguervos@msn.com>
Simon Harrer [Thu, 18 Jul 2013 14:11:04 +0000 (16:11 +0200)]
Fixes findbugs warning - dereferencing null in exception case
Jeroen Baten [Wed, 17 Jul 2013 19:23:06 +0000 (15:23 -0400)]
Updated Dutch translation
James Moger [Wed, 17 Jul 2013 16:23:38 +0000 (12:23 -0400)]
Documentation
James Moger [Wed, 17 Jul 2013 16:22:41 +0000 (12:22 -0400)]
Prepare Dutch resource for translation
James Moger [Wed, 17 Jul 2013 14:07:18 +0000 (10:07 -0400)]
Fixed bug with adding new local users with external authentication
James Moger [Wed, 17 Jul 2013 13:45:35 +0000 (09:45 -0400)]
Added unit test for reported issue (issue-271)
James Moger [Wed, 17 Jul 2013 13:07:28 +0000 (09:07 -0400)]
Documentation
James Moger [Wed, 17 Jul 2013 12:16:38 +0000 (08:16 -0400)]
Ensure Keys class is included with all builds
James Moger [Wed, 17 Jul 2013 12:20:29 +0000 (05:20 -0700)]
Merge pull request #94 from yin8086/Chinese
Update Chinese translate @ version 1.30
Stardrad Yin [Wed, 17 Jul 2013 12:07:32 +0000 (20:07 +0800)]
Update Chinese translate @ version 1.30
James Moger [Tue, 16 Jul 2013 13:35:31 +0000 (09:35 -0400)]
Reset dashboard and activity commit cache on branch REWIND or DELETE
James Moger [Tue, 16 Jul 2013 12:00:26 +0000 (08:00 -0400)]
Fix for IE10 compatibilty mode
James Moger [Mon, 15 Jul 2013 18:51:44 +0000 (14:51 -0400)]
Fixed spacing of ref span in digest and reflog panels
James Moger [Mon, 15 Jul 2013 18:47:24 +0000 (14:47 -0400)]
Fixed missing model classes in Gitblit Manager build
James Moger [Mon, 15 Jul 2013 12:09:20 +0000 (08:09 -0400)]
Fixed url panel failure when there are no repository urls (issue 269)
James Moger [Sun, 14 Jul 2013 16:44:35 +0000 (12:44 -0400)]
Fixed GoogleCode upload target until they turn off downloads :(
James Moger [Sun, 14 Jul 2013 16:13:42 +0000 (12:13 -0400)]
Ignore .ps1 and .sh files in root directory
James Moger [Sun, 14 Jul 2013 16:05:19 +0000 (12:05 -0400)]
Reset build identifiers for next development cycle
James Moger [Sun, 14 Jul 2013 16:05:18 +0000 (12:05 -0400)]
Prepare 1.3.0 release
James Moger [Sun, 14 Jul 2013 16:04:52 +0000 (12:04 -0400)]
Added release script template and build.xml adjustments
James Moger [Sun, 14 Jul 2013 15:25:09 +0000 (11:25 -0400)]
Documentation
James Moger [Sat, 13 Jul 2013 23:58:51 +0000 (19:58 -0400)]
Fixed an incorrect candidate submodule name (issue-266)
James Moger [Sat, 13 Jul 2013 17:10:04 +0000 (13:10 -0400)]
Adjust unit test to confirm null permission fix (issue-259)
James Moger [Sat, 13 Jul 2013 16:19:02 +0000 (12:19 -0400)]
Setting a null permission now removes the permission from the user or team (issue-259)
James Moger [Sat, 13 Jul 2013 15:35:40 +0000 (11:35 -0400)]
Documentation
James Moger [Sat, 13 Jul 2013 15:24:47 +0000 (11:24 -0400)]
Show diff by default on compare page
James Moger [Sat, 13 Jul 2013 15:05:02 +0000 (11:05 -0400)]
Fixed possible NPE in forks page if user account no longer exists
James Moger [Sat, 13 Jul 2013 15:04:33 +0000 (11:04 -0400)]
Persist fork origin on first run after upgrade
James Moger [Sat, 13 Jul 2013 14:38:15 +0000 (10:38 -0400)]
Stop Checkstyle from complaining