NUCLEUS is a base theme first released with Drupal 7. The goal of this base theme is to provide a solid foundation for web development geeks to develop a theme quick and easy. Having a fast learning curve is the inflection point for UX/UI designers, Back-End and Front-End Developers.

The beta version of NUCLEUS has been released in October 2011. We started with features as:

  • Flexible layout settings (fluid and fixed 12-24 grids)
  • Versatile Typography using default fonts, Google web-fonts and custom fonts and you are able to set the base font size globally
  • Advanced block styling (global styles for all blocks, quick switch between different block styles, specify blocks in specific regions, extend blocks with custom markup)
  • Supporting custom styles for SuperFish and QuickTabs
    Installation profile (install the base theme out of the box with all demo content, settings and images with a few clicks)

Focus on Design. With more than 6 years in CMS theme & template development we experienced a lot of wasted time. NUCLEUS is the first result of that experience. Reduce theme developing time.

NUCLEUS is developed and maintained by the themebrain.com team. We currently release every month new Drupal 7 themes which are based on NUCLEUS. Our team uses the base theme everyday and have new ideas. More to come in the near future!

We hope the Drupal community will contribute to the project and give the team a lot of feedback, so we can change and improve it release after release. Submit any idea or issue and we will be right back to you.

Reviews of other projects
1. http://drupal.org/node/1328366#comment-5536142
2. http://drupal.org/node/1356956#comment-5541190
3. http://drupal.org/node/1115102#comment-5551752
4. http://drupal.org/node/1146144#comment-5552136
5. http://drupal.org/node/1168312#comment-5563132
6. http://drupal.org/node/1363620#comment-5562970

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

sreynen’s picture

sreynen’s picture

Assigned: Unassigned » sreynen
sreynen’s picture

Status: Needs review » Needs work

Hi themebrain,

Please fix the following issues, then move this back to "needs review" status:

  • The directory structure is confusing. The .info file in the root directory has no theme associated, and should be deleted, replaces with a README.txt. Each theme directory should be moved to the top level directory, rather than nested inside the "nucleus" directory. In short, the root directory should have 3 items: README.txt, nucleus (which is currently in nucleus/nucleus) and nucleus_starter
  • All CSS files have the wrong line endings. Everything in Drupal uses Unix-style \n line endings, but you're using either \r or \r\n. The non-CSS files don't seem to have this problem.
  • I see a few coding standards issues. Please run this through the Coder module on the minor setting and fix everything it shows.
  • All functions declared by a theme need to have names that begin with the name of the theme. Everything in custom_functions.inc is prefixed with tb_, which is not safe to do outside a module or theme named "tb". Same thing in nucleus.js and popup_extend_class.js.
  • jquery.matchHeights.min.js is 3rd party code, which can't be hosted on Drupal.org. You should instead provide download instructions for this file in a README.txt file.
sreynen’s picture

Assigned: sreynen » Unassigned
themebrain’s picture

Hi Scott,

The directory structure is confusing. The .info file in the root directory has no theme associated, and should be deleted, replaces with a README.txt. Each theme directory should be moved to the top level directory, rather than nested inside the "nucleus" directory. In short, the root directory should have 3 items: README.txt, nucleus (which is currently in nucleus/nucleus) and nucleus_starter

We will add README.txt and LICENSE.txt to our top level directory. We have created our directory structure similarly to Fusion. Can we keep this way of organizing files like Fusion theme?

All CSS files have the wrong line endings. Everything in Drupal uses Unix-style \n line endings, but you're using either \r or \r\n. The non-CSS files don't seem to have this problem

Will be correct in the next commit.

I see a few coding standards issues. Please run this through the Coder module on the minor setting and fix everything it shows.

We have warnings in our .info file but do not really know what to do about it, as it seems that many core themes do have the same problem (see attachement)

All functions declared by a theme need to have names that begin with the name of the theme. Everything in custom_functions.inc is prefixed with tb_, which is not safe to do outside a module or theme named "tb". Same thing in nucleus.js and popup_extend_class.js

Will be correct in the next commit.

jquery.matchHeights.min.js is 3rd party code, which can't be hosted on Drupal.org. You should instead provide download instructions for this file in a README.txt file.

Will be removed

Thanks for your review

sreynen’s picture

Don't add LICENSE.txt. That gets added automatically.

themebrain’s picture

Hi Scott we have updated as described above (http://drupal.org/node/1233310/commits). Please give us more feedback if you need further changes.

ThemeBrain

sreynen’s picture

Status: Needs work » Needs review
klausi’s picture

Status: Needs review » Needs work

It appears you are working in the "master" branch in git. You should really be working in a version specific branch. The most direct documentation on this is Moving from a master branch to a version branch. For additional resources please see the documentation about release naming conventions and creating a branch in git.
Review of the master branch:

  • README.txt is missing, see the guidelines for in-project documentation.
  • ./nucleus/nucleus/inc/theme_function_overrides.inc: all functions should have doxygen doc blocks, see http://drupal.org/node/1354#functions
    
    function nucleus_qt_accordion($vars) {
    
  • ./nucleus/nucleus/inc/custom_functions.inc: The description for the @param/@return documentation is either missing or not formatted correctly. See http://drupal.org/node/1354#functions
    277- *  all regions
    279- *  all active blocks
    304- *  result of nucleus_get_regions_blocks_list
    330- *  specific key for each "block style - extend class" setting
    332- *  type of setting 'global', 'region', 'block'
    334- *  is this block is showed (TRUE/FALSE)?
    
  • Bad line endings were found, always use unix style terminators. See http://drupal.org/coding-standards#indenting
    ./nucleus/nucleus/css/ie.css:                                           ASCII C program text, with CR line terminators
    ./nucleus/nucleus/css/ie7.css:                                          ASCII text, with CR line terminators
    ./nucleus/nucleus_starter/css/views.css:                                ASCII C program text, with CR line terminators
    

This automated report was generated with PAReview.sh, your friendly project application review script. Please report any bugs to klausi.

manual review:

  • put your theme in the root folder of the repository, like here http://drupalcode.org/project/omega.git/tree/refs/heads/7.x-3.x
  • nucleus/nucleus_starter/js/jquery.matchHeights.min.js: appears to be 3rd party code. 3rd party code is not generally allowed on Drupal.org and should be deleted. This policy is described in the getting involved handbook. It also appears in the terms and conditions you agreed to when you signed up for Git access, which you may want to re-read, to be sure you're not violating other terms. The Libraries API module is a recommended method for adding 3rd party dependencies without directly including the code on Drupal.org.
themebrain’s picture

Status: Needs work » Needs review

Hi klausi,

We have updated as your above comments. Please give us more feedback if you need further changes.

ThemeBrain

webrmedia’s picture

Priority: Major » Normal
Status: Needs review » Needs work

Review of the 7.x-1.x branch:

  • Comments should be on a separate line before the code line, see http://drupal.org/node/1354#inline
    ./nucleus/tpl/page.tpl.php:127:  <!-- //HEADER -->
    ./nucleus/tpl/page.tpl.php:138:    <!-- //MAIN NAV -->
    ./nucleus/tpl/page.tpl.php:150:    <!-- //SLIDESHOW -->
    ./nucleus/tpl/page.tpl.php:162:    <!-- //HELP -->
    ./nucleus/tpl/page.tpl.php:172:    <!-- //PANEL FIRST -->
    ./nucleus/tpl/page.tpl.php:205:          <!-- //MAIN CONTENT -->
    ./nucleus/tpl/page.tpl.php:214:            <!-- //SIDEBAR FIRST -->
    ./nucleus/tpl/page.tpl.php:225:          <!-- //SIDEBAR SECOND -->
    ./nucleus/tpl/page.tpl.php:247:    <!-- //BREADCRUMB -->
    ./nucleus/tpl/page.tpl.php:257:    <!-- //PANEL SECOND -->
    ./nucleus/tpl/page.tpl.php:269:    <!-- //FOOTER -->
    ./nucleus_starter/tpl/page.tpl.php:127:  <!-- //HEADER -->
    ./nucleus_starter/tpl/page.tpl.php:138:    <!-- //MAIN NAV -->
    ./nucleus_starter/tpl/page.tpl.php:150:    <!-- //SLIDESHOW -->
    ./nucleus_starter/tpl/page.tpl.php:162:    <!-- //HELP -->
    ./nucleus_starter/tpl/page.tpl.php:172:    <!-- //PANEL FIRST -->
    ./nucleus_starter/tpl/page.tpl.php:205:          <!-- //MAIN CONTENT -->
    ./nucleus_starter/tpl/page.tpl.php:214:            <!-- //SIDEBAR FIRST -->
    ./nucleus_starter/tpl/page.tpl.php:225:          <!-- //SIDEBAR SECOND -->
    ./nucleus_starter/tpl/page.tpl.php:246:    <!-- //BREADCRUMB -->
    ./nucleus_starter/tpl/page.tpl.php:256:    <!-- //PANEL SECOND -->
    ./nucleus_starter/tpl/page.tpl.php:268:    <!-- //FOOTER -->
    

This automated report was generated with PAReview.sh, your friendly project application review script. Go and review some other project applications, so we can get back to yours sooner.

themebrain’s picture

Status: Needs work » Needs review

Hi webrmedia,

We have just updated as your above comments. Please give us more feedback if you need further changes.

ThemeBrain

klausi’s picture

Status: Needs review » Needs work
FileSize
13.64 KB

Review of the 7.x-1.x branch:

  • Drupal Code Sniffer has found some code style issues (please check the Drupal coding standards). See attachment.
  • All text files should end in a single newline (\n). See http://drupal.org/node/318#indenting
    ./README.txt ./nucleus/nucleus.info ./nucleus/css/theme-settings.css ./nucleus/css/ie.css ./nucleus/css/messages.css ./nucleus/css/base.css ./nucleus/css/ie7.css ./nucleus/css/grid/fluid/grid-12.css ./nucleus/css/grid/fluid/grid-24-opera.css ./nucleus/css/grid/fluid/grid-24.css ./nucleus/css/grid/fluid/grid-16.css ./nucleus/css/grid/fluid/grid-16-opera.css ./nucleus/css/grid/fluid/grid-12-opera.css ./nucleus/tpl/fieldset.tpl.php ./nucleus/tpl/admin/nucleus-extend-class-form-groups.tpl.php ./nucleus/tpl/admin/nucleus-extend-class-form-classes.tpl.php ./nucleus/tpl/admin/nucleus-extend-class.tpl.php ./nucleus/tpl/node.tpl.php ./nucleus/tpl/user-profile-category.tpl.php ./nucleus/tpl/aggregator-summary-items.tpl.php ./nucleus/tpl/field--taxonomy-term-reference.tpl.php ./nucleus/tpl/comment.tpl.php ./nucleus/tpl/panel.tpl.php ./nucleus/tpl/html.tpl.php ./nucleus/tpl/aggregator-feed-source.tpl.php ./nucleus/tpl/aggregator-item.tpl.php ./nucleus/tpl/page.tpl.php ./nucleus/tpl/comment-wrapper.tpl.php ./nucleus/tpl/block.tpl.php ./nucleus/js/nucleus.js ./nucleus/js/popup_extend_class.js ./nucleus/inc/preprocess_functions.inc ./nucleus/inc/custom_functions.inc ./nucleus/inc/alters.inc ./nucleus/theme-settings.php ./nucleus/template.php ./nucleus_starter/css/forms.css ./nucleus_starter/css/panel-panes.css ./nucleus_starter/css/quicktabs/simply.css ./nucleus_starter/css/print.css ./nucleus_starter/css/forum.css ./nucleus_starter/css/page.css ./nucleus_starter/css/html-elements.css ./nucleus_starter/css/typo.css ./nucleus_starter/css/fields.css ./nucleus_starter/css/views.css ./nucleus_starter/css/articles.css ./nucleus_starter/css/navigation.css ./nucleus_starter/css/superfish/simply.css ./nucleus_starter/css/comments.css ./nucleus_starter/css/blocks.css ./nucleus_starter/css/fonts.css ./nucleus_starter/tpl/page.tpl.php ./nucleus_starter/nucleus_starter.info ./nucleus_starter/theme-settings.php
    

This automated report was generated with PAReview.sh, your friendly project application review script. Go and review some other project applications, so we can get back to yours sooner.

themebrain’s picture

Priority: Normal » Major
Status: Needs work » Needs review

Hi klausi,

We have updated as your comments and attachment. We also checked with your script and coder too. Please give us more feedback if you need further changes.

Regards,
ThemeBrain

doitDave’s picture

Priority: Major » Normal
Status: Needs review » Needs work

Please refer to http://drupal.org/node/539608 regarding issue priority (only one day had passed; priority timelines always refer to the last review done).

Automated review (Please keep in mind that this is primarily a high level check that does not replace but, after all, eases the review process. There is no guarantee that no other issues could show up in a more in-depth manual follow-up review.)

Review of the 7.x-1.x branch:

  • Drupal Code Sniffer has found some code style issues (please check the Drupal coding standards):
    
    FILE: ...l/modules/pareview_temp/test_candidate/nucleus/inc/custom_functions.inc
    --------------------------------------------------------------------------------
    FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
    --------------------------------------------------------------------------------
     42 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    
    
    FILE: ...ites/all/modules/pareview_temp/test_candidate/nucleus/tpl/block.tpl.php
    --------------------------------------------------------------------------------
    FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
    --------------------------------------------------------------------------------
     15 | ERROR | Whitespace found at end of line
     18 | ERROR | Whitespace found at end of line
     19 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    
    
    FILE: ...es/all/modules/pareview_temp/test_candidate/nucleus/tpl/comment.tpl.php
    --------------------------------------------------------------------------------
    FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
    --------------------------------------------------------------------------------
      9 | ERROR | Whitespace found at end of line
     30 | ERROR | Whitespace found at end of line
     37 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    
    
    FILE: ..._temp/test_candidate/nucleus/tpl/field--taxonomy-term-reference.tpl.php
    --------------------------------------------------------------------------------
    FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
    --------------------------------------------------------------------------------
     5 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    
    
    FILE: ...sites/all/modules/pareview_temp/test_candidate/nucleus/tpl/html.tpl.php
    --------------------------------------------------------------------------------
    FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
    --------------------------------------------------------------------------------
     12 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    
    
    FILE: ...modules/pareview_temp/test_candidate/nucleus_starter/theme-settings.php
    --------------------------------------------------------------------------------
    FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
    --------------------------------------------------------------------------------
     10 | ERROR | Expected 1 space between the closing parenthesis and the opening
        |       | brace; found 2
    --------------------------------------------------------------------------------
    

This automated report was generated with PAReview.sh, your friendly project application review script. Go and review some other project applications, so we can get back to yours sooner.

Manual additions:

  • There are still files in your master branch. You should replace them as described in http://drupal.org/node/1127732 at step 5.
  • I am not too familiar with theme project folder structures. But shouldn't be your base theme in the project root folder and only their sub-themes in sub folders? Just to mention and pls. correct me if I'm wrong.

hth, dave

themebrain’s picture

Status: Needs work » Needs review

Hi Dave,

Apologize for wrong spacing error issue, we just have that updated and also removed the master branch too.

Thanks again, truly appreciate it and have a good day!
ThemeBrain

klausi’s picture

Status: Needs review » Needs work
FileSize
8.25 KB

Review of the 7.x-1.x branch:

This automated report was generated with PAReview.sh, your friendly project application review script. Go and review some other project applications, so we can get back to yours sooner.

Manual review:

  • nucleus_form_search_form_alter(): why do you need that function in your theme? Please add a comment why you alter that form.
  • theme-settings.php: why do you require alters.inc and theme_function_overrides.inc there?
  • Unfortunately there was a bug in pareview.sh that causes confusion regarding new lines at the end of files. There should be no extra empty line at the end of a file. Just make sure that the file ends in '\n'.
  • "'#title' => t($value . " @width", array("@width" => t('width'))),": why do you need @width here? $value should be passed in with a place holder.
  • "'#title' => t($key),": why do you translate the key here? And are you sure that you don't need to sanitize $key, i.e. is it user supplies data?
  • "Impliments hook_form_system_theme_settings_alter().": typo, should be "Implements ..."
  • nucleus_form_system_theme_settings_alter(): do not use drupal_add_js() and drupal_add_css() here, use #attached on the form: http://api.drupal.org/api/drupal/developer--topics--forms_api_reference....
themebrain’s picture

Status: Needs work » Needs review

Hi Klausi,

We've updated as the output of PAReview.sh, about the Manual comments, we also done as below:

1. nucleus_form_search_form_alter(): why do you need that function in your theme? Please add a comment why you alter that form.
=> removed it
2. theme-settings.php: why do you require alters.inc and theme_function_overrides.inc there?
=> removed it
3. Unfortunately there was a bug in pareview.sh that causes confusion regarding new lines at the end of files. There should be no extra empty line at the end of a file. Just make sure that the file ends in '\n'.
=> Updated but PAReview.sh still raises issues in *.js & *.php, please ignore them.
4. "'#title' => t($value . " @width", array("@width" => t('width'))),": why do you need @width here? $value should be passed in with a place holder.
=> Updated
5. "'#title' => t($key),": why do you translate the key here? And are you sure that you don't need to sanitize $key, i.e. is it user supplies data?
=> Updated
6. "Impliments hook_form_system_theme_settings_alter().": typo, should be "Implements ..."
=> Updated
7. nucleus_form_system_theme_settings_alter(): do not use drupal_add_js() and drupal_add_css() here, use #attached on the form: http://api.drupal.org/api/drupal/developer--topics--forms_api_reference....
=> Updated

Thanks for your carefully review and please give us more feedback if you need further changes.

Regards,
ThemeBrain

drupalnetworks’s picture

Review of the 7.x-1.x branch:

Drupal Code Sniffer has found some code style issues (please check the Drupal coding standards):

FILE: ...al-7-pareview/sites/all/modules/pareview_temp/test_candidate/README.txt
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
48 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

FILE: ...iew/sites/all/modules/pareview_temp/test_candidate/nucleus/nucleus.info
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
90 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

FILE: ...dules/pareview_temp/test_candidate/nucleus_starter/nucleus_starter.info
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
140 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

This automated report was generated with PAReview.sh, your friendly project application review script. Go and review some other project applications, so we can get back to yours sooner.
Source: http://ventral.org/pareview - PAReview.sh online service

drupalnetworks’s picture

Status: Needs review » Needs work
themebrain’s picture

Status: Needs work » Needs review

Hi drupalnetworks,

We've just fixed the last issued you raised and made a test and got no issues more here http://ventral.org/pareview/httpgitdrupalorgsandboxthemebrain1233310.

Thanks your review nad please give us more feedback if you need further changes.

Regards,
ThemeBrain

themebrain’s picture

Priority: Normal » Major

Hi Drupal reviewers,

We'd like to change the priority of this project to Major.

Thanks,
ThemeBrain

klausi’s picture

Priority: Major » Normal
Status: Needs review » Needs work
  • why does the starter kit contain actual code and CSS settings? I think it should just be a stub with some README.txt files that explain which overrides belong in which folder.
  • still an "Impliments" in nucleus_starter / theme-settings.php
  • "'#title' => check_plain(t('Region:') . ' ' . $region['region_title']),": you should use the @ placeholder for t() which runs check_plain() for you.
  • Also in other places, do not concatenate variables to translated strings, use placeholders to insert them.
  • nucleus_get_active_blocks_by_theme(): use line breaks for such long queries, e.g. http://drupal.org/node/310075#the_big_picture
  • "$form['#attached']['js']['var nucleusStyleSupportCounter = '...": javascript settings should be added with the "data" key, see http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.... . Also in many other places.
  • project page is too short. What are the differences to other base themes? See also http://drupal.org/node/997024
  • "$options[$i] = ($i == 1) ? t($i . ' grid') : t($i . ' grids');": again, do not concatenate variables with translatable strings, use placeholders. Check all you calls to t() in your code.
  • "$layout_width = $layout_width_int > 100 ? ($layout_width_int . "px") : ($layout_width_int ? ($layout_width_int . "%") : "960px");": This line is too long and hard to follow, I would split it up to proper if statements over multiple lines.
themebrain’s picture

Hi Klausi

Firstly, we really appreciate when you reviewed our project very carefully. And here, We'd like to fixed it as the following logs:

- why does the starter kit contain actual code and CSS settings? I think it should just be a stub with some README.txt files that explain which overrides belong in which folder. -> Removed all useless css & code for a starter kit
- still an "Impliments" in nucleus_starter / theme-settings.php -> Removed
- "'#title' => check_plain(t('Region:') . ' ' . $region['region_title']),": you should use the @ placeholder for t() which runs check_plain() for you. -> Fixed it and all replated problem
- Also in other places, do not concatenate variables to translated strings, use placeholders to insert them. -> Fixed
- nucleus_get_active_blocks_by_theme(): use line breaks for such long queries, e.g. http://drupal.org/node/310075#the_big_picture -> Updated
- "$form['#attached']['js']['var nucleusStyleSupportCounter = '...": javascript settings should be added with the "data" key, see http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.... . Also in many other places. -> Updated it and all related problem
- project page is too short. What are the differences to other base themes? See also http://drupal.org/node/997024 -> Updated
- "$options[$i] = ($i == 1) ? t($i . ' grid') : t($i . ' grids');": again, do not concatenate variables with translatable strings, use placeholders. Check all you calls to t() in your code. -> Updated
- "$layout_width = $layout_width_int > 100 ? ($layout_width_int . "px") : ($layout_width_int ? ($layout_width_int . "%") : "960px");": This line is too long and hard to follow, I would split it up to proper if statements over multiple lines. -> Updated

Thanks again and waiting more feedback if you need further changes.
Regards
ThemeBrain

themebrain’s picture

Status: Needs work » Needs review
themebrain’s picture

Priority: Normal » Major
klausi’s picture

Get a review bonus and we will come back to your application sooner.

klausi’s picture

Issue summary: View changes

Update product description

themebrain’s picture

Issue summary: View changes

Add Reviews of other projects

themebrain’s picture

Issue summary: View changes

Update Reviews of other projects

themebrain’s picture

Issue tags: +PAreview: review bonus

Add tag PAReview: review bonus

themebrain’s picture

Priority: Major » Normal
klausi’s picture

Status: Needs review » Needs work
FileSize
257.31 KB

Review of the 7.x-1.x branch:

This automated report was generated with PAReview.sh, your friendly project application review script. You can also use the online version to check your project. Get a review bonus and we will come back to your application sooner.

manual review:

  • Take a look at the CSS coding standards: http://drupal.org/node/302199 . There are many empty classes in your starterkit, I guess that is intentional and you don't need to fix that.
  • nucleus.js: I think you should use Drupal.behaviors here (I'm not a javscript expert) http://drupal.org/node/756722 . Same for popup_extend_class.js

Otherwise I think this is nearly ready. I can't say much about all the theme functions and I don't know where text sanitization is necessary and where not.

themebrain’s picture

Thanks Klausi for your review, We'll do some update as your suggestions.

ThemeBrain

themebrain’s picture

Status: Needs work » Needs review

Hi Klausi,

We just updated most of the issues you have suggested, however, there is only one issue we're going to keep it as that:

- "There are many empty classes in your starterkit" css. As you might already know, we're making the nucleus-starter theme to be a "Ready to Start" subtheme which enables developers to quickly build their subtheme from Nucleus, and all the css classes we used in here are quite clear for the developers to understand them immediately.

It would be great if you can pass the above issue!

We do have our long-term strategy in developing Nucleus, hence please hang in there with us for a bit longer.

Thanks Klausi,
ThemeBrain

klausi’s picture

Status: Needs review » Reviewed & tested by the community
Issue tags: -PAreview: review bonus

Looks good to me. Removing review bonus tag.

themebrain’s picture

Thank you too much Klausi :)

tim.plunkett’s picture

Status: Reviewed & tested by the community » Fixed

Thanks for your contribution! Welcome to the community of project contributors on drupal.org.

I've granted you the git vetted user role which will let you promote this to a full project and also create new projects as either sandbox or "full" projects depending on which you feel is best.

Thanks, also, for your patience with the review process. Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.

As you continue to work on your module, keep in mind: Commit messages - providing history and credit and Release naming conventions.

themebrain’s picture

To all reviewers!

Thanks for the last few months. For your patience, for your code reviews, for your guidance. Thanks to you, our base theme NUCLEUS is at a next level. We will keep all of you updated. How can we do that? Send an email to you or follow you on twitter? Just ping us on @themebrain or facebook , so you see the progress and news.

Again, thumbs up for all of you!
Cheers!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

Anonymous’s picture

Issue summary: View changes

- updatee reviews of other projects

nstarzzz’s picture

Hi, I'm using TB_Rave on top of nucleus, and I'm having an issue with comment html tags.
Absolutely no tags whatsoever are being passed through, despite me allowing them at the drupal and editor level. Everything works fine for normal content, but comments are completely devoid of line breaks (most frustrating) and styling.
I'm posting here because this is also the case on all other TB themes that run on top of nucleus.

Thanks for the cool themes though, everything is GREAT otherwise!