summaryrefslogtreecommitdiffstats
path: root/src/site
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add startup/shutdown LifeCycle extension pointJames Moger2014-05-151-1/+30
| |
* | DocumentationJames Moger2014-05-122-10/+12
| |
* | Change enum name and unit test RSS tag queriesJames Moger2014-05-081-0/+1
| |
* | Revise, complete, and fully test the FORK rpcJames Moger2014-05-081-3/+5
| |
* | Merge branch 'master' into developJames Moger2014-05-073-10/+14
|\|
| * Correct Bintray upload url for releasesJames Moger2014-05-071-1/+1
| |
| * DocumentationJames Moger2014-05-073-10/+14
| |
* | Switch to -u from deprecated --set-upstreamJames Moger2014-05-051-2/+2
| |
* | Allow plugins to extend the top navbar and repository navbarJames Moger2014-05-051-1/+57
| | | | | | | | | | 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-6/+4
| |
* | Overhaul menu item classes and add AdminMenuExtension pointJames Moger2014-05-051-0/+26
| |
* | Add http request filter extension pointDavid Ostrovsky2014-05-051-0/+20
| | | | | | | | | | To allow for integration of 3rd party server monitoring solutions, Gitblit needs to expose an extension point for collecting http data.
* | DocumentationJames Moger2014-05-022-21/+8
| |
* | Implementation of a ticket mgration toolJames Moger2014-05-021-0/+24
|/
* DocumentationJames Moger2014-04-231-1/+1
|
* Remove User parameter from SSH dispatch command setupJames Moger2014-04-171-5/+5
|
* Add plugin (un)install lifecycle methodsJames Moger2014-04-171-0/+17
|
* DocumentationJames Moger2014-04-162-9/+9
|
* DocumentationJames Moger2014-04-153-7/+70
|
* DocumentationJames Moger2014-04-131-1/+1
|
* DocumentationJames Moger2014-04-122-87/+130
|
* Add TicketHook extensionJames Moger2014-04-121-0/+23
|
* Add PatchsetHook extensionsJames Moger2014-04-121-106/+122
|
* Allow ReceiveHook extensionsJames Moger2014-04-121-1/+35
|
* Update to Jetty 9, drop AJPJames Moger2014-04-113-10/+4
|
* Improve plugin documentationJames Moger2014-04-112-10/+36
|
* DocumentationJames Moger2014-04-105-1/+42
|
* Split administration commands into a plugin, enhance plugin managerJames Moger2014-04-101-9/+13
|
* Implement management commands in repositories dispatcherJames Moger2014-04-101-3/+3
|
* DocumentationJames Moger2014-04-103-8/+6
|
* DocumentationJames Moger2014-04-101-0/+6
|
* Improve command help with formatting and usage examplesJames Moger2014-04-101-14/+13
|
* Refactor 'gitblit' commands into several nested dispatchersJames Moger2014-04-101-19/+15
|
* Start SSH usage documentationJames Moger2014-04-102-4/+89
|
* Remove remaining GoogleCharts code and update documentationJames Moger2014-04-101-1/+2
|
* Replace JCommander with args4jJames Moger2014-03-271-1/+1
|
* Add a French translationJohann Ollivier-Lapeyre2014-03-271-0/+1
|
* DocumentationJames Moger2014-03-201-3/+13
|
* DocumentationJames Moger2014-03-081-1/+1
|
* Move Gitblit branches to refs/meta/gitblitJames Moger2014-03-082-7/+7
|
* DocumentationJames Moger2014-03-072-0/+8
|
* DocumentationJames Moger2014-03-061-6/+8
|
* Documentation and clarify git workflowsJames Moger2014-03-062-21/+48
|
* Document ticket replication, mirroring, and advanced administrationJames Moger2014-03-061-0/+135
|
* Add and document REINDEX_TICKETS rpc request typeJames Moger2014-03-061-0/+2
|
* DocumentationJames Moger2014-03-044-41/+55
|
* DocumentationJames Moger2014-03-032-3/+4
|
* Ticket tracker with patchset contributionsJames Moger2014-03-035-0/+499
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* DocumentationJames Moger2014-02-266-20/+120
|
* Updated FAQ (issue-332)James Moger2014-02-261-32/+7
| | | | Change-Id: If6625e33806877e68c2e59470537e4c34be371ef