This file contains hidden or 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
| /** | |
| ****************************************************************************** | |
| * @file : main.c | |
| * @brief : Main program body | |
| ****************************************************************************** | |
| ** This notice applies to any and all portions of this file | |
| * that are not between comment pairs USER CODE BEGIN and | |
| * USER CODE END. Other portions of this file, whether | |
| * inserted by the user or by software development tools |
This file contains hidden or 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
| diff --git a/modules/user/user.module b/modules/user/user.module | |
| index 2309aa9296..cb505bae69 100644 | |
| --- a/modules/user/user.module | |
| +++ b/modules/user/user.module | |
| @@ -2116,7 +2116,7 @@ function user_login($form, &$form_state) { | |
| '#required' => TRUE, | |
| ); | |
| - $form['name']['#description'] = t('Enter your @s username.', array('@s' => variable_get('site_name', 'Drupal'))); | |
| + $form['name']['#description'] = t('Enter your !s username.', array('!s' => variable_get('site_name', 'Drupal'))); |
This file contains hidden or 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
| diff --git a/widgets.module b/widgets.module | |
| index 5cf4298..cc1613a 100644 | |
| --- a/widgets.module | |
| +++ b/widgets.module | |
| @@ -1121,6 +1121,10 @@ function theme_widgets_set_view($variables) { | |
| $template = $element['template']; | |
| $data = isset($element['data']) ? $element['data'] : array(); | |
| $token_data['widgets']['element'] = $element; | |
| + | |
| + if (isset($element['view callback']) && $element['view callback']) { |
This file contains hidden or 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
| --- <unnamed> | |
| +++ <unnamed> | |
| @@ -151,6 +151,34 @@ | |
| if (typeof arg2 == 'string') | |
| opts.oneTimeFx = arg2; | |
| $.fn.cycle[options](opts); | |
| + return false; | |
| + case 'resize': | |
| + // cont.cyclePause = 1; | |
| + // triggerPause(cont); |
This file contains hidden or 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
| diff --git a/mlpanels_panels_renderer_editor.class.php b/mlpanels_panels_renderer_editor.class.php | |
| index b1493bb..b550e99 100755 | |
| --- a/mlpanels_panels_renderer_editor.class.php | |
| +++ b/mlpanels_panels_renderer_editor.class.php | |
| @@ -155,7 +155,11 @@ class mlpanels_panels_renderer_editor extends panels_renderer_editor { | |
| // Building form. | |
| $output = ctools_content_form('edit', $form_info, $form_state, $content_type, $pane->subtype, $subtype, $configuration, $step); | |
| - | |
| + // This is a temporrary fix to get processed configiration. |
This file contains hidden or 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
| diff --git a/panopoly_core.make b/panopoly_core.make | |
| index 677a776..dd45ceb 100644 | |
| --- a/panopoly_core.make | |
| +++ b/panopoly_core.make | |
| @@ -26,6 +26,7 @@ projects[fieldable_panels_panes][version] = 1.11 | |
| projects[fieldable_panels_panes][subdir] = contrib | |
| projects[fieldable_panels_panes][patch][2826205] = https://www.drupal.org/files/issues/fieldable_panels_panes-n2826205-39.patch | |
| projects[fieldable_panels_panes][patch][3019270] = https://www.drupal.org/files/issues/2018-12-10/2848997-cant-access-admin-too-many-redirects.patch | |
| +projects[fieldable_panels_panes][patch][] = https://www.drupal.org/files/issues/2019-03-11/prevent-wront-redirect-3039174-2.patch | |
This file contains hidden or 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
| diff --git a/core/modules/field/migrations/d7_field.yml b/core/modules/field/migrations/d7_field.yml | |
| index 96bf5caac2..8cf9423527 100644 | |
| --- a/core/modules/field/migrations/d7_field.yml | |
| +++ b/core/modules/field/migrations/d7_field.yml | |
| @@ -11,7 +11,13 @@ source: | |
| status: true | |
| langcode: und | |
| process: | |
| - entity_type: entity_type | |
| + entity_type: |
This file contains hidden or 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
| diff --git a/config/install/wysiwyg_template.settings.yml b/config/install/wysiwyg_template.settings.yml | |
| index 8b3a650..b2380fd 100644 | |
| --- a/config/install/wysiwyg_template.settings.yml | |
| +++ b/config/install/wysiwyg_template.settings.yml | |
| @@ -1 +1,3 @@ | |
| library_path: 'libraries/templates' | |
| +editor_css: '' | |
| +view_css: '' | |
| diff --git a/config/schema/wysiwyg_template.schema.yml b/config/schema/wysiwyg_template.schema.yml | |
| index 46c694a..857962c 100644 |
This file contains hidden or 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
| ((*- extends 'article.tplx' -*)) | |
| % See http://blog.juliusschulz.de/blog/ultimate-ipython-notebook#templates | |
| % for some useful tips | |
| %=============================================================================== | |
| % Document class | |
| %=============================================================================== | |
| %=============================================================================== |