summaryrefslogtreecommitdiffstats
path: root/src/main/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'userrepoprefix' of https://github.com/fzs/gitblit into prefixesJames Moger2013-09-1711-20/+139
|\
| * Check user prefix for invalid options. Add JavaDoc. Add unit tests.Florian Zschocke2013-08-261-44/+99
| |
| * Set user repository prefix from setting.Florian Zschocke2013-08-261-0/+3
| | | | | | | | Set the user repository name space from settings when starting Gitblit.
| * Refactor logic for user repository path into one class.Florian Zschocke2013-08-2611-20/+81
| | | | | | | | Gather logic for building the path/name of a personal user repository into one class.
* | Don't crash with an NPE when the cache contains removed repositoriedRobin Rosenberg2013-09-011-1/+1
| |
* | Avoid NPE when the default branch cannot be identifiedRobin Rosenberg2013-09-011-0/+2
|/ | | | | This is a normal condition that complicates debugging, i.e. when catching all NPE's.
* Merge pull request #115 from fzs/fu-close-finallyJames Moger2013-08-211-10/+36
|\ | | | | Close streams in finally block.
| * Close streams in finally block.Florian Zschocke2013-08-211-10/+36
| | | | | | | | Close input and output streams in a finally block so that they do not linger around and occupy system resources when an exception occurs.
* | Merge pull request #114 from fzs/descriptionJames Moger2013-08-211-0/+17
|\ \ | |/ |/| Maintain repository 'description' file.
| * Maintain repository 'description' file.Florian Zschocke2013-08-211-0/+17
| | | | | | | | | | | | | | 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.
* | Simplify when repository sizes are calculated (issue-295)James Moger2013-08-161-53/+29
| |
* | If we have a cache-miss in repository loading, return a deep copyJames Moger2013-08-161-1/+1
| |
* | Fixed anonymous LDAP logins (issue-297)James Moger2013-08-161-4/+15
| |
* | Add an Apache htpasswd user serviceFlorian Zschocke2013-08-122-1/+357
| | | | | | | | | | | | | | 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
* | Add setting to cap number of activity days to displayOri Livneh2013-08-113-0/+16
| | | | | | | | | | | | | | 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.
* | bugfix to make project links go to project page and not redirect to home pageDoug Ayers2013-08-081-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Improvements to reflog branch deletionJames Moger2013-07-312-31/+45
| |
* | Manually redirect after branch deletion (issue 282)James Moger2013-07-311-0/+11
| |
* | apply PageParameters(final Map<String, ?> parameterMap), encode filename of ↵guriguri2013-08-012-45/+135
| | | | | | | | Content-Disposition
* | Fixed Gitblit Authority failing to load realm.NNN.backingUserService (issue-280)James Moger2013-07-251-6/+3
|/
* Automatically decode %7E in repository names to ~ (issue-278)James Moger2013-07-241-0/+8
|
* Merge branch 'update-lang-ptbr-20130723'Rafael Cavazin2013-07-231-8/+8
|\
| * Some few lang adjustments - Alguns ajustes de gramáticaRafael Cavazin2013-07-231-8/+8
| |
* | Added PAMUserService for local Linux/Unix/MacOSX account authenticationJames Moger2013-07-232-1/+143
| |
* | Catch IOException which includes SocketException in DownloadZipServletJames Moger2013-07-231-2/+1
|/
* Update Gitblit reflog on branch delete from UI if Gitblit has an existing reflogJames Moger2013-07-223-4/+70
|
* Added GET_USER request to RPC interface (issue-275)James Moger2013-07-223-2/+44
|
* Fixed incorrecter tagger in dashboard pages (issue-276)James Moger2013-07-221-10/+9
|
* Merge pull request #104 from rafaelcavazin/masterJames Moger2013-07-222-3/+60
|\ | | | | Update Brazilian Portuguese translation
| * Translation of lastest Strings up-do-date.Rafael Cavazin2013-07-212-3/+60
| | | | | | | | Tradução das últimas Strings até a data atual.
* | Updated Polish translation for 1.3.1Lukasz Jader2013-07-211-1/+54
|/
* GitBlitWebApp_es.properties:mrbytes2013-07-191-3/+3
| | | | - Best translation in three phrases.
* Merge pull request #101 from svogt/fix-message-propertiesJames Moger2013-07-191-4/+4
|\ | | | | Add missing equals sign in GitBlitWebApp.properties
| * Add missing equals sign in GitBlitWebApp.propertiesSascha Vogt2013-07-191-4/+4
| |
* | Fixed missing clone url on the empty repository pageJames Moger2013-07-191-5/+12
| |
* | Implemented optional page cachingJames Moger2013-07-1931-7/+415
| |
* | Merge pull request #100 from ds5apn/masterJames Moger2013-07-191-2/+61
|\ \ | | | | | | Update Korean Translation
| * | Update Korean TranslationDongsu, KIM2013-07-191-2/+61
| |/
* | Merge pull request #99 from Mrbytes/masterJames Moger2013-07-191-14/+73
|\ \ | | | | | | Updated Spanish translation
| * | Merge branch 'master' of https://github.com/gitblit/gitblitmrbytes2013-07-196-9/+162
| |\|
| * | Spanish translation:mrbytes2013-07-191-14/+73
| | | | | | | | | | | | | | | | | | | | | - Improved translation - Translated to the rev. 1.3.1 Signed-off-by: mrbytes <eguervos@msn.com>
* | | Fixes findbugs warning - dereferencing null in exception caseSimon Harrer2013-07-181-1/+3
| |/ |/|
* | Updated Dutch translationJeroen Baten2013-07-171-49/+49
| |
* | Prepare Dutch resource for translationJames Moger2013-07-171-1/+60
| |
* | Fixed bug with adding new local users with external authenticationJames Moger2013-07-171-5/+6
| |
* | Update Chinese translate @ version 1.30Stardrad Yin2013-07-171-3/+61
| |
* | Reset dashboard and activity commit cache on branch REWIND or DELETEJames Moger2013-07-162-0/+34
| |
* | Fix for IE10 compatibilty modeJames Moger2013-07-161-0/+1
|/
* Fixed spacing of ref span in digest and reflog panelsJames Moger2013-07-152-2/+2
|
* Fixed url panel failure when there are no repository urls (issue 269)James Moger2013-07-151-1/+1
|