You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.
4
4
5
-
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
5
+
In particular this means:
6
6
7
-
## Our Standards
8
-
9
-
Examples of behavior that contributes to creating a positive environment include:
10
-
11
-
* Using welcoming and inclusive language
12
-
* Being respectful of differing viewpoints and experiences
13
-
* Gracefully accepting constructive criticism
14
-
* Focusing on what is best for the community
15
-
* Showing empathy towards other community members
7
+
> We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality.
16
8
17
9
Examples of unacceptable behavior by participants include:
18
10
19
-
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20
-
* Trolling, insulting/derogatory comments, and personal or political attacks
11
+
* The use of sexualized language or imagery
12
+
* Personal attacks
13
+
* Trolling or insulting/derogatory comments
21
14
* Public or private harassment
22
-
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23
-
* Other conduct which could reasonably be considered inappropriate in a professional setting
24
-
25
-
## Our Responsibilities
26
-
27
-
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28
-
29
-
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30
-
31
-
## Scope
32
-
33
-
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34
-
35
-
## Enforcement
36
-
37
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38
-
39
-
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40
-
41
-
## Attribution
42
-
43
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
15
+
* Publishing other's private information, such as physical or electronic addresses, without explicit permission
For the complete set of rules and more information on the topic see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
Copy file name to clipboardexpand all lines: .github/CONTRIBUTING.md
+53-28
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ The AngleSharp project ultimately tries to provide tools to parse, inspect, modi
6
6
7
7
## Code License
8
8
9
-
This is an open source project falling under the MIT License. By using, distributing, or contributing to this project, you accept and agree that all code within the AngleSharp project are licensed under MIT license.
9
+
This is an open source project falling under the [MIT License](../LICENSE). By using, distributing, or contributing to this project, you accept and agree that all code within the AngleSharp project and its libraries are licensed under MIT license.
10
10
11
11
## Becoming a Contributor
12
12
13
-
Until the project has enough contributors a BDFL model is followed. As such the sole key maintainer keeps the right to appoint GitHub members as regular project contributors. Nevertheless, usually appointing someone follows this process:
13
+
Until the project has enough contributors a [BDFL](https://en.wikipedia.org/wiki/Benevolent_dictator_for_life) model is followed. As such the sole key maintainer keeps the right to appoint GitHub members as regular project contributors. Nevertheless, usually appointing someone follows this process:
14
14
15
15
1. An individual contributes actively via discussions (reporting bugs, giving feedback to existing or opening new issues) and / or pull requests
16
16
2. The individual is either directly asked, invited or asks for contributor rights on the project
@@ -22,19 +22,25 @@ Every contributor has to sign the contributor's license agreement (CLA) to estab
22
22
23
23
### Issue Discussion
24
24
25
-
Discussion of issues should be placed transparently in the [issue tracker](https://github.com/FlorianRappl/AngleSharp/issues/) here on GitHub.
25
+
Discussion of issues should be placed transparently in the issue tracker here on GitHub.
AngleSharp uses features from C# 6 and will soon switch to C# 7. You will therefore need a C# compiler that is up for the job.
35
+
AngleSharp and its libraries uses features from the latest versions of C# (e.g., C# 7). You will therefore need a C# compiler that is up for the job.
30
36
31
37
1. Fork and clone the repo.
32
38
2. First try to build the AngleSharp.Core libray and see if you get the tests running.
33
39
3. You will be required to resolve some dependencies via NuGet.
34
40
35
41
AngleSharp itself does not have dependencies, however, the tests are dependent on NUnit.
36
42
37
-
The build system of AngleSharp uses Cake. A bootstrap script (build.ps1 for Windows or build.sh for *nix systems) is included. Note, that at the moment AngleSharp requires NuGet 3.5, which looks for MSBuild pre-15, i.e., before Visual Studio 2017 on Windows systems.
43
+
The build system of AngleSharp uses Cake. A bootstrap script (build.ps1 for Windows or build.sh for *nix systems) is included. Note, that at the moment AngleSharp may require NuGet 3.5, which looks for MSBuild pre-15, i.e., before Visual Studio 2017 on Windows systems. We aim to drop this requirement enitirely soon.
38
44
39
45
### Code Conventions
40
46
@@ -49,12 +55,13 @@ There are a couple of rules, which are definitely not standard, but highly recom
49
55
- AngleSharp uses the RHS convention, where types are always put on the right hand side if possible, i.e., preferring `var` under all circumstances
50
56
- A single empty line between two non-simple statements (e.g., for-loop and if-condition) should be inserted
51
57
- Types are preferred to keywords (`String` instead of `string` or `Int32` instead of `int`)
58
+
-`using` statements must be inside the namespace declaration
52
59
53
60
### Development Workflow
54
61
55
62
1. If no issue already exists for the work you'll be doing, create one to document the problem(s) being solved and self-assign.
56
63
2. Otherwise please let us know that you are working on the problem. Regular status updates (e.g. "still in progress", "no time anymore", "practically done", "pull request issued") are highly welcome.
57
-
2. Create a new branch—please don't work in the `master` branch directly. It is reserved for releases. We recommend naming the branch to match the issue being addressed (`feature-#777` or `issue-777`).
64
+
2. Create a new branch—please don't work in the `master` branch directly. It is reserved for releases. We recommend naming the branch to match the issue being addressed (`feature/#777` or `issue-777`).
58
65
3. Add failing tests for the change you want to make. Tests are crucial and should be taken from W3C (or other specification).
59
66
4. Fix stuff. Always go from edge case to edge case.
60
67
5. All tests should pass now. Also your new implementation should not break existing tests.
@@ -63,46 +70,64 @@ There are a couple of rules, which are definitely not standard, but highly recom
63
70
64
71
Just to illustrate the git workflow for AngleSharp a little bit more we've added the following graphs.
65
72
66
-
Initially AngleSharp starts at the `master` branch. This branch should contain the latest stable (or released) version.
Now active work is supposed to be done. Therefore a new branch should be created. Let's create one:
75
78
76
-
git checkout -b feature-#777
79
+
```
80
+
git checkout -b feature/#777
81
+
```
77
82
78
83
There may be many of these feature branches. Most of them are also pushed to the server for discussion or synchronization.
79
84
80
-
git push -u origin feature-#777
85
+
```
86
+
git push -u origin feature/#777
87
+
```
81
88
82
-
At this point the graph could look as follows. The diagram shows two feature branches in different stages.
89
+
Now feature branches may be closed when they are done. Here we simply merge with the feature branch(es). For instance the following command takes the `feature/#777` branch from the server and merges it with the `devel` branch.
Now feature branches may be closed when they are done. Here we simply merge with the feature branch(es). For instance the following command takes the `feature-#777` branch from the server and merges it with the `devel` branch.
98
+
Finally, we may have all the features that are needed to release a new version of AngleSharp. Here we tag the release. For instance for the 1.0 release we use `v1.0`.
87
99
88
-
git checkout devel
89
-
git pull
90
-
git pull origin feature-#777
91
-
git push
100
+
```
101
+
git checkout master
102
+
git merge devel
103
+
git tag v1.0
104
+
```
92
105
93
-
This aggregates to the graph below.
106
+
(The last part is automatically performed by our CI system.)
Finally we may have all the features that are needed to release a new version of AngleSharp. Here we tag the release. For instance for the 1.0 release we use `v1.0`.
110
+
The following files should not be edited directly in the current repository, but rather in the `AngleSharp.GitBase` repository. They are then synced via `git pull` from a different remote.
Copy file name to clipboardexpand all lines: README.md
+21-1
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,24 @@ var config = Configuration.Default
33
33
34
34
in the previous example `MyConsoleLogger` refers to a class implementing the `IConsoleLogger` interface. Examples of classes implementing this interface are available in our [samples repository](https://github.com/AngleSharp/AngleSharp.Samples).
35
35
36
+
## Extension Methods
37
+
38
+
This plugin also delivers some extension methods to be used together with elements from AngleSharp, e.g., `IDocument` or `IElement`.
39
+
40
+
For instance, the following waits until a stable point has been reached (and the document is fully available):
41
+
42
+
```cs
43
+
varcontext=BrowsingContext.New(config);
44
+
vardocument=awaitcontext.OpenAsync(address)
45
+
.WaitUntilAvailable();
46
+
```
47
+
48
+
Scripts can also be run in the context of the document, where the result of the last expression is returned:
The repository contains DOM bindings for the *Jint* JavaScript engine. *Jint* is fully ECMAScript 5 compatible and provides the basis for evaluating JavaScripts in the context of the AngleSharp DOM representation.
@@ -41,7 +59,9 @@ The library comes with a service that exposes `WithJs` to `IConfiguration`. This
0 commit comments