summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/FileSettings.java
Commit message (Collapse)AuthorAgeFilesLines
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-128/+0
| | | | | | | | | This is a massive commit which reorganizes the entire project structure (although it is still monolithic), removes the Build classes, and switches to Moxie, a smarter Ant build tookit based on the original Gitblit Build classes. The Ant build script will likely require additional fine-tuning, but this is big step forward.
* Escape metacharacters for settings updatesJames Moger2013-01-161-1/+1
|
* Confirmed fix for GO settings manipulation (issue 85)James Moger2012-08-031-1/+7
|
* Workaround 1 sec resolution of File.lastModified on Linux (issue-55)James Moger2012-02-201-1/+14
| | | | | | | Shockingly, File.lastModified() does not always support millisecond resolution on all platforms even if the underlying filesystem supports it. Added a forceReload flag (in addition to last modified checks) to ensure that user backends and configuration properties are properly reloaded.
* Organized importsJames Moger2011-10-261-1/+0
|
* Working edit settings RPC. Web.xml is not directly modified.James Moger2011-10-241-0/+22
|
* Documentation. Adding JavaDoc comments. Adjustments to method names.James Moger2011-07-011-6/+16
|
* Big push for first release.James Moger2011-06-251-1/+5
| | | | | | | | | | | | * Build script overhaul including building & publishing GO, WAR, Docs, and Site. * Restored JGit 0.12.1 dependency and backported Blame. Got tired of waiting for JGit 1.0.0 Maven artifacts. * Changed Summary Page layout * Optional cookie authentication * Added icons for log, tags, and branches panels. * Show last commit author and short message on branches panel. * Unit testing. * Documentation.
* Added AccessRestrictionFilter and simplified authentication.James Moger2011-06-141-1/+1
| | | | | | | | | | | | | | | | Replaced servlet container basic authentication with a custom servlet filter which performs the same function. The advantage to this is that the servlet container is now divorced from the webapp. The login service (realm) also simplified a great deal and removes its Jetty dependencies. Additionally, the basic authorization pop-up will be displayed as needed based on the repository's access restriction. This was necessary for view-restricted repositories with the RSS feature. Its also necessary for completely open repositories as before it would prompt for credentials. Improved feed syndication feature.
* Unit testing. Documentation. Simplified settings classes.James Moger2011-06-091-114/+12
|
* Unit testing.James Moger2011-05-291-3/+3
|
* Unit testing. Removal of some unused code paths.James Moger2011-05-281-6/+11
|
* Findbugs. CodePro Audit. Checkstyle. Unit test refactoring.James Moger2011-05-261-6/+19
|
* Selected Apache License. Dropped : from name. Its simpler.James Moger2011-05-251-0/+15
|
* Build infrastructure improvements. Setting to show remote branches.James Moger2011-05-041-1/+1
| | | | | | | | | | | | The JGit team is now publishing 0.12.1 artifacts on the Eclipse Maven site. Yeah! That was the last missing piece for a slick Git:Blit deployment. The build has been reworked to download from Eclipse and to also download source and javadoc jars for setting up a development environment. Made the log4j pattern configurable by operating system. Moved Markdown utils to their own class since I need StringUtils for Build and that introduced a chicken-and-egg scenario.
* Settings overhaul. Fixes to authentication. Bind interface feature.James Moger2011-04-151-0/+143
Settings access has been abstracted and the way is becoming clear to offer a WAR build in addition to the integrated server stack. Util methods moved around.