A detailed description of what your project does, including how it is different from other, similar projects, if applicable.

I was looking for an extremely basic HTML Drupal 7 starter theme that is clean and well organized and has limited built in functionality or non, as I always end up removing it and adding my own. So I built my own clutter free version. I'd include a screenshot, but I would much rather not suspect people to the wonders of Times New Roman. It's really absolutely nothing :)

https://drupal.org/sandbox/dubcanada/1925000 is a basic link to it

Just to explain a bit more about myself I am a very strong Drupal developer working full time for a local 100% Drupal company. While my contributions are small at this point, I hope to change that. I've contributed to a few projects (leaflets, addressfield, commerce beanstream module) I am also a new but active Drupal Stack Exchange member (currently as of when I am speaking I am #5 on http://drupal.stackexchange.com/users?tab=Reputation&filter=month for Oct) or you can see my profile at http://drupal.stackexchange.com/users/2395/steven.

Let me know if there is anything else I can add to help :)

Comments

PA robot’s picture

Status: Needs review » Needs work

There are some errors reported by automated review tools, did you already check them? See http://pareview.sh/pareview/httpgitdrupalorgsandboxdubcanada1925000git

We are currently quite busy with all the project applications and we prefer projects with a review bonus. Please help reviewing and put yourself on the high priority list, then we will take a look at your project right away :-)

Also, you should get your friends, colleagues or other community members involved to review this application. Let them go through the review checklist and post a comment that sets this issue to "needs work" (they found some problems with the project) or "reviewed & tested by the community" (they found no major flaws).

I'm a robot and this is an automated message from Project Applications Scraper.

dubcanada’s picture

Reformatted as per Mr Robot's comments. The rest of them I don't agree with *like no in-line control structure for themes*, using IF statements to turn on and off regions is used in most if not all themes.

dubcanada’s picture

klausi’s picture

Assigned: Unassigned » kscheirer
Status: Needs review » Reviewed & tested by the community
Issue tags: -PAreview: review bonus +PAreview: single application approval

Thank you for your reviews. When finishing your review comment also set the issue status either to "needs work" (you found some problems with the project) or "reviewed & tested by the community" (you found no major flaws).

There is still a master branch, make sure to set the correct default branch: http://drupal.org/node/1659588 . Then remove the master branch, see also step 6 and 7 in http://drupal.org/node/1127732
Review of the 7.x-0.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. You have to get a review bonus to get a review from me.

manual review:

  1. sirbones_preprocess_page(): doc block is wrong, see https://drupal.org/node/1354#hooks . Same for the file docblock, see https://drupal.org/node/1354#files
  2. "Inline control structures are not allowed" means that you must use curly braces with if statements.
  3. This project is too short to approve you as git vetted user. We are currently discussing how much code we need, but everything with less than 120 lines of code or less than 5 functions cannot be seriously reviewed. However, we can promote this single project manually to a full project for you.

But otherwise looks RTBC to me. Removing review bonus tag, you can add it again if you have done another 3 reviews of other projects.

Assigning to kscheirer as he might have time to take a final look at this.

kscheirer’s picture

Status: Reviewed & tested by the community » Needs work

Regarding the inline control structures in #2, this:

  if($block->subject) print '<h2 class="block-title"' . $title_attributes . '>' . $block->subject . '</h2>'; 

should be

  if ($block->subject):
    print '<h2 class="block-title"' . $title_attributes . '>' . $block->subject . '</h2>';
  endif;  

So it's not all on 1 line. See https://drupal.org/coding-standards#controlstruct, under "Alternate control statement syntax for templates".

The 7.x-0.x should really be named 7.x-1.x
@file docs need to be added to most of the files, see https://drupal.org/coding-standards/docs#file.
There should be no master branch.

----
Top Shelf Modules - Crafted, Curated, Contributed.

dubcanada’s picture

Status: Needs work » Reviewed & tested by the community

All of the issues have been cleaned up and fixed. Except adding file doc comments to theme files, which I don't agree with.

I'm fine with it manually being promoted.

kscheirer’s picture

Assigned: kscheirer » Unassigned
Status: Reviewed & tested by the community » Fixed

https://drupal.org/project/sirbones

Thanks for your contribution, dubcanada!

Here are some recommended readings to help with excellent maintainership:

You can find lots more contributors chatting on IRC in #drupal-contribute. So, come hang out and get involved!

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.

Thanks to the dedicated reviewer(s) as well.

----
Top Shelf Modules - Crafted, Curated, Contributed.

Status: Fixed » Closed (fixed)

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