]> source.dussan.org Git - gitblit.git/log
gitblit.git
11 years agoDocumentation
James Moger [Wed, 21 Aug 2013 18:16:51 +0000 (14:16 -0400)]
Documentation

11 years agoMerge pull request #115 from fzs/fu-close-finally
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.

11 years agoMerge pull request #114 from fzs/description
James Moger [Wed, 21 Aug 2013 17:35:46 +0000 (10:35 -0700)]
Merge pull request #114 from fzs/description

Maintain repository 'description' file.

11 years agoClose streams in finally block. 115/head
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.

11 years agoMaintain repository 'description' file. 114/head
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.

11 years agoSimplify when repository sizes are calculated (issue-295)
James Moger [Fri, 16 Aug 2013 13:35:41 +0000 (09:35 -0400)]
Simplify when repository sizes are calculated (issue-295)

11 years agoIf we have a cache-miss in repository loading, return a deep copy
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

11 years agoFixed anonymous LDAP logins (issue-297)
James Moger [Fri, 16 Aug 2013 12:57:05 +0000 (08:57 -0400)]
Fixed anonymous LDAP logins (issue-297)

11 years agoAdd an Apache htpasswd user service
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

11 years agoMerge pull request #111 from atdt/master
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

11 years agoAdd setting to cap number of activity days to display 111/head
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.

11 years agoUpdate to Moxie 0.8.1 and include gbapi in Maven repository on RELEASE build
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

11 years agoDocumentation
James Moger [Fri, 9 Aug 2013 12:09:02 +0000 (08:09 -0400)]
Documentation

11 years agoMerge pull request #110 from DouglasCAyers/patch-1
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

11 years agobugfix to make project links go to project page and not redirect to home page 110/head
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.

11 years agoUpdate to Moxie 0.8.0
James Moger [Wed, 7 Aug 2013 18:58:49 +0000 (14:58 -0400)]
Update to Moxie 0.8.0

11 years agoDocumentation
James Moger [Wed, 31 Jul 2013 20:05:58 +0000 (16:05 -0400)]
Documentation

11 years agoImprovements to reflog branch deletion
James Moger [Wed, 31 Jul 2013 19:55:28 +0000 (15:55 -0400)]
Improvements to reflog branch deletion

11 years agoManually redirect after branch deletion (issue 282)
James Moger [Wed, 31 Jul 2013 19:53:11 +0000 (15:53 -0400)]
Manually redirect after branch deletion (issue 282)

11 years agoapply PageParameters(final Map<String, ?> parameterMap), encode filename of Content... 108/head
guriguri [Wed, 31 Jul 2013 15:20:49 +0000 (00:20 +0900)]
apply PageParameters(final Map<String, ?> parameterMap), encode filename of Content-Disposition

11 years agoRemoved obsolete/legacy code from build script
James Moger [Thu, 25 Jul 2013 20:53:18 +0000 (16:53 -0400)]
Removed obsolete/legacy code from build script

11 years agoAdded maintaining a Maven repository to the build release process
James Moger [Thu, 25 Jul 2013 21:45:51 +0000 (17:45 -0400)]
Added maintaining a Maven repository to the build release process

11 years agoFixed Gitblit Authority failing to load realm.NNN.backingUserService (issue-280)
James Moger [Thu, 25 Jul 2013 21:27:36 +0000 (17:27 -0400)]
Fixed Gitblit Authority failing to load realm.NNN.backingUserService (issue-280)

11 years agoPrepare 1.3.1 release v1.3.1
James Moger [Wed, 24 Jul 2013 19:03:10 +0000 (15:03 -0400)]
Prepare 1.3.1 release

11 years agoReset build identifiers for next development cycle
James Moger [Wed, 24 Jul 2013 19:03:10 +0000 (15:03 -0400)]
Reset build identifiers for next development cycle

11 years agoDocumentation
James Moger [Wed, 24 Jul 2013 18:37:16 +0000 (14:37 -0400)]
Documentation

11 years agoMerge pull request #106 from gustavohenrique/master
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

11 years agoCopy static files to classes dir. 106/head
Gustavo Henrique [Wed, 24 Jul 2013 18:18:01 +0000 (15:18 -0300)]
Copy static files to classes dir.

11 years agoDocumentation
James Moger [Wed, 24 Jul 2013 15:50:50 +0000 (11:50 -0400)]
Documentation

11 years agoDocumentation
James Moger [Wed, 24 Jul 2013 15:23:39 +0000 (11:23 -0400)]
Documentation

11 years agoAdded missing GitblitWicketFilter to War and Express builds (issue-274)
James Moger [Wed, 24 Jul 2013 15:23:27 +0000 (11:23 -0400)]
Added missing GitblitWicketFilter to War and Express builds (issue-274)

11 years agoAutomatically decode %7E in repository names to ~ (issue-278)
James Moger [Wed, 24 Jul 2013 14:42:11 +0000 (10:42 -0400)]
Automatically decode %7E in repository names to ~ (issue-278)

11 years agoMerge pull request #105 from rafaelcavazin/master
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

11 years agoMerge branch 'update-lang-ptbr-20130723' 105/head
Rafael Cavazin [Tue, 23 Jul 2013 23:56:36 +0000 (20:56 -0300)]
Merge branch 'update-lang-ptbr-20130723'

11 years agoSome few lang adjustments - Alguns ajustes de gramática
Rafael Cavazin [Tue, 23 Jul 2013 23:55:53 +0000 (20:55 -0300)]
Some few lang adjustments - Alguns ajustes de gramática

11 years agoDocumentation
James Moger [Tue, 23 Jul 2013 22:04:30 +0000 (18:04 -0400)]
Documentation

11 years agoAdded PAMUserService for local Linux/Unix/MacOSX account authentication
James Moger [Tue, 23 Jul 2013 21:48:37 +0000 (17:48 -0400)]
Added PAMUserService for local Linux/Unix/MacOSX account authentication

11 years agoCatch IOException which includes SocketException in DownloadZipServlet
James Moger [Tue, 23 Jul 2013 21:39:33 +0000 (17:39 -0400)]
Catch IOException which includes SocketException in DownloadZipServlet

11 years agoUpdate Gitblit reflog on branch delete from UI if Gitblit has an existing reflog
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

11 years agoAdded GET_USER request to RPC interface (issue-275)
James Moger [Mon, 22 Jul 2013 13:38:55 +0000 (09:38 -0400)]
Added GET_USER request to RPC interface (issue-275)

11 years agoUbuntu/Debian and CentOS/Fedora service tweaks per forum feedback
James Moger [Mon, 22 Jul 2013 12:44:01 +0000 (08:44 -0400)]
Ubuntu/Debian and CentOS/Fedora service tweaks per forum feedback

11 years agoDocumentation
James Moger [Mon, 22 Jul 2013 12:26:22 +0000 (08:26 -0400)]
Documentation

11 years agoFixed incorrecter tagger in dashboard pages (issue-276)
James Moger [Mon, 22 Jul 2013 12:25:46 +0000 (08:25 -0400)]
Fixed incorrecter tagger in dashboard pages (issue-276)

11 years agoMerge pull request #104 from rafaelcavazin/master
James Moger [Mon, 22 Jul 2013 12:02:52 +0000 (05:02 -0700)]
Merge pull request #104 from rafaelcavazin/master

Update Brazilian Portuguese translation

11 years agoMerge pull request #103 from ljader/fix-polish-locale-for-1.3.1
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

11 years agoTranslation of lastest Strings up-do-date. 104/head
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.

11 years agoMerge branch 'master' of https://github.com/gitblit/gitblit
Rafael Cavazin [Sun, 21 Jul 2013 13:59:00 +0000 (10:59 -0300)]
Merge branch 'master' of https://github.com/gitblit/gitblit

11 years agoUpdated Polish translation for 1.3.1 103/head
Lukasz Jader [Sun, 21 Jul 2013 12:59:46 +0000 (14:59 +0200)]
Updated Polish translation for 1.3.1

11 years agoMerge pull request #102 from Mrbytes/master
James Moger [Sat, 20 Jul 2013 22:49:15 +0000 (15:49 -0700)]
Merge pull request #102 from Mrbytes/master

Updated Spanish translation

11 years agoGitBlitWebApp_es.properties: 102/head
mrbytes [Fri, 19 Jul 2013 20:04:58 +0000 (22:04 +0200)]
GitBlitWebApp_es.properties:
- Best translation in three phrases.

11 years agoMerge pull request #101 from svogt/fix-message-properties
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

11 years agoAdd missing equals sign in GitBlitWebApp.properties 101/head
Sascha Vogt [Fri, 19 Jul 2013 19:17:28 +0000 (21:17 +0200)]
Add missing equals sign in GitBlitWebApp.properties

11 years agoFixed missing clone url on the empty repository page
James Moger [Fri, 19 Jul 2013 15:13:41 +0000 (11:13 -0400)]
Fixed missing clone url on the empty repository page

11 years agoImplemented optional page caching
James Moger [Fri, 19 Jul 2013 14:46:16 +0000 (10:46 -0400)]
Implemented optional page caching

11 years agoMerge pull request #100 from ds5apn/master
James Moger [Fri, 19 Jul 2013 14:49:34 +0000 (07:49 -0700)]
Merge pull request #100 from ds5apn/master

Update Korean Translation

11 years agoMerge pull request #99 from Mrbytes/master
James Moger [Fri, 19 Jul 2013 14:49:05 +0000 (07:49 -0700)]
Merge pull request #99 from Mrbytes/master

Updated Spanish translation

11 years agoMerge pull request #98 from simonharrer/close-resources-correctly
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

11 years agoUpdate Korean Translation 100/head
Dongsu, KIM [Fri, 19 Jul 2013 09:39:08 +0000 (18:39 +0900)]
Update Korean Translation

11 years agoMerge branch 'master' of https://github.com/gitblit/gitblit 99/head
mrbytes [Fri, 19 Jul 2013 07:25:05 +0000 (09:25 +0200)]
Merge branch 'master' of https://github.com/gitblit/gitblit

11 years agoSpanish translation:
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>
11 years agoFixes findbugs warning - dereferencing null in exception case 98/head
Simon Harrer [Thu, 18 Jul 2013 14:11:04 +0000 (16:11 +0200)]
Fixes findbugs warning - dereferencing null in exception case

11 years agoUpdated Dutch translation
Jeroen Baten [Wed, 17 Jul 2013 19:23:06 +0000 (15:23 -0400)]
Updated Dutch translation

11 years agoDocumentation
James Moger [Wed, 17 Jul 2013 16:23:38 +0000 (12:23 -0400)]
Documentation

11 years agoPrepare Dutch resource for translation
James Moger [Wed, 17 Jul 2013 16:22:41 +0000 (12:22 -0400)]
Prepare Dutch resource for translation

11 years agoFixed bug with adding new local users with external authentication
James Moger [Wed, 17 Jul 2013 14:07:18 +0000 (10:07 -0400)]
Fixed bug with adding new local users with external authentication

11 years agoAdded unit test for reported issue (issue-271)
James Moger [Wed, 17 Jul 2013 13:45:35 +0000 (09:45 -0400)]
Added unit test for reported issue (issue-271)

11 years agoDocumentation
James Moger [Wed, 17 Jul 2013 13:07:28 +0000 (09:07 -0400)]
Documentation

11 years agoEnsure Keys class is included with all builds
James Moger [Wed, 17 Jul 2013 12:16:38 +0000 (08:16 -0400)]
Ensure Keys class is included with all builds

11 years agoMerge pull request #94 from yin8086/Chinese
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

11 years agoUpdate Chinese translate @ version 1.30 94/head
Stardrad Yin [Wed, 17 Jul 2013 12:07:32 +0000 (20:07 +0800)]
Update Chinese translate @ version 1.30

11 years agoReset dashboard and activity commit cache on branch REWIND or DELETE
James Moger [Tue, 16 Jul 2013 13:35:31 +0000 (09:35 -0400)]
Reset dashboard and activity commit cache on branch REWIND or DELETE

11 years agoFix for IE10 compatibilty mode
James Moger [Tue, 16 Jul 2013 12:00:26 +0000 (08:00 -0400)]
Fix for IE10 compatibilty mode

11 years agoFixed spacing of ref span in digest and reflog panels
James Moger [Mon, 15 Jul 2013 18:51:44 +0000 (14:51 -0400)]
Fixed spacing of ref span in digest and reflog panels

11 years agoFixed missing model classes in Gitblit Manager build
James Moger [Mon, 15 Jul 2013 18:47:24 +0000 (14:47 -0400)]
Fixed missing model classes in Gitblit Manager build

11 years agoFixed url panel failure when there are no repository urls (issue 269)
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)

11 years agoFixed GoogleCode upload target until they turn off downloads :(
James Moger [Sun, 14 Jul 2013 16:44:35 +0000 (12:44 -0400)]
Fixed GoogleCode upload target until they turn off downloads :(

11 years agoIgnore .ps1 and .sh files in root directory
James Moger [Sun, 14 Jul 2013 16:13:42 +0000 (12:13 -0400)]
Ignore .ps1 and .sh files in root directory

11 years agoReset build identifiers for next development cycle
James Moger [Sun, 14 Jul 2013 16:05:19 +0000 (12:05 -0400)]
Reset build identifiers for next development cycle

11 years agoPrepare 1.3.0 release v1.3.0
James Moger [Sun, 14 Jul 2013 16:05:18 +0000 (12:05 -0400)]
Prepare 1.3.0 release

11 years agoAdded release script template and build.xml adjustments
James Moger [Sun, 14 Jul 2013 16:04:52 +0000 (12:04 -0400)]
Added release script template and build.xml adjustments

11 years agoDocumentation
James Moger [Sun, 14 Jul 2013 15:25:09 +0000 (11:25 -0400)]
Documentation

11 years agoFixed an incorrect candidate submodule name (issue-266)
James Moger [Sat, 13 Jul 2013 23:58:51 +0000 (19:58 -0400)]
Fixed an incorrect candidate submodule name (issue-266)

11 years agoAdjust unit test to confirm null permission fix (issue-259)
James Moger [Sat, 13 Jul 2013 17:10:04 +0000 (13:10 -0400)]
Adjust unit test to confirm null permission fix (issue-259)

11 years agoSetting a null permission now removes the permission from the user or team (issue...
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)

11 years agoDocumentation
James Moger [Sat, 13 Jul 2013 15:35:40 +0000 (11:35 -0400)]
Documentation

11 years agoShow diff by default on compare page
James Moger [Sat, 13 Jul 2013 15:24:47 +0000 (11:24 -0400)]
Show diff by default on compare page

11 years agoFixed possible NPE in forks page if user account no longer exists
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

11 years agoPersist fork origin on first run after upgrade
James Moger [Sat, 13 Jul 2013 15:04:33 +0000 (11:04 -0400)]
Persist fork origin on first run after upgrade

11 years agoStop Checkstyle from complaining
James Moger [Sat, 13 Jul 2013 14:38:15 +0000 (10:38 -0400)]
Stop Checkstyle from complaining

11 years agoDocumentation
James Moger [Sat, 13 Jul 2013 14:32:52 +0000 (10:32 -0400)]
Documentation

11 years agoAdded External account type to enum
James Moger [Wed, 10 Jul 2013 00:57:55 +0000 (20:57 -0400)]
Added External account type to enum

11 years agoDocumentation
James Moger [Thu, 4 Jul 2013 01:35:02 +0000 (21:35 -0400)]
Documentation

11 years agoSet author as tooltip of "last change" on repositories page (issue-238)
James Moger [Wed, 3 Jul 2013 15:11:48 +0000 (11:11 -0400)]
Set author as tooltip of "last change" on repositories page (issue-238)

11 years agoFix NPE when viewing a federation proposal (issue 195)
James Moger [Wed, 3 Jul 2013 14:49:31 +0000 (10:49 -0400)]
Fix NPE when viewing a federation proposal (issue 195)

11 years agoRetrieve summary and metric charts over https (issue-61)
James Moger [Wed, 3 Jul 2013 14:01:49 +0000 (10:01 -0400)]
Retrieve summary and metric charts over https (issue-61)

11 years agoChange login button class to blend in better with custom header backgrounds
James Moger [Wed, 3 Jul 2013 12:17:13 +0000 (08:17 -0400)]
Change login button class to blend in better with custom header backgrounds

11 years agoSupport hot-reloading of project.mkd
James Moger [Wed, 3 Jul 2013 12:16:39 +0000 (08:16 -0400)]
Support hot-reloading of project.mkd

11 years agoUse long datetimestamp on reflogs
James Moger [Wed, 3 Jul 2013 01:48:02 +0000 (21:48 -0400)]
Use long datetimestamp on reflogs

11 years agoUnit tests which confirm working/expected behavior (issue-259)
James Moger [Wed, 3 Jul 2013 01:18:46 +0000 (21:18 -0400)]
Unit tests which confirm working/expected behavior (issue-259)

11 years agoFixed committer verification with merge commits (issue-264)
James Moger [Tue, 2 Jul 2013 20:46:52 +0000 (16:46 -0400)]
Fixed committer verification with merge commits (issue-264)