Simplify tour.js
From #1921188-15: Implement Tour UI module.Keep tips that are not bound to an id or data attribute. Because with something like Tour UI people will add those kind of tips and we need to show them...
View ArticleDo not expect "ul.menu" and ".box" in navbar
My theme overrides theme_menu_tree() with it's own html code. Navbar seems to expect the class ul.menu and this does not exists. Navbar should expect only it's own classes and add more classes if...
View ArticleInject all plugin managers to the view executable object.
This is a follow up of #1938030: Replace drupal_container->get() with Drupal::service()We have both the view factory and all the plugin managers in the DIC, so we could in theory inject all plugin...
View ArticleConvert the recent_comments block to a view
Title says it all.DetailsThe recent comments block had a very simple setting that allowed to configure the number of comments to show. Because one can easily configure the number of items (and more) in...
View Article[Meta] Convert UnitTestBase to PHPUnit
Problem/MotivationAs #1567500: [meta] Replace the testing framework with PHPUnit + Ditch and rewrite Simpletest, it is broken beyond repair is underway we need to convert all Simpletest based unittest...
View ArticleRuntime node creation miss to set comment status property
Repeatable: AlwaysSteps to repeat:1. configure a content type with comment open 2. create a new node of previous defined type via code or devel generateTo create a node via code:<?php $edit_node =...
View ArticleConvert Block test to phpunit
Part of #1938068: [Meta] Convert UnitTestBase to PHPUnitDirectory - core/modules/block/lib/Drupal/block/TestsTestingcd corevendor/bin/phpunit modules/block/lib/Drupal/block/Tests/BlockStorageUnitTest.php
View ArticleConvert the node comments list to a view
As suggested in http://drupal.org/node/1823450#comment-7001130
View ArticleInline edit form "Save" button is placed inconsistently
For most forms, the submit buttons are placed on the bottom of the form. For inline edit forms, this "Save" button is shown on the top of the form. This can cause confusion when the inline edit form is...
View ArticleListingEmpty contains wrong @file
Minor : core/modules/node/lib/Drupal/node/Plugin/views/area/ListingEmpty.php :+/** + * @file + * Contains \Drupal\node\Plugin\views\area\LinkAdd. + */Stale class name in the @file docblock ?
View ArticleFix code style of image module configuration schema
There are several code style problems with image.schema.yml, keys shouldn't have quotes at all, and values should have single quotes instead of double quotes.
View ArticleWebTestBase does not properly describe how to enable modules during setUp()
A lot of test case methods accepts parameters of mixed types, such as setUp(), which accepts either one array of strings, or multiple string arguments. This is bad, because: - it requires extra lines...
View ArticleContact module categories has not support language select
The Drupal 8 contact module support categories with configuration entity. But this entity does not support language selector.Related issue: #1935022: Add a language selector on views
View ArticleConvert Drupal\Core\Utility\Color\ColorTest to DrupalUnitTestBase
child of #1938068: [Meta] Convert UnitTestBase to PHPUnitThere are 12 files with UnitTestBase...
View ArticleMake test base class names self-descriptive
We currenctly have five test base classes: - TestBase: abstract, contains absolute basic functionality. - UnitTestBase: Simpletest unit testing base class. - UnitTestCase: PHPUnit unit testing base...
View ArticleAdd missing UI for unix_socket DB connection option.
Database connection via unix sockets is already supported, but it has no UI in installation process.
View ArticleConvert TypedDataTest to make use of DrupalUnitTestBase
The TypedDataTest has no need for being a web test. So let us switch it to a Drupal unit test.
View ArticleUsability: tabbing between sections of install form doesn't work
The installer form does not allow the user to tab between the different sections of the form (Safari v6.0.2), only between fields of an individual section. It seems to be the details tag that's causing...
View ArticleConvert book_admin_overview to a new-style Controller
Convert the book_admin_overview page callback to a new-style Controller, using the instructions on http://drupal.org/node/1800686
View Article