summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket
Commit message (Collapse)AuthorAgeFilesLines
...
* Experimental JGit-based GC ExecutorJames Moger2012-10-285-25/+50
|
* Do not display link for add team in LDAP-managed teams setup (issue 153)James Moger2012-10-281-1/+1
|
* Fixed missing project counts in project headersJames Moger2012-10-242-2/+2
|
* Implemented exclusion (X) permissionJames Moger2012-10-232-1/+5
|
* Add some common regex filters to the repository listsJames Moger2012-10-233-20/+37
|
* Tweak permissions panel layout a bitJames Moger2012-10-221-2/+2
|
* Fixed bug where owner could not edit a repository through web uiJames Moger2012-10-221-3/+4
|
* Differentiate between an explicit permission and a regex permissionJames Moger2012-10-223-8/+23
|
* Switch to tab interface for Edit User and Edit Team for consistencyJames Moger2012-10-203-27/+87
|
* Split edit repository page into tabsJames Moger2012-10-191-33/+81
|
* Split committer verification description into two stringsJames Moger2012-10-192-2/+3
|
* Completed permissions UI, RPC, and Manager support (issue 36)James Moger2012-10-1911-414/+55
|
* New permissions UI for EditRepository (issue 36)James Moger2012-10-196-34/+379
|
* New permissions UI for EditUser and EditTeam (issue 36)James Moger2012-10-198-32/+251
|
* Added UserModel null checkJames Moger2012-10-191-4/+6
|
* Allows integration of GitBlit as plug-in in other projects.Luca Milanesio2012-10-203-14/+24
| | | | | | | | | | | | | | | 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
* GitBlitWebApp_es.properties:Mrbytes2012-10-121-10/+15
| | | | | | | -Up-to-date. -Some minor changes in syntax for better compression. Signed-off-by: Mrbytes <eguervos@msn.com>
* Removed duplicate ticgit description and added permission stringsJames Moger2012-10-121-2/+4
|
* Experimental committer verificationJames Moger2012-10-113-3/+8
|
* Clarified ticgit status in its descriptionJames Moger2012-10-111-0/+1
|
* Tweak canFork descriptionJames Moger2012-10-111-1/+1
|
* Support Team canAdmin, canCreate, and canFork (issue 36)James Moger2012-10-1011-16/+23
|
* Finer-grained repository access permissions (issue 36)James Moger2012-10-105-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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:Mrbytes2012-10-071-4/+7
| | | | | | Up to date and other small corrections Signed-off-by: Mrbytes <eguervos@msn.com>
* Implemented New Repository for personal repositoriesJames Moger2012-10-0511-25/+106
|
* GitBlitWebApp_es.properties:Mrbytes2012-10-041-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 pageJames Moger2012-10-031-1/+4
|
* Moved is frozen checkbox to match ManagerJames Moger2012-10-031-4/+4
|
* Use anonymous usermodel in a few placesJames Moger2012-10-031-1/+4
|
* Show fork indicator on the repositories pageJames Moger2012-10-033-2/+10
|
* Fix broken project linksJames Moger2012-10-031-1/+1
|
* Hide some repository page header elements on phones and tabletsJames Moger2012-10-031-2/+2
|
* Polish fork-in-progress pageJames Moger2012-10-032-6/+4
|
* Display entire fork network. Link as appropriate for user permissions.James Moger2012-10-032-124/+92
|
* Moved the fork mechanism from a javascript link to a separate pageJames Moger2012-10-028-29/+175
|
* Use a custom redirect mechanism to workaround servlet container interferenceJames Moger2012-10-024-9/+60
| | | | | | | | | | This mechanism bypasses the standard Wicket redirect mechanism because it turns out that the servlet container reencodes Wicket's relative redirect urls. This results in another way that parameters with forward-slashes can be borked. Bad, bad servlet container. org.eclipse.jetty.server.Response#L447: String path=uri.getDecodedPath();
* Fixed delete repository from repository panelJames Moger2012-10-011-1/+7
|
* Show display name for owner, when possibleJames Moger2012-10-014-11/+39
|
* Tweaking forks pageJames Moger2012-10-013-6/+47
|
* Show fork links according to user permissions. Improve fork detection.James Moger2012-10-012-59/+82
|
* Preliminary implementation of server-side forking (issue 137)James Moger2012-09-2929-250/+855
| | | | | | | | | | | | | | | | | | The fork mechanism clones the repository , access restrictions, and other config options. The app has been updated throughout to handle personal repositories and to properly display origin/fork links. In order to fork a repository the user account must have the #fork role, the origin repository must permit forking, and the user account must have standard clone permissions to the repository. Because forking introduces a new user role no existing user accounts can automatically begin forking a repository. This is both a pro and a con. Since the fork has the same access restrictions as the origin repository, those who can access the origin may also access the fork. This is intentional to facilitate integration-manager workflow. The fork owner does have the power to completely change the access restrictions of his/her fork.
* Revised delete branch feature (issue 121)James Moger2012-09-205-21/+38
|
* Merge branch 'delete-branch' of https://github.com/ajermakovics/gitblitJames Moger2012-09-205-8/+43
|\
| * Added a link to delete a branchajermakovics2012-09-195-8/+43
| | | | | | | | delete link appears on the branches page if an admin user is logged in.
* | Update polish translation of GitBlitWebApp propertiesLukasz Jader2012-09-191-1/+6
| |
* | Update polish translation of EmptyRepositoryPageLukasz Jader2012-09-191-4/+4
|/
* Diff page can now show a diff between two branchesajermakovics2012-09-181-151/+195
| | | | | To see a diff between two branches use the syntax: <host>/commitdiff/myRepo/branch1..branch2
* Fix linefeed problem for Prettify (issue 130)James Moger2012-09-171-2/+3
|
* Restore zebra stripping, added line hovering, fix overflow (issue 130)James Moger2012-09-171-48/+6
|
* Adjust blob view layout to improve line links (issue 130)James Moger2012-09-171-2/+7
| | | http://nicolasgallagher.com/jump-links-and-viewport-positioning