summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/GitBlitWebApp.java
Commit message (Collapse)AuthorAgeFilesLines
* Friendly URL for EditFile Page #974Paul Martin2016-03-271-0/+2
| | | | + Prevent Edit of old doc version
* Git-LFS supportPaul Martin2015-10-101-1/+15
| | | | | | | | | | | | | | + Metadata maintained in append-only JSON file providing complete audit history. + Filestore menu item + Lists filestore items + Current size and availability + Link to GitBlit Filestore help page (top right) + Hooks into existing repository permissions + Uses default repository path for out-of-box operation with Git-LFS client + accessRestrictionFilter now has access to http method and auth header + Testing for servlet and manager
* Merge branch 'ticket/180' into developJames Moger2014-09-171-2/+2
|\
| * Explicitly declare RepositoryPage subclasses that reference commitsJames Moger2014-09-171-2/+2
| |
* | Merge branch 'ticket/176' into developJames Moger2014-09-111-1/+1
|\|
| * Preserve refs in commits, tree, & docs navbar linksJames Moger2014-09-111-1/+1
| |
* | Merge branch 'ticket/164' into developJames Moger2014-09-071-1/+13
|\|
| * XSS sanitize standard page url parametersJames Moger2014-09-071-1/+1
| |
| * Create infrastructure for XSS sanitizationJames Moger2014-09-071-0/+12
| |
* | Extract ticket service into an injectable object with a custom providerJames Moger2014-07-031-1/+5
| |
* | Implement custom IPublicKeyManager providerJames Moger2014-07-031-5/+6
| |
* | Extract services manager into a top-level injectable managerJames Moger2014-07-031-4/+16
| |
* | Use Guice annotations, not javax.inject annotationsJames Moger2014-07-031-2/+2
| |
* | Embrace @Inject for Managers, Servlets, and FiltersJames Moger2014-07-031-0/+5
|/
* Simplified repository creation with a NewRepositoryPageJames Moger2014-06-031-0/+10
|
* Fix class loading failure when there are no STARTED pluginsJames Moger2014-05-071-1/+3
|
* Allow plugins to extend the top navbar and repository navbarJames Moger2014-05-051-7/+99
| | | | | This change also ties the plugin manager into the Wicket framework and allows plugins to contribute and mount new pages which are linked by the top navbar and repository navbar extensions.
* Integrate admin menu into user menu and add user menu extensionJames Moger2014-05-051-0/+2
|
* Replace RawPage with RawServletJames Moger2014-05-051-3/+1
|
* First Step in My TicketsBUISSON Christian2014-05-011-0/+2
|
* Create and update milestone pages with rename supportJames Moger2014-05-011-0/+4
|
* Fix forcing default locale to en or LANG_CC for web uiJames Moger2014-04-281-4/+3
|
* Expose the plugin manager to the webappJames Moger2014-04-141-0/+9
|
* Elevate the public key manager to a top-level managerJames Moger2014-04-101-0/+9
|
* Ticket tracker with patchset contributionsJames Moger2014-03-031-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A basic issue tracker styled as a hybrid of GitHub and BitBucket issues. You may attach commits to an existing ticket or you can push a single commit to create a *proposal* ticket. Tickets keep track of patchsets (one or more commits) and allow patchset rewriting (rebase, amend, squash) by detecing the non-fast-forward update and assigning a new patchset number to the new commits. Ticket tracker -------------- The ticket tracker stores tickets as an append-only journal of changes. The journals are deserialized and a ticket is built by applying the journal entries. Tickets are indexed using Apache Lucene and all queries and searches are executed against this Lucene index. There is one trade-off to this persistence design: user attributions are non-relational. What does that mean? Each journal entry stores the username of the author. If the username changes in the user service, the journal entry will not reflect that change because the values are hard-coded. Here are a few reasons/justifications for this design choice: 1. commit identifications (author, committer, tagger) are non-relational 2. maintains the KISS principle 3. your favorite text editor can still be your administration tool Persistence Choices ------------------- **FileTicketService**: stores journals on the filesystem **BranchTicketService**: stores journals on an orphan branch **RedisTicketService**: stores journals in a Redis key-value datastore It should be relatively straight-forward to develop other backends (MongoDB, etc) as long as the journal design is preserved. Pushing Commits --------------- Each push to a ticket is identified as a patchset revision. A patchset revision may add commits to the patchset (fast-forward) OR a patchset revision may rewrite history (rebase, squash, rebase+squash, or amend). Patchset authors should not be afraid to polish, revise, and rewrite their code before merging into the proposed branch. Gitblit will create one ref for each patchset. These refs are updated for fast-forward pushes or created for rewrites. They are formatted as `refs/tickets/{shard}/{id}/{patchset}`. The *shard* is the last two digits of the id. If the id < 10, prefix a 0. The *shard* is always two digits long. The shard's purpose is to ensure Gitblit doesn't exceed any filesystem directory limits for file creation. **Creating a Proposal Ticket** You may create a new change proposal ticket just by pushing a **single commit** to `refs/for/{branch}` where branch is the proposed integration branch OR `refs/for/new` or `refs/for/default` which both will use the default repository branch. git push origin HEAD:refs/for/new **Updating a Patchset** The safe way to update an existing patchset is to push to the patchset ref. git push origin HEAD:refs/heads/ticket/{id} This ensures you do not accidentally create a new patchset in the event that the patchset was updated after you last pulled. The not-so-safe way to update an existing patchset is to push using the magic ref. git push origin HEAD:refs/for/{id} This push ref will update an exisitng patchset OR create a new patchset if the update is non-fast-forward. **Rebasing, Squashing, Amending** Gitblit makes rebasing, squashing, and amending patchsets easy. Normally, pushing a non-fast-forward update would require rewind (RW+) repository permissions. Gitblit provides a magic ref which will allow ticket participants to rewrite a ticket patchset as long as the ticket is open. git push origin HEAD:refs/for/{id} Pushing changes to this ref allows the patchset authors to rebase, squash, or amend the patchset commits without requiring client-side use of the *--force* flag on push AND without requiring RW+ permission to the repository. Since each patchset is tracked with a ref it is easy to recover from accidental non-fast-forward updates. Features -------- - Ticket tracker with status changes and responsible assignments - Patchset revision scoring mechanism - Update/Rewrite patchset handling - Close-on-push detection - Server-side Merge button for simple merges - Comments with Markdown syntax support - Rich mail notifications - Voting - Mentions - Watch lists - Querying - Searches - Partial miletones support - Multiple backend options
* Eliminate Gravatar profile linking and improve apiJames Moger2014-03-031-2/+0
|
* Flattened IGitblitManager, GitblitManager, and GitBlit classesJames Moger2013-11-291-10/+10
| | | | Change-Id: Id6deb27306e0034898673bf5d5d76a4ed012ced6
* Refactor user services and separate authentication (issue-281)James Moger2013-11-291-6/+6
| | | | Change-Id: I336e005e02623fc5e11a4f8b4408bea5465a43fd
* Use Dagger to inject managers into all filters and servletsJames Moger2013-11-291-17/+52
| | | | Change-Id: I9bb2cc0cbfac9841b13bed15a474fefb24355cd4
* Define manager interfaces and update all of Gitblit to use managersJames Moger2013-11-261-21/+29
| | | | | | | | | | | | | | | | | | | | | | | | | These manager interfaces define how the GitBlit singleton will eventually be split into smaller component managers. The Wicket app and all servlets have been updated to request the needed managers. There are _very_ few method signature changes - although there are a handful. This is a surgical sharding of responsibility based on a proof of concept refactor. Instead of random references to GittBlit.self() there are now precise references to the manager interface required to accomplish some task. Some tasks may require references to multiple managers. The code is now littered with calls to GitBlit.getManager(class) and those familiar with the code-base will no doubt notice the duplication of methods from IUserService in IUserManager and the addition of implementation methods in the GitBlit context class. When the GitBlit class is broken apart and the existing external authentication user service classes are refactored to AuthenticationService classes, this will again simplify and flatten. But in order to safely and cleanly modularize the stable code-base we will have to live with a little duplication for a short while. Change-Id: I7314ec8acaab2dcc6092785ed4434cc09fdbbe16
* Eliminate nearly all direct GitBlit singleton references in WicketJames Moger2013-11-261-193/+262
| | | | | | | | | | This is the first step towards modularization and injection. All direct references to the GitBlit singleton within the Wicket pages and panels have been replaced to proxy methods in the GitBlitWebApp singleton. There are still two Wicket classes which rely on the GitBlit singleton; those require manual instantiation (servlet 3). Change-Id: I0cdbbcf87959d590c446c99abb09c07c87c737bc
* Refactor access to home page classJames Moger2013-11-261-6/+4
| | | | Change-Id: Ice5706dc0659a44f54e5bf29ca66580e3be22418
* 修改中文显示问题及raw默认属性kxyfyh2013-11-181-0/+2
|
* Refactor markup processing in preparation for supporting other formatsJames Moger2013-11-121-3/+3
| | | | Change-Id: I0eb217064abc4f4b0f6bfbbc21302c470cc2f9c6
* Remove incomplete and deprecated TicGit featureJames Moger2013-09-171-11/+5
| | | | Change-Id: Idb7de272589e086da9b2b3a241dcd082c1c8f27b
* Implemented optional page cachingJames Moger2013-07-191-0/+18
|
* Reflogs, Digests, and DashboardsJames Moger2013-06-181-4/+4
| | | | | | Renamed pushlog to reflog to better match it's current and future purpose. Split PushesPanel into ReflogPanel and DigestsPanel. Overhauled project pages and gave them a coherent purpose from the dashboard.
* Added a Dashboard page with a daily ref log of starred/owned reposJames Moger2013-05-301-2/+3
| | | | | This is a work-in-progress and is mostly working like I want, but will require some refactoring to make it even more useful and less complex.
* Added UI for the push log introduced in 1.2.1James Moger2013-05-241-0/+2
|
* Implemented compare page for branch/tag/manual diffs (issue-75, issue-133)James Moger2013-05-231-0/+2
|
* Overhauled navigation and flattened lookJames Moger2013-05-191-1/+8
|
* Overwrite created session locale with forced oneLukasz Jader2013-04-141-1/+10
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+160
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.