summaryrefslogtreecommitdiffstats
path: root/src/com/gitblit/wicket/panels
Commit message (Collapse)AuthorAgeFilesLines
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-2755-5117/+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.
* Merged multiple owners (pull request #63)James Moger2013-01-232-14/+34
|\
| * Revised multiple owners contributionJames Moger2013-01-235-145/+111
| |
| * Merge multiple owners feature (pull request #63, #66)SHaselbauer2013-01-215-91/+145
| |
* | Improve history display of a submodule linkJames Moger2013-01-131-0/+102
| |
* | Show indicators for Sparkleshared repositoriesJames Moger2013-01-114-1/+15
|/
* Draft mechanism to record a push log as a hidden orphan branchJames Moger2013-01-052-1/+7
|
* Support local accounts with LdapUserService and RedmineUserService (issue-183)James Moger2013-01-043-5/+5
|
* Build project models from repository cache, when possible (issue-172)James Moger2013-01-031-11/+7
|
* Do not pass null email address to PersonIdentJames Moger2012-12-221-2/+2
|
* Eliminate unnecessary view links in activity pageJames Moger2012-12-062-4/+2
|
* Fixed anonymous browsing of branch panelJames Moger2012-12-061-2/+2
|
* Do not prematurely reduce branches by maxCount when using branch permissionsJames Moger2012-12-021-2/+2
|
* Handle anonymous browsing of branches panelJames Moger2012-12-021-0/+3
|
* Branch display filtering according to user access permissions.Luca Milanesio2012-12-021-2/+16
|
* Support alternate compressed download formats (issue-174)James Moger2012-11-302-0/+89
|
* Tweak css of short commit id in log and history viewsJames Moger2012-11-294-4/+4
|
* Short commit ids in log and history take two (issue 168)James Moger2012-11-284-29/+33
|
* Fixed regression for folder history links (issue 166)James Moger2012-11-281-1/+3
|
* Revert "Eliminated redundant "view" links (issue 168)"James Moger2012-11-284-5/+9
| | | | This reverts commit 5ad03d053fc3154b09c551530a790b921bc462e5.
* Eliminated redundant "view" links (issue 168)James Moger2012-11-274-9/+5
|
* Added short commit id column to log and history tables (issue 168)James Moger2012-11-274-0/+20
|
* Fixed history page links for files not in the current/active commit (issue 166)James Moger2012-11-271-0/+24
|
* Make activity page respect short commit id setting and lower default from 8 to 6James Moger2012-11-271-1/+4
|
* Permission filtering in web uiJames Moger2012-11-022-13/+97
| | | | | Present the mutable permissions by default. Allow the administrator or owner to toggle the displayed permissions to see how the user and team permissions are applied to a repository.
* Gracefully deal with missing repository in permissions ui (issue 155)James Moger2012-11-011-3/+12
|
* Renamed isEditable to mutableJames Moger2012-10-311-3/+3
|
* Improve transparency of permissions by indicating permission sourceJames Moger2012-10-312-6/+29
|
* Include gravatar images in registrant permissions panel, if configuredJames Moger2012-10-313-8/+40
|
* Reject add if permission selector has not been setJames Moger2012-10-311-0/+3
|
* Fixed missing repo counts on user projectsJames Moger2012-10-301-3/+4
|
* Stabilizing and polishing permissions ui. Still in-progress.James Moger2012-10-292-18/+53
|
* Use repository swatch coloring in registrant permissions panelJames Moger2012-10-292-2/+13
|
* Experimental JGit-based GC ExecutorJames Moger2012-10-281-0/+8
|
* 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-241-1/+1
|
* Tweak permissions panel layout a bitJames Moger2012-10-221-2/+2
|
* Differentiate between an explicit permission and a regex permissionJames Moger2012-10-222-8/+22
|
* Completed permissions UI, RPC, and Manager support (issue 36)James Moger2012-10-197-393/+31
|
* New permissions UI for EditRepository (issue 36)James Moger2012-10-194-0/+362
|
* New permissions UI for EditUser and EditTeam (issue 36)James Moger2012-10-192-0/+181
|
* Support Team canAdmin, canCreate, and canFork (issue 36)James Moger2012-10-102-2/+2
|
* Implemented New Repository for personal repositoriesJames Moger2012-10-052-14/+36
|
* Fix anonymous browsing of user profile pageJames Moger2012-10-031-1/+4
|
* Show fork indicator on the repositories pageJames Moger2012-10-032-1/+8
|
* Fix broken project linksJames Moger2012-10-031-1/+1
|
* Moved the fork mechanism from a javascript link to a separate pageJames Moger2012-10-022-4/+2
|
* Fixed delete repository from repository panelJames Moger2012-10-011-1/+7
|
* Show display name for owner, when possibleJames Moger2012-10-012-9/+25
|
* Preliminary implementation of server-side forking (issue 137)James Moger2012-09-298-13/+305
| | | | | | | | | | | | | | | | | | 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.