Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixed null pointer exceptions Manager create User and Team | James Moger | 2012-10-22 | 2 | -4/+14 | |
| | ||||||
* | Differentiate between an explicit permission and a regex permission | James Moger | 2012-10-22 | 10 | -27/+126 | |
| | ||||||
* | Renamed method to UserModel.canCreate(String repository) | James Moger | 2012-10-22 | 2 | -4/+3 | |
| | ||||||
* | Ensure illegal repository names are rejected in create-on-push | James Moger | 2012-10-22 | 1 | -4/+22 | |
| | ||||||
* | Implemented optional create-on-push | James Moger | 2012-10-21 | 5 | -6/+142 | |
| | | | | | | | | | | | | | | | | If this feature is enabled then permitted users can automatically create a repository when pushing to one that does not yet exist. Permitted users are administrators and any user with the CREATE role. If the pushing account is an administrator, the created repository may be located in any folder/project space. This reposiory will inherit the server's default access restriction and authorization control. The repository owner will be the pushing account. If the pushing account is a regular user with the CREATE role, the repository can only be located in the account's personal folder (~username/myrepo.git). This repository will be VIEW restricted and accessible by NAMED users. The repository owner will be the pushing account. | |||||
* | Switch to tab interface for Edit User and Edit Team for consistency | James Moger | 2012-10-20 | 3 | -27/+87 | |
| | ||||||
* | Split edit repository page into tabs | James Moger | 2012-10-19 | 1 | -33/+81 | |
| | ||||||
* | Construct access permissions from already retrieved data | James Moger | 2012-10-19 | 2 | -12/+21 | |
| | ||||||
* | Split committer verification description into two strings | James Moger | 2012-10-19 | 2 | -2/+3 | |
| | ||||||
* | Completed permissions UI, RPC, and Manager support (issue 36) | James Moger | 2012-10-19 | 33 | -653/+540 | |
| | ||||||
* | New permissions UI for EditRepository (issue 36) | James Moger | 2012-10-19 | 9 | -38/+552 | |
| | ||||||
* | Exclude submodules from zip downloads (issue 151) | James Moger | 2012-10-19 | 1 | -0/+3 | |
| | ||||||
* | New permissions UI for EditUser and EditTeam (issue 36) | James Moger | 2012-10-19 | 12 | -32/+339 | |
| | ||||||
* | Added UserModel null check | James Moger | 2012-10-19 | 1 | -4/+6 | |
| | ||||||
* | Allows integration of GitBlit as plug-in in other projects. | Luca Milanesio | 2012-10-20 | 5 | -28/+91 | |
| | | | | | | | | | | | | | | | There are now three new targets on the ANT build: - buildJAR: creates a GitBlit JAR including the GitBlit biz logic - installMaven: install GitBlit JAR as Maven module - uploadMaven: uploads GitBlit JAR to a Maven repository Additional extensions have been made to allow: a) GitBlit to load his resources outside of Wicket domain b) GitBlit to use an injected UserService c) Generic authentication of HTTP Request using 3rd party logic d) Load settings programmatically from an InputStream e) Use cookie authentication OR generic HTTP Request authentication for Wicket pages f) UserModel with branch-level security logic | |||||
* | Merge branch 'master' of https://github.com/Mrbytes/gitblit | James Moger | 2012-10-13 | 1 | -10/+15 | |
|\ | ||||||
| * | GitBlitWebApp_es.properties: | Mrbytes | 2012-10-12 | 1 | -10/+15 | |
| | | | | | | | | | | | | | | -Up-to-date. -Some minor changes in syntax for better compression. Signed-off-by: Mrbytes <eguervos@msn.com> | |||||
* | | Implemented Manager support for team roles and verify committer | James Moger | 2012-10-12 | 2 | -1/+26 | |
|/ | ||||||
* | Removed duplicate ticgit description and added permission strings | James Moger | 2012-10-12 | 1 | -2/+4 | |
| | ||||||
* | Experimental committer verification | James Moger | 2012-10-11 | 7 | -4/+82 | |
| | ||||||
* | Clarified ticgit status in its description | James Moger | 2012-10-11 | 1 | -0/+1 | |
| | ||||||
* | Tweak canFork description | James Moger | 2012-10-11 | 1 | -1/+1 | |
| | ||||||
* | Support Team canAdmin, canCreate, and canFork (issue 36) | James Moger | 2012-10-10 | 20 | -30/+150 | |
| | ||||||
* | Add regex permission matching to hasRepositoryPermission check (issue 36) | James Moger | 2012-10-10 | 2 | -2/+30 | |
| | ||||||
* | Fixed bug where repository ownership was not updated on rename user | James Moger | 2012-10-10 | 1 | -0/+16 | |
| | ||||||
* | Try regex permission matching if exact permission is not found (issue 36) | James Moger | 2012-10-10 | 2 | -0/+22 | |
| | ||||||
* | Fix possible string index out of bounds exception | James Moger | 2012-10-10 | 1 | -4/+9 | |
| | ||||||
* | Update to Jetty 7.6.7 | James Moger | 2012-10-10 | 1 | -5/+5 | |
| | ||||||
* | Finer-grained repository access permissions (issue 36) | James Moger | 2012-10-10 | 21 | -162/+792 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implemented discrete repository access permissions to replace the really primitive course-grained permissions used to this point. This implementation allows for finer-grained access control, but still falls short of integrated, branch-based permissions sought by some. Access permissions follow the conventions established by Gitosis and Gitolite so they should feel immediately comfortable to experienced users. This permissions infrastructure is complete and works exactly as expected. Unfortunately, there is no ui in this commit to change permissions, that will be forthcoming. In the meantime, Gitblit hot-reloads users.conf so the permissions can be manipulated at runtime with a text editor. The following per-repository permissions are now supported: - V (view in web ui, RSS feeds, download zip) - R (clone) - RW (clone and push) - RWC (clone and push with ref creation) - RWD (clone and push with ref creation, deletion) - RW+ (clone and push with ref creation, deletion, rewind) And a users.conf entry looks something like this: [user "hannibal"] password = bossman repository = RWD:topsecret.git | |||||
* | GitBlitWebApp_es.properties: | Mrbytes | 2012-10-07 | 1 | -4/+7 | |
| | | | | | | Up to date and other small corrections Signed-off-by: Mrbytes <eguervos@msn.com> | |||||
* | Fixed bug in create/rename repository if the root group alias is specified ↵ | James Moger | 2012-10-05 | 1 | -0/+7 | |
| | | | | (issue 143) | |||||
* | Implemented New Repository for personal repositories | James Moger | 2012-10-05 | 16 | -26/+141 | |
| | ||||||
* | Remove fork reference from origin repository on rename | James Moger | 2012-10-05 | 1 | -0/+8 | |
| | ||||||
* | Catch all exceptions from MarkdownPapers and rethrow as ParseException ↵ | James Moger | 2012-10-05 | 1 | -0/+6 | |
| | | | | (issue 142) | |||||
* | Adjusted message to be more descriptive (issue 126) | James Moger | 2012-10-04 | 1 | -1/+1 | |
| | ||||||
* | Fixed repository reference leak in fork mechanism | James Moger | 2012-10-04 | 2 | -44/+13 | |
| | ||||||
* | Fixed duplicate entries in repository cache (issue 140) | James Moger | 2012-10-04 | 1 | -10/+15 | |
| | ||||||
* | GitBlitWebApp_es.properties: | Mrbytes | 2012-10-04 | 1 | -7/+26 | |
| | | | | | | | Updated with the new "fork" changes Other small corrections of syntax Signed-off-by: Mrbytes <eguervos@msn.com> | |||||
* | Fix anonymous browsing of user profile page | James Moger | 2012-10-03 | 3 | -2/+9 | |
| | ||||||
* | Display fork indicator in Manager | James Moger | 2012-10-03 | 1 | -0/+8 | |
| | ||||||
* | Implemented support for toggling User.canFork in Manager | James Moger | 2012-10-03 | 1 | -0/+5 | |
| | ||||||
* | Moved is frozen checkbox to match Manager | James Moger | 2012-10-03 | 1 | -4/+4 | |
| | ||||||
* | Implemented support for toggling Repository.allowForks in Manager | James Moger | 2012-10-03 | 1 | -2/+13 | |
| | ||||||
* | Use anonymous usermodel in a few places | James Moger | 2012-10-03 | 2 | -5/+8 | |
| | ||||||
* | Show fork indicator on the repositories page | James Moger | 2012-10-03 | 3 | -2/+10 | |
| | ||||||
* | Fix broken project links | James Moger | 2012-10-03 | 1 | -1/+1 | |
| | ||||||
* | Fix fork detection on Windows | James Moger | 2012-10-03 | 2 | -0/+7 | |
| | ||||||
* | Hide some repository page header elements on phones and tablets | James Moger | 2012-10-03 | 1 | -2/+2 | |
| | ||||||
* | Polish fork-in-progress page | James Moger | 2012-10-03 | 2 | -6/+4 | |
| | ||||||
* | Display entire fork network. Link as appropriate for user permissions. | James Moger | 2012-10-03 | 6 | -133/+122 | |
| |