-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HtmlSanitizer] Remove experimental status
- Loading branch information
Showing
12 changed files
with
1 addition
and
23 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -19,8 +19,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class HtmlSanitizer implements HtmlSanitizerInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -16,8 +16,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
class HtmlSanitizerConfig | ||
{ | ||
|
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 |
---|---|---|
|
@@ -18,8 +18,6 @@ | |
* ({@see https://wicg.github.io/sanitizer-api/}). | ||
* | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
interface HtmlSanitizerInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,8 +15,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class MastermindsParser implements ParserInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,8 +15,6 @@ | |
* Transforms an untrusted HTML input string into a DOM tree. | ||
* | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
interface ParserInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -17,8 +17,6 @@ | |
* Implements attribute-specific sanitization logic. | ||
* | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
interface AttributeSanitizerInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
use Symfony\Component\HtmlSanitizer\TextSanitizer\UrlSanitizer; | ||
|
||
/** | ||
* @experimental | ||
* @author Titouan Galopin <[email protected]> | ||
*/ | ||
final class UrlAttributeSanitizer implements AttributeSanitizerInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,8 +13,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class BlockedNode implements NodeInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -13,8 +13,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class DocumentNode implements NodeInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,8 +15,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class Node implements NodeInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -17,8 +17,6 @@ | |
* Once the sanitization is done, nodes are rendered into the final output string. | ||
* | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
interface NodeInterface | ||
{ | ||
|
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 |
---|---|---|
|
@@ -15,8 +15,6 @@ | |
|
||
/** | ||
* @author Titouan Galopin <[email protected]> | ||
* | ||
* @experimental | ||
*/ | ||
final class TextNode implements NodeInterface | ||
{ | ||
|