You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gitblit.css 46KB

Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
12 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
12 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Improve the commitdiff. * Optimize CSS: simplify selectors. That alone cuts rendering time in half! * Adapt HTML generation accordingly. * Change line number generation so that one can select only code lines. Also move the +/- out of the code column; it also gets in the way when selecting. * Omit long diffs altogether. * Omit diff lines for deleted files, they're not particularly interesting. * Introduce a global limit on the maximum number of diff lines to show. * Supply translations for the languages I speak for the new messages. https://code.google.com/p/gitblit/issues/detail?id=450 was about a diff with nearly 300k changed lines (with more then 3000 files deleted). But one doesn't have to have such a monster commit to run into problems. My FF 32 become unresponsive for the 30+ seconds it takes it to render a commitdiff with some 30000 changed lines. (90% of which are in two generated files; the whole commit has just 20 files.) GitHub has no problems showing a commitdiff for this commit, but omits the two large generated files, which makes sense. This change implements a similar thing. Files with too many diff lines get omitted from the output, only the header and a message that the diff is too large remains. Additionally, there's a global limit on the length of a commitdiff; if we exceed that, the whole diff is truncated and the files not shown are listed. The CSS change improves performance by not using descendant selectors for all these table cells. Instead, we assign them precise classes and just use that in the CSS. The line number generation thing using data attributes and a :before selector in the CSS, which enables text selections only in the code column, is not strictly XHTML 1.0. (Data attributes are a feature of HTML 5.) However, reasonably modern browsers also handle this correctly if the page claims to be XHTML 1.0. Besides, the commitdiff page isn't XHTML compliant anyway; I don't think a pre-element may contain divs or even tables. (Note that this technique could be used on other diff pages, too. For instance on the blame page.)
9 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
Ticket tracker with patchset contributions 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
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358
  1. body {
  2. /* 47px is the header height */
  3. padding-top: 47px;
  4. }
  5. footer {
  6. margin-top: 25px;
  7. padding: 15px 0 16px;
  8. border-top: 1px solid #E5E5E5;
  9. }
  10. body, input, select {
  11. color: #202020;
  12. }
  13. ul, ol {
  14. margin-bottom: 10px !important;
  15. }
  16. a {
  17. color: #2F58A0;
  18. }
  19. a:hover {
  20. color: #002060;
  21. }
  22. a:focus {
  23. outline: none;
  24. }
  25. a.btn i {
  26. /* override for a links that look like bootstrap buttons */
  27. vertical-align: text-bottom;
  28. }
  29. a.bugtraq {
  30. font-weight: bold;
  31. }
  32. .gray {
  33. color: #888;
  34. }
  35. .octicon-centered {
  36. text-align: center;
  37. width: 16px;
  38. }
  39. tr:hover .octicon-centered {
  40. color:#eee;
  41. }
  42. .label a.bugtraq {
  43. font-weight: normal;
  44. color: white;
  45. }
  46. .lwbadge {
  47. color: #888;
  48. font-size: 11px;
  49. background-color: #e8e8e8;
  50. padding: 1px 7px 2px;
  51. -webkit-border-radius: 9px;
  52. -moz-border-radius: 9px;
  53. border-radius: 9px;
  54. line-height: 14px;
  55. white-space: nowrap;
  56. vertical-align: baseline;
  57. }
  58. [class^="icon-"], [class*=" icon-"] i {
  59. /* override for a links that look like bootstrap buttons */
  60. vertical-align: text-bottom;
  61. }
  62. .pagination-small, .pagination-small ul {
  63. margin: 0px !important;
  64. }
  65. .pagination-small ul {
  66. border-right: 1px solid #ddd;
  67. }
  68. .pagination-small ul > li > a,
  69. .pagination-small ul > li > span {
  70. padding: 2px 8px;
  71. font-size: 13px;
  72. line-height: 22px;
  73. border: 1px solid #ddd;
  74. border-right: 0px;
  75. border-radius: 0px !important;
  76. float: left;
  77. }
  78. .btn.disabled em, .pagination-small ul > li > span em {
  79. font-style: normal;
  80. color: #444;
  81. }
  82. hr {
  83. margin-top: 10px;
  84. margin-bottom: 10px;
  85. }
  86. .settings th {
  87. vertical-align: top;
  88. }
  89. .pageTitle {
  90. padding-bottom: 5px;
  91. margin: 0;
  92. border-bottom: 1px solid #eee;
  93. }
  94. .pageTitle h1, .pageTitle h2 {
  95. color: #0069D6;
  96. }
  97. .navbar .brand {
  98. padding: 0px 10px 0px 20px;
  99. }
  100. .navbar .btn-navbar {
  101. margin-top: 10px;
  102. }
  103. .navbar .pull-right {
  104. margin: 0;
  105. }
  106. .navbar ul.nav {
  107. margin: 0 !important;
  108. padding: 4px 0px 0px 0px;
  109. }
  110. .navbar ul.nav li a {
  111. color: white;
  112. text-shadow: none;
  113. outline: 0;
  114. }
  115. .navbar ul.nav li a:hover {
  116. color: #abd4ff !important;
  117. text-decoration: underline;
  118. }
  119. .navbar .nav .active > a:hover {
  120. text-decoration: underline;
  121. }
  122. .navbar-inner {
  123. background-color: #002060;
  124. background-image: none;
  125. box-shadow: none;
  126. border-bottom: 1px solid #002060 !important;
  127. }
  128. .navbar ul li:focus, .navbar .active {
  129. outline: 0;
  130. padding-bottom: 1px;
  131. border-bottom: 3px solid #ff9900;
  132. margin-bottom: -1px;
  133. }
  134. ul.nav {
  135. border-color: #ccc;
  136. }
  137. .nav-tabs > .active > a,
  138. .nav-tabs > .active > a:hover {
  139. border: 1px solid #ccc;
  140. border-bottom-color: transparent;
  141. }
  142. .navbar .active a {
  143. background-color: transparent !important;
  144. outline: 0;
  145. }
  146. .navbar div > ul .menu-dropdown .selected, .nav .menu-dropdown .selected, .navbar div > ul .dropdown-menu .selected, .nav .dropdown-menu .selected {
  147. background-image: url("bullet_blue.png");
  148. background-repeat: no-repeat;
  149. background-position: left;
  150. }
  151. .navbar div>ul .dropdown-menu li a {
  152. color: #555;
  153. }
  154. navbar div>ul .menu-dropdown li a:hover,.nav .menu-dropdown li a:hover,.navbar div>ul .dropdown-menu li a:hover,.nav .dropdown-menu li a:hover{
  155. background-color: #000070;
  156. color: #ffffff !important;
  157. }
  158. .nav-pills > .active > a, .nav-pills > .active > a:hover,
  159. .nav-list > .active > a, .nav-list > .active > a:hover {
  160. color: #fff;
  161. background-color: #002060;
  162. }
  163. div.reflog {
  164. border-bottom: 1px solid #ddd;
  165. margin-bottom: 5px;
  166. padding-bottom: 5px;
  167. }
  168. div.reflog .icon {
  169. font-size: 42px;
  170. line-height: 42px;
  171. }
  172. div.reflog .when {
  173. color: #aaa;
  174. }
  175. div.reflog i {
  176. font-size: 42px;
  177. color: #bbb;
  178. vertical-align: middle;
  179. }
  180. div.reflog td.header {
  181. padding-left: 7px;
  182. vertical-align:middle;
  183. }
  184. div.reflog td.commits {
  185. padding-left: 7px;
  186. }
  187. div.reflog tr.commit td {
  188. vertical-align:top;
  189. padding-left: 5px;
  190. }
  191. div.reflog tr.commit img {
  192. max-width: none;
  193. }
  194. div.dashboardTitle {
  195. font-size: 1.75em;
  196. padding: 10px 0px 5px 0px;
  197. margin: 10px 0px;
  198. border-bottom: 1px solid #ccc;
  199. }
  200. div.dashboardTitle small {
  201. color: #888;
  202. font-size: 0.7em;
  203. }
  204. .repositorynavbar {
  205. background-color: #f8f8f8;
  206. border-bottom: 1px solid #ccc;
  207. margin-bottom: 10px;
  208. }
  209. .repositorynavbar .title {
  210. padding: 10px 0px;
  211. }
  212. .repositorynavbar .repository {
  213. font-weight: bold;
  214. }
  215. .title .repository a, .repositorynavbar .project a, .repositorynavbar .repository a {
  216. font-family: Helvetica,arial,freesans,clean,sans-serif;
  217. font-size: 22px;
  218. color: #002060;
  219. }
  220. .repositorynavbar .repositorynavbar-inner {
  221. padding-top: 2px;
  222. }
  223. .repositorynavbar ul {
  224. list-style: none outside;
  225. display: block;
  226. position: relative;
  227. border-top: 1px solid #ccc;
  228. }
  229. .repositorynavbar ul li {
  230. display: block;
  231. float: left;
  232. padding: 10px;
  233. }
  234. .repositorynavbar ul li:focus, .repositorynavbar .active {
  235. color: black;
  236. background-repeat:no-repeat;
  237. background-image: url(arrow_project.png);
  238. background-position: center bottom;
  239. font-weight: bold;
  240. outline: 0;
  241. }
  242. .repositorynavbar ul a {
  243. color: #002060;
  244. }
  245. .repositorynavbar ul li:hover {
  246. background-color: #eee;
  247. }
  248. .repositorynavbar ul li a:hover {
  249. background-color: inherit;
  250. text-decoration: underline;
  251. }
  252. @media (max-width: 767px) {
  253. .repositorynavbar {
  254. margin-right: -20px;
  255. margin-left: -20px;
  256. padding: 0px 5px;
  257. }
  258. }
  259. .btn-appmenu {
  260. border-radius: 4px !important;
  261. background-color: #002060;
  262. background-image:-khtml-gradient(linear, left top, left bottom, from(#4060A0), to(#002060));
  263. background-image:-moz-linear-gradient(center top, #4060A0, #002060);
  264. background-image:-ms-linear-gradient(top, #4060A0, #002060);
  265. background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #4060A0), color-stop(100%, #002060));
  266. background-image:-webkit-linear-gradient(top, #4060A0, #002060);
  267. background-image:-o-linear-gradient(top, #4060A0, #002060);
  268. background-image:linear-gradient(top, #4060A0, #002060);
  269. background-repeat: repeat-x;
  270. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  271. color: #ffffff;
  272. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  273. }
  274. .btn-appmenu:hover, .btn-appmenu:active, .btn-appmenu.active, .btn-appmenu.disabled, .btn-appmenu[disabled] {
  275. background-color: #002060;
  276. color: #ffffff;
  277. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  278. }
  279. .btn-appmenu .caret {
  280. border-bottom-color: #FFFFFF;
  281. border-top-color: #FFFFFF;
  282. opacity: 0.75;
  283. }
  284. .breadcrumb {
  285. margin-top: 10px !important;
  286. margin-bottom: 10px !important;
  287. }
  288. .pageTitle {
  289. margin-bottom: 5px;
  290. }
  291. .pageTitle h2 small {
  292. font-size: 80%;
  293. font-weight: bold;
  294. }
  295. .pageTitle {
  296. color: #888;
  297. font-size: 18px;
  298. line-height: 27px;
  299. }
  300. .pageTitle .project, .pageTitle .repository {
  301. font-family: Helvetica, arial, freesans, clean, sans-serif;
  302. font-size: 22px;
  303. }
  304. .pageTitle .controls {
  305. font-size: 12px;
  306. }
  307. .pageTitle .repository {
  308. font-weight: bold;
  309. }
  310. .originRepository {
  311. font-family: Helvetica, arial, freesans, clean, sans-serif;
  312. color: #888;
  313. font-size: 12px;
  314. line-height: 14px;
  315. margin: 0px;
  316. }
  317. .forkSource, .forkEntry {
  318. color: #888;
  319. }
  320. .forkSource {
  321. font-size: 18px;
  322. line-height: 20px;
  323. padding: 5px 0px;
  324. }
  325. .forkEntry {
  326. font-size: 14px;
  327. padding: 2px 0px;
  328. }
  329. .forkSource .forks, .forkEntry .forks {
  330. font-size: 10px;
  331. padding-left: 5px;
  332. text-decoration: underline;
  333. vertical-align: middle;
  334. }
  335. div.repositoryUrlContainer {
  336. padding: 2px;
  337. background-color: #F5F5F5;
  338. background-image: -moz-linear-gradient(center top , #FFFFFF, #E6E6E6);
  339. background-repeat: repeat-x;
  340. border-color: #E6E6E6 #E6E6E6 #B3B3B3;
  341. border-image: none;
  342. border-radius: 4px;
  343. border-style: solid;
  344. border-width: 1px;
  345. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
  346. color: #333333;
  347. vertical-align: middle;
  348. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  349. }
  350. div.repositoryUrlContainer:hover {
  351. background-color: #E6E6E6;
  352. background-position: 0 -15px;
  353. color: #333333;
  354. text-decoration: none;
  355. transition: background-position 0.1s linear 0s;
  356. }
  357. div.repositoryUrlContainer:hover .caret {
  358. opacity: 1;
  359. }
  360. div.repositoryUrlContainer:hover a:hover {
  361. text-decoration: none;
  362. }
  363. span.repositoryUrlLeftCap, span.repositoryUrlRightCap {
  364. text-align: center;
  365. color: black;
  366. padding: 3px;
  367. font-size: 11px;
  368. }
  369. span.repositoryUrlRightCap {
  370. font-weight: bold;
  371. font-family:menlo,consolas,monospace;
  372. }
  373. div.repositoryUrl {
  374. display: inline-block;
  375. font-size: 1em;
  376. padding: 1px 4px 2px 4px;
  377. background-color: #fff;
  378. border: 1px solid #ddd;
  379. margin: 1px;
  380. }
  381. div.repositoryIndicator {
  382. display:inline;
  383. padding-top:0px;
  384. margin-bottom:0px;
  385. }
  386. div.repositoryIndicator span.alert {
  387. padding: 2px 7px 2px 7px;
  388. vertical-align: middle;
  389. font-size:0.85em;
  390. font-weight:normal;
  391. }
  392. ul.urlMenu {
  393. min-width: 350px;
  394. }
  395. ul.urlMenu li.url {
  396. background-color: white;
  397. padding: 0px 5px;
  398. line-height: 24px;
  399. }
  400. ul.applicationMenu {
  401. background-color: whiteSmoke;
  402. min-width: 400px;
  403. }
  404. ul.applicationMenu li.action {
  405. background-color: white;
  406. padding: 0px 5px;
  407. line-height: 24px;
  408. }
  409. span.applicationTitle, span.applicationTitle a {
  410. display: inline;
  411. font-weight: bold;
  412. font-size:1.1em;
  413. color: black !important;
  414. padding: 0px;
  415. }
  416. div.applicationHeaderMenuItem {
  417. padding-left: 10px;
  418. color: black;
  419. }
  420. div.applicationLegalMenuItem {
  421. padding-left: 10px;
  422. color: #999;
  423. font-size: 0.85em;
  424. }
  425. a.applicationMenuItem, span.commandMenuItem {
  426. padding: 3px 10px;
  427. color: black;
  428. display: inline;
  429. padding: 0px;
  430. }
  431. span.commandMenuItem {
  432. font-size: 0.85em;
  433. font-family: menlo,consolas,monospace;
  434. }
  435. div.odd {
  436. }
  437. div.even {
  438. background-color: whiteSmoke;
  439. vertical-align: middle;
  440. }
  441. span.authorizationControl label {
  442. display: inline;
  443. color: #777;
  444. padding:5px 0px 5px 10px;
  445. }
  446. div.page_footer {
  447. clear: both;
  448. height: 17px;
  449. color: black;
  450. background-color: #ffffff;
  451. padding: 5px;
  452. border-top: 1px solid #bbb;
  453. font-style: italic;
  454. }
  455. pre, code, pre.prettyprint, pre.plainprint {
  456. background-color: #ffffff;
  457. color: black;
  458. font-family: monospace;
  459. font-size:12px;
  460. border:0px;
  461. padding: 0;
  462. line-height: 1.35em;
  463. }
  464. table {
  465. margin-bottom: 5px;
  466. font-size: inherit;
  467. }
  468. .table th {
  469. vertical-align: top;
  470. }
  471. th {
  472. vertical-align: middle;
  473. text-align: left;
  474. }
  475. table.tickets {
  476. border-bottom: 1px solid #ccc;
  477. }
  478. table.tickets td.indicators {
  479. width: 75px;
  480. text-align: right;
  481. padding-right: 5px;
  482. color: #888;
  483. }
  484. .ticketLabel,
  485. table.tickets .label {
  486. color: white;
  487. font-weight: normal;
  488. margin: 0px 2px;
  489. }
  490. div.featureWelcome {
  491. padding: 15px;
  492. background-color: #fbfbfb;
  493. border: 1px solid #ccc;
  494. border-radius: 5px;
  495. }
  496. div.featureWelcome div.icon {
  497. color: #ccc;
  498. font-size: 144px;
  499. }
  500. li.dynamicQuery {
  501. padding: 3px 0px;
  502. margin: 1px 0px;
  503. border-radius: 4px;
  504. }
  505. li.dynamicQuery i {
  506. color: rgba(255, 255, 255, 0.5);
  507. padding-right: 5px;
  508. }
  509. li.dynamicQuery a.active {
  510. color: white;
  511. }
  512. div.milestoneOverview {
  513. color:#888;
  514. border: 1px solid #ddd;
  515. padding: 2px 5px;
  516. text-align: center;
  517. font-size: 11px;
  518. background-color: #fbfbfb;
  519. }
  520. div.sourceview {
  521. overflow: hidden;
  522. }
  523. pre.prettyprint ol {
  524. padding-left:25px;
  525. }
  526. #nums {
  527. text-align: right;
  528. padding-right:10px;
  529. border-right:1px solid #ddd;
  530. font-family: monospace;
  531. line-height: 1.35em;
  532. vertical-align:top;
  533. }
  534. #nums pre {
  535. white-space: pre;
  536. }
  537. #nums pre, #lines pre {
  538. margin: 0;
  539. }
  540. #lines pre {
  541. padding: 0px !important;
  542. border: 0px !important;
  543. white-space: nowrap;
  544. }
  545. /* CSS trick to workaround #link topOfWindow offset problem */
  546. #nums .jump {
  547. border-top: 50px solid transparent;
  548. margin-top: -50px;
  549. background: url(arrow_line.png) no-repeat scroll bottom right transparent;
  550. }
  551. #nums .jump:target {
  552. border-left: 7px solid transparent;
  553. margin-right: 3px;
  554. }
  555. #lines .line {
  556. padding-left: 5px;
  557. color: #888;
  558. }
  559. #nums a:hover {
  560. background-color: #ffffbf;
  561. color: black;
  562. font-weight: bold;
  563. border-top: 1px solid red;
  564. border-bottom: 1px solid red;
  565. text-decoration: none;
  566. }
  567. #lines table {
  568. margin: 0;
  569. }
  570. #lines td {
  571. padding: 0;
  572. }
  573. #lines a {
  574. padding-left: 5px;
  575. }
  576. #lines tr:hover {
  577. background-color: #ffffbf;
  578. }
  579. #lines .odd {
  580. background-color: white;
  581. }
  582. #lines .even {
  583. background-color: #fafafa;
  584. }
  585. .diffstat {
  586. padding: 1px 5px;
  587. font-size: smaller;
  588. background-color: #f5f5f5;
  589. border: 1px solid #ccc;
  590. color: #ccc;
  591. font-weight:bold;
  592. display: inline-block;
  593. }
  594. .diffstat-inline {
  595. font-size: smaller;
  596. color: #ccc;
  597. font-weight:bold;
  598. }
  599. .diffstat .diffstat-total {
  600. color: black;
  601. border-right: 1px solid #ccc;
  602. padding-right: 4px;
  603. margin-right: 2px;
  604. }
  605. .diffstat-inline .diffstat-total {
  606. color: #999;
  607. padding-right: 2px;
  608. }
  609. .diffstat-segments {
  610. vertical-align: baseline;
  611. }
  612. .diffstat-insert {
  613. color: #629E62;
  614. }
  615. .diffstat-delete {
  616. color: #B9583B;
  617. }
  618. .patch-group {
  619. margin-bottom: 0px;
  620. border: 1px solid #ccc;
  621. background-color: #fbfbfb;
  622. }
  623. .patch-group .accordion-inner {
  624. padding: 0px;
  625. }
  626. .ticket-meta-top {
  627. padding: 0px 10px 10px 10px;
  628. }
  629. .ticket-meta-middle {
  630. border: 1px solid #ccc;
  631. padding: 10px;
  632. background-color: #fbfbfb;
  633. }
  634. .ticket-meta-bottom {
  635. border: 1px solid #ccc;
  636. border-top: 0px;
  637. padding: 10px;
  638. }
  639. .ticket-title {
  640. font-size: 20px;
  641. }
  642. .ticket-number {
  643. color: #ccc;
  644. font-size: 20px;
  645. font-weight: normal;
  646. }
  647. .ticket-list-icon {
  648. padding: 8px 0px 8px 8px !important;
  649. width: 24px;
  650. font-size: 24px;
  651. vertical-align: middle !important;
  652. color: #888;
  653. }
  654. td.ticket-list-state {
  655. vertical-align: middle;
  656. }
  657. td.ticket-list-priority {
  658. vertical-align: middle;
  659. }
  660. .ticket-list-details {
  661. font-size: 11px;
  662. color: #888;
  663. }
  664. div.ticket-text {
  665. max-width: 600px;
  666. }
  667. .ticket-text-editor {
  668. height:7em;
  669. border:0px;
  670. border-radius: 0px;
  671. border-top:1px solid #ccc;
  672. margin-bottom:0px;
  673. padding:4px;
  674. background-color:#ffffff;
  675. box-shadow: none;
  676. }
  677. .indicator-large-dark {
  678. font-size: 20px;
  679. color: #888;
  680. }
  681. .indicator-large-light {
  682. font-size: 20px;
  683. color: #bbb;
  684. }
  685. .indicator-huge-light {
  686. font-size: 48px;
  687. color: #bbb;
  688. }
  689. .attribution-emphasize {
  690. font-weight: bold;
  691. }
  692. .attribution-text {
  693. color: #888;
  694. }
  695. .attribution-border {
  696. }
  697. .attribution-header {
  698. background-color: #fbfbfb;
  699. padding: 8px;
  700. border: 1px solid #ccc;
  701. }
  702. .attribution-header-pullright {
  703. float: right;
  704. text-align: right;
  705. padding-right: 1px;
  706. }
  707. .attribution-patch-pullright {
  708. float: right;
  709. text-align: right;
  710. margin: 5px 10px;
  711. }
  712. .attribution-date {
  713. color: #999;
  714. font-size: smaller;
  715. }
  716. .attribution-link {
  717. color: #999;
  718. padding-left: 5px;
  719. }
  720. .attribution-pullright {
  721. float: right;
  722. text-align: right;
  723. padding-right: 8px;
  724. }
  725. .attribution-triangle {
  726. position: absolute;
  727. margin-left: -23px;
  728. margin-top: 11px;
  729. height: 0px;
  730. width: 0px;
  731. border-image: none;
  732. border: 10px solid transparent;
  733. border-right: 13px solid #ddd;
  734. }
  735. .attribution-comment {
  736. padding: 10px 10px 0px 10px;
  737. /*border: 1px solid #ccc;
  738. border-top: 0px;*/
  739. }
  740. .ticket-simple-event {
  741. padding: 5px 0px;
  742. }
  743. .status-display {
  744. text-align: center;
  745. font-weight: bold;
  746. }
  747. .status-change {
  748. font-size: 1.0em;
  749. text-shadow: none;
  750. padding: 5px 10px !important;
  751. font-weight: bold;
  752. display: inline-block;
  753. text-align: center;
  754. width: 50px;
  755. margin-right: 5px !important;
  756. }
  757. .submit-info {
  758. margin-bottom: 0px;
  759. border-radius: 0px;
  760. }
  761. .merge-panel {
  762. padding: 5px 7px;
  763. background-color: #fbfbfb;
  764. color: #444
  765. }
  766. .merge-panel p.step {
  767. margin: 10px 0px 5px;
  768. }
  769. .gitcommand {
  770. margin-top: 5px;
  771. border: 1px solid #ccc;
  772. background-color: #333 !important;
  773. color: #ccc;
  774. border-radius: 3px;
  775. padding: 5px;
  776. margin-bottom: 5px;
  777. text-shadow: none;
  778. }
  779. a.commit {
  780. border: 1px solid #ccc;
  781. border-radius: 3px;
  782. background-color: #fbfbfb;
  783. padding: 2px 4px;
  784. line-heihgt:99%;
  785. font-size: 11px;
  786. text-transform: lowercase;
  787. }
  788. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  789. color: #888;
  790. }
  791. .age0, .age1, .age2, .age3, .age4 {
  792. font-size: 12px;
  793. }
  794. /* age0: age < 2 hours */
  795. .age0 {
  796. font-style: italic;
  797. color: #008000;
  798. font-weight: bold;
  799. }
  800. /* age1: 2 hours <= age < 2 days */
  801. .age1 {
  802. font-style: italic;
  803. color: #0000ff;
  804. font-weight: bold;
  805. }
  806. /* age2: 2 days < age <= 7 days */
  807. .age2 {
  808. font-style: italic;
  809. color: #2b60de;
  810. }
  811. /* age3: 7 days < age <= 30 days */
  812. .age3 {
  813. color: #800080;
  814. }
  815. /* age4: > 30 days */
  816. .age4 {
  817. }
  818. /* Ensure that hovered ages are white */
  819. tr.light:hover .age0,
  820. tr.light:hover .age1,
  821. tr.light:hover .age2,
  822. tr.light:hover .age3,
  823. tr.light:hover .age4,
  824. tr.dark:hover .age0,
  825. tr.dark:hover .age1,
  826. tr.dark:hover .age2,
  827. tr.dark:hover .age3,
  828. tr.dark:hover .age4 {
  829. color: #ffffff !important;
  830. }
  831. a.list {
  832. text-decoration: none;
  833. color: inherit;
  834. }
  835. a.list-strikethrough {
  836. text-decoration: line-through;
  837. color: inherit;
  838. }
  839. a.list.subject {
  840. font-weight: bold;
  841. }
  842. a.list.name {
  843. font-weight: bold;
  844. }
  845. a.list:hover {
  846. text-decoration: underline;
  847. color: #880000;
  848. }
  849. span.empty {
  850. font-size: 0.9em;
  851. font-style: italic;
  852. padding-left:10px;
  853. color: #008000;
  854. }
  855. span.highlight {
  856. background-color: rgb(255, 255, 100);
  857. color: black;
  858. padding: 0px 2px;
  859. }
  860. span.link {
  861. color: #888;
  862. }
  863. span.link, span.link a {
  864. font-family: sans-serif;
  865. font-size: 11px;
  866. }
  867. span.link em, div.link span em {
  868. font-style: normal;
  869. font-family: sans-serif;
  870. font-size: 11px;
  871. }
  872. span.activitySwatch {
  873. border-radius: 3px;
  874. padding: 1px 4px 2px 4px;
  875. color: #ffffff;
  876. vertical-align: center;
  877. }
  878. span.activitySwatch a {
  879. color: inherit;
  880. }
  881. span.repositorySwatch {
  882. padding: 1px 1px 2px 1px;
  883. color: #ffffff;
  884. vertical-align: center;
  885. }
  886. span.repositorySwatch a {
  887. color: inherit;
  888. }
  889. img.inlineIcon {
  890. padding-left: 1px;
  891. padding-right: 1px;
  892. }
  893. img.overview {
  894. float:right;
  895. border:1px solid #CCCCCC;
  896. }
  897. img.gravatar {
  898. background-color: #ffffff;
  899. /*border: 1px solid #ddd;*/
  900. border-radius: 5px;
  901. padding: 2px;
  902. }
  903. img.gravatar-round {
  904. background-color: #ffffff;
  905. border: 1px solid #ccc;
  906. border-radius: 100%;
  907. }
  908. img.navbarGravatar {
  909. border: 1px solid #fff;
  910. }
  911. div.searchResult {
  912. padding: 10px 5px 10px 5px;
  913. }
  914. div.searchResult .summary {
  915. font-weight: bold;
  916. }
  917. div.searchResult .branch {
  918. color: #008000;
  919. }
  920. div.searchResult .author {
  921. font-style: italic !important;
  922. }
  923. div.searchResult .date {
  924. color:#999;
  925. }
  926. div.searchResult .body {
  927. padding-left:20px;
  928. }
  929. div.searchResult .fragment {
  930. padding: 7px 0;
  931. }
  932. div.searchResult .highlight {
  933. background-color: #ccff66;
  934. padding: 0 2px;
  935. }
  936. div.searchResult .ellipses {
  937. padding-left:25px;
  938. color: #aaa;
  939. }
  940. div.searchResult pre {
  941. margin: 1px 0px;
  942. border: 0px;
  943. }
  944. div.searchResult .text {
  945. border-left: 2px solid #ccc;
  946. border-radius: 0px;
  947. padding: 0 0 0 15px;
  948. }
  949. div.searchResult ol {
  950. margin-bottom: 0px !important;
  951. }
  952. div.header, div.commitHeader, table.repositories th {
  953. background-color: #fbfbfb;
  954. }
  955. div.header {
  956. padding: 3px;
  957. border: 1px solid #ddd;
  958. border-bottom: 0;
  959. font-weight: bold;
  960. font-family: Helvetica,arial,freesans,clean,sans-serif;
  961. }
  962. div.diffHeader {
  963. /* CSS trick to workaround #link topOfWindow offset problem */
  964. border-top: 65px solid transparent;
  965. margin-top: -65px;
  966. -webkit-background-clip: padding-box;
  967. -moz-background-clip: padding;
  968. background-clip: padding-box;
  969. }
  970. div.commitHeader {
  971. margin:0 0 2px;
  972. padding:7px 14px;
  973. border:1px solid #ddd;
  974. }
  975. div.header a, div.commitHeader a {
  976. color: black;
  977. text-decoration: none;
  978. font-weight: bold;
  979. }
  980. div.header a:hover, div.commitHeader a:hover {
  981. text-decoration: underline;
  982. }
  983. div.page_nav2 {
  984. padding: 5px 10px;
  985. margin: -10px 0px 10px;
  986. border-left: 1px solid #ccc;
  987. border-right: 1px solid #ccc;
  988. border-bottom: 1px solid #ccc;
  989. border-radius: 0px 0px 3px 3px;
  990. background-color: #ECF1F4;
  991. color: #666;
  992. text-align: left;
  993. }
  994. div.page_nav2 a {
  995. color: #002060;
  996. }
  997. div.admin_nav {
  998. border-bottom: 0px;
  999. text-align: right;
  1000. padding: 5px 5px 5px 2px;
  1001. }
  1002. div.admin_nav a {
  1003. text-decoration: none;
  1004. }
  1005. div.admin_nav a:hover {
  1006. text-decoration: underline;
  1007. }
  1008. span.search {
  1009. height: 40px;
  1010. padding-top:2px;
  1011. }
  1012. span.search input {
  1013. -webkit-border-radius:0;-moz-border-radius:0x;border-radius:0;
  1014. vertical-align: top;
  1015. background: url(search-icon.png) no-repeat 4px center;
  1016. background-color: transparent;
  1017. border: 1px solid transparent;
  1018. outline: none;
  1019. padding: 2px 2px 2px 22px;
  1020. text-shadow: none;
  1021. margin: 0px;
  1022. color: #ddd;
  1023. }
  1024. span.search input:hover, span.search input:focus {
  1025. background-color: transparent;
  1026. border: 1px solid transparent;
  1027. padding: 2px 2px 2px 22px;
  1028. box-shadow: none;
  1029. color: #ddd;
  1030. border-bottom: 1px solid #ff9900;
  1031. }
  1032. span.search input:focus {
  1033. color: white;
  1034. }
  1035. /* div.search input:focused { */
  1036. /* background-color: transparent; */
  1037. /* border: 1px solid transparent; */
  1038. /* padding: 2px 2px 2px 22px; */
  1039. /* text-shadow: none; */
  1040. /* } */
  1041. span.login input:focus {
  1042. background-color: rgba(255, 255, 255, 0.6);
  1043. text-shadow: none;
  1044. color: white;
  1045. }
  1046. .commit_message {
  1047. padding: 8px;
  1048. }
  1049. .topborder {
  1050. border: solid #ddd;
  1051. border-width: 1px 0px 0px;
  1052. border-radius: 0px;
  1053. }
  1054. div.bug_open, span.bug_open {
  1055. padding: 2px;
  1056. background-color: #803333;
  1057. color: white;
  1058. text-align: center;
  1059. }
  1060. div.bug_resolved, span.bug_resolved {
  1061. padding: 2px;
  1062. background-color: #408040;
  1063. color: white;
  1064. text-align: center;
  1065. }
  1066. div.bug_invalid, span.bug_invalid {
  1067. padding: 2px;
  1068. background-color: gray;
  1069. text-align: center;
  1070. }
  1071. div.bug_hold, span.bug_hold {
  1072. padding: 2px;
  1073. background-color: orange;
  1074. text-align: center;
  1075. }
  1076. div.diff {
  1077. font-family: monospace;
  1078. overflow: auto;
  1079. }
  1080. div.diff.header {
  1081. -moz-border-bottom-colors: none;
  1082. -moz-border-image: none;
  1083. -moz-border-left-colors: none;
  1084. -moz-border-right-colors: none;
  1085. -moz-border-top-colors: none;
  1086. background-color: #EDECE6;
  1087. border-color: #D9D8D1;
  1088. border-style: solid;
  1089. border-width: 1px;
  1090. font-weight: bold;
  1091. margin-top: 10px;
  1092. padding: 4px 0 2px;
  1093. }
  1094. div.diff.extended_header {
  1095. background-color: #F6F5EE;
  1096. padding: 2px 0;
  1097. font-family: inherit;
  1098. }
  1099. div.diff table {
  1100. border: 1px solid #ddd;
  1101. }
  1102. span.diff.add {
  1103. color: #008800;
  1104. font-family: inherit;
  1105. }
  1106. span.diff.remove {
  1107. color: #FFDDDD;
  1108. font-family: inherit;
  1109. }
  1110. span.diff.unchanged {
  1111. color: inherit;
  1112. font-family: inherit;
  1113. }
  1114. span.diff.hunk_info {
  1115. background-color: #FFEEFF;
  1116. color: #990099;
  1117. font-family: inherit;
  1118. }
  1119. span.diff.hunk_section {
  1120. color: #AA22AA;
  1121. font-family: inherit;
  1122. }
  1123. .diff-cell {
  1124. margin: 0px;
  1125. padding: 0 2px;
  1126. border: 0;
  1127. border-left: 1px solid #bbb;
  1128. }
  1129. .add2 {
  1130. background-color: #DDFFDD;
  1131. }
  1132. .remove2 {
  1133. background-color: #FFDDDD;
  1134. }
  1135. .context2 {
  1136. background-color: #FEFEFE;
  1137. }
  1138. .trailingws-add {
  1139. background-color: #99FF99;
  1140. }
  1141. .trailingws-sub {
  1142. background-color: #FF9999;
  1143. }
  1144. div.diff > table {
  1145. border-radius: 0;
  1146. border-right: 1px solid #bbb;
  1147. border-bottom: 1px solid #bbb;
  1148. width: 100%;
  1149. }
  1150. .diff-line {
  1151. background-color: #fbfbfb;
  1152. text-align: center;
  1153. color: #999;
  1154. padding-left: 2px;
  1155. padding-right: 2px;
  1156. width: 3em; /* Font-size relative! */
  1157. min-width: 3em;
  1158. }
  1159. .diff-line:before {
  1160. content: attr(data-lineno);
  1161. }
  1162. .diff-state {
  1163. background-color: #fbfbfb;
  1164. text-align: center;
  1165. color: #999;
  1166. padding-left: 2px;
  1167. padding-right: 2px;
  1168. width: 0.5em; /* Font-size relative! */
  1169. }
  1170. .diff-state-add:before {
  1171. color: green;
  1172. font-weight: bold;
  1173. content: '+';
  1174. }
  1175. .diff-state-sub:before {
  1176. color: red;
  1177. font-weight: bold;
  1178. content: '-';
  1179. }
  1180. .hunk_header {
  1181. background-color: #dAe2e5 !important;
  1182. border-left: 1px solid #bbb;
  1183. border-top: 1px solid #bac2c5;
  1184. border-bottom: 1px solid #bac2c5;
  1185. color: #555;
  1186. }
  1187. /* Image diffs. */
  1188. /* Note: can't use gradients; IE < 10 doesn't support them. Use pre-created pngs with transparency instead. */
  1189. /* Set on body during mouse tracking. */
  1190. .no-select {
  1191. -webkit-touch-callout:none;
  1192. -webkit-user-select:none;
  1193. -khtml-user-select:none;
  1194. -moz-user-select:none;
  1195. -ms-user-select:none;
  1196. user-select:none;
  1197. }
  1198. div.imgdiff-container {
  1199. padding: 10px;
  1200. background: #EEE;
  1201. }
  1202. div.imgdiff {
  1203. margin: 10px 20px;
  1204. position:relative;
  1205. display: inline-block;
  1206. /* Checkerboard background to reveal transparency. */
  1207. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAK0lEQVQoz2O8e/cuAzagpKSEVZyJgUQwqoEYwPj//3+sEvfu3RsNJfppAACQZwizxs5QrAAAAABJRU5ErkJggg==);
  1208. background-repeat: repeat;
  1209. /* Same with CSS:
  1210. background-color: white;
  1211. background-image: linear-gradient(45deg, #DDD 25%, transparent 25%, transparent 75%, #DDD 75%, #DDD), linear-gradient(45deg, #DDD 25%, transparent 25%, transparent 75%, #DDD 75%, #DDD);
  1212. background-size:16px 16px;
  1213. background-position:0 0, 8px 8px;
  1214. */
  1215. }
  1216. div.imgdiff-left {
  1217. position: absolute;
  1218. top: 0;
  1219. bottom: 0;
  1220. left: 0;
  1221. width: 0;
  1222. max-width: 100%;
  1223. overflow: hidden;
  1224. }
  1225. img.imgdiff {
  1226. user-select: none;
  1227. border: 1px solid #0F0;
  1228. }
  1229. img.imgdiff-old {
  1230. user-select: none;
  1231. border: 1px solid #F00;
  1232. }
  1233. .imgdiff-opa-container {
  1234. display: inline-block;
  1235. width: 200px;
  1236. height: 4px;
  1237. margin: 12px 35px 6px 35px;
  1238. padding: 0;
  1239. position: relative;
  1240. border: 1px solid #888;
  1241. background-color: #DDD;
  1242. }
  1243. .imgdiff-opa-container:before {
  1244. content: '';
  1245. position: absolute;
  1246. left: -20px;
  1247. top: -4px;
  1248. width : 12px;
  1249. height: 12px;
  1250. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA7klEQVQoz13STUrDMRAF8N+02fQDhCpqNyJIvUEXXfYCXtlFsZeQLpRCpYJ01RakxM38IRgIQyZv3rx5SchVaw1c4xm36OEb7/jqcJHgPuZYYopx3h2xwwrriPgtyTzHCx5xg1ESnvJ8lR1fS8pYJvgBEwyywwlD9LGotX6W1DxNpknutkPgnGSzkgOOEzRoogY8zPx9L7VFa0Ku//lAlLTumO1PjYxuhnMT9yV93uUMw2Q+NwU/OGCL95KPskrr+o3mruCAD7xhU1LjOpkX6caoGXib4HVEXKLWKiK67/GEGe6SYJ+SNxFxqbX2/gBxKkhxx1tQIAAAAABJRU5ErkJggg==);
  1251. /* With CSS: background-image: radial-gradient(6px at 50% 50%, rgba(255, 255, 255, 255) 50%, rgba(255, 255, 255, 0) 6px); */
  1252. }
  1253. .imgdiff-opa-container:after {
  1254. content: '';
  1255. position: absolute;
  1256. right: -20px;
  1257. top: -4px;
  1258. width : 12px;
  1259. height: 12px;
  1260. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAACXBIWXMAAAsTAAALEwEAmpwYAAABlklEQVQoz02Rr45TYRTE5/z7ynebYNBIFFuLXV2FQRIgWcUDkN3bBNnbR0CQJvsGGLCbIEFgSCrgGXCw7b3fOT2ILQm/ZJIRI2YyhBObzaZm5kVmvszMs8wkJtoR0ZZUr/vLyz/DMBCdwg+PcfzUvC3cHRGBTICZUYpBVb+KyPO+73/SZrOpEccv03hYHMbRp9bk6EEJQITTzFqttZjZ59ls9kwz88K9LQ7j6IfDXsdxgrcGEEFEqJRSAAQzn7fWXmtmvnJ3tNZkHCfc3t5iahOQgJWCBKCq1FqDiDzVzHwcEYgIcndMU8N+v0dmogNQzODufLcrzxiZhAQyEwBASGSedPL/wyDaMTNEJEUEpRi6rkPXdShWoKoQkWBmENGOmWhrxWBmrZSCe7ViPp9jPp+j1opSSpoZmxmY+YOS6rVmvqi1PgEQqkruzgAgImFmXGslVb1h5u2/4x65+/uIOG+tISLu+jLDzKCqN6r6pu/7bzIMA61Wq1/L5fIjgN8ict/MHphZmNl3VX1nJm+vrvof6/Xa/gJuQtCzTqj1dQAAAABJRU5ErkJggg==);
  1261. /* With CSS: background-image: radial-gradient(6px at 50% 50%, #888, #888 1px, transparent 6px); */
  1262. }
  1263. .imgdiff-opa-slider {
  1264. position:absolute;
  1265. top : 0;
  1266. left: -5px;
  1267. bottom: 0;
  1268. right: -5px;
  1269. text-align: left;
  1270. }
  1271. .imgdiff-opa-handle {
  1272. display: inline-block;
  1273. width: 10px;
  1274. height: 10px;
  1275. position: absolute;
  1276. top: -3px;
  1277. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAABMklEQVQY022OsU7CUBRA723fpTS0NcVBJuOoQUed0MSJhOiP0IHK6g84ShoM/2HE1TjZxeCA0UF3RW2tLQ73mesgLuiZT3IOwoww7FSLYrrDzHUAMInUbblsX0RR9NJsNgEBAIIg2EjT9DDP8y2ttSsiqEhlTsW58TzvaDAYxBiGB9XJ5PkkSZJdZvZFRAEAIKImUm+et3BVqy11VFHkjTzPN2cS/a6ICDHrxWlR1N+zjz2DmddnOQVziIjJWnuaedUAAENEEP4iPweIImIYRDQmogwR9T+SVkplpVLpzrBt+9KpVEaK6BUReU6a2LY9dl33zIzj+LOx3XgUkRUQsADwSylzalnWk+M4I9/3o36/f42t/RYMT4fQ7XaX0zRpMes1ADAU0b3nuee9495DO2ib37s7ktpA7ddzAAAAAElFTkSuQmCC);
  1278. /* With CSS: background-image: radial-gradient(5px at 50% 50%, #444, #888, transparent 5px); */
  1279. }
  1280. .imgdiff-ovr-slider {
  1281. display: inline-block;
  1282. margin: 0;
  1283. padding: 0;
  1284. position: relative;
  1285. text-align: left;
  1286. }
  1287. .imgdiff-ovr-handle {
  1288. display: inline-block;
  1289. width : 1px;
  1290. height: 100%;
  1291. top: 0px;
  1292. background-color: #444;
  1293. border-right: 1px solid #FFF;
  1294. }
  1295. .imgdiff-ovr-handle:before {
  1296. content: '';
  1297. position: absolute;
  1298. right: -4px;
  1299. bottom: -5px;
  1300. width : 10px;
  1301. height: 10px;
  1302. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAABMklEQVQY022OsU7CUBRA723fpTS0NcVBJuOoQUed0MSJhOiP0IHK6g84ShoM/2HE1TjZxeCA0UF3RW2tLQ73mesgLuiZT3IOwoww7FSLYrrDzHUAMInUbblsX0RR9NJsNgEBAIIg2EjT9DDP8y2ttSsiqEhlTsW58TzvaDAYxBiGB9XJ5PkkSZJdZvZFRAEAIKImUm+et3BVqy11VFHkjTzPN2cS/a6ICDHrxWlR1N+zjz2DmddnOQVziIjJWnuaedUAAENEEP4iPweIImIYRDQmogwR9T+SVkplpVLpzrBt+9KpVEaK6BUReU6a2LY9dl33zIzj+LOx3XgUkRUQsADwSylzalnWk+M4I9/3o36/f42t/RYMT4fQ7XaX0zRpMes1ADAU0b3nuee9495DO2ib37s7ktpA7ddzAAAAAElFTkSuQmCC);
  1303. /* With CSS: background-image: radial-gradient(5px at 50% 50%, #444, #888, transparent 5px); */
  1304. }
  1305. .imgdiff-ovr-handle:after {
  1306. content: '';
  1307. position: absolute;
  1308. right: -4px;
  1309. top: -5px;
  1310. width : 10px;
  1311. height: 10px;
  1312. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAABMklEQVQY022OsU7CUBRA723fpTS0NcVBJuOoQUed0MSJhOiP0IHK6g84ShoM/2HE1TjZxeCA0UF3RW2tLQ73mesgLuiZT3IOwoww7FSLYrrDzHUAMInUbblsX0RR9NJsNgEBAIIg2EjT9DDP8y2ttSsiqEhlTsW58TzvaDAYxBiGB9XJ5PkkSZJdZvZFRAEAIKImUm+et3BVqy11VFHkjTzPN2cS/a6ICDHrxWlR1N+zjz2DmddnOQVziIjJWnuaedUAAENEEP4iPweIImIYRDQmogwR9T+SVkplpVLpzrBt+9KpVEaK6BUReU6a2LY9dl33zIzj+LOx3XgUkRUQsADwSylzalnWk+M4I9/3o36/f42t/RYMT4fQ7XaX0zRpMes1ADAU0b3nuee9495DO2ib37s7ktpA7ddzAAAAAElFTkSuQmCC);
  1313. /* With CSS: background-image: radial-gradient(5px at 50% 50%, #444, #888, transparent 5px); */
  1314. }
  1315. .imgdiff-link {
  1316. margin: 0px 4px;
  1317. text-decoration: none;
  1318. border: none;
  1319. }
  1320. .imgdiff-link > img {
  1321. border: 1px solid transparent; /* Avoid jumping when we change the border */
  1322. width: 20px;
  1323. height: 20px;
  1324. margin-bottom: 10px;
  1325. }
  1326. /* End image diffs */
  1327. td.changeType {
  1328. width: 15px;
  1329. }
  1330. span.addition, span.modification, span.deletion, span.rename {
  1331. border: 1px solid #888;
  1332. float: left;
  1333. height: 0.8em;
  1334. margin: 0.2em 0.5em 0 0;
  1335. overflow: hidden;
  1336. width: 0.8em;
  1337. }
  1338. span.addition {
  1339. background-color: #ccffcc;
  1340. }
  1341. span.modification {
  1342. background-color: #ffdd88;
  1343. }
  1344. span.deletion {
  1345. background-color: #f8bbbb;
  1346. }
  1347. span.rename {
  1348. background-color: #cAc2f5;
  1349. }
  1350. div.commitLegend {
  1351. float: right;
  1352. padding: 0.4em 0.4em 0.2em 0.4em;
  1353. vertical-align:top;
  1354. margin: 0px;
  1355. }
  1356. div.commitLegend span {
  1357. font-size: 0.9em;
  1358. vertical-align: top;
  1359. }
  1360. div.references {
  1361. float: right;
  1362. text-align: right;
  1363. }
  1364. table.plain, table.summary, table.ticket {
  1365. width: 0 !important;
  1366. border: 0;
  1367. }
  1368. table.plain th, table.plain td, table.summary th, table.summary td {
  1369. white-space: nowrap;
  1370. padding: 1px 3px;
  1371. border: 0;
  1372. }
  1373. table.ticket th, table.ticket td {
  1374. padding: 1px 3px;
  1375. border: 0;
  1376. }
  1377. table.summary {
  1378. margin: 0px;
  1379. }
  1380. table.summary th, table.ticket th {
  1381. color: #999;
  1382. padding-right: 10px;
  1383. text-align: right;
  1384. font-weight: normal;
  1385. }
  1386. table.pretty {
  1387. border:1px solid #ddd;
  1388. border-radius: 0 0 3px 3px;
  1389. width: 100%;
  1390. }
  1391. table.pretty td.icon {
  1392. padding: 0px 0px 0px 2px;
  1393. width: 18px;
  1394. vertical-align: middle;
  1395. }
  1396. table.pretty td.icon img {
  1397. vertical-align: middle;
  1398. }
  1399. table.pretty td {
  1400. padding: 2px 4px;
  1401. border-left: 0;
  1402. }
  1403. table.pretty td.message {
  1404. padding: 0px;
  1405. }
  1406. table.pretty table.nestedTable {
  1407. width: 100%;
  1408. margin-left: 4px !important;
  1409. margin-bottom: 0px !important;
  1410. }
  1411. table.pretty td.graph {
  1412. border-right: 1px solid #ddd;
  1413. border-bottom: 1px solid #ddd;
  1414. padding: 0px;
  1415. /*width: 1px;*/
  1416. }
  1417. table.pretty tr.commit {
  1418. /* must match branch graph servlet row height definition */
  1419. height: 24px;
  1420. }
  1421. @media (min-width: 979px) {
  1422. td.ellipsize {
  1423. text-overflow: ellipsis;
  1424. overflow: hidden;
  1425. white-space: nowrap;
  1426. }
  1427. }
  1428. @media (max-width: 979px) {
  1429. td.ellipsize {
  1430. text-overflow: inherit;
  1431. overflow: visible;
  1432. white-space: wrap;
  1433. }
  1434. }
  1435. td.sha256 {
  1436. max-width: 20em;
  1437. overflow: hidden;
  1438. text-overflow: ellipsis;
  1439. }
  1440. table.comments td {
  1441. padding: 4px;
  1442. line-height: 17px;
  1443. }
  1444. table.projectlist {
  1445. margin-top: 10px;
  1446. }
  1447. table.repositories {
  1448. border:1px solid #ddd;
  1449. border-spacing: 0px;
  1450. width: 100%;
  1451. }
  1452. table.repositories th {
  1453. padding: 4px;
  1454. border:0;
  1455. }
  1456. table.repositories th.right {
  1457. border-right: 1px solid #ddd;
  1458. }
  1459. table.repositories td {
  1460. padding: 2px;
  1461. border-left: 0;
  1462. }
  1463. table.repositories td.rightAlign {
  1464. text-align: right;
  1465. border-right: 1px solid #ddd;
  1466. }
  1467. table.repositories td.icon img {
  1468. vertical-align: top;
  1469. }
  1470. table.repositories tr.group {
  1471. background-color: #ccc;
  1472. border-left: 1px solid #ccc;
  1473. border-right: 1px solid #ccc;
  1474. }
  1475. table.repositories tr.group td {
  1476. font-weight: bold;
  1477. color: black;
  1478. background-color: #ddd;
  1479. padding-left: 5px;
  1480. border-top: 1px solid #aaa;
  1481. border-bottom: 1px solid #aaa;
  1482. }
  1483. table.repositories tr.group td a {
  1484. color: black;
  1485. }
  1486. table.palette { border:0; width: 0 !important; }
  1487. table.palette td.header {
  1488. font-weight: bold;
  1489. background-color: #ffffff !important;
  1490. padding-top: 0px !important;
  1491. margin-bottom: 0 !important;
  1492. border: 0 !important;
  1493. border-radius: 0 !important;
  1494. line-height: 1em;
  1495. }
  1496. table.palette td.pane {
  1497. padding: 0px;
  1498. width: 250px !important;
  1499. }
  1500. table.palette td.pane select {
  1501. width: 250px !important;
  1502. }
  1503. table.gitnotes {
  1504. border: 0;
  1505. }
  1506. table.gitnotes td {
  1507. border-top: 1px solid #ddd;
  1508. padding-top: 3px;
  1509. vertical-align:top;
  1510. }
  1511. table.gitnotes table {
  1512. border: none;
  1513. }
  1514. table.gitnotes td table td {
  1515. border: none;
  1516. padding: 0px;
  1517. }
  1518. table.gitnotes td.info {
  1519. padding-right: 10px;
  1520. }
  1521. table.gitnotes td.message {
  1522. width: 65%;
  1523. border-left: 1px solid #ddd;
  1524. padding-left: 10px;
  1525. }
  1526. table.annotated {
  1527. width: 100%;
  1528. border:1px solid #ddd;
  1529. }
  1530. table.annotated tr.even {
  1531. background-color: white;
  1532. }
  1533. table.annotated tr.odd {
  1534. background-color: #f5f5f5;
  1535. }
  1536. table.annotated td {
  1537. padding: 0px;
  1538. border: 0;
  1539. }
  1540. table.annotated td.lineCommit {
  1541. padding-left: 5px;
  1542. padding-right: 5px;
  1543. }
  1544. table.annotated td.lineNumber {
  1545. border-right: 1px solid #ddd;
  1546. border-left: 1px solid #ddd;
  1547. padding-left: 5px;
  1548. padding-right: 5px;
  1549. text-align: right;
  1550. }
  1551. table.annotated td.lineContent {
  1552. padding-left: 5px;
  1553. font: monospace;
  1554. }
  1555. table.activity {
  1556. width: 100%;
  1557. margin-top: 10px;
  1558. }
  1559. table.activity td {
  1560. padding-top:7px;
  1561. padding-bottom:7px;
  1562. }
  1563. tr th a { background-position: right; padding-right: 15px; background-repeat:no-repeat; }
  1564. tr th.wicket_orderDown a {background-image: url(arrow_down.png); }
  1565. tr th.wicket_orderUp a { background-image: url(arrow_up.png); }
  1566. tr th.wicket_orderNone a { background-image: url(arrow_off.png); }
  1567. tr.light {
  1568. background-color: #ffffff;
  1569. }
  1570. tr.dark {
  1571. background-color: #f6f6f6;
  1572. }
  1573. /* currently both use the same, but it can change */
  1574. tr.light:hover,
  1575. tr.dark:hover {
  1576. background-color: #002060;
  1577. color: white;
  1578. }
  1579. tr.light:hover a,
  1580. tr.dark:hover a {
  1581. color: white;
  1582. }
  1583. .merge {
  1584. opacity: 0.5;
  1585. }
  1586. .merge:hover {
  1587. opacity: 1;
  1588. }
  1589. td.author {
  1590. font-style: italic !important;
  1591. white-space: nowrap;
  1592. }
  1593. td.date {
  1594. /*font-style: italic !important;*/
  1595. white-space: nowrap;
  1596. }
  1597. span.sha1, span.sha1 a, span.sha1 a span, .commit_message, span.shortsha1, td.sha1, td.sha256 {
  1598. font-family: consolas, monospace;
  1599. font-size: 13px;
  1600. }
  1601. span.shortsha1 {
  1602. font-size: 12px;
  1603. }
  1604. td.mode {
  1605. text-align: right;
  1606. font-family: monospace;
  1607. width: 8em;
  1608. padding-right:15px;
  1609. }
  1610. td.filestore {
  1611. text-align: right;
  1612. width:1em;
  1613. padding-right:15px;
  1614. }
  1615. td.size {
  1616. text-align: right;
  1617. width: 8em;
  1618. padding-right:15px;
  1619. }
  1620. td.rightAlign {
  1621. text-align: right;
  1622. }
  1623. td.treeLinks {
  1624. text-align: right;
  1625. width: 13em;
  1626. }
  1627. span.help-inline {
  1628. color: #777;
  1629. }
  1630. span.metricsTitle {
  1631. font-size: 2em;
  1632. }
  1633. .tagRef, .headRef, .localBranch, .remoteBranch, .otherRef, .pullRef {
  1634. padding: 0px 3px;
  1635. margin-right:2px;
  1636. font-family: sans-serif;
  1637. font-size: 9px;
  1638. font-weight: normal;
  1639. border: 1px solid;
  1640. color: black;
  1641. }
  1642. .tagRef a, .headRef a, .localBranch a, .remoteBranch a, .otherRef a, .pullRef a {
  1643. font-size: 9px;
  1644. text-decoration: none;
  1645. color: black !important;
  1646. }
  1647. .tagRef a:hover, .headRef a:hover, .localBranch a:hover, .remoteBranch a:hover, .otherRef a:hover, .pullRef a:hover {
  1648. color: black !important;
  1649. text-decoration: underline;
  1650. }
  1651. .otherRef {
  1652. background-color: #b0e0f0;
  1653. border-color: #80aaaa;
  1654. }
  1655. .pullRef {
  1656. background-color: rgb(255, 221, 136);
  1657. border-color: rgb(136, 136, 136);
  1658. }
  1659. .remoteBranch {
  1660. background-color: #cAc2f5;
  1661. border-color: #6c6cbf;
  1662. }
  1663. .tagRef {
  1664. background-color: #ffffaa;
  1665. border-color: #ffcc00;
  1666. }
  1667. .headRef {
  1668. background-color: #ffaaff;
  1669. border-color: #ff00ee;
  1670. }
  1671. .localBranch {
  1672. background-color: #ccffcc;
  1673. border-color: #00cc33;
  1674. }
  1675. table .palette td.buttons button {
  1676. -webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;
  1677. border: 1px solid #ccc !important;
  1678. padding: 10px;
  1679. margin-bottom: 10px;
  1680. }
  1681. table .palette td.buttons button:hover {
  1682. border: 1px solid #0069D6 !important;
  1683. }
  1684. table .palette td.buttons button:active {
  1685. border: 1px solid orange !important;
  1686. }
  1687. .feedbackPanelERROR, .feedbackPanelINFO {
  1688. list-style: none;
  1689. line-height: 35px;
  1690. }
  1691. .feedbackPanelINFO span, .feedbackPanelERROR span {
  1692. position:relative;padding:7px 15px;margin-top:5px;margin-bottom:5px;color:#404040;background-color:#eedc94;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));background-image:-moz-linear-gradient(top, #fceec1, #eedc94);background-image:-ms-linear-gradient(top, #fceec1, #eedc94);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));background-image:-webkit-linear-gradient(top, #fceec1, #eedc94);background-image:-o-linear-gradient(top, #fceec1, #eedc94);background-image:linear-gradient(top, #fceec1, #eedc94);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#eedc94 #eedc94 #e4c652;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);text-shadow:0 1px 0 rgba(255, 255, 255, 0.5);border-width:1px;border-style:solid;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);-moz-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1693. }
  1694. .feedbackPanelERROR span {
  1695. color: #ffffff;
  1696. background-color:#c43c35;background-repeat:repeat-x;background-image:-khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));background-image:-moz-linear-gradient(top, #ee5f5b, #c43c35);background-image:-ms-linear-gradient(top, #ee5f5b, #c43c35);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));background-image:-webkit-linear-gradient(top, #ee5f5b, #c43c35);background-image:-o-linear-gradient(top, #ee5f5b, #c43c35);background-image:linear-gradient(top, #ee5f5b, #c43c35);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);border-color:#c43c35 #c43c35 #882a25;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1697. }
  1698. /* google-code-prettify line numbers */
  1699. li.L0,
  1700. li.L1,
  1701. li.L2,
  1702. li.L3,
  1703. li.L4,
  1704. li.L5,
  1705. li.L6,
  1706. li.L7,
  1707. li.L8,
  1708. li.L9 { color: #888; border-left: 1px solid #ccc; padding-left:5px; list-style-type: decimal !important; }
  1709. /* Alternate shading for lines */
  1710. li.L1,
  1711. li.L3,
  1712. li.L5,
  1713. li.L7,
  1714. li.L9 { background: #fafafa !important; }
  1715. div.docs ul.nav {
  1716. margin-bottom: 0px !important;
  1717. }
  1718. div.docs div.docnav {
  1719. display: inline-block;
  1720. padding: 6px 5px 6px 5px;
  1721. border-left: 1px solid #ccc;
  1722. border-right: 1px solid #ccc;
  1723. border-bottom: 1px solid #ccc;
  1724. border-radius: 0px 0px 3px 3px;
  1725. background-color: #ECF1F4;
  1726. color: #666;
  1727. text-align: left;
  1728. margin-top: -10px;
  1729. }
  1730. div.docs .content {
  1731. margin-top: 10px;
  1732. }
  1733. div.docs div.markdown {
  1734. margin-top: 10px;
  1735. }
  1736. div.markdown {
  1737. line-height: 1.4;
  1738. }
  1739. div.markdown h1 {
  1740. padding: 0px 0px 4px;
  1741. border-bottom: 1px solid rgb(221, 221, 221);
  1742. margin: 4px 0px 8px;
  1743. }
  1744. div.markdown h2 {
  1745. padding: 4px 0px;
  1746. border-bottom: 1px solid rgb(238, 238, 238);
  1747. margin: 4px 0px 8px;
  1748. }
  1749. div.markdown h3 {
  1750. padding: 8px 0px 4px;
  1751. }
  1752. div.markdown li {
  1753. line-height: 1.4;
  1754. }
  1755. div.markdown pre {
  1756. background-color: rgb(250, 250, 250);
  1757. border: 1px solid rgb(221, 221, 221);
  1758. border-radius: 4px 4px 4px 4px;
  1759. display: block;
  1760. font-size: 12px;
  1761. line-height: 18px;
  1762. margin: 9px 0;
  1763. padding: 8.5px;
  1764. white-space: pre-wrap;
  1765. }
  1766. div.markdown pre code {
  1767. background-color: inherit;
  1768. border: none;
  1769. padding: 0;
  1770. }
  1771. div.markdown code {
  1772. background-color: rgb(250, 250, 250);
  1773. border: 1px solid rgb(221, 221, 221);
  1774. border-radius: 3px;
  1775. padding: 0 0.4em;
  1776. }
  1777. div.markdown table {
  1778. max-width: 100%;
  1779. background-color: transparent;
  1780. border-collapse: collapse;
  1781. border-spacing: 0px;
  1782. font-size: inherit;
  1783. border-width: 0px 1px 1px 0px;
  1784. border-style: solid solid solid none;
  1785. border-color: rgb(221, 221, 221);
  1786. border-image: none;
  1787. border-collapse: separate;
  1788. margin: 10px 0px 20px;
  1789. }
  1790. div.markdown table td, div.markdown table th {
  1791. padding: 8px;
  1792. line-height: 20px;
  1793. text-align: left;
  1794. vertical-align: top;
  1795. border-top: 1px solid rgb(221, 221, 221);
  1796. border-left: 1px solid rgb(221, 221, 221);
  1797. }
  1798. div.markdown table.text th, div.markdown table.text td {
  1799. vertical-align: top;
  1800. border-top: 1px solid #ccc;
  1801. padding:5px;
  1802. }
  1803. .resolution {
  1804. text-transform: uppercase;
  1805. font-weight: bold !important;
  1806. font-size: 11px;
  1807. }
  1808. .resolution-success, .resolution-success a {
  1809. color: #14892c !important;
  1810. }
  1811. .resolution-success a:hover {
  1812. color: white !important;
  1813. }
  1814. .resolution-error, .resolution-error a {
  1815. color: #d04437 !important;
  1816. }
  1817. .resolution-error a:hover {
  1818. color: white !important;
  1819. }
  1820. .resolution-complete, .resolution-complete a {
  1821. color: #4a6785 !important
  1822. }
  1823. .resolution-complete a:hover {
  1824. color: white !important;
  1825. }
  1826. .resolution-current, .resolution-current a {
  1827. color: #594300 !important;
  1828. }
  1829. .resolution-current, .resolution-current a:hover {
  1830. color: white;
  1831. }
  1832. /*! AUI Lozenge */
  1833. .aui-lozenge {
  1834. background: #ccc;
  1835. border: 1px solid #ccc;
  1836. border-radius: 3px;
  1837. color: #333;
  1838. display: inline-block;
  1839. font-size: 11px;
  1840. font-weight: bold;
  1841. line-height: 99%; /* cross-browser compromise to make the line-height match the font-size */
  1842. margin: 0;
  1843. padding: 2px 5px;
  1844. text-align: center;
  1845. text-decoration: none;
  1846. text-transform: uppercase;
  1847. }
  1848. .aui-lozenge.aui-lozenge-subtle {
  1849. background-color: #fff;
  1850. border-color: #ccc;
  1851. color: #333;
  1852. }
  1853. .aui-lozenge-success {
  1854. background-color: #14892c;
  1855. border-color: #14892c;
  1856. color: #fff;
  1857. }
  1858. .aui-lozenge-success.aui-lozenge-subtle {
  1859. background-color: #fff;
  1860. border-color: #b2d8b9;
  1861. color: #14892c;
  1862. }
  1863. .aui-lozenge-error {
  1864. background-color: #d04437;
  1865. border-color: #d04437;
  1866. color: #fff;
  1867. }
  1868. .aui-lozenge-error.aui-lozenge-subtle {
  1869. background-color: #fff;
  1870. border-color: #f8d3d1;
  1871. color: #d04437;
  1872. }
  1873. .aui-lozenge-current {
  1874. background-color: #ffd351;
  1875. border-color: #ffd351;
  1876. color: #594300;
  1877. }
  1878. .aui-lozenge-current.aui-lozenge-subtle {
  1879. background-color: #fff;
  1880. border-color: #ffe28c;
  1881. color: #594300;
  1882. }
  1883. .aui-lozenge-complete {
  1884. background-color: #4a6785;
  1885. border-color: #4a6785;
  1886. color: #fff;
  1887. }
  1888. .aui-lozenge-complete.aui-lozenge-subtle {
  1889. background-color: #fff;
  1890. border-color: #e4e8ed;
  1891. color: #4a6785;
  1892. }
  1893. .aui-lozenge-moved {
  1894. background-color: #815b3a;
  1895. border-color: #815b3a;
  1896. color: #fff;
  1897. }
  1898. .aui-lozenge-moved.aui-lozenge-subtle {
  1899. background-color: #fff;
  1900. border-color: #ece7e2;
  1901. color: #815b3a;
  1902. }
  1903. .severity-catastrophic {
  1904. color:#D51900;
  1905. }
  1906. .severity-catastrophic:after {
  1907. font-family: Helvetica,arial,freesans,clean,sans-serif ;
  1908. content: "●●●●●";
  1909. font-weight:900;
  1910. font-size:.45em;
  1911. font-variant:small-caps;
  1912. display:flex;
  1913. white-space: pre;
  1914. }
  1915. .severity-critical {
  1916. color:#D55900;
  1917. }
  1918. .severity-critical:after {
  1919. font-family: Helvetica,arial,freesans,clean,sans-serif ;
  1920. content: " ●●●●";
  1921. font-weight:900;
  1922. font-size:.45em;
  1923. font-variant:small-caps;
  1924. display:flex;
  1925. white-space: pre;
  1926. }
  1927. .severity-serious {
  1928. color:#E69F00;
  1929. }
  1930. .severity-serious:after {
  1931. font-family: Helvetica,arial,freesans,clean,sans-serif ;
  1932. content: " ●●●";
  1933. font-weight:900;
  1934. font-size:.45em;
  1935. font-variant:small-caps;
  1936. display:flex;
  1937. white-space: pre;
  1938. }
  1939. .severity-minor {
  1940. color:#009E73;
  1941. }
  1942. .severity-minor:after {
  1943. font-family: Helvetica,arial,freesans,clean,sans-serif ;
  1944. content: " ●●";
  1945. font-weight:900;
  1946. font-size:.45em;
  1947. font-variant:small-caps;
  1948. display:flex;
  1949. white-space: pre;
  1950. }
  1951. .severity-negligible {
  1952. color:#0072B2;
  1953. }
  1954. .severity-negligible:after {
  1955. font-family: Helvetica,arial,freesans,clean,sans-serif ;
  1956. content: " ●";
  1957. font-weight:900;
  1958. font-size:.45em;
  1959. font-variant:small-caps;
  1960. display:flex;
  1961. white-space: pre;
  1962. }
  1963. .severity-unrated {
  1964. }
  1965. .priority-urgent {
  1966. color:#D51900;
  1967. }
  1968. .priority-high {
  1969. color:#D55900;
  1970. }
  1971. .priority-normal {
  1972. }
  1973. .priority-low {
  1974. color:#0072B2;
  1975. }
  1976. .file-positive {
  1977. color:#009E73;
  1978. }
  1979. .file-negative {
  1980. color:#D51900;
  1981. }