Audio Annotate module creates a new CCK formatter for filefield.

It creates and image from an uploaded audio file (mp3) and allows the placement of comments on top of the image. It essentially creates a sound-cloud-like field for Drupal.

Sandbox
http://drupal.org/sandbox/digitisation/1365530
Demo Site
http://audio.8bitplateau.net/test

Currently for Drupal 6

CommentFileSizeAuthor
#14 digitisation_errors.txt108.07 KBnovalnet

Comments

8bitplateau’s picture

Category: feature » task
patrickd’s picture

Status: Needs review » Needs work

You got some coding standart issues (See http://ventral.org/pareview/httpgitdrupalorgsandboxdigitisation1365530git, you can use this site to re-test your self)

at least the following issues should be fixed before you switch back to needs review:

8bitplateau’s picture

Status: Needs work » Needs review
  • Created 6.x-1.x branch and moved updates to that (should I empty master ?)
  • Removed all CVS tags, this was in some included template files.
  • All custom functions prepended with module name
  • fixed the majority of the code aesthetics according to the standards

I've installed php code sniffer on my development stack and am using that in Komodo to check as I go now.
Some errors however are confusing e.g '.=' creates error asking for a space before the equals sign ?

8bitplateau’s picture

Priority: Normal » Major

changing priority due to time.

patrickd’s picture

Status: Needs review » Needs work

Please give more information about requiremets, installation and configuration on your project page

Remove "version" from the info file, it will be added by drupal.org packaging automatically.

You still got some formatting issues, see http://ventral.org/pareview/httpgitdrupalorgsandboxdigitisation1365530git.
The problem your mentioning about ".=" is your indenting:
$output .= '<div class="annotateplayer">';
should be
$output .= '<div class="annotateplayer">';

you have to use variable names prefixed with your module name, aa_* could cause collisions.

you don't have to drop the table at uninstall, creating and dropping tables is automatically handled by schema API

it's not best practice to set variables on install, use the default value parameters instead

You got some text strings that are not translatable because you didn't use t()

I'll continue as you fixed these,
regards

8bitplateau’s picture

Status: Needs work » Needs review

ok thanks ..

  • I have updated the README.txt with detailed setup instructions.
  • Removed 'version' from info.
  • Fixed (nearly all) coding standards issues, more info below.
  • All variable names are prefixed with module name.
  • added t() to printable texts where appropriate.

Questions:

Got a new code sniffer error in drupal_set_message().
I want to have a varaible printed (which should be checked/cleaned?) and have it translateable so I used:
drupal_set_message(t(check_plain('LAME found at ' . $lame)), 'error');
but this thows an error, what is the best way to acheive this ?

I am using PHPCS in Komodo but the output is slightly differnet to the automated one.
The standard I am using is from the codesniffer module, are you using the same ?
It probably something to do with the way my IDE implements it, or mine might be out of date.

I tried removing the 'drop table' from uninstall hook and did a few tests but the table is not removed on module uninstall with out it ?

thanks.

patrickd’s picture

Status: Needs review » Needs work

Please read the api documentation about t() it's more than just a translation function!

drupal_set_message(t(check_plain('LAME found at ' . $lame)), 'error');
=>
drupal_set_message(t('LAME found at @lame', array('@lame' => $lame)), 'error');

Have a look at Drupal Code Sniffer

Did you really 'uninstall' your module or just disable it? you have to disable it first then click on the uninstall tab and uninstall it.

8bitplateau’s picture

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

Fixed the formatting with drupal_set_message(); e.g
drupal_set_message(t('@p', array('@p' => $p)), 'error');
in one implementation I had an embedded link but it was at the end of the string so I used;
'#description' => t('LAME link ') . l(t('sourceforge'), 'http://lame.cvs.sourceforge.net/'),
instead of using the array within t(), hope this is acceptable. I can see its more than just translation now, but the way it handles links it a bit odd.

I added
drupal_uninstall_schema('audio_annotate');
to handle dropping the tables properly, it was missing! that seems to sort it.

I've nearly got DCS standard set up properly in komodo, just some output formatting to do, then I'll offer the configuration guide to the Sniffer module, I see there is config for Eclipse and other IDE's there.
But I think there are no more formatting issues (fingers crossed).

8bitplateau’s picture

Priority: Normal » Major

I've added an my komodo configuration to the drupalcs module page.
and changed priority due to time (sorry hate to nudge).

8bitplateau’s picture

Priority: Major » Critical

nearly 4 weeks since last feedback from reviewer - sorry to hassle

8bitplateau’s picture

Hello, I need a review please :)

8bitplateau’s picture

hello everyone, I could do with a review please , it's been a quite few months now but I know everyone is busy.

In case you didn't know : this module creates a sound-cloud like cck field for Drupal, people are downloading it from my github and sandbox so it would be great to get some more feedback and reviews so I can make it rock solid for those that want it.

see it in action http://audio.8bitplateau.net/test

thanks

patrickd’s picture

I'm sorry for that long delay!
There are currently hundreds of applications in the queue :/
We do really need more hands in the application queue and highly recommend to get a review bonus so we will(/can) come back to your application sooner.

novalnet’s picture

Status: Needs review » Needs work
StatusFileSize
new108.07 KB

Review of the 6.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.


FILE: ...-7-pareview/sites/all/modules/pareview_temp/test_candidate/aa_script.js
--------------------------------------------------------------------------------
FOUND 8 ERROR(S) AFFECTING 8 LINE(S)
--------------------------------------------------------------------------------
  22 | ERROR | Whitespace found at end of line
  58 | ERROR | Whitespace found at end of line
  85 | ERROR | Whitespace found at end of line
  98 | ERROR | Whitespace found at end of line
 120 | ERROR | Whitespace found at end of line
 137 | ERROR | Whitespace found at end of line
 153 | ERROR | Whitespace found at end of line
 159 | ERROR | Whitespace found at end of line
--------------------------------------------------------------------------------


FILE: ...-7-pareview/sites/all/modules/pareview_temp/test_candidate/aa_style.css
--------------------------------------------------------------------------------
FOUND 131 ERROR(S) AFFECTING 110 LINE(S)
--------------------------------------------------------------------------------
   3 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
   4 | ERROR | Expected 1 space after colon in style definition; 0 found
   5 | ERROR | Expected 1 space after colon in style definition; 0 found
   7 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
   8 | ERROR | Expected 1 space after colon in style definition; 0 found
   9 | ERROR | Multiple CSS properties should be listed in alphabetical order
   9 | ERROR | Expected 1 space after colon in style definition; 0 found
  10 | ERROR | Expected 1 space after colon in style definition; 0 found
  11 | ERROR | Multiple CSS properties should be listed in alphabetical order
  11 | ERROR | Expected 1 space after colon in style definition; 0 found
  13 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  14 | ERROR | Expected 1 space after colon in style definition; 0 found
  15 | ERROR | Multiple CSS properties should be listed in alphabetical order
  15 | ERROR | Expected 1 space after colon in style definition; 0 found
  16 | ERROR | Expected 1 space after colon in style definition; 0 found
  17 | ERROR | Expected 1 space after colon in style definition; 0 found
  19 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  20 | ERROR | Expected 1 space after colon in style definition; 0 found
  21 | ERROR | Expected 1 space after colon in style definition; 0 found
  22 | ERROR | Multiple CSS properties should be listed in alphabetical order
  22 | ERROR | Expected 1 space after colon in style definition; 0 found
  23 | ERROR | Expected 1 space after colon in style definition; 0 found
  24 | ERROR | Expected 1 space after colon in style definition; 0 found
  26 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  27 | ERROR | Expected 1 space after colon in style definition; 0 found
  28 | ERROR | Expected 1 space after colon in style definition; 0 found
  29 | ERROR | Multiple CSS properties should be listed in alphabetical order
  29 | ERROR | Expected 1 space after colon in style definition; 0 found
  30 | ERROR | Expected 1 space after colon in style definition; 0 found
  32 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  33 | ERROR | Expected 1 space after colon in style definition; 0 found
  36 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  37 | ERROR | Expected 1 space after colon in style definition; 0 found
  38 | ERROR | Multiple CSS properties should be listed in alphabetical order
  38 | ERROR | Expected 1 space after colon in style definition; 0 found
  39 | ERROR | Multiple CSS properties should be listed in alphabetical order
  39 | ERROR | Expected 1 space after colon in style definition; 0 found
  40 | ERROR | Multiple CSS properties should be listed in alphabetical order
  41 | ERROR | Expected 1 space after colon in style definition; 0 found
  42 | ERROR | Multiple CSS properties should be listed in alphabetical order
  42 | ERROR | Expected 1 space after colon in style definition; 0 found
  43 | ERROR | Expected 1 space after colon in style definition; 0 found
  45 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  46 | ERROR | Expected 1 space after colon in style definition; 0 found
  49 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  50 | ERROR | Expected 1 space after colon in style definition; 0 found
  51 | ERROR | Expected 1 space after colon in style definition; 0 found
  52 | ERROR | Expected 1 space after colon in style definition; 0 found
  53 | ERROR | Expected 1 space after colon in style definition; 0 found
  54 | ERROR | Multiple CSS properties should be listed in alphabetical order
  54 | ERROR | Expected 1 space after colon in style definition; 0 found
  55 | ERROR | Expected 1 space after colon in style definition; 0 found
  56 | ERROR | Multiple CSS properties should be listed in alphabetical order
  56 | ERROR | Expected 1 space after colon in style definition; 0 found
  57 | ERROR | CSS colours must be defined in lowercase; expected #d6d6d6 but
     |       | found #D6D6D6
  58 | ERROR | Expected 1 space after colon in style definition; 0 found
  60 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  61 | ERROR | Expected 1 space after colon in style definition; 0 found
  62 | ERROR | Expected 1 space after colon in style definition; 0 found
  65 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  66 | ERROR | Expected 1 space after colon in style definition; 0 found
  69 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  70 | ERROR | Expected 1 space after colon in style definition; 0 found
  71 | ERROR | Expected 1 space after colon in style definition; 0 found
  72 | ERROR | Expected 1 space after colon in style definition; 0 found
  73 | ERROR | Multiple CSS properties should be listed in alphabetical order
  73 | ERROR | Expected 1 space after colon in style definition; 0 found
  74 | ERROR | Expected 1 space after colon in style definition; 0 found
  75 | ERROR | Expected 1 space after colon in style definition; 0 found
  76 | ERROR | Multiple CSS properties should be listed in alphabetical order
  76 | ERROR | Expected 1 space after colon in style definition; 0 found
  77 | ERROR | Expected 1 space after colon in style definition; 0 found
  79 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  80 | ERROR | Expected 1 space after colon in style definition; 0 found
  81 | ERROR | Expected 1 space after colon in style definition; 0 found
  82 | ERROR | Multiple CSS properties should be listed in alphabetical order
  82 | ERROR | Expected 1 space after colon in style definition; 0 found
  85 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  86 | ERROR | Expected 1 space after colon in style definition; 0 found
  88 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  89 | ERROR | Expected 1 space after colon in style definition; 0 found
  92 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  93 | ERROR | Expected 1 space after colon in style definition; 0 found
  94 | ERROR | Multiple CSS properties should be listed in alphabetical order
  94 | ERROR | Expected 1 space after colon in style definition; 0 found
  96 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
  97 | ERROR | Expected 1 space after colon in style definition; 0 found
  99 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 100 | ERROR | Expected 1 space after colon in style definition; 0 found
 101 | ERROR | Expected 1 space after colon in style definition; 0 found
 105 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 106 | ERROR | Expected 1 space after colon in style definition; 0 found
 109 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 110 | ERROR | Expected 1 space after colon in style definition; 0 found
 111 | ERROR | Multiple CSS properties should be listed in alphabetical order
 111 | ERROR | Expected 1 space after colon in style definition; 0 found
 112 | ERROR | Multiple CSS properties should be listed in alphabetical order
 112 | ERROR | Expected 1 space after colon in style definition; 0 found
 113 | ERROR | Expected 1 space after colon in style definition; 0 found
 114 | ERROR | Expected 1 space after colon in style definition; 0 found
 115 | ERROR | Multiple CSS properties should be listed in alphabetical order
 115 | ERROR | Expected 1 space after colon in style definition; 0 found
 116 | ERROR | Multiple CSS properties should be listed in alphabetical order
 117 | ERROR | Expected 1 space after colon in style definition; 0 found
 119 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 120 | ERROR | Expected 1 space after colon in style definition; 0 found
 122 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 123 | ERROR | Expected 1 space after colon in style definition; 0 found
 127 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 128 | ERROR | Expected 1 space after colon in style definition; 0 found
 128 | ERROR | CSS colours must be defined in lowercase; expected #2892e2 but
     |       | found #2892E2
 131 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 132 | ERROR | Expected 1 space after colon in style definition; 0 found
 133 | ERROR | Expected 1 space after colon in style definition; 0 found
 136 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 137 | ERROR | Expected 1 space after colon in style definition; 0 found
 139 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 140 | ERROR | Expected 1 space after colon in style definition; 0 found
 144 | ERROR | Expected 1 space after colon in style definition; 0 found
 147 | ERROR | Expected 1 space before opening brace of class definition; 0
     |       | found
 148 | ERROR | Expected 1 space after colon in style definition; 0 found
 149 | ERROR | Expected 1 space after colon in style definition; 0 found
 150 | ERROR | Expected 1 space after colon in style definition; 0 found
 151 | ERROR | Multiple CSS properties should be listed in alphabetical order
 151 | ERROR | Expected 1 space after colon in style definition; 0 found
 152 | ERROR | Expected 1 space after colon in style definition; 0 found
 153 | ERROR | Multiple CSS properties should be listed in alphabetical order
 153 | ERROR | Expected 1 space after colon in style definition; 0 found
 154 | ERROR | Multiple CSS properties should be listed in alphabetical order
 154 | ERROR | Expected 1 space after colon in style definition; 0 found
 155 | ERROR | Expected 1 space after colon in style definition; 0 found
--------------------------------------------------------------------------------


FILE: ...s/all/modules/pareview_temp/test_candidate/aa_theme/jplayer/jplayer.css
--------------------------------------------------------------------------------
FOUND 44 ERROR(S) AFFECTING 37 LINE(S)
--------------------------------------------------------------------------------
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Expected 1 space after colon in style definition; 0 found
 16 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 17 | ERROR | Expected 1 space after colon in style definition; 0 found
 20 | ERROR | Expected 1 space after colon in style definition; 0 found
 21 | ERROR | Expected 1 space after colon in style definition; 0 found
 25 | ERROR | Expected 1 space after colon in style definition; 2 found
 25 | ERROR | CSS colours must be defined in lowercase; expected #ba8f8f but
    |       | found #BA8F8F
 27 | ERROR | Multiple CSS properties should be listed in alphabetical order
 28 | ERROR | Multiple CSS properties should be listed in alphabetical order
 29 | ERROR | Expected 1 space after colon in style definition; 0 found
 32 | ERROR | CSS colours must be defined in lowercase; expected #8dafb7 but
    |       | found #8DAFB7
 34 | ERROR | Multiple CSS properties should be listed in alphabetical order
 38 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 39 | ERROR | Expected 1 space after colon in style definition; 0 found
 42 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 43 | ERROR | Expected 1 space after colon in style definition; 0 found
 44 | ERROR | Expected 1 space after colon in style definition; 0 found
 45 | ERROR | Expected 1 space after colon in style definition; 0 found
 48 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 49 | ERROR | Expected 1 space after colon in style definition; 0 found
 50 | ERROR | Expected 1 space after colon in style definition; 0 found
 51 | ERROR | Multiple CSS properties should be listed in alphabetical order
 51 | ERROR | Expected 1 space after colon in style definition; 0 found
 52 | ERROR | Multiple CSS properties should be listed in alphabetical order
 52 | ERROR | Expected 1 space after colon in style definition; 0 found
 54 | ERROR | Expected 1 space after colon in style definition; 0 found
 55 | ERROR | Multiple CSS properties should be listed in alphabetical order
 58 | ERROR | Multiple CSS properties should be listed in alphabetical order
 59 | ERROR | Multiple CSS properties should be listed in alphabetical order
 59 | ERROR | Expected 1 space after colon in style definition; 0 found
 60 | ERROR | Expected 1 space after colon in style definition; 0 found
 61 | ERROR | Multiple CSS properties should be listed in alphabetical order
 61 | ERROR | Expected 1 space after colon in style definition; 0 found
 65 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 68 | ERROR | Multiple CSS properties should be listed in alphabetical order
 69 | ERROR | Multiple CSS properties should be listed in alphabetical order
 69 | ERROR | Expected 1 space after colon in style definition; 0 found
 70 | ERROR | Expected 1 space after colon in style definition; 0 found
 71 | ERROR | Multiple CSS properties should be listed in alphabetical order
 71 | ERROR | Expected 1 space after colon in style definition; 0 found
 74 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 75 | ERROR | Expected 1 space after colon in style definition; 0 found
--------------------------------------------------------------------------------


FILE: ...es/all/modules/pareview_temp/test_candidate/aa_theme/jplayer/jplayer.js
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
  22 | ERROR | Whitespace found at end of line
  69 | ERROR | Whitespace found at end of line
 111 | ERROR | Whitespace found at end of line
 112 | ERROR | Whitespace found at end of line
 120 | ERROR | Whitespace found at end of line
--------------------------------------------------------------------------------


FILE: ...w/sites/all/modules/pareview_temp/test_candidate/audio_annotate.install
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
 5 | ERROR | File doc comments must be followed by a blank line.
--------------------------------------------------------------------------------


FILE: ...ew/sites/all/modules/pareview_temp/test_candidate/audio_annotate.module
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
 231 | ERROR | BREAK statements must be followed by a single blank line
 250 | ERROR | BREAK statements must be followed by a single blank line
 343 | ERROR | BREAK statements must be followed by a single blank line
 346 | ERROR | BREAK statements must be followed by a single blank line
 688 | ERROR | BREAK statements must be followed by a single blank line
 779 | ERROR | An operator statement must be followed by a single space
 779 | ERROR | There must be a single space before an operator statement
--------------------------------------------------------------------------------


FILE: ...ites/all/modules/pareview_temp/test_candidate/theme/jplayer/jplayer.css
--------------------------------------------------------------------------------
FOUND 44 ERROR(S) AFFECTING 37 LINE(S)
--------------------------------------------------------------------------------
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Expected 1 space after colon in style definition; 0 found
 16 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 17 | ERROR | Expected 1 space after colon in style definition; 0 found
 20 | ERROR | Expected 1 space after colon in style definition; 0 found
 21 | ERROR | Expected 1 space after colon in style definition; 0 found
 25 | ERROR | Expected 1 space after colon in style definition; 2 found
 25 | ERROR | CSS colours must be defined in lowercase; expected #ba8f8f but
    |       | found #BA8F8F
 27 | ERROR | Multiple CSS properties should be listed in alphabetical order
 28 | ERROR | Multiple CSS properties should be listed in alphabetical order
 29 | ERROR | Expected 1 space after colon in style definition; 0 found
 32 | ERROR | CSS colours must be defined in lowercase; expected #8dafb7 but
    |       | found #8DAFB7
 34 | ERROR | Multiple CSS properties should be listed in alphabetical order
 38 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 39 | ERROR | Expected 1 space after colon in style definition; 0 found
 42 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 43 | ERROR | Expected 1 space after colon in style definition; 0 found
 44 | ERROR | Expected 1 space after colon in style definition; 0 found
 45 | ERROR | Expected 1 space after colon in style definition; 0 found
 48 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 49 | ERROR | Expected 1 space after colon in style definition; 0 found
 50 | ERROR | Expected 1 space after colon in style definition; 0 found
 51 | ERROR | Multiple CSS properties should be listed in alphabetical order
 51 | ERROR | Expected 1 space after colon in style definition; 0 found
 52 | ERROR | Multiple CSS properties should be listed in alphabetical order
 52 | ERROR | Expected 1 space after colon in style definition; 0 found
 54 | ERROR | Expected 1 space after colon in style definition; 0 found
 55 | ERROR | Multiple CSS properties should be listed in alphabetical order
 58 | ERROR | Multiple CSS properties should be listed in alphabetical order
 59 | ERROR | Multiple CSS properties should be listed in alphabetical order
 59 | ERROR | Expected 1 space after colon in style definition; 0 found
 60 | ERROR | Expected 1 space after colon in style definition; 0 found
 61 | ERROR | Multiple CSS properties should be listed in alphabetical order
 61 | ERROR | Expected 1 space after colon in style definition; 0 found
 65 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 68 | ERROR | Multiple CSS properties should be listed in alphabetical order
 69 | ERROR | Multiple CSS properties should be listed in alphabetical order
 69 | ERROR | Expected 1 space after colon in style definition; 0 found
 70 | ERROR | Expected 1 space after colon in style definition; 0 found
 71 | ERROR | Multiple CSS properties should be listed in alphabetical order
 71 | ERROR | Expected 1 space after colon in style definition; 0 found
 74 | ERROR | Expected 1 space before opening brace of class definition; 0
    |       | found
 75 | ERROR | Expected 1 space after colon in style definition; 0 found
--------------------------------------------------------------------------------


FILE: ...sites/all/modules/pareview_temp/test_candidate/theme/jplayer/jplayer.js
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
  22 | ERROR | Whitespace found at end of line
  69 | ERROR | Whitespace found at end of line
 111 | ERROR | Whitespace found at end of line
 112 | ERROR | Whitespace found at end of line
 120 | ERROR | Whitespace found at end of line
--------------------------------------------------------------------------------


FILE: ...sites/all/modules/pareview_temp/test_candidate/ui_base/ui.accordion.css
--------------------------------------------------------------------------------
FOUND 35 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
 3 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 3 | ERROR | Each style definition must be on a line by itself
 3 | ERROR | Multiple CSS properties should be listed in alphabetical order
 3 | ERROR | Each style definition must be on a line by itself
 3 | ERROR | Each style definition must be on a line by itself
 3 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 4 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 4 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 5 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 5 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 6 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 6 | ERROR | Each style definition must be on a line by itself
 6 | ERROR | Each style definition must be on a line by itself
 6 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 7 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 7 | ERROR | Multiple CSS properties should be listed in alphabetical order
 7 | ERROR | Each style definition must be on a line by itself
 7 | ERROR | Each style definition must be on a line by itself
 7 | ERROR | Multiple CSS properties should be listed in alphabetical order
 7 | ERROR | Each style definition must be on a line by itself
 7 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 8 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 8 | ERROR | Multiple CSS properties should be listed in alphabetical order
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Multiple CSS properties should be listed in alphabetical order
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Multiple CSS properties should be listed in alphabetical order
 8 | ERROR | Each style definition must be on a line by itself
 8 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 9 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 9 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
--------------------------------------------------------------------------------


FILE: ...view/sites/all/modules/pareview_temp/test_candidate/ui_base/ui.core.css
--------------------------------------------------------------------------------
FOUND 63 ERROR(S) AFFECTING 11 LINE(S)
--------------------------------------------------------------------------------
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 12 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 15 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 15 | ERROR | Expected 1 space after colon in style definition; 0 found
 15 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 16 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 16 | ERROR | Expected 1 space after colon in style definition; 0 found
 16 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 18 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Expected 1 space after colon in style definition; 0 found
 18 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 23 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 23 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 30 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 30 | ERROR | Each style definition must be on a line by itself
 30 | ERROR | Multiple CSS properties should be listed in alphabetical order
 30 | ERROR | Each style definition must be on a line by itself
 30 | ERROR | Multiple CSS properties should be listed in alphabetical order
 30 | ERROR | Each style definition must be on a line by itself
 30 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 37 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 37 | ERROR | Each style definition must be on a line by itself
 37 | ERROR | Multiple CSS properties should be listed in alphabetical order
 37 | ERROR | Each style definition must be on a line by itself
 37 | ERROR | Each style definition must be on a line by itself
 37 | ERROR | Multiple CSS properties should be listed in alphabetical order
 37 | ERROR | Each style definition must be on a line by itself
 37 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
--------------------------------------------------------------------------------


FILE: ...ites/all/modules/pareview_temp/test_candidate/ui_base/ui.datepicker.css
--------------------------------------------------------------------------------
FOUND 196 ERROR(S) AFFECTING 52 LINE(S)
--------------------------------------------------------------------------------
  3 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  3 | ERROR | Multiple CSS properties should be listed in alphabetical order
  3 | ERROR | Each style definition must be on a line by itself
  3 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  4 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  4 | ERROR | Expected 1 space after colon in style definition; 0 found
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Expected 1 space after colon in style definition; 0 found
  4 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Multiple selectors should each be on a single line
  5 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  5 | ERROR | Expected 1 space after colon in style definition; 0 found
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  6 | ERROR | Multiple selectors should each be on a single line
  6 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  6 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  7 | ERROR | Expected 1 space after colon in style definition; 0 found
  7 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  8 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  8 | ERROR | Expected 1 space after colon in style definition; 0 found
  8 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Expected 1 space after colon in style definition; 0 found
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Expected 1 space after colon in style definition; 0 found
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Multiple selectors should each be on a single line
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 12 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 12 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 13 | ERROR | Expected 1 space after colon in style definition; 0 found
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Expected 1 space after colon in style definition; 0 found
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Expected 1 space after colon in style definition; 0 found
 13 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 14 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 14 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 15 | ERROR | Whitespace found at end of line
 16 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 16 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 17 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 17 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 18 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Multiple CSS properties should be listed in alphabetical order
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Each style definition must be on a line by itself
 18 | ERROR | Expected 1 space after colon in style definition; 0 found
 18 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 19 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 19 | ERROR | Each style definition must be on a line by itself
 19 | ERROR | Multiple CSS properties should be listed in alphabetical order
 19 | ERROR | Each style definition must be on a line by itself
 19 | ERROR | Multiple CSS properties should be listed in alphabetical order
 19 | ERROR | Each style definition must be on a line by itself
 19 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 20 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 20 | ERROR | Each style definition must be on a line by itself
 20 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 21 | ERROR | Multiple selectors should each be on a single line
 21 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 21 | ERROR | Each style definition must be on a line by itself
 21 | ERROR | Each style definition must be on a line by itself
 21 | ERROR | Each style definition must be on a line by itself
 21 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 22 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 22 | ERROR | Each style definition must be on a line by itself
 22 | ERROR | Each style definition must be on a line by itself
 22 | ERROR | Expected 1 space after colon in style definition; 0 found
 22 | ERROR | Multiple CSS properties should be listed in alphabetical order
 22 | ERROR | Each style definition must be on a line by itself
 22 | ERROR | Each style definition must be on a line by itself
 22 | ERROR | Multiple CSS properties should be listed in alphabetical order
 22 | ERROR | Each style definition must be on a line by itself
 22 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 23 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 23 | ERROR | Each style definition must be on a line by itself
 23 | ERROR | Multiple CSS properties should be listed in alphabetical order
 23 | ERROR | Each style definition must be on a line by itself
 23 | ERROR | Each style definition must be on a line by itself
 23 | ERROR | Each style definition must be on a line by itself
 23 | ERROR | Expected 1 space after colon in style definition; 0 found
 23 | ERROR | Multiple CSS properties should be listed in alphabetical order
 23 | ERROR | Each style definition must be on a line by itself
 23 | ERROR | Expected 1 space after colon in style definition; 0 found
 23 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 24 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 24 | ERROR | Expected 1 space after colon in style definition; 0 found
 24 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 27 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 27 | ERROR | Expected 1 space after colon in style definition; 0 found
 27 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 28 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 28 | ERROR | Expected 1 space after colon in style definition; 0 found
 28 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 29 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 29 | ERROR | Expected 1 space after colon in style definition; 0 found
 29 | ERROR | Multiple CSS properties should be listed in alphabetical order
 29 | ERROR | Each style definition must be on a line by itself
 29 | ERROR | Expected 1 space after colon in style definition; 0 found
 29 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 30 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 30 | ERROR | Expected 1 space after colon in style definition; 0 found
 30 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 31 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 31 | ERROR | Expected 1 space after colon in style definition; 0 found
 31 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 32 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 32 | ERROR | Expected 1 space after colon in style definition; 0 found
 32 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 33 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 33 | ERROR | Expected 1 space after colon in style definition; 0 found
 33 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 34 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 34 | ERROR | Expected 1 space after colon in style definition; 0 found
 34 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 35 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 35 | ERROR | Expected 1 space after colon in style definition; 0 found
 35 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 36 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 36 | ERROR | Expected 1 space after colon in style definition; 0 found
 36 | ERROR | Each style definition must be on a line by itself
 36 | ERROR | Expected 1 space after colon in style definition; 0 found
 36 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 39 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 39 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 40 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 40 | ERROR | Multiple CSS properties should be listed in alphabetical order
 40 | ERROR | Each style definition must be on a line by itself
 40 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 41 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 41 | ERROR | Each style definition must be on a line by itself
 41 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 42 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 42 | ERROR | Multiple CSS properties should be listed in alphabetical order
 42 | ERROR | Each style definition must be on a line by itself
 42 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 43 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 43 | ERROR | Each style definition must be on a line by itself
 43 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 44 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 44 | ERROR | Expected 1 space after colon in style definition; 0 found
 44 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 45 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 45 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 46 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 46 | ERROR | Expected 1 space after colon in style definition; 0 found
 46 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 47 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 47 | ERROR | Expected 1 space after colon in style definition; 0 found
 47 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 48 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 48 | ERROR | Expected 1 space after colon in style definition; 0 found
 48 | ERROR | Multiple CSS properties should be listed in alphabetical order
 48 | ERROR | Each style definition must be on a line by itself
 48 | ERROR | Expected 1 space after colon in style definition; 0 found
 48 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 49 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 49 | ERROR | Expected 1 space after colon in style definition; 0 found
 49 | ERROR | Multiple CSS properties should be listed in alphabetical order
 49 | ERROR | Each style definition must be on a line by itself
 49 | ERROR | Expected 1 space after colon in style definition; 0 found
 49 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 53 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 54 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 55 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 56 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 57 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 57 | ERROR | Multiple CSS properties should be listed in alphabetical order
 58 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 59 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 59 | ERROR | Multiple CSS properties should be listed in alphabetical order
 60 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 61 | ERROR | Line indented incorrectly; expected 2 spaces, found 4
 61 | ERROR | Multiple CSS properties should be listed in alphabetical order
--------------------------------------------------------------------------------


FILE: ...ew/sites/all/modules/pareview_temp/test_candidate/ui_base/ui.dialog.css
--------------------------------------------------------------------------------
FOUND 65 ERROR(S) AFFECTING 11 LINE(S)
--------------------------------------------------------------------------------
  3 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  3 | ERROR | Multiple CSS properties should be listed in alphabetical order
  3 | ERROR | Each style definition must be on a line by itself
  3 | ERROR | Each style definition must be on a line by itself
  3 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  4 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Whitespace found at end of line
  6 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Multiple CSS properties should be listed in alphabetical order
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Multiple CSS properties should be listed in alphabetical order
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  8 | ERROR | Multiple selectors should each be on a single line
  8 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  8 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Expected 1 space after colon in style definition; 0 found
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Expected 1 space after colon in style definition; 0 found
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 12 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 12 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
--------------------------------------------------------------------------------


FILE: ...tes/all/modules/pareview_temp/test_candidate/ui_base/ui.progressbar.css
--------------------------------------------------------------------------------
FOUND 9 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
 3 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 3 | ERROR | Expected 1 space after colon in style definition; 0 found
 3 | ERROR | Each style definition must be on a line by itself
 3 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
 4 | ERROR | Expected exactly one new line after opening brace of class
   |       | definition
 4 | ERROR | Multiple CSS properties should be listed in alphabetical order
 4 | ERROR | Each style definition must be on a line by itself
 4 | ERROR | Expected 1 space after colon in style definition; 0 found
 4 | ERROR | Expected exactly one new line before closing brace of class
   |       | definition
--------------------------------------------------------------------------------


FILE: ...sites/all/modules/pareview_temp/test_candidate/ui_base/ui.resizable.css
--------------------------------------------------------------------------------
FOUND 73 ERROR(S) AFFECTING 11 LINE(S)
--------------------------------------------------------------------------------
  3 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  3 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  4 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Multiple selectors should each be on a single line
  5 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  5 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  6 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Multiple CSS properties should be listed in alphabetical order
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Multiple CSS properties should be listed in alphabetical order
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Multiple CSS properties should be listed in alphabetical order
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  8 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  8 | ERROR | Each style definition must be on a line by itself
  8 | ERROR | Multiple CSS properties should be listed in alphabetical order
  8 | ERROR | Each style definition must be on a line by itself
  8 | ERROR | Each style definition must be on a line by itself
  8 | ERROR | Multiple CSS properties should be listed in alphabetical order
  8 | ERROR | Each style definition must be on a line by itself
  8 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Multiple CSS properties should be listed in alphabetical order
 11 | ERROR | Each style definition must be on a line by itself
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 12 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Multiple CSS properties should be listed in alphabetical order
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Each style definition must be on a line by itself
 12 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Multiple CSS properties should be listed in alphabetical order
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
--------------------------------------------------------------------------------


FILE: ...ew/sites/all/modules/pareview_temp/test_candidate/ui_base/ui.slider.css
--------------------------------------------------------------------------------
FOUND 51 ERROR(S) AFFECTING 13 LINE(S)
--------------------------------------------------------------------------------
  3 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  3 | ERROR | Each style definition must be on a line by itself
  3 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  4 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  8 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  8 | ERROR | Multiple CSS properties should be listed in alphabetical order
  8 | ERROR | Each style definition must be on a line by itself
  8 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Multiple CSS properties should be listed in alphabetical order
  9 | ERROR | Each style definition must be on a line by itself
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 13 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 13 | ERROR | Multiple CSS properties should be listed in alphabetical order
 13 | ERROR | Each style definition must be on a line by itself
 13 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 14 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 14 | ERROR | Each style definition must be on a line by itself
 14 | ERROR | Multiple CSS properties should be listed in alphabetical order
 14 | ERROR | Each style definition must be on a line by itself
 14 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 15 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 15 | ERROR | Each style definition must be on a line by itself
 15 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 16 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 16 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 17 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 17 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
--------------------------------------------------------------------------------


FILE: ...view/sites/all/modules/pareview_temp/test_candidate/ui_base/ui.tabs.css
--------------------------------------------------------------------------------
FOUND 42 ERROR(S) AFFECTING 9 LINE(S)
--------------------------------------------------------------------------------
  3 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  3 | ERROR | Each style definition must be on a line by itself
  3 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  4 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Multiple CSS properties should be listed in alphabetical order
  4 | ERROR | Each style definition must be on a line by itself
  4 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  5 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Multiple CSS properties should be listed in alphabetical order
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Each style definition must be on a line by itself
  5 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  6 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Multiple CSS properties should be listed in alphabetical order
  6 | ERROR | Each style definition must be on a line by itself
  6 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  7 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  7 | ERROR | Multiple CSS properties should be listed in alphabetical order
  7 | ERROR | Each style definition must be on a line by itself
  7 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  8 | ERROR | Multiple selectors should each be on a single line
  8 | ERROR | Multiple selectors should each be on a single line
  8 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  8 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
  9 | ERROR | Multiple selectors should each be on a single line
  9 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
  9 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 10 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Multiple CSS properties should be listed in alphabetical order
 10 | ERROR | Each style definition must be on a line by itself
 10 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line after opening brace of class
    |       | definition
 11 | ERROR | Expected exactly one new line before closing brace of class
    |       | definition
--------------------------------------------------------------------------------


FILE: ...iew/sites/all/modules/pareview_temp/test_candidate/ui_base/ui.theme.css
--------------------------------------------------------------------------------
FOUND 531 ERROR(S) AFFECTING 212 LINE(S)
--------------------------------------------------------------------------------
  10 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  10 | ERROR | Each style definition must be on a line by itself
  10 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  11 | ERROR | Multiple selectors should each be on a single line
  11 | ERROR | Multiple selectors should each be on a single line
  11 | ERROR | Multiple selectors should each be on a single line
  11 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  11 | ERROR | Each style definition must be on a line by itself
  11 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  12 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  12 | ERROR | Multiple CSS properties should be listed in alphabetical order
  12 | ERROR | Each style definition must be on a line by itself
  12 | ERROR | Each style definition must be on a line by itself
  12 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  13 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  13 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  14 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  14 | ERROR | Multiple CSS properties should be listed in alphabetical order
  14 | ERROR | Each style definition must be on a line by itself
  14 | ERROR | Each style definition must be on a line by itself
  14 | ERROR | Each style definition must be on a line by itself
  14 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  15 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  15 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  19 | ERROR | Multiple selectors should each be on a single line
  19 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  19 | ERROR | Multiple CSS properties should be listed in alphabetical order
  19 | ERROR | Each style definition must be on a line by itself
  19 | ERROR | Each style definition must be on a line by itself
  19 | ERROR | Multiple CSS properties should be listed in alphabetical order
  19 | ERROR | Each style definition must be on a line by itself
  19 | ERROR | Each style definition must be on a line by itself
  19 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  20 | ERROR | Multiple selectors should each be on a single line
  20 | ERROR | Multiple selectors should each be on a single line
  20 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  20 | ERROR | Each style definition must be on a line by itself
  20 | ERROR | Multiple CSS properties should be listed in alphabetical order
  20 | ERROR | Each style definition must be on a line by itself
  20 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  21 | ERROR | Multiple selectors should each be on a single line
  21 | ERROR | Multiple selectors should each be on a single line
  21 | ERROR | Multiple selectors should each be on a single line
  21 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  21 | ERROR | Multiple CSS properties should be listed in alphabetical order
  21 | ERROR | Each style definition must be on a line by itself
  21 | ERROR | Each style definition must be on a line by itself
  21 | ERROR | Multiple CSS properties should be listed in alphabetical order
  21 | ERROR | Each style definition must be on a line by itself
  21 | ERROR | Each style definition must be on a line by itself
  21 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  22 | ERROR | Multiple selectors should each be on a single line
  22 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  22 | ERROR | Each style definition must be on a line by itself
  22 | ERROR | Multiple CSS properties should be listed in alphabetical order
  22 | ERROR | Each style definition must be on a line by itself
  22 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  23 | ERROR | Multiple selectors should each be on a single line
  23 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  23 | ERROR | Multiple CSS properties should be listed in alphabetical order
  23 | ERROR | Each style definition must be on a line by itself
  23 | ERROR | Each style definition must be on a line by itself
  23 | ERROR | Multiple CSS properties should be listed in alphabetical order
  23 | ERROR | Each style definition must be on a line by itself
  23 | ERROR | Each style definition must be on a line by itself
  23 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  24 | ERROR | Multiple selectors should each be on a single line
  24 | ERROR | Multiple selectors should each be on a single line
  24 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  24 | ERROR | Each style definition must be on a line by itself
  24 | ERROR | Each style definition must be on a line by itself
  24 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  28 | ERROR | Multiple selectors should each be on a single line
  28 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  28 | ERROR | Multiple CSS properties should be listed in alphabetical order
  28 | ERROR | Each style definition must be on a line by itself
  28 | ERROR | Each style definition must be on a line by itself
  28 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  29 | ERROR | Multiple selectors should each be on a single line
  29 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  29 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  30 | ERROR | Multiple selectors should each be on a single line
  30 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  30 | ERROR | Multiple CSS properties should be listed in alphabetical order
  30 | ERROR | Each style definition must be on a line by itself
  30 | ERROR | Each style definition must be on a line by itself
  30 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  31 | ERROR | Multiple selectors should each be on a single line
  31 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  31 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  32 | ERROR | Multiple selectors should each be on a single line
  32 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  32 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  33 | ERROR | Multiple selectors should each be on a single line
  33 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  33 | ERROR | Multiple CSS properties should be listed in alphabetical order
  33 | ERROR | Each style definition must be on a line by itself
  33 | ERROR | Expected 1 space after colon in style definition; 0 found
  33 | ERROR | Multiple CSS properties should be listed in alphabetical order
  33 | ERROR | Each style definition must be on a line by itself
  33 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  34 | ERROR | Multiple selectors should each be on a single line
  34 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  34 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  35 | ERROR | Multiple selectors should each be on a single line
  35 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  35 | ERROR | Multiple CSS properties should be listed in alphabetical order
  35 | ERROR | Each style definition must be on a line by itself
  35 | ERROR | Expected 1 space after colon in style definition; 0 found
  35 | ERROR | Each style definition must be on a line by itself
  35 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  41 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  41 | ERROR | Multiple CSS properties should be listed in alphabetical order
  41 | ERROR | Each style definition must be on a line by itself
  41 | ERROR | Multiple CSS properties should be listed in alphabetical order
  41 | ERROR | Each style definition must be on a line by itself
  41 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  42 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  42 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  43 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  43 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  44 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  44 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  45 | ERROR | Multiple selectors should each be on a single line
  45 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  45 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  46 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  46 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  47 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  47 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  48 | ERROR | Multiple selectors should each be on a single line
  48 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  48 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  51 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  51 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  52 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  52 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  53 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  53 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  54 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  54 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  55 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  55 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  56 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  56 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  57 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  57 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  58 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  58 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  59 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  59 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  60 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  60 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  61 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  61 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  62 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  62 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  63 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  63 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  64 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  64 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  65 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  65 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  66 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  66 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  67 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  67 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  68 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  68 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  69 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  69 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  70 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  70 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  71 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  71 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  72 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  72 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  73 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  73 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  74 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  74 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  75 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  75 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  76 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  76 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  77 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  77 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  78 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  78 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  79 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  79 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  80 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  80 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  81 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  81 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  82 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  82 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  83 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  83 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  84 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  84 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  85 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  85 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  86 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  86 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  87 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  87 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  88 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  88 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  89 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  89 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  90 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  90 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  91 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  91 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  92 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  92 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  93 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  93 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  94 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  94 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  95 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  95 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  96 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  96 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  97 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  97 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  98 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  98 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
  99 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
  99 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 100 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 100 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 101 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 101 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 102 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 102 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 103 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 103 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 104 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 104 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 105 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 105 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 106 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 106 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 107 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 107 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 108 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 108 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 109 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 109 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 110 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 110 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 111 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 111 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 112 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 112 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 113 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 113 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 114 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 114 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 115 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 115 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 116 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 116 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 117 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 117 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 118 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 118 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 119 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 119 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 120 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 120 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 121 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 121 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 122 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 122 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 123 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 123 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 124 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 124 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 125 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 125 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 126 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 126 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 127 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 127 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 128 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 128 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 129 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 129 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 130 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 130 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 131 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 131 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 132 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 132 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 133 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 133 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 134 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 134 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 135 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 135 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 136 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 136 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 137 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 137 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 138 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 138 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 139 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 139 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 140 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 140 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 141 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 141 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 142 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 142 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 143 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 143 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 144 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 144 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 145 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 145 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 146 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 146 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 147 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 147 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 148 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 148 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 149 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 149 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 150 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 150 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 151 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 151 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 152 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 152 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 153 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 153 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 154 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 154 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 155 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 155 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 156 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 156 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 157 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 157 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 158 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 158 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 159 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 159 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 160 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 160 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 161 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 161 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 162 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 162 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 163 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 163 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 164 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 164 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 165 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 165 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 166 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 166 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 167 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 167 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 168 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 168 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 169 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 169 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 170 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 170 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 171 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 171 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 172 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 172 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 173 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 173 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 174 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 174 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 175 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 175 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 176 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 176 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 177 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 177 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 178 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 178 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 179 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 179 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 180 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 180 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 181 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 181 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 182 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 182 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 183 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 183 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 184 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 184 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 185 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 185 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 186 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 186 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 187 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 187 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 188 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 188 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 189 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 189 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 190 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 190 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 191 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 191 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 192 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 192 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 193 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 193 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 194 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 194 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 195 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 195 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 196 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 196 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 197 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 197 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 198 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 198 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 199 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 199 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 200 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 200 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 201 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 201 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 202 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 202 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 203 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 203 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 204 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 204 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 205 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 205 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 206 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 206 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 207 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 207 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 208 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 208 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 209 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 209 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 210 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 210 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 211 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 211 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 212 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 212 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 213 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 213 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 214 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 214 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 215 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 215 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 216 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 216 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 217 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 217 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 218 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 218 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 219 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 219 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 220 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 220 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 221 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 221 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 222 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 222 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 223 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 223 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 230 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 230 | ERROR | Each style definition must be on a line by itself
 230 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 231 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 231 | ERROR | Each style definition must be on a line by itself
 231 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 232 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 232 | ERROR | Each style definition must be on a line by itself
 232 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 233 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 233 | ERROR | Each style definition must be on a line by itself
 233 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 234 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 234 | ERROR | Each style definition must be on a line by itself
 234 | ERROR | Each style definition must be on a line by itself
 234 | ERROR | Each style definition must be on a line by itself
 234 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 235 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 235 | ERROR | Each style definition must be on a line by itself
 235 | ERROR | Each style definition must be on a line by itself
 235 | ERROR | Each style definition must be on a line by itself
 235 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 236 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 236 | ERROR | Each style definition must be on a line by itself
 236 | ERROR | Each style definition must be on a line by itself
 236 | ERROR | Each style definition must be on a line by itself
 236 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 237 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 237 | ERROR | Each style definition must be on a line by itself
 237 | ERROR | Each style definition must be on a line by itself
 237 | ERROR | Each style definition must be on a line by itself
 237 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 238 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 238 | ERROR | Each style definition must be on a line by itself
 238 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 241 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 241 | ERROR | Each style definition must be on a line by itself
 241 | ERROR | Multiple CSS properties should be listed in alphabetical order
 241 | ERROR | Each style definition must be on a line by itself
 241 | ERROR | Expected 1 space after colon in style definition; 0 found
 241 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
 242 | ERROR | Expected exactly one new line after opening brace of class
     |       | definition
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Multiple CSS properties should be listed in alphabetical order
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Multiple CSS properties should be listed in alphabetical order
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Expected 1 space after colon in style definition; 0 found
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Each style definition must be on a line by itself
 242 | ERROR | Expected exactly one new line before closing brace of class
     |       | definition
--------------------------------------------------------------------------------

Source: http://ventral.org/pareview - PAReview.sh online service

8bitplateau’s picture

ok will do, I fully appreciate the challenge the queue creates. Off to help others now ...

8bitplateau’s picture

HI Novalet,

Thanks for looking, it did pass pareview at one point over at ventral but now clearly it does not!

I think I must be using an out-of-date version of the standards for PHPCS, and maybe it skipped the CSS and JS, I'll have to look at the Komodo tool I made to launch it.

The large amount of CSS errors are from the jQuery UI theme-roller CSS files. Perhaps if I link to them hosted on Google OR module depend the jQuery UI Theme module and reference them then I don't have to ship them with this module ? does that sound like a good idea ?

It would be good to actually get some feed back and help as well as the necessary automated code aesthetics fixes.

Did you manage to get it installed ?

thanks

8bitplateau’s picture

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

Fixed all coding standards errors as per digitisation_errors.txt
http://ventral.org/pareview/httpgitdrupalorgsandboxdigitisation1365530git
I was using DrupalCodingStandard PHPCS standard not Drupal PHPCS standard - doh!

ryandekker’s picture

Status: Needs review » Needs work

@digitisation, this is a cool module! I got it installed and working. I verified it passed automated code review steps; looking good.

Install Process

I will say the install process was a bit cumbersome. There's a lot of modules/libraries at play here, and your module requires different setup than is typical (version of jQueryUI, jPlayer).

The aa_theme replacement point is a bit confusing; first time through I copied the entire aa_theme directory into my theme. Also, if someone is using a core or contrib theme (which I think is pretty common), using your module will require them to "hack" that theme. I think it makes a lot of sense to do this step for users, and it's not that hard. You can override the default jplayer_single.tpl.php by using hook_theme_registry_alter, and you can override the the css and js files the same way that jquery_update does it. (Bit of a pain in Drupal 6, unfortunately.)

Regarding the rest of the requirements for your module, you should implement hook_requirements to help users fix their installation. Check for things like:

  • Versions of jQuery UI and jPlayer.
  • Proper installation (specifically location) of jQuery library.
  • Proper installation of jPlayer library.
  • Drupal is able to access LAME and PHP 'exec'.
  • If you're not going to do the theme work for users, you should provide a check to help them debug issues with their theme (i.e., recommend a cache flush if they're still having problems, etc.)

Other Nitpicks

  • Your message saying "LAME found at @lame" should be a status message, not an error message.
  • Test output should probably be the same.
  • Test output should probably be all appended to the same message, rather than generating 15+ messages.
  • The function comments for audio_annotate_admin_settings_validate() and audio_annotate_admin_settings_submit() say jplayer, rather than audio_annotate. This is especially confusing given that you're working closely with jplayer.

Feature Request

I think it would be very helpful to have an option that would hide the comments, since they are listed above in the audio area already. Pretty minor, but I think it would help clean up those pages.

8bitplateau’s picture

Hi,
Thanks for a really helpful review and taking time to look over both the module and the code.

I'm going to take on board as much of that as I can, lots to do but all worth doing, and I agree with the feature request too, it makes sense.

I didn't know about the hook_theme_registry_alter, that makes a lot of sense.
back in a while .......

meloff’s picture

Component: module » feature

Hi,

AA on D6 works fine, thank you for the work done. :) But I need a new jplayer for D7.. Should we expect a version for Drupal 7?

p.s. google translate

8bitplateau’s picture

I am yes! just been a busy and need to get the D6 version through first.
There is a D7 version working but very buggy, I'll github it and let you have a link.

klausi’s picture

Status: Needs work » Closed (won't fix)

Closing due to lack of activity. Feel free to reopen if you are still working on this application.