Skip to content
Snippets Groups Projects
Commit eb0ed47e authored by catch's avatar catch
Browse files

Issue #2672442 by rakesh.gectcr, dimaro, aditya_anurag, jhodgdon: In the...

Issue #2672442 by rakesh.gectcr, dimaro, aditya_anurag, jhodgdon: In the documentation, change all instances of "an URL" to "a URL"
parent e6ce24be
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Showing
with 16 additions and 16 deletions
...@@ -978,7 +978,7 @@ Drupal 4.5.0, 2004-10-18 ...@@ -978,7 +978,7 @@ Drupal 4.5.0, 2004-10-18
- Syndication: - Syndication:
* Added support for RSS ping-notifications of http://technorati.com/. * Added support for RSS ping-notifications of http://technorati.com/.
* Refactored the categorization of syndicated news items. * Refactored the categorization of syndicated news items.
* Added an URL alias for 'rss.xml'. * Added a URL alias for 'rss.xml'.
* Improved date parsing. * Improved date parsing.
- Database backend: - Database backend:
* Added support for multiple database connections. * Added support for multiple database connections.
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* *
* Some authentication methods should not be available throughout a whole site. * Some authentication methods should not be available throughout a whole site.
* For instance, there are good reasons to restrict insecure methods like HTTP * For instance, there are good reasons to restrict insecure methods like HTTP
* basic authentication or an URL token authentication method to API-only * basic authentication or a URL token authentication method to API-only
* routes. * routes.
*/ */
interface AuthenticationProviderFilterInterface { interface AuthenticationProviderFilterInterface {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
interface PathValidatorInterface { interface PathValidatorInterface {
/** /**
* Returns an URL object, if the path is valid and accessible. * Returns a URL object, if the path is valid and accessible.
* *
* @param string $path * @param string $path
* The path to check. * The path to check.
...@@ -24,7 +24,7 @@ interface PathValidatorInterface { ...@@ -24,7 +24,7 @@ interface PathValidatorInterface {
public function getUrlIfValid($path); public function getUrlIfValid($path);
/** /**
* Returns an URL object, if the path is valid. * Returns a URL object, if the path is valid.
* *
* Unlike getUrlIfValid(), access check is not performed. Do not use this * Unlike getUrlIfValid(), access check is not performed. Do not use this
* method if the $path is about to be presented to a user. * method if the $path is about to be presented to a user.
......
...@@ -253,7 +253,7 @@ public function getUrl($name, $parameters = array(), $options = array()) { ...@@ -253,7 +253,7 @@ public function getUrl($name, $parameters = array(), $options = array()) {
} }
/** /**
* Gets a rendered link from an url object. * Gets a rendered link from a url object.
* *
* @param string $text * @param string $text
* The link text for the anchor tag as a translated string. * The link text for the anchor tag as a translated string.
...@@ -312,7 +312,7 @@ public function getActiveThemePath() { ...@@ -312,7 +312,7 @@ public function getActiveThemePath() {
* Saves the unneeded automatic escaping for performance reasons. * Saves the unneeded automatic escaping for performance reasons.
* *
* The URL generation process percent encodes non-alphanumeric characters. * The URL generation process percent encodes non-alphanumeric characters.
* Thus, the only character within an URL that must be escaped in HTML is the * Thus, the only character within a URL that must be escaped in HTML is the
* ampersand ("&") which separates query params. Thus we cannot mark * ampersand ("&") which separates query params. Thus we cannot mark
* the generated URL as always safe, but only when we are sure there won't be * the generated URL as always safe, but only when we are sure there won't be
* multiple query params. This is the case when there are none or only one * multiple query params. This is the case when there are none or only one
......
...@@ -23,7 +23,7 @@ protected function setUp() { ...@@ -23,7 +23,7 @@ protected function setUp() {
* Test the public file transfer system. * Test the public file transfer system.
*/ */
function testPublicFileTransfer() { function testPublicFileTransfer() {
// Test generating an URL to a created file. // Test generating a URL to a created file.
$file = $this->createFile(); $file = $this->createFile();
$url = file_create_url($file->getFileUri()); $url = file_create_url($file->getFileUri());
// URLs can't contain characters outside the ASCII set so $filename has to be // URLs can't contain characters outside the ASCII set so $filename has to be
...@@ -33,7 +33,7 @@ function testPublicFileTransfer() { ...@@ -33,7 +33,7 @@ function testPublicFileTransfer() {
$this->drupalHead($url); $this->drupalHead($url);
$this->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the created file.'); $this->assertResponse(200, 'Confirmed that the generated URL is correct by downloading the created file.');
// Test generating an URL to a shipped file (i.e. a file that is part of // Test generating a URL to a shipped file (i.e. a file that is part of
// Drupal core, a module or a theme, for example a JavaScript file). // Drupal core, a module or a theme, for example a JavaScript file).
$filepath = 'core/assets/vendor/jquery/jquery.min.js'; $filepath = 'core/assets/vendor/jquery/jquery.min.js';
$url = file_create_url($filepath); $url = file_create_url($filepath);
......
...@@ -22,7 +22,7 @@ class FilterDefaultConfigTest extends KernelTestBase { ...@@ -22,7 +22,7 @@ class FilterDefaultConfigTest extends KernelTestBase {
protected function setUp() { protected function setUp() {
parent::setUp(); parent::setUp();
// Drupal\filter\FilterPermissions::permissions() builds an URL to output // Drupal\filter\FilterPermissions::permissions() builds a URL to output
// a link in the description. // a link in the description.
$this->installEntitySchema('user'); $this->installEntitySchema('user');
......
...@@ -41,7 +41,7 @@ public function isExternal(); ...@@ -41,7 +41,7 @@ public function isExternal();
* Gets the URL object. * Gets the URL object.
* *
* @return \Drupal\Core\Url * @return \Drupal\Core\Url
* Returns an Url object. * Returns a Url object.
*/ */
public function getUrl(); public function getUrl();
......
...@@ -240,7 +240,7 @@ public function viewElements(FieldItemListInterface $items, $langcode) { ...@@ -240,7 +240,7 @@ public function viewElements(FieldItemListInterface $items, $langcode) {
* The link field item being rendered. * The link field item being rendered.
* *
* @return \Drupal\Core\Url * @return \Drupal\Core\Url
* An Url object. * A Url object.
*/ */
protected function buildUrl(LinkItemInterface $item) { protected function buildUrl(LinkItemInterface $item) {
$url = $item->getUrl() ?: Url::fromRoute('<none>'); $url = $item->getUrl() ?: Url::fromRoute('<none>');
......
...@@ -74,7 +74,7 @@ public function testRead() { ...@@ -74,7 +74,7 @@ public function testRead() {
* set curl settings for basic authentication. * set curl settings for basic authentication.
* *
* @param \Drupal\Core\Url $url * @param \Drupal\Core\Url $url
* An Url object. * A Url object.
* @param string $username * @param string $username
* The user name to authenticate with. * The user name to authenticate with.
* @param string $password * @param string $password
......
...@@ -27,7 +27,7 @@ class UrlRewritingTest extends FileTestBase { ...@@ -27,7 +27,7 @@ class UrlRewritingTest extends FileTestBase {
* Tests the rewriting of shipped file URLs by hook_file_url_alter(). * Tests the rewriting of shipped file URLs by hook_file_url_alter().
*/ */
function testShippedFileURL() { function testShippedFileURL() {
// Test generating an URL to a shipped file (i.e. a file that is part of // Test generating a URL to a shipped file (i.e. a file that is part of
// Drupal core, a module or a theme, for example a JavaScript file). // Drupal core, a module or a theme, for example a JavaScript file).
// Test alteration of file URLs to use a CDN. // Test alteration of file URLs to use a CDN.
...@@ -74,7 +74,7 @@ function testShippedFileURL() { ...@@ -74,7 +74,7 @@ function testShippedFileURL() {
* Tests the rewriting of public managed file URLs by hook_file_url_alter(). * Tests the rewriting of public managed file URLs by hook_file_url_alter().
*/ */
function testPublicManagedFileURL() { function testPublicManagedFileURL() {
// Test generating an URL to a managed file. // Test generating a URL to a managed file.
// Test alteration of file URLs to use a CDN. // Test alteration of file URLs to use a CDN.
\Drupal::state()->set('file_test.hook_file_url_alter', 'cdn'); \Drupal::state()->set('file_test.hook_file_url_alter', 'cdn');
......
...@@ -39,7 +39,7 @@ public function collectRoutes(RouteCollection $collection); ...@@ -39,7 +39,7 @@ public function collectRoutes(RouteCollection $collection);
public function alterRoutes(RouteCollection $collection); public function alterRoutes(RouteCollection $collection);
/** /**
* Generates an URL to this display. * Generates a URL to this display.
* *
* @return \Drupal\Core\Url * @return \Drupal\Core\Url
* A URL object for the display. * A URL object for the display.
......
...@@ -760,7 +760,7 @@ function views_embed_view($name, $display_id = 'default') { ...@@ -760,7 +760,7 @@ function views_embed_view($name, $display_id = 'default') {
* The display id. On the edit page for the view in question, you'll find * The display id. On the edit page for the view in question, you'll find
* a list of displays at the left side of the control area. "Master" * a list of displays at the left side of the control area. "Master"
* will be at the top of that list. Hover your cursor over the name of the * will be at the top of that list. Hover your cursor over the name of the
* display you want to use. An URL will appear in the status bar of your * display you want to use. A URL will appear in the status bar of your
* browser. This is usually at the bottom of the window, in the chrome. * browser. This is usually at the bottom of the window, in the chrome.
* Everything after #views-tab- is the display ID, e.g. page_1. * Everything after #views-tab- is the display ID, e.g. page_1.
* @param ... * @param ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment