Issue #2672442 by rakesh.gectcr, dimaro, aditya_anurag, jhodgdon: In the documentation, change all instances of "an URL" to "a URL"
parent
e6ce24be8a
commit
eb0ed47ef9
|
@ -978,7 +978,7 @@ Drupal 4.5.0, 2004-10-18
|
|||
- Syndication:
|
||||
* Added support for RSS ping-notifications of http://technorati.com/.
|
||||
* Refactored the categorization of syndicated news items.
|
||||
* Added an URL alias for 'rss.xml'.
|
||||
* Added a URL alias for 'rss.xml'.
|
||||
* Improved date parsing.
|
||||
- Database backend:
|
||||
* Added support for multiple database connections.
|
||||
|
|
|
@ -14,7 +14,7 @@ use Symfony\Component\HttpFoundation\Request;
|
|||
*
|
||||
* Some authentication methods should not be available throughout a whole site.
|
||||
* 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.
|
||||
*/
|
||||
interface AuthenticationProviderFilterInterface {
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace Drupal\Core\Path;
|
|||
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
|
||||
* The path to check.
|
||||
|
@ -24,7 +24,7 @@ interface PathValidatorInterface {
|
|||
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
|
||||
* method if the $path is about to be presented to a user.
|
||||
|
|
|
@ -253,7 +253,7 @@ class TwigExtension extends \Twig_Extension {
|
|||
}
|
||||
|
||||
/**
|
||||
* Gets a rendered link from an url object.
|
||||
* Gets a rendered link from a url object.
|
||||
*
|
||||
* @param string $text
|
||||
* The link text for the anchor tag as a translated string.
|
||||
|
@ -312,7 +312,7 @@ class TwigExtension extends \Twig_Extension {
|
|||
* Saves the unneeded automatic escaping for performance reasons.
|
||||
*
|
||||
* 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
|
||||
* 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
|
||||
|
|
|
@ -23,7 +23,7 @@ class DownloadTest extends FileManagedTestBase {
|
|||
* Test the public file transfer system.
|
||||
*/
|
||||
function testPublicFileTransfer() {
|
||||
// Test generating an URL to a created file.
|
||||
// Test generating a URL to a created file.
|
||||
$file = $this->createFile();
|
||||
$url = file_create_url($file->getFileUri());
|
||||
// URLs can't contain characters outside the ASCII set so $filename has to be
|
||||
|
@ -33,7 +33,7 @@ class DownloadTest extends FileManagedTestBase {
|
|||
$this->drupalHead($url);
|
||||
$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).
|
||||
$filepath = 'core/assets/vendor/jquery/jquery.min.js';
|
||||
$url = file_create_url($filepath);
|
||||
|
|
|
@ -22,7 +22,7 @@ class FilterDefaultConfigTest extends KernelTestBase {
|
|||
protected function 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.
|
||||
|
||||
$this->installEntitySchema('user');
|
||||
|
|
|
@ -41,7 +41,7 @@ interface LinkItemInterface extends FieldItemInterface {
|
|||
* Gets the URL object.
|
||||
*
|
||||
* @return \Drupal\Core\Url
|
||||
* Returns an Url object.
|
||||
* Returns a Url object.
|
||||
*/
|
||||
public function getUrl();
|
||||
|
||||
|
|
|
@ -240,7 +240,7 @@ class LinkFormatter extends FormatterBase implements ContainerFactoryPluginInter
|
|||
* The link field item being rendered.
|
||||
*
|
||||
* @return \Drupal\Core\Url
|
||||
* An Url object.
|
||||
* A Url object.
|
||||
*/
|
||||
protected function buildUrl(LinkItemInterface $item) {
|
||||
$url = $item->getUrl() ?: Url::fromRoute('<none>');
|
||||
|
|
|
@ -74,7 +74,7 @@ class AuthTest extends RESTTestBase {
|
|||
* set curl settings for basic authentication.
|
||||
*
|
||||
* @param \Drupal\Core\Url $url
|
||||
* An Url object.
|
||||
* A Url object.
|
||||
* @param string $username
|
||||
* The user name to authenticate with.
|
||||
* @param string $password
|
||||
|
|
|
@ -27,7 +27,7 @@ class UrlRewritingTest extends FileTestBase {
|
|||
* Tests the rewriting of shipped file URLs by hook_file_url_alter().
|
||||
*/
|
||||
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).
|
||||
|
||||
// Test alteration of file URLs to use a CDN.
|
||||
|
@ -74,7 +74,7 @@ class UrlRewritingTest extends FileTestBase {
|
|||
* Tests the rewriting of public managed file URLs by hook_file_url_alter().
|
||||
*/
|
||||
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.
|
||||
\Drupal::state()->set('file_test.hook_file_url_alter', 'cdn');
|
||||
|
|
|
@ -39,7 +39,7 @@ interface DisplayRouterInterface extends DisplayPluginInterface {
|
|||
public function alterRoutes(RouteCollection $collection);
|
||||
|
||||
/**
|
||||
* Generates an URL to this display.
|
||||
* Generates a URL to this display.
|
||||
*
|
||||
* @return \Drupal\Core\Url
|
||||
* A URL object for the display.
|
||||
|
|
|
@ -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
|
||||
* 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
|
||||
* 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.
|
||||
* Everything after #views-tab- is the display ID, e.g. page_1.
|
||||
* @param ...
|
||||
|
|
Loading…
Reference in New Issue