-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add dark mode and share button
- Loading branch information
Showing
23 changed files
with
58 additions
and
124 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ To get a Bugzilla account send an e-mail to `[email protected]` f | |
|
||
An image of the existing home page of Bugzilla is shared below: | ||
|
||
![Screenshot of the existing home page of Bugzilla.](img/bugzilla.png) | ||
![Screenshot of the existing home page of Bugzilla.](../img/bugzilla.png) | ||
|
||
On the home page of Bugzilla, there are various buttons and links. There are four square buttons called as: | ||
|
||
![Screenshot of the four square buttons on the home page of Bugzilla.](img/squarebuttons.png) | ||
![Screenshot of the four square buttons on the home page of Bugzilla.](../img/squarebuttons.png) | ||
|
||
1. [File a bug](https://bugs.r-project.org/enter_bug.cgi): You will have to log in to Bugzilla to file a bug using this button | ||
|
||
|
@@ -46,18 +46,18 @@ Several useful shortcuts are available from the landing page: | |
|
||
A [quick search](https://bugs.r-project.org/page.cgi?id=quicksearch.html) bar is available on the home page where you can enter a bug number to search or some search terms. | ||
|
||
![Screenshot of the quick search bar on the home page of Bugzilla.](img/quicksearch.png) | ||
![Screenshot of the quick search bar on the home page of Bugzilla.](../img/quicksearch.png) | ||
|
||
There is also a section for Common Queries on the home page which includes links to bugs reported and changed in the last 24 hours and last 7 days. | ||
|
||
![Screenshot of the Common Queries section on the home page of Bugzilla.](img/commonquery.png) | ||
![Screenshot of the Common Queries section on the home page of Bugzilla.](../img/commonquery.png) | ||
|
||
## Searching for Bugs to Contribute to {#searching} | ||
|
||
When presented with a long list of bugs, it can often be a bit demotivating when it's not clear where to start. | ||
To help with this, you can use the [**Advanced Search**](https://bugs.r-project.org/query.cgi?format=advanced). | ||
|
||
![Screenshot of Advanced Search page showing the following fields: Summary, Product, Component, Status, Resolution](img/bugzilla-adv-search-home.png) | ||
![Screenshot of Advanced Search page showing the following fields: Summary, Product, Component, Status, Resolution](../img/bugzilla-adv-search-home.png) | ||
|
||
This presents several fields that you can use to narrow down your search. | ||
You can find out what a particular field is by clicking on the header, which will take you to that section in the [**Bug Fields Information Page**](https://bugs.r-project.org/page.cgi?id=fields.html). | ||
|
@@ -93,19 +93,19 @@ You can use this section to narrow down your search further to filter by things | |
|
||
It can be helpful, for example, to search for bugs labelled with `HELPWANTED`, which indicates bugs that may be suitable for anyone to work on regardless of expertise. | ||
|
||
![Screenshot of expanded Detailed Bug Information section showing the following fields: Comment, URL, Keywords (with HELPWANTED entered), Deadline, inclusion/exclusion of bug numbers, Version, Severity, Priority, Hardware, and OS](img/bugzilla-adv-search-detailed-bug-info.png) | ||
![Screenshot of expanded Detailed Bug Information section showing the following fields: Comment, URL, Keywords (with HELPWANTED entered), Deadline, inclusion/exclusion of bug numbers, Version, Severity, Priority, Hardware, and OS](../img/bugzilla-adv-search-detailed-bug-info.png) | ||
|
||
|
||
### Search By People {#searching-sbp} | ||
|
||
You can use this to narrow down your search to only include results of a specific person or up to three people who have participated in any component of the bug's discusson. | ||
|
||
![Screenshot of expanded Search By People section showing three fields allowing you to enter a person's name who can be any of the bug assignee, the reporter, a CC list member, or a commenter](img/bugzilla-adv-search-search-by-people.png) | ||
![Screenshot of expanded Search By People section showing three fields allowing you to enter a person's name who can be any of the bug assignee, the reporter, a CC list member, or a commenter](../img/bugzilla-adv-search-search-by-people.png) | ||
|
||
|
||
### Search By Change History {#searching-sbch} | ||
|
||
Use this to search for bugs where any of the status fields has been changed (which, depending on the change, could indicate that someone from R-Core has given some attention to the bug). | ||
This also provides a date range to narrow your search. | ||
|
||
![Screenshot of expanded Search by Change History section showing three fields: where ANY of the fields (multi-select list), changed to, and between (dates in YYYY-MM-DD format)](img/bugzilla-adv-search-search-by-change-history.png) | ||
![Screenshot of expanded Search by Change History section showing three fields: where ANY of the fields (multi-select list), changed to, and between (dates in YYYY-MM-DD format)](../img/bugzilla-adv-search-search-by-change-history.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/*-- scss:defaults --*/ | ||
// Base document colors | ||
$body-bg: #181818; | ||
$body-color: white; | ||
$link-color: #75AADB; | ||
|
||
// Code blocks | ||
$code-block-bg-alpha: -.8; |
File renamed without changes.
File renamed without changes.
File renamed without changes.