summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/pages
Commit message (Collapse)AuthorAgeFilesLines
...
* Gracefully deal with missing repository in permissions ui (issue 155)James Moger2012-11-011-2/+2
|
* Renamed isEditable to mutableJames Moger2012-10-311-3/+3
|
* Personal repositories must always be owned by the account the repo is stored inJames Moger2012-10-311-1/+1
|
* Teams must be sortedJames Moger2012-10-311-0/+1
|
* Enable verify committer iff >= push restrictedJames Moger2012-10-311-8/+13
|
* Replaced fork iconJames Moger2012-10-301-2/+2
|
* Added null checkinng and logging for edit user permissions (issue 155)James Moger2012-10-301-3/+10
|
* Fix intermittent Wicket page expirations on EditNNN pagesJames Moger2012-10-304-0/+33
|
* Moved owner field onto access permissions tabJames Moger2012-10-301-10/+14
|
* Refactor GC period into an integer for simpler translationsJames Moger2012-10-301-3/+27
| | | | Also hooked-up GC settings in the Manager.
* Stabilizing and polishing permissions ui. Still in-progress.James Moger2012-10-296-32/+163
|
* Experimental JGit-based GC ExecutorJames Moger2012-10-283-24/+35
|
* Fixed missing project counts in project headersJames Moger2012-10-241-1/+1
|
* Implemented exclusion (X) permissionJames Moger2012-10-231-0/+3
|
* Add some common regex filters to the repository listsJames Moger2012-10-233-20/+37
|
* Fixed bug where owner could not edit a repository through web uiJames Moger2012-10-221-3/+4
|
* 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-191-1/+1
|
* Completed permissions UI, RPC, and Manager support (issue 36)James Moger2012-10-193-20/+22
|
* New permissions UI for EditRepository (issue 36)James Moger2012-10-192-34/+17
|
* New permissions UI for EditUser and EditTeam (issue 36)James Moger2012-10-195-31/+61
|
* 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
* Experimental committer verificationJames Moger2012-10-112-2/+5
|
* Support Team canAdmin, canCreate, and canFork (issue 36)James Moger2012-10-106-11/+18
|
* 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
* Implemented New Repository for personal repositoriesJames Moger2012-10-058-10/+66
|
* Moved is frozen checkbox to match ManagerJames Moger2012-10-031-4/+4
|
* Use anonymous usermodel in a few placesJames Moger2012-10-031-1/+4
|
* Hide some repository page header elements on phones and tabletsJames Moger2012-10-031-2/+2
|
* Polish fork-in-progress pageJames Moger2012-10-031-5/+3
|
* 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-023-23/+154
|
* Use a custom redirect mechanism to workaround servlet container interferenceJames Moger2012-10-023-9/+11
| | | | | | | | | | 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();
* Show display name for owner, when possibleJames Moger2012-10-012-2/+14
|
* Tweaking forks pageJames Moger2012-10-012-5/+45
|
* 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-2919-236/+531
| | | | | | | | | | | | | | | | | | 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-203-10/+14
|
* Merge branch 'delete-branch' of https://github.com/ajermakovics/gitblitJames Moger2012-09-203-3/+9
|\
| * Added a link to delete a branchajermakovics2012-09-193-3/+9
| | | | | | | | delete link appears on the branches page if an admin user is logged in.
* | 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
* Mostly complete blob view line links feature, DOM offset bug remains (issue 130)James Moger2012-09-141-23/+97
|
* EmptyRepositoryPage_es.html: up-to date with the last changesMrbytes2012-09-141-4/+4
|
* Redirect to summary page from empty page for a repo with commits (issue 129)James Moger2012-09-105-39/+83
|