Skip to content

Commit

Permalink
Update to latest stable releases of debut_comment, debut_wysiwyg, and…
Browse files Browse the repository at this point in the history
… openoutreach.
  • Loading branch information
Nedjo Rogers committed Dec 19, 2011
1 parent 956b0f0 commit 7576600
Show file tree
Hide file tree
Showing 11 changed files with 169 additions and 157 deletions.
Expand Up @@ -44,6 +44,7 @@ function debut_comment_user_default_permissions() {
'name' => 'administer comments',
'roles' => array(
0 => 'administrator',
1 => 'editor',
),
'module' => 'comment',
);
Expand Down
Expand Up @@ -30,9 +30,9 @@ name = "Debut Comment"
package = "Features"
php = "5.2.4"

; Information added by drupal.org packaging script on 2011-09-28
version = "7.x-1.0-beta3"
; Information added by drupal.org packaging script on 2011-10-26
version = "7.x-1.0-beta4"
core = "7.x"
project = "debut_comment"
datestamp = "1317240102"
datestamp = "1319650829"

Expand Up @@ -16,10 +16,10 @@ projects[ctools][version] = 1.x-dev
projects[debut][subdir] = contrib
projects[debut][version] = 1.0-beta3
projects[debut_comment][subdir] = contrib
projects[debut_comment][version] = 1.0-beta3
projects[debut_comment][version] = 1.0-beta4
projects[features][subdir] = contrib
projects[features][version] = 1.0-beta4
projects[logintoboggan][subdir] = contrib
projects[logintoboggan][version] = 1.2
projects[strongarm][subdir] = contrib
projects[strongarm][version] = 2.0-beta3
projects[strongarm][version] = 2.0-beta4

This file was deleted.

@@ -0,0 +1,144 @@
<?php
/**
* @file
* debut_wysiwyg.features.wysiwyg.inc
*/

/**
* Implements hook_wysiwyg_default_profiles().
*/
function debut_wysiwyg_wysiwyg_default_profiles() {
$profiles = array();

// Exported profile: wysiwyg_contributor
$profiles['wysiwyg_contributor'] = array(
'format' => 'wysiwyg_contributor',
'editor' => 'ckeditor',
'settings' => array(
'default' => 1,
'user_choose' => 0,
'show_toggle' => 1,
'theme' => 'advanced',
'language' => 'en',
'buttons' => array(
'default' => array(
'Bold' => 1,
'Italic' => 1,
'Underline' => 1,
'BulletedList' => 1,
'NumberedList' => 1,
'Link' => 1,
'Unlink' => 1,
'Format' => 1,
),
'drupal' => array(
'media' => 1,
),
),
'toolbar_loc' => 'top',
'toolbar_align' => 'left',
'path_loc' => 'bottom',
'resizing' => 1,
'verify_html' => 1,
'preformatted' => 0,
'convert_fonts_to_spans' => 1,
'remove_linebreaks' => 1,
'apply_source_formatting' => 0,
'paste_auto_cleanup_on_paste' => 0,
'block_formats' => 'p,h2,h3,h4',
'css_setting' => 'none',
'css_path' => '',
'css_classes' => '',
),
'metatags' => array(),
'rdf_mapping' => array(),
);

// Exported profile: wysiwyg_editor
$profiles['wysiwyg_editor'] = array(
'format' => 'wysiwyg_editor',
'editor' => 'ckeditor',
'settings' => array(
'default' => 1,
'user_choose' => 0,
'show_toggle' => 1,
'theme' => 'advanced',
'language' => 'en',
'buttons' => array(
'default' => array(
'Bold' => 1,
'Italic' => 1,
'Underline' => 1,
'BulletedList' => 1,
'NumberedList' => 1,
'Outdent' => 1,
'Indent' => 1,
'Link' => 1,
'Unlink' => 1,
'PasteText' => 1,
'Format' => 1,
'Table' => 1,
),
'drupal' => array(
'media' => 1,
),
),
'toolbar_loc' => 'top',
'toolbar_align' => 'left',
'path_loc' => 'bottom',
'resizing' => 1,
'verify_html' => 1,
'preformatted' => 0,
'convert_fonts_to_spans' => 1,
'remove_linebreaks' => 1,
'apply_source_formatting' => 0,
'paste_auto_cleanup_on_paste' => 0,
'block_formats' => 'p,h2,h3,h4',
'css_setting' => 'none',
'css_path' => '',
'css_classes' => '',
),
'metatags' => array(),
'rdf_mapping' => array(),
);

// Exported profile: wysiwyg_public
$profiles['wysiwyg_public'] = array(
'format' => 'wysiwyg_public',
'editor' => 'ckeditor',
'settings' => array(
'default' => 1,
'user_choose' => 0,
'show_toggle' => 1,
'theme' => 'advanced',
'language' => 'en',
'buttons' => array(
'default' => array(
'Bold' => 1,
'Italic' => 1,
'BulletedList' => 1,
'NumberedList' => 1,
'Link' => 1,
),
),
'toolbar_loc' => 'top',
'toolbar_align' => 'left',
'path_loc' => 'bottom',
'resizing' => 1,
'verify_html' => 1,
'preformatted' => 0,
'convert_fonts_to_spans' => 1,
'remove_linebreaks' => 1,
'apply_source_formatting' => 0,
'paste_auto_cleanup_on_paste' => 0,
'block_formats' => '',
'css_setting' => 'none',
'css_path' => '',
'css_classes' => '',
),
'metatags' => array(),
'rdf_mapping' => array(),
);

return $profiles;
}
@@ -1,6 +1,5 @@
core = "7.x"
dependencies[] = "debut"
dependencies[] = "entity"
dependencies[] = "features"
dependencies[] = "media"
dependencies[] = "wysiwyg"
Expand All @@ -11,16 +10,16 @@ features[filter][] = "wysiwyg_public"
features[user_permission][] = "use text format wysiwyg_contributor"
features[user_permission][] = "use text format wysiwyg_editor"
features[user_permission][] = "use text format wysiwyg_public"
features[wysiwyg_profile][] = "wysiwyg_contributor"
features[wysiwyg_profile][] = "wysiwyg_editor"
features[wysiwyg_profile][] = "wysiwyg_public"
features[wysiwyg][] = "wysiwyg_contributor"
features[wysiwyg][] = "wysiwyg_editor"
features[wysiwyg][] = "wysiwyg_public"
name = "Debut Wysiwyg"
package = "Features"
php = "5.2.4"

; Information added by drupal.org packaging script on 2011-10-26
version = "7.x-1.0-beta4"
; Information added by drupal.org packaging script on 2011-12-16
version = "7.x-1.0-beta5"
core = "7.x"
project = "debut_wysiwyg"
datestamp = "1319653230"
datestamp = "1324073438"

Expand Up @@ -4,13 +4,13 @@ api = 2

; Contrib modules
projects[advanced_help][subdir] = contrib
projects[advanced_help][version] = 1.0-beta1
projects[advanced_help][version] = 1.0
projects[debut][subdir] = contrib
projects[debut][version] = 1.0-beta3
projects[debut_wysiwyg][subdir] = contrib
projects[debut_wysiwyg][version] = 1.0-beta4
projects[entity][subdir] = contrib
projects[entity][version] = 1.0-beta10
projects[entity][version] = 1.0-rc1
projects[features][subdir] = contrib
projects[features][version] = 1.0-beta4
projects[file_entity][subdir] = contrib
Expand All @@ -19,13 +19,14 @@ projects[libraries][subdir] = contrib
projects[libraries][version] = 1.0
projects[media][subdir] = contrib
projects[media][version] = 2.0-unstable2
projects[media][patch][http://drupal.org/files/media-install-error-1311828-28.patch] = http://drupal.org/files/media-install-error-1311828-28.patch
projects[styles][subdir] = contrib
projects[styles][version] = 2.0-alpha8
projects[wysiwyg][subdir] = contrib
projects[wysiwyg][version] = 2.1
projects[wysiwyg][patch][http://drupal.org/files/issues/wysiwyg-7.x-2.x-entity-exportables-624018-208_drush_make.patch] = http://drupal.org/files/issues/wysiwyg-7.x-2.x-entity-exportables-624018-208_drush_make.patch
; Use dev release until the features integration is released with 2.2.
projects[wysiwyg][version] = 2.x-dev
; Ckeditor
libraries[ckeditor][download][type] = "get"
libraries[ckeditor][download][url] = "http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.6.1/ckeditor_3.6.1.tar.gz"
libraries[ckeditor][download][url] = "http://download.cksource.com/CKEditor/CKEditor/CKEditor%203.6.2/ckeditor_3.6.2.tar.gz"
libraries[ckeditor][directory_name] = "ckeditor"

@@ -1,7 +1,5 @@
<?php

include_once('debut_wysiwyg.features.inc');

/**
* Implements hook_wysiwyg_editor_settings_alter().
*
Expand All @@ -12,5 +10,3 @@ function debut_wysiwyg_wysiwyg_editor_settings_alter(&$settings, $context) {
$settings['disableNativeSpellChecker'] = FALSE;
}
}


Expand Up @@ -23,9 +23,9 @@ name = "Open Outreach Front Page"
package = "Features"
php = "5.2.4"

; Information added by drupal.org packaging script on 2011-12-17
version = "7.x-1.x-dev"
; Information added by drupal.org packaging script on 2011-12-19
version = "7.x-1.0-beta6"
core = "7.x"
project = "openoutreach"
datestamp = "1324082309"
datestamp = "1324329043"

0 comments on commit 7576600

Please sign in to comment.