A simple content managing module for creating/editing and deleting custom pages with editable title, body, path and publishing option.

Its lighter than the core node module. Custom page is another solution but does not provide editable forms and publishing option targeting for users.

Similar modules

Basic Page Sandbox

git clone --branch 7.x-1.x dropchew@git.drupal.org:sandbox/dropchew/1402412.git

Made for Drupal 7.

Comments

jthorson’s picture

Status: Needs review » Needs work
Master Branch
It appears you are working in the "master" branch in git. You should really be working in a version specific branch. The most direct documentation on this is Moving from a master branch to a version branch. For additional resources please see the documentation about release naming conventions and creating a branch in git.
$items['basic-page/%cp'] = array(...) + $base ;
For readability, please include the arguments directly in each item definition directly, so that others looking at your code can validate things like access permissions for an item in a single glance.
Function namespacing
All functions should be namespaced with the name of your module. When I see items like asiaone_health_node_monitor_admin_paths(), it's a red flag that this really isn't a 'finished' module.
dropchew’s picture

Thanks for the advice!

Will make the changes soon.

dropchew

dropchew’s picture

Status: Needs work » Needs review

Hi,

Please review the changes, thanks!

git clone --branch 7.x-1.x dropchew@git.drupal.org:sandbox/dropchew/1402412.git

http://drupal.org/node/1402412/commits

chrisroane’s picture

Status: Needs review » Needs work

MANUAL REVIEW
----------------

  1. The name "Basic Page" for the module conflicts with the Basic page content type that is in Drupal 7 by default. I think this would confuse people. What about calling this "Simple Page" or something else?
  2. Create a README.txt file with information such as how to install and a description of the project.
  3. I would add a link for creating a new page from the Add Content page.
  4. This type of content should show up under the Find Content section. It would be nice to see it listed under type. Otherwise, how are people supposed to find the content from the admin without going to the page?

The above items, along with the things the auto review came up with below are the main things that should be taken care of.

AUTO REVIEW
-------------

I used the PAReview utility. There are quite a bit of code formatting issues that need to be updated to meet the Drupal Coding Standards.

sites/all/modules/pareview_temp/test_candidate/./includes/basic_page.admin.inc:
+60: [critical] Potential problem: drupal_set_message() only accepts filtered text, be sure to use check_plain(), filter_xss() or similar to ensure your $variable is fully sanitized.
+128: [normal] Use ANSI standard instead of !=

Status Messages:
Coder found 5 projects, 5 files, 1 critical warnings, 1 normal warnings, 0 warnings were flagged to be ignored

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

FILE: ...eview/sites/all/modules/pareview_temp/test_candidate/basic_page.install
--------------------------------------------------------------------------------
FOUND 78 ERROR(S) AND 1 WARNING(S) AFFECTING 44 LINE(S)
--------------------------------------------------------------------------------
7 | ERROR | Whitespace found at end of line
9 | WARNING | Format should be "* Implements hook_foo()." or "Implements
| | hook_foo_BAR_ID_bar() for xyz_bar."
9 | ERROR | Expected 3 space(s) before asterisk; 1 found
10 | ERROR | Expected 3 space(s) before asterisk; 1 found
11 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
13 | ERROR | Spaces must be used to indent lines; tabs are not allowed
13 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
14 | ERROR | Spaces must be used to indent lines; tabs are not allowed
14 | ERROR | Array indentation error, expected 3 spaces but found 2
15 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | Array indentation error, expected 3 spaces but found 2
16 | ERROR | Spaces must be used to indent lines; tabs are not allowed
17 | ERROR | Spaces must be used to indent lines; tabs are not allowed
17 | ERROR | Array indentation error, expected 6 spaces but found 3
18 | ERROR | Spaces must be used to indent lines; tabs are not allowed
18 | ERROR | Array indentation error, expected 6 spaces but found 3
18 | ERROR | Whitespace found at end of line
19 | ERROR | Spaces must be used to indent lines; tabs are not allowed
19 | ERROR | Array indentation error, expected 6 spaces but found 3
19 | ERROR | Whitespace found at end of line
20 | ERROR | Spaces must be used to indent lines; tabs are not allowed
20 | ERROR | Array indentation error, expected 6 spaces but found 3
21 | ERROR | Spaces must be used to indent lines; tabs are not allowed
22 | ERROR | Spaces must be used to indent lines; tabs are not allowed
23 | ERROR | Spaces must be used to indent lines; tabs are not allowed
23 | ERROR | Array indentation error, expected 6 spaces but found 3
24 | ERROR | Spaces must be used to indent lines; tabs are not allowed
24 | ERROR | Array indentation error, expected 6 spaces but found 3
25 | ERROR | Spaces must be used to indent lines; tabs are not allowed
25 | ERROR | Array indentation error, expected 6 spaces but found 3
26 | ERROR | Spaces must be used to indent lines; tabs are not allowed
26 | ERROR | Array indentation error, expected 6 spaces but found 3
27 | ERROR | Spaces must be used to indent lines; tabs are not allowed
27 | ERROR | Array indentation error, expected 6 spaces but found 3
28 | ERROR | Spaces must be used to indent lines; tabs are not allowed
29 | ERROR | Spaces must be used to indent lines; tabs are not allowed
30 | ERROR | Spaces must be used to indent lines; tabs are not allowed
30 | ERROR | Array indentation error, expected 6 spaces but found 3
31 | ERROR | Spaces must be used to indent lines; tabs are not allowed
31 | ERROR | Array indentation error, expected 6 spaces but found 3
32 | ERROR | Spaces must be used to indent lines; tabs are not allowed
32 | ERROR | Array indentation error, expected 6 spaces but found 3
33 | ERROR | Spaces must be used to indent lines; tabs are not allowed
33 | ERROR | Array indentation error, expected 6 spaces but found 3
34 | ERROR | Spaces must be used to indent lines; tabs are not allowed
35 | ERROR | Spaces must be used to indent lines; tabs are not allowed
36 | ERROR | Spaces must be used to indent lines; tabs are not allowed
36 | ERROR | Array indentation error, expected 6 spaces but found 3
37 | ERROR | Spaces must be used to indent lines; tabs are not allowed
37 | ERROR | Array indentation error, expected 6 spaces but found 3
38 | ERROR | Spaces must be used to indent lines; tabs are not allowed
38 | ERROR | Array indentation error, expected 6 spaces but found 3
39 | ERROR | Spaces must be used to indent lines; tabs are not allowed
39 | ERROR | Array indentation error, expected 6 spaces but found 3
40 | ERROR | Spaces must be used to indent lines; tabs are not allowed
41 | ERROR | Spaces must be used to indent lines; tabs are not allowed
41 | ERROR | Array indentation error, expected 4 spaces but found 5
42 | ERROR | Spaces must be used to indent lines; tabs are not allowed
42 | ERROR | Array indentation error, expected 7 spaces but found 3
43 | ERROR | Spaces must be used to indent lines; tabs are not allowed
43 | ERROR | Array indentation error, expected 7 spaces but found 3
44 | ERROR | Spaces must be used to indent lines; tabs are not allowed
44 | ERROR | Array indentation error, expected 7 spaces but found 3
45 | ERROR | Spaces must be used to indent lines; tabs are not allowed
45 | ERROR | Array indentation error, expected 7 spaces but found 3
46 | ERROR | Spaces must be used to indent lines; tabs are not allowed
46 | ERROR | Array closing indentation error, expected 5 spaces but found 4
47 | ERROR | Spaces must be used to indent lines; tabs are not allowed
47 | ERROR | Array indentation error, expected 3 spaces but found 2
48 | ERROR | Spaces must be used to indent lines; tabs are not allowed
48 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
48 | ERROR | Array indentation error, expected 3 spaces but found 1
49 | ERROR | Spaces must be used to indent lines; tabs are not allowed
49 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
50 | ERROR | Whitespace found at end of line
50 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
53 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

FILE: ...review/sites/all/modules/pareview_temp/test_candidate/basic_page.module
--------------------------------------------------------------------------------
FOUND 162 ERROR(S) AND 2 WARNING(S) AFFECTING 94 LINE(S)
--------------------------------------------------------------------------------
2 | ERROR | You must use "/**" style comments for a file comment
3 | ERROR | There must be no blank line following an inline comment
11 | ERROR | Concat operator must be surrounded by spaces
16 | WARNING | Format should be "* Implements hook_foo()." or "Implements
| | hook_foo_BAR_ID_bar() for xyz_bar."
19 | ERROR | Spaces must be used to indent lines; tabs are not allowed
19 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
20 | ERROR | Array indentation error, expected 3 spaces but found 4
23 | ERROR | Array indentation error, expected 3 spaces but found 5
23 | ERROR | Array closing indentation error, expected 4 spaces but found 5
24 | ERROR | Spaces must be used to indent lines; tabs are not allowed
24 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
24 | ERROR | Array indentation error, expected 3 spaces but found 1
25 | ERROR | Array indentation error, expected 3 spaces but found 6
26 | ERROR | Array indentation error, expected 3 spaces but found 6
27 | ERROR | Array indentation error, expected 3 spaces but found 5
27 | ERROR | Array closing indentation error, expected 1 spaces but found 5
28 | ERROR | Array closing indentation error, expected 1 spaces but found 3
32 | WARNING | Format should be "* Implements hook_foo()." or "Implements
| | hook_foo_BAR_ID_bar() for xyz_bar."
33 | ERROR | Whitespace found at end of line
35 | ERROR | Whitespace found at end of line
36 | ERROR | Spaces must be used to indent lines; tabs are not allowed
36 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
38 | ERROR | Spaces must be used to indent lines; tabs are not allowed
38 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
39 | ERROR | Spaces must be used to indent lines; tabs are not allowed
39 | ERROR | Array indentation error, expected 3 spaces but found 2
40 | ERROR | Spaces must be used to indent lines; tabs are not allowed
40 | ERROR | Array indentation error, expected 3 spaces but found 2
41 | ERROR | Spaces must be used to indent lines; tabs are not allowed
41 | ERROR | Array indentation error, expected 3 spaces but found 2
42 | ERROR | Spaces must be used to indent lines; tabs are not allowed
42 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
43 | ERROR | Whitespace found at end of line
43 | ERROR | Spaces must be used to indent lines; tabs are not allowed
44 | ERROR | Spaces must be used to indent lines; tabs are not allowed
44 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
45 | ERROR | Spaces must be used to indent lines; tabs are not allowed
45 | ERROR | Array indentation error, expected 3 spaces but found 2
46 | ERROR | Spaces must be used to indent lines; tabs are not allowed
46 | ERROR | Array indentation error, expected 3 spaces but found 2
47 | ERROR | Spaces must be used to indent lines; tabs are not allowed
47 | ERROR | Array indentation error, expected 3 spaces but found 2
48 | ERROR | Spaces must be used to indent lines; tabs are not allowed
48 | ERROR | Array indentation error, expected 3 spaces but found 2
49 | ERROR | Spaces must be used to indent lines; tabs are not allowed
49 | ERROR | Array indentation error, expected 3 spaces but found 2
50 | ERROR | Spaces must be used to indent lines; tabs are not allowed
50 | ERROR | Array indentation error, expected 3 spaces but found 2
51 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Array indentation error, expected 3 spaces but found 2
52 | ERROR | Spaces must be used to indent lines; tabs are not allowed
52 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
54 | ERROR | Spaces must be used to indent lines; tabs are not allowed
54 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
55 | ERROR | Spaces must be used to indent lines; tabs are not allowed
55 | ERROR | Array indentation error, expected 3 spaces but found 2
56 | ERROR | Spaces must be used to indent lines; tabs are not allowed
56 | ERROR | Array indentation error, expected 3 spaces but found 2
57 | ERROR | Spaces must be used to indent lines; tabs are not allowed
57 | ERROR | Array indentation error, expected 3 spaces but found 2
58 | ERROR | Spaces must be used to indent lines; tabs are not allowed
58 | ERROR | Array indentation error, expected 3 spaces but found 2
59 | ERROR | Spaces must be used to indent lines; tabs are not allowed
59 | ERROR | Array indentation error, expected 3 spaces but found 2
60 | ERROR | Spaces must be used to indent lines; tabs are not allowed
60 | ERROR | Array indentation error, expected 3 spaces but found 2
61 | ERROR | Spaces must be used to indent lines; tabs are not allowed
61 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
62 | ERROR | Whitespace found at end of line
62 | ERROR | Spaces must be used to indent lines; tabs are not allowed
63 | ERROR | Spaces must be used to indent lines; tabs are not allowed
63 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
64 | ERROR | Spaces must be used to indent lines; tabs are not allowed
64 | ERROR | Array indentation error, expected 3 spaces but found 2
65 | ERROR | Spaces must be used to indent lines; tabs are not allowed
65 | ERROR | Array indentation error, expected 3 spaces but found 2
66 | ERROR | Spaces must be used to indent lines; tabs are not allowed
66 | ERROR | Array indentation error, expected 3 spaces but found 2
67 | ERROR | Spaces must be used to indent lines; tabs are not allowed
67 | ERROR | Array indentation error, expected 3 spaces but found 2
68 | ERROR | Spaces must be used to indent lines; tabs are not allowed
68 | ERROR | Array indentation error, expected 3 spaces but found 2
69 | ERROR | Spaces must be used to indent lines; tabs are not allowed
69 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
70 | ERROR | Whitespace found at end of line
70 | ERROR | Spaces must be used to indent lines; tabs are not allowed
71 | ERROR | Spaces must be used to indent lines; tabs are not allowed
71 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
72 | ERROR | Spaces must be used to indent lines; tabs are not allowed
72 | ERROR | Array indentation error, expected 3 spaces but found 2
73 | ERROR | Spaces must be used to indent lines; tabs are not allowed
73 | ERROR | Array indentation error, expected 3 spaces but found 2
74 | ERROR | Spaces must be used to indent lines; tabs are not allowed
74 | ERROR | Array indentation error, expected 3 spaces but found 2
75 | ERROR | Spaces must be used to indent lines; tabs are not allowed
75 | ERROR | Array indentation error, expected 3 spaces but found 2
76 | ERROR | Spaces must be used to indent lines; tabs are not allowed
76 | ERROR | Array indentation error, expected 3 spaces but found 2
77 | ERROR | Spaces must be used to indent lines; tabs are not allowed
77 | ERROR | Array indentation error, expected 3 spaces but found 2
78 | ERROR | Spaces must be used to indent lines; tabs are not allowed
78 | ERROR | Array indentation error, expected 3 spaces but found 2
79 | ERROR | Spaces must be used to indent lines; tabs are not allowed
79 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
80 | ERROR | Whitespace found at end of line
80 | ERROR | Spaces must be used to indent lines; tabs are not allowed
81 | ERROR | Spaces must be used to indent lines; tabs are not allowed
81 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
82 | ERROR | Spaces must be used to indent lines; tabs are not allowed
82 | ERROR | Array indentation error, expected 3 spaces but found 2
83 | ERROR | Spaces must be used to indent lines; tabs are not allowed
83 | ERROR | Array indentation error, expected 3 spaces but found 2
84 | ERROR | Spaces must be used to indent lines; tabs are not allowed
84 | ERROR | Array indentation error, expected 3 spaces but found 2
85 | ERROR | Spaces must be used to indent lines; tabs are not allowed
85 | ERROR | Array indentation error, expected 3 spaces but found 2
86 | ERROR | Spaces must be used to indent lines; tabs are not allowed
86 | ERROR | Array indentation error, expected 3 spaces but found 2
87 | ERROR | Spaces must be used to indent lines; tabs are not allowed
87 | ERROR | Array indentation error, expected 3 spaces but found 2
88 | ERROR | Spaces must be used to indent lines; tabs are not allowed
88 | ERROR | Array indentation error, expected 3 spaces but found 2
89 | ERROR | Spaces must be used to indent lines; tabs are not allowed
89 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
90 | ERROR | Whitespace found at end of line
90 | ERROR | Spaces must be used to indent lines; tabs are not allowed
91 | ERROR | Spaces must be used to indent lines; tabs are not allowed
91 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
92 | ERROR | Spaces must be used to indent lines; tabs are not allowed
92 | ERROR | Array indentation error, expected 3 spaces but found 2
93 | ERROR | Spaces must be used to indent lines; tabs are not allowed
93 | ERROR | Array indentation error, expected 3 spaces but found 2
94 | ERROR | Spaces must be used to indent lines; tabs are not allowed
94 | ERROR | Array indentation error, expected 3 spaces but found 2
95 | ERROR | Spaces must be used to indent lines; tabs are not allowed
95 | ERROR | Array indentation error, expected 3 spaces but found 2
96 | ERROR | Spaces must be used to indent lines; tabs are not allowed
96 | ERROR | Array indentation error, expected 3 spaces but found 2
97 | ERROR | Spaces must be used to indent lines; tabs are not allowed
97 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
97 | ERROR | Whitespace found at end of line
98 | ERROR | Whitespace found at end of line
100 | ERROR | Whitespace found at end of line
101 | ERROR | Closing brace indented incorrectly; expected 0 spaces, found 1
104 | ERROR | Expected 2 space(s) before asterisk; 1 found
105 | ERROR | Expected 2 space(s) before asterisk; 1 found
106 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
107 | ERROR | Spaces must be used to indent lines; tabs are not allowed
107 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
108 | ERROR | Spaces must be used to indent lines; tabs are not allowed
109 | ERROR | Spaces must be used to indent lines; tabs are not allowed
110 | ERROR | Spaces must be used to indent lines; tabs are not allowed
111 | ERROR | Spaces must be used to indent lines; tabs are not allowed
122 | ERROR | Expected 2 space(s) before asterisk; 1 found
123 | ERROR | Expected 2 space(s) before asterisk; 1 found
126 | ERROR | Spaces must be used to indent lines; tabs are not allowed
126 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
127 | ERROR | Spaces must be used to indent lines; tabs are not allowed
128 | ERROR | Spaces must be used to indent lines; tabs are not allowed
129 | ERROR | Spaces must be used to indent lines; tabs are not allowed
129 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
130 | ERROR | Spaces must be used to indent lines; tabs are not allowed
130 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
131 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

FILE: .../all/modules/pareview_temp/test_candidate/includes/basic_page.admin.inc
--------------------------------------------------------------------------------
FOUND 352 ERROR(S) AND 2 WARNING(S) AFFECTING 174 LINE(S)
--------------------------------------------------------------------------------
8 | ERROR | Missing function doc comment
8 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
9 | ERROR | Whitespace found at end of line
9 | ERROR | Spaces must be used to indent lines; tabs are not allowed
10 | ERROR | Spaces must be used to indent lines; tabs are not allowed
10 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
10 | ERROR | No space before comment text; expected "// name of view" but
| | found "//name of view"
10 | ERROR | Inline comments must start with a capital letter
10 | ERROR | Inline comments must end in full-stops, exclamation marks, or
| | question marks
10 | ERROR | Comments may not appear after statements.
11 | ERROR | Spaces must be used to indent lines; tabs are not allowed
11 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
12 | ERROR | Whitespace found at end of line
12 | ERROR | Spaces must be used to indent lines; tabs are not allowed
13 | ERROR | Spaces must be used to indent lines; tabs are not allowed
13 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
13 | ERROR | An operator statement must be followed by a single space
14 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | No space found after comma in function call
17 | ERROR | Spaces must be used to indent lines; tabs are not allowed
17 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
18 | ERROR | Whitespace found at end of line
18 | ERROR | Spaces must be used to indent lines; tabs are not allowed
21 | ERROR | You must use "/**" style comments for a function comment
21 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
22 | ERROR | Whitespace found at end of line
22 | ERROR | Spaces must be used to indent lines; tabs are not allowed
23 | ERROR | Spaces must be used to indent lines; tabs are not allowed
23 | ERROR | Expected "if (...) {\n"; found "if (...) { "
23 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
23 | ERROR | Closing brace must be on a line by itself
24 | ERROR | Whitespace found at end of line
24 | ERROR | Spaces must be used to indent lines; tabs are not allowed
25 | ERROR | Spaces must be used to indent lines; tabs are not allowed
25 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
26 | ERROR | Whitespace found at end of line
26 | ERROR | Spaces must be used to indent lines; tabs are not allowed
27 | ERROR | Spaces must be used to indent lines; tabs are not allowed
27 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
30 | ERROR | Missing function doc comment
30 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
31 | ERROR | Spaces must be used to indent lines; tabs are not allowed
31 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
31 | ERROR | Whitespace found at end of line
34 | ERROR | Missing function doc comment
34 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but
| | found "null"
34 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
36 | ERROR | Spaces must be used to indent lines; tabs are not allowed
36 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
36 | WARNING | The closing paranthesis of an array should not be preceded by
| | a white space
37 | ERROR | Spaces must be used to indent lines; tabs are not allowed
37 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
38 | ERROR | Whitespace found at end of line
38 | ERROR | Spaces must be used to indent lines; tabs are not allowed
41 | ERROR | Missing function doc comment
41 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
42 | ERROR | Whitespace found at end of line
42 | ERROR | Spaces must be used to indent lines; tabs are not allowed
43 | ERROR | Spaces must be used to indent lines; tabs are not allowed
43 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
44 | ERROR | Whitespace found at end of line
44 | ERROR | Spaces must be used to indent lines; tabs are not allowed
45 | ERROR | Spaces must be used to indent lines; tabs are not allowed
45 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
46 | ERROR | Spaces must be used to indent lines; tabs are not allowed
47 | ERROR | Spaces must be used to indent lines; tabs are not allowed
48 | ERROR | Whitespace found at end of line
48 | ERROR | Spaces must be used to indent lines; tabs are not allowed
49 | ERROR | Spaces must be used to indent lines; tabs are not allowed
49 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
49 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
50 | ERROR | Whitespace found at end of line
50 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
51 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
52 | ERROR | Spaces must be used to indent lines; tabs are not allowed
52 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
52 | ERROR | Concat operator must be surrounded by spaces
53 | ERROR | Spaces must be used to indent lines; tabs are not allowed
53 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
54 | ERROR | Spaces must be used to indent lines; tabs are not allowed
54 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
55 | ERROR | Spaces must be used to indent lines; tabs are not allowed
55 | ERROR | Expected "}\nelse {\n"; found "}\nelse{\n"
55 | ERROR | else must start on a new line
55 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
56 | ERROR | Spaces must be used to indent lines; tabs are not allowed
56 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
57 | ERROR | Spaces must be used to indent lines; tabs are not allowed
57 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
57 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
58 | ERROR | Spaces must be used to indent lines; tabs are not allowed
59 | ERROR | Whitespace found at end of line
59 | ERROR | Spaces must be used to indent lines; tabs are not allowed
60 | ERROR | Spaces must be used to indent lines; tabs are not allowed
60 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
60 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
63 | ERROR | Missing function doc comment
63 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but
| | found "null"
63 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
64 | ERROR | Whitespace found at end of line
64 | ERROR | Spaces must be used to indent lines; tabs are not allowed
65 | ERROR | Spaces must be used to indent lines; tabs are not allowed
65 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
66 | ERROR | Spaces must be used to indent lines; tabs are not allowed
66 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
67 | ERROR | Whitespace found at end of line
67 | ERROR | Spaces must be used to indent lines; tabs are not allowed
68 | ERROR | Spaces must be used to indent lines; tabs are not allowed
68 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
69 | ERROR | Spaces must be used to indent lines; tabs are not allowed
69 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
70 | ERROR | Spaces must be used to indent lines; tabs are not allowed
70 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
71 | ERROR | Spaces must be used to indent lines; tabs are not allowed
71 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
72 | ERROR | Spaces must be used to indent lines; tabs are not allowed
72 | ERROR | Whitespace found at end of line
73 | ERROR | Whitespace found at end of line
73 | ERROR | Spaces must be used to indent lines; tabs are not allowed
74 | ERROR | Spaces must be used to indent lines; tabs are not allowed
74 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
75 | ERROR | Spaces must be used to indent lines; tabs are not allowed
76 | ERROR | Spaces must be used to indent lines; tabs are not allowed
77 | ERROR | Spaces must be used to indent lines; tabs are not allowed
78 | ERROR | Spaces must be used to indent lines; tabs are not allowed
78 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
79 | ERROR | Whitespace found at end of line
79 | ERROR | Spaces must be used to indent lines; tabs are not allowed
80 | ERROR | Spaces must be used to indent lines; tabs are not allowed
80 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
81 | ERROR | Spaces must be used to indent lines; tabs are not allowed
82 | ERROR | Spaces must be used to indent lines; tabs are not allowed
83 | ERROR | Spaces must be used to indent lines; tabs are not allowed
84 | ERROR | Spaces must be used to indent lines; tabs are not allowed
85 | ERROR | Spaces must be used to indent lines; tabs are not allowed
86 | ERROR | Spaces must be used to indent lines; tabs are not allowed
87 | ERROR | Spaces must be used to indent lines; tabs are not allowed
88 | ERROR | Spaces must be used to indent lines; tabs are not allowed
88 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
89 | ERROR | Whitespace found at end of line
89 | ERROR | Spaces must be used to indent lines; tabs are not allowed
90 | ERROR | Spaces must be used to indent lines; tabs are not allowed
90 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
91 | ERROR | Spaces must be used to indent lines; tabs are not allowed
91 | ERROR | Array indentation error, expected 3 spaces but found 2
92 | ERROR | Spaces must be used to indent lines; tabs are not allowed
92 | ERROR | Array indentation error, expected 3 spaces but found 2
93 | ERROR | Spaces must be used to indent lines; tabs are not allowed
93 | ERROR | Array indentation error, expected 3 spaces but found 2
94 | ERROR | Spaces must be used to indent lines; tabs are not allowed
94 | ERROR | Array indentation error, expected 3 spaces but found 2
95 | ERROR | Spaces must be used to indent lines; tabs are not allowed
95 | ERROR | Array indentation error, expected 3 spaces but found 2
96 | ERROR | Spaces must be used to indent lines; tabs are not allowed
96 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
97 | ERROR | Whitespace found at end of line
97 | ERROR | Spaces must be used to indent lines; tabs are not allowed
98 | ERROR | Spaces must be used to indent lines; tabs are not allowed
98 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
99 | ERROR | Spaces must be used to indent lines; tabs are not allowed
99 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
99 | ERROR | Concat operator must be surrounded by spaces
101 | ERROR | Spaces must be used to indent lines; tabs are not allowed
101 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
102 | ERROR | Spaces must be used to indent lines; tabs are not allowed
102 | ERROR | Array indentation error, expected 3 spaces but found 2
103 | ERROR | Spaces must be used to indent lines; tabs are not allowed
103 | ERROR | Array indentation error, expected 3 spaces but found 2
104 | ERROR | Spaces must be used to indent lines; tabs are not allowed
104 | ERROR | Array indentation error, expected 3 spaces but found 2
105 | ERROR | Spaces must be used to indent lines; tabs are not allowed
105 | ERROR | Array indentation error, expected 3 spaces but found 2
106 | ERROR | Spaces must be used to indent lines; tabs are not allowed
106 | ERROR | Array indentation error, expected 3 spaces but found 2
107 | ERROR | Spaces must be used to indent lines; tabs are not allowed
107 | ERROR | Array indentation error, expected 3 spaces but found 2
108 | ERROR | Spaces must be used to indent lines; tabs are not allowed
108 | ERROR | Array indentation error, expected 3 spaces but found 2
109 | ERROR | Spaces must be used to indent lines; tabs are not allowed
109 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
110 | ERROR | Whitespace found at end of line
110 | ERROR | Spaces must be used to indent lines; tabs are not allowed
111 | ERROR | Spaces must be used to indent lines; tabs are not allowed
111 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
112 | ERROR | Spaces must be used to indent lines; tabs are not allowed
112 | ERROR | Array indentation error, expected 3 spaces but found 2
113 | ERROR | Spaces must be used to indent lines; tabs are not allowed
113 | ERROR | Array indentation error, expected 3 spaces but found 2
114 | ERROR | Spaces must be used to indent lines; tabs are not allowed
114 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
115 | ERROR | Whitespace found at end of line
115 | ERROR | Spaces must be used to indent lines; tabs are not allowed
116 | ERROR | Spaces must be used to indent lines; tabs are not allowed
116 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
116 | WARNING | The closing paranthesis of an array should not be preceded by
| | a white space
117 | ERROR | Spaces must be used to indent lines; tabs are not allowed
117 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
118 | ERROR | Whitespace found at end of line
119 | ERROR | Spaces must be used to indent lines; tabs are not allowed
119 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
122 | ERROR | Missing function doc comment
122 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
123 | ERROR | Whitespace found at end of line
123 | ERROR | Spaces must be used to indent lines; tabs are not allowed
124 | ERROR | Spaces must be used to indent lines; tabs are not allowed
124 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
125 | ERROR | Spaces must be used to indent lines; tabs are not allowed
125 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
126 | ERROR | Spaces must be used to indent lines; tabs are not allowed
126 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
127 | ERROR | Whitespace found at end of line
127 | ERROR | Spaces must be used to indent lines; tabs are not allowed
128 | ERROR | Spaces must be used to indent lines; tabs are not allowed
128 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
130 | ERROR | Spaces must be used to indent lines; tabs are not allowed
140 | ERROR | Missing function doc comment
140 | ERROR | Expected 1 space between the closing parenthesis and the
| | opening brace; found 0
141 | ERROR | Whitespace found at end of line
141 | ERROR | Spaces must be used to indent lines; tabs are not allowed
142 | ERROR | Spaces must be used to indent lines; tabs are not allowed
142 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
143 | ERROR | Spaces must be used to indent lines; tabs are not allowed
143 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
144 | ERROR | Spaces must be used to indent lines; tabs are not allowed
144 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
145 | ERROR | Spaces must be used to indent lines; tabs are not allowed
145 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
146 | ERROR | Spaces must be used to indent lines; tabs are not allowed
146 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
147 | ERROR | Spaces must be used to indent lines; tabs are not allowed
147 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
147 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
148 | ERROR | Whitespace found at end of line
148 | ERROR | Spaces must be used to indent lines; tabs are not allowed
149 | ERROR | Spaces must be used to indent lines; tabs are not allowed
149 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
149 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
150 | ERROR | Whitespace found at end of line
150 | ERROR | Spaces must be used to indent lines; tabs are not allowed
151 | ERROR | Spaces must be used to indent lines; tabs are not allowed
151 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
152 | ERROR | Spaces must be used to indent lines; tabs are not allowed
153 | ERROR | Spaces must be used to indent lines; tabs are not allowed
153 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
154 | ERROR | Spaces must be used to indent lines; tabs are not allowed
154 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
155 | ERROR | Spaces must be used to indent lines; tabs are not allowed
155 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
156 | ERROR | Spaces must be used to indent lines; tabs are not allowed
156 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
157 | ERROR | Spaces must be used to indent lines; tabs are not allowed
158 | ERROR | Spaces must be used to indent lines; tabs are not allowed
158 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
159 | ERROR | Whitespace found at end of line
159 | ERROR | Spaces must be used to indent lines; tabs are not allowed
160 | ERROR | Spaces must be used to indent lines; tabs are not allowed
160 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
160 | ERROR | Line indented incorrectly; expected 4 spaces, found 2
161 | ERROR | Whitespace found at end of line
161 | ERROR | Spaces must be used to indent lines; tabs are not allowed
162 | ERROR | Spaces must be used to indent lines; tabs are not allowed
162 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
163 | ERROR | Spaces must be used to indent lines; tabs are not allowed
163 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
164 | ERROR | Spaces must be used to indent lines; tabs are not allowed
164 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
165 | ERROR | Whitespace found at end of line
165 | ERROR | Spaces must be used to indent lines; tabs are not allowed
166 | ERROR | Spaces must be used to indent lines; tabs are not allowed
166 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
166 | ERROR | Line indented incorrectly; expected 6 spaces, found 3
167 | ERROR | Spaces must be used to indent lines; tabs are not allowed
167 | ERROR | Line indented incorrectly; expected at least 8 spaces, found 4
168 | ERROR | Spaces must be used to indent lines; tabs are not allowed
169 | ERROR | Whitespace found at end of line
169 | ERROR | Spaces must be used to indent lines; tabs are not allowed
170 | ERROR | Spaces must be used to indent lines; tabs are not allowed
170 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
171 | ERROR | Spaces must be used to indent lines; tabs are not allowed
171 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
172 | ERROR | Whitespace found at end of line
172 | ERROR | Spaces must be used to indent lines; tabs are not allowed
173 | ERROR | Spaces must be used to indent lines; tabs are not allowed
173 | ERROR | Expected "}\nelse {\n"; found "}\nelse{\n"
173 | ERROR | else must start on a new line
173 | ERROR | Line indented incorrectly; expected 4 spaces, found 2
174 | ERROR | Spaces must be used to indent lines; tabs are not allowed
174 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
175 | ERROR | Spaces must be used to indent lines; tabs are not allowed
175 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
175 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
176 | ERROR | Spaces must be used to indent lines; tabs are not allowed
177 | ERROR | Spaces must be used to indent lines; tabs are not allowed
177 | ERROR | else must start on a new line
177 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
178 | ERROR | Whitespace found at end of line
178 | ERROR | Spaces must be used to indent lines; tabs are not allowed
179 | ERROR | Spaces must be used to indent lines; tabs are not allowed
179 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
180 | ERROR | Spaces must be used to indent lines; tabs are not allowed
181 | ERROR | Spaces must be used to indent lines; tabs are not allowed
181 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
182 | ERROR | Spaces must be used to indent lines; tabs are not allowed
182 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
183 | ERROR | Spaces must be used to indent lines; tabs are not allowed
183 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
184 | ERROR | Spaces must be used to indent lines; tabs are not allowed
184 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 3
185 | ERROR | Spaces must be used to indent lines; tabs are not allowed
186 | ERROR | Spaces must be used to indent lines; tabs are not allowed
187 | ERROR | Spaces must be used to indent lines; tabs are not allowed
188 | ERROR | Whitespace found at end of line
188 | ERROR | Spaces must be used to indent lines; tabs are not allowed
189 | ERROR | Spaces must be used to indent lines; tabs are not allowed
189 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
189 | ERROR | Line indented incorrectly; expected 4 spaces, found 2
190 | ERROR | Whitespace found at end of line
190 | ERROR | Spaces must be used to indent lines; tabs are not allowed
191 | ERROR | Spaces must be used to indent lines; tabs are not allowed
191 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
192 | ERROR | Whitespace found at end of line
192 | ERROR | Spaces must be used to indent lines; tabs are not allowed
193 | ERROR | Spaces must be used to indent lines; tabs are not allowed
193 | ERROR | Line indented incorrectly; expected 6 spaces, found 3
194 | ERROR | Spaces must be used to indent lines; tabs are not allowed
194 | ERROR | Line indented incorrectly; expected at least 8 spaces, found 4
195 | ERROR | Spaces must be used to indent lines; tabs are not allowed
196 | ERROR | Whitespace found at end of line
196 | ERROR | Spaces must be used to indent lines; tabs are not allowed
197 | ERROR | Spaces must be used to indent lines; tabs are not allowed
197 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
198 | ERROR | Spaces must be used to indent lines; tabs are not allowed
198 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
200 | ERROR | Spaces must be used to indent lines; tabs are not allowed
200 | ERROR | Expected "}\nelse {\n"; found "}\nelse{\n"
200 | ERROR | else must start on a new line
200 | ERROR | Line indented incorrectly; expected 4 spaces, found 2
201 | ERROR | Spaces must be used to indent lines; tabs are not allowed
201 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
202 | ERROR | Spaces must be used to indent lines; tabs are not allowed
202 | ERROR | Line indented incorrectly; expected at least 6 spaces, found 3
202 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
203 | ERROR | Spaces must be used to indent lines; tabs are not allowed
204 | ERROR | Whitespace found at end of line
204 | ERROR | Spaces must be used to indent lines; tabs are not allowed
205 | ERROR | Spaces must be used to indent lines; tabs are not allowed
206 | ERROR | Whitespace found at end of line
206 | ERROR | Spaces must be used to indent lines; tabs are not allowed
207 | ERROR | Spaces must be used to indent lines; tabs are not allowed
207 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
207 | ERROR | Variable "msgType" is camel caps format. do not use mixed case
| | (camelCase), use lower case and _
--------------------------------------------------------------------------------

FILE: ...s/all/modules/pareview_temp/test_candidate/includes/basic_page.view.inc
--------------------------------------------------------------------------------
FOUND 20 ERROR(S) AFFECTING 11 LINE(S)
--------------------------------------------------------------------------------
9 | ERROR | Missing function doc comment
9 | ERROR | Expected 1 space between the closing parenthesis and the opening
| | brace; found 0
10 | ERROR | Whitespace found at end of line
10 | ERROR | Spaces must be used to indent lines; tabs are not allowed
11 | ERROR | Spaces must be used to indent lines; tabs are not allowed
11 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
11 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
12 | ERROR | Spaces must be used to indent lines; tabs are not allowed
12 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
13 | ERROR | Spaces must be used to indent lines; tabs are not allowed
14 | ERROR | Whitespace found at end of line
14 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | Line indented incorrectly; expected 2 spaces, found 1
16 | ERROR | Spaces must be used to indent lines; tabs are not allowed
16 | ERROR | Line indented incorrectly; expected at least 4 spaces, found 2
17 | ERROR | Spaces must be used to indent lines; tabs are not allowed
19 | ERROR | Spaces must be used to indent lines; tabs are not allowed
19 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
20 | ERROR | Files must end in a single new line character
--------------------------------------------------------------------------------

FILE: ...tes/all/modules/pareview_temp/test_candidate/views/basic_page.views.inc
--------------------------------------------------------------------------------
FOUND 22 ERROR(S) AND 1 WARNING(S) AFFECTING 17 LINE(S)
--------------------------------------------------------------------------------
13 | WARNING | Format should be "* Implements hook_foo()." or "Implements
| | hook_foo_BAR_ID_bar() for xyz_bar."
16 | ERROR | There must be no blank line following an inline comment
20 | ERROR | Inline comments must end in full-stops, exclamation marks, or
| | question marks
26 | ERROR | Whitespace found at end of line
27 | ERROR | Inline comments must start with a capital letter
27 | ERROR | Inline comments must end in full-stops, exclamation marks, or
| | question marks
31 | ERROR | Whitespace found at end of line
31 | ERROR | Spaces must be used to indent lines; tabs are not allowed
35 | ERROR | Array indentation error, expected 4 spaces but found 5
35 | ERROR | Array closing indentation error, expected 4 spaces but found 5
44 | ERROR | Inline comments must start with a capital letter
44 | ERROR | Inline comments must end in full-stops, exclamation marks, or
| | question marks
52 | ERROR | Array indentation error, expected 4 spaces but found 5
52 | ERROR | Array closing indentation error, expected 4 spaces but found 5
53 | ERROR | Array indentation error, expected 4 spaces but found 5
54 | ERROR | Array indentation error, expected 7 spaces but found 6
55 | ERROR | Array indentation error, expected 4 spaces but found 5
56 | ERROR | Array indentation error, expected 4 spaces but found 5
57 | ERROR | Array indentation error, expected 7 spaces but found 6
58 | ERROR | Array indentation error, expected 4 spaces but found 5
60 | ERROR | Whitespace found at end of line
61 | ERROR | Inline comments must start with a capital letter
61 | ERROR | Inline comments must end in full-stops, exclamation marks, or
| | question marks
--------------------------------------------------------------------------------

FILE: ...modules/pareview_temp/test_candidate/views/basic_page.views_default.inc
--------------------------------------------------------------------------------
FOUND 375 ERROR(S) AFFECTING 195 LINE(S)
--------------------------------------------------------------------------------
6 | ERROR | File doc comments must be followed by a blank line.
8 | ERROR | Whitespace found at end of line
8 | ERROR | Spaces must be used to indent lines; tabs are not allowed
9 | ERROR | Spaces must be used to indent lines; tabs are not allowed
9 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
11 | ERROR | Spaces must be used to indent lines; tabs are not allowed
11 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
12 | ERROR | Whitespace found at end of line
12 | ERROR | Spaces must be used to indent lines; tabs are not allowed
13 | ERROR | Spaces must be used to indent lines; tabs are not allowed
13 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
13 | ERROR | Calling class constructors must always include parentheses
14 | ERROR | Spaces must be used to indent lines; tabs are not allowed
14 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
15 | ERROR | Spaces must be used to indent lines; tabs are not allowed
15 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
16 | ERROR | Spaces must be used to indent lines; tabs are not allowed
16 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
17 | ERROR | Spaces must be used to indent lines; tabs are not allowed
17 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
18 | ERROR | Spaces must be used to indent lines; tabs are not allowed
18 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
19 | ERROR | Spaces must be used to indent lines; tabs are not allowed
19 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
20 | ERROR | Spaces must be used to indent lines; tabs are not allowed
20 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
21 | ERROR | Spaces must be used to indent lines; tabs are not allowed
21 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
23 | ERROR | Spaces must be used to indent lines; tabs are not allowed
23 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
24 | ERROR | Spaces must be used to indent lines; tabs are not allowed
24 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
25 | ERROR | Spaces must be used to indent lines; tabs are not allowed
25 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
26 | ERROR | Spaces must be used to indent lines; tabs are not allowed
26 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
27 | ERROR | Spaces must be used to indent lines; tabs are not allowed
27 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
28 | ERROR | Spaces must be used to indent lines; tabs are not allowed
28 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
29 | ERROR | Spaces must be used to indent lines; tabs are not allowed
29 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
30 | ERROR | Spaces must be used to indent lines; tabs are not allowed
30 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
31 | ERROR | Spaces must be used to indent lines; tabs are not allowed
31 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
32 | ERROR | Spaces must be used to indent lines; tabs are not allowed
32 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
33 | ERROR | Spaces must be used to indent lines; tabs are not allowed
33 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
34 | ERROR | Spaces must be used to indent lines; tabs are not allowed
34 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
35 | ERROR | Spaces must be used to indent lines; tabs are not allowed
35 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
36 | ERROR | Spaces must be used to indent lines; tabs are not allowed
36 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
37 | ERROR | Spaces must be used to indent lines; tabs are not allowed
37 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
38 | ERROR | Spaces must be used to indent lines; tabs are not allowed
38 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
39 | ERROR | Spaces must be used to indent lines; tabs are not allowed
39 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
40 | ERROR | Spaces must be used to indent lines; tabs are not allowed
40 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
41 | ERROR | Spaces must be used to indent lines; tabs are not allowed
42 | ERROR | Spaces must be used to indent lines; tabs are not allowed
43 | ERROR | Spaces must be used to indent lines; tabs are not allowed
44 | ERROR | Spaces must be used to indent lines; tabs are not allowed
45 | ERROR | Spaces must be used to indent lines; tabs are not allowed
46 | ERROR | Spaces must be used to indent lines; tabs are not allowed
46 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
47 | ERROR | Spaces must be used to indent lines; tabs are not allowed
47 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
48 | ERROR | Spaces must be used to indent lines; tabs are not allowed
48 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
49 | ERROR | Spaces must be used to indent lines; tabs are not allowed
50 | ERROR | Spaces must be used to indent lines; tabs are not allowed
50 | ERROR | Array indentation error, expected 5 spaces but found 2
51 | ERROR | Spaces must be used to indent lines; tabs are not allowed
51 | ERROR | Array indentation error, expected 5 spaces but found 2
52 | ERROR | Spaces must be used to indent lines; tabs are not allowed
52 | ERROR | Array indentation error, expected 5 spaces but found 2
53 | ERROR | Spaces must be used to indent lines; tabs are not allowed
53 | ERROR | Array indentation error, expected 5 spaces but found 2
54 | ERROR | Spaces must be used to indent lines; tabs are not allowed
55 | ERROR | Spaces must be used to indent lines; tabs are not allowed
56 | ERROR | Spaces must be used to indent lines; tabs are not allowed
56 | ERROR | Array indentation error, expected 5 spaces but found 2
57 | ERROR | Spaces must be used to indent lines; tabs are not allowed
57 | ERROR | Array indentation error, expected 5 spaces but found 2
58 | ERROR | Spaces must be used to indent lines; tabs are not allowed
58 | ERROR | Array indentation error, expected 5 spaces but found 2
59 | ERROR | Spaces must be used to indent lines; tabs are not allowed
59 | ERROR | Array indentation error, expected 5 spaces but found 2
60 | ERROR | Spaces must be used to indent lines; tabs are not allowed
61 | ERROR | Spaces must be used to indent lines; tabs are not allowed
62 | ERROR | Spaces must be used to indent lines; tabs are not allowed
62 | ERROR | Array indentation error, expected 5 spaces but found 2
63 | ERROR | Spaces must be used to indent lines; tabs are not allowed
63 | ERROR | Array indentation error, expected 5 spaces but found 2
64 | ERROR | Spaces must be used to indent lines; tabs are not allowed
64 | ERROR | Array indentation error, expected 5 spaces but found 2
65 | ERROR | Spaces must be used to indent lines; tabs are not allowed
65 | ERROR | Array indentation error, expected 5 spaces but found 2
66 | ERROR | Spaces must be used to indent lines; tabs are not allowed
67 | ERROR | Spaces must be used to indent lines; tabs are not allowed
68 | ERROR | Spaces must be used to indent lines; tabs are not allowed
68 | ERROR | Array indentation error, expected 5 spaces but found 2
69 | ERROR | Spaces must be used to indent lines; tabs are not allowed
69 | ERROR | Array indentation error, expected 5 spaces but found 2
70 | ERROR | Spaces must be used to indent lines; tabs are not allowed
71 | ERROR | Spaces must be used to indent lines; tabs are not allowed
72 | ERROR | Spaces must be used to indent lines; tabs are not allowed
72 | ERROR | Array indentation error, expected 5 spaces but found 2
73 | ERROR | Spaces must be used to indent lines; tabs are not allowed
73 | ERROR | Array indentation error, expected 5 spaces but found 2
74 | ERROR | Spaces must be used to indent lines; tabs are not allowed
75 | ERROR | Spaces must be used to indent lines; tabs are not allowed
75 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
76 | ERROR | Spaces must be used to indent lines; tabs are not allowed
76 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
77 | ERROR | Spaces must be used to indent lines; tabs are not allowed
77 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
78 | ERROR | Spaces must be used to indent lines; tabs are not allowed
78 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
79 | ERROR | Spaces must be used to indent lines; tabs are not allowed
79 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
80 | ERROR | Spaces must be used to indent lines; tabs are not allowed
80 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
81 | ERROR | Spaces must be used to indent lines; tabs are not allowed
81 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
82 | ERROR | Spaces must be used to indent lines; tabs are not allowed
82 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
83 | ERROR | Spaces must be used to indent lines; tabs are not allowed
83 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
84 | ERROR | Spaces must be used to indent lines; tabs are not allowed
84 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
85 | ERROR | Spaces must be used to indent lines; tabs are not allowed
85 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
86 | ERROR | Spaces must be used to indent lines; tabs are not allowed
86 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
87 | ERROR | Spaces must be used to indent lines; tabs are not allowed
87 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
88 | ERROR | Spaces must be used to indent lines; tabs are not allowed
88 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
89 | ERROR | Spaces must be used to indent lines; tabs are not allowed
89 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
90 | ERROR | Spaces must be used to indent lines; tabs are not allowed
90 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
91 | ERROR | Spaces must be used to indent lines; tabs are not allowed
91 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
92 | ERROR | Spaces must be used to indent lines; tabs are not allowed
92 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
93 | ERROR | Spaces must be used to indent lines; tabs are not allowed
93 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
94 | ERROR | Spaces must be used to indent lines; tabs are not allowed
94 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
95 | ERROR | Spaces must be used to indent lines; tabs are not allowed
95 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
96 | ERROR | Spaces must be used to indent lines; tabs are not allowed
96 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
97 | ERROR | Spaces must be used to indent lines; tabs are not allowed
97 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
98 | ERROR | Spaces must be used to indent lines; tabs are not allowed
98 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
99 | ERROR | Spaces must be used to indent lines; tabs are not allowed
99 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
100 | ERROR | Spaces must be used to indent lines; tabs are not allowed
100 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
101 | ERROR | Spaces must be used to indent lines; tabs are not allowed
101 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
102 | ERROR | Spaces must be used to indent lines; tabs are not allowed
102 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
103 | ERROR | Spaces must be used to indent lines; tabs are not allowed
103 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
104 | ERROR | Spaces must be used to indent lines; tabs are not allowed
104 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
105 | ERROR | Spaces must be used to indent lines; tabs are not allowed
105 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
106 | ERROR | Spaces must be used to indent lines; tabs are not allowed
106 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
107 | ERROR | Spaces must be used to indent lines; tabs are not allowed
107 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
108 | ERROR | Spaces must be used to indent lines; tabs are not allowed
108 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
109 | ERROR | Spaces must be used to indent lines; tabs are not allowed
109 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
110 | ERROR | Spaces must be used to indent lines; tabs are not allowed
110 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
111 | ERROR | Spaces must be used to indent lines; tabs are not allowed
111 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
112 | ERROR | Spaces must be used to indent lines; tabs are not allowed
112 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
113 | ERROR | Spaces must be used to indent lines; tabs are not allowed
113 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
114 | ERROR | Spaces must be used to indent lines; tabs are not allowed
114 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
115 | ERROR | Spaces must be used to indent lines; tabs are not allowed
115 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
116 | ERROR | Spaces must be used to indent lines; tabs are not allowed
116 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
117 | ERROR | Spaces must be used to indent lines; tabs are not allowed
117 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
118 | ERROR | Spaces must be used to indent lines; tabs are not allowed
118 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
119 | ERROR | Spaces must be used to indent lines; tabs are not allowed
119 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
120 | ERROR | Spaces must be used to indent lines; tabs are not allowed
120 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
121 | ERROR | Spaces must be used to indent lines; tabs are not allowed
121 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
122 | ERROR | Spaces must be used to indent lines; tabs are not allowed
122 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
123 | ERROR | Spaces must be used to indent lines; tabs are not allowed
123 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
124 | ERROR | Spaces must be used to indent lines; tabs are not allowed
124 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
125 | ERROR | Spaces must be used to indent lines; tabs are not allowed
125 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
126 | ERROR | Spaces must be used to indent lines; tabs are not allowed
126 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
127 | ERROR | Spaces must be used to indent lines; tabs are not allowed
127 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
128 | ERROR | Spaces must be used to indent lines; tabs are not allowed
128 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
129 | ERROR | Spaces must be used to indent lines; tabs are not allowed
129 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
130 | ERROR | Spaces must be used to indent lines; tabs are not allowed
130 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
131 | ERROR | Spaces must be used to indent lines; tabs are not allowed
131 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
132 | ERROR | Spaces must be used to indent lines; tabs are not allowed
132 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
133 | ERROR | Spaces must be used to indent lines; tabs are not allowed
133 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
134 | ERROR | Spaces must be used to indent lines; tabs are not allowed
134 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
135 | ERROR | Spaces must be used to indent lines; tabs are not allowed
135 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
136 | ERROR | Spaces must be used to indent lines; tabs are not allowed
136 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
137 | ERROR | Spaces must be used to indent lines; tabs are not allowed
137 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
138 | ERROR | Spaces must be used to indent lines; tabs are not allowed
138 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
139 | ERROR | Spaces must be used to indent lines; tabs are not allowed
139 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
140 | ERROR | Spaces must be used to indent lines; tabs are not allowed
140 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
141 | ERROR | Spaces must be used to indent lines; tabs are not allowed
141 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
142 | ERROR | Spaces must be used to indent lines; tabs are not allowed
142 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
143 | ERROR | Spaces must be used to indent lines; tabs are not allowed
143 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
144 | ERROR | Spaces must be used to indent lines; tabs are not allowed
144 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
145 | ERROR | Spaces must be used to indent lines; tabs are not allowed
145 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
146 | ERROR | Spaces must be used to indent lines; tabs are not allowed
146 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
147 | ERROR | Spaces must be used to indent lines; tabs are not allowed
147 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
148 | ERROR | Spaces must be used to indent lines; tabs are not allowed
148 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
149 | ERROR | Spaces must be used to indent lines; tabs are not allowed
149 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
150 | ERROR | Spaces must be used to indent lines; tabs are not allowed
150 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
151 | ERROR | Spaces must be used to indent lines; tabs are not allowed
151 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
152 | ERROR | Spaces must be used to indent lines; tabs are not allowed
152 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
153 | ERROR | Spaces must be used to indent lines; tabs are not allowed
153 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
154 | ERROR | Spaces must be used to indent lines; tabs are not allowed
154 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
155 | ERROR | Spaces must be used to indent lines; tabs are not allowed
155 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
156 | ERROR | Spaces must be used to indent lines; tabs are not allowed
156 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
157 | ERROR | Spaces must be used to indent lines; tabs are not allowed
157 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
158 | ERROR | Spaces must be used to indent lines; tabs are not allowed
158 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
159 | ERROR | Spaces must be used to indent lines; tabs are not allowed
159 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
160 | ERROR | Spaces must be used to indent lines; tabs are not allowed
160 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
161 | ERROR | Spaces must be used to indent lines; tabs are not allowed
161 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
162 | ERROR | Spaces must be used to indent lines; tabs are not allowed
162 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
163 | ERROR | Spaces must be used to indent lines; tabs are not allowed
163 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
164 | ERROR | Spaces must be used to indent lines; tabs are not allowed
164 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
165 | ERROR | Spaces must be used to indent lines; tabs are not allowed
165 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
166 | ERROR | Spaces must be used to indent lines; tabs are not allowed
166 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
167 | ERROR | Spaces must be used to indent lines; tabs are not allowed
167 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
168 | ERROR | Spaces must be used to indent lines; tabs are not allowed
168 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
169 | ERROR | Spaces must be used to indent lines; tabs are not allowed
169 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
170 | ERROR | Spaces must be used to indent lines; tabs are not allowed
170 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
171 | ERROR | Spaces must be used to indent lines; tabs are not allowed
171 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
172 | ERROR | Spaces must be used to indent lines; tabs are not allowed
172 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
173 | ERROR | Spaces must be used to indent lines; tabs are not allowed
173 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
174 | ERROR | Spaces must be used to indent lines; tabs are not allowed
174 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
175 | ERROR | Spaces must be used to indent lines; tabs are not allowed
175 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
176 | ERROR | Spaces must be used to indent lines; tabs are not allowed
176 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
177 | ERROR | Spaces must be used to indent lines; tabs are not allowed
177 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
178 | ERROR | Spaces must be used to indent lines; tabs are not allowed
178 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
179 | ERROR | Spaces must be used to indent lines; tabs are not allowed
179 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
180 | ERROR | Spaces must be used to indent lines; tabs are not allowed
180 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
181 | ERROR | Spaces must be used to indent lines; tabs are not allowed
181 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
182 | ERROR | Spaces must be used to indent lines; tabs are not allowed
182 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
183 | ERROR | Spaces must be used to indent lines; tabs are not allowed
183 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
184 | ERROR | Spaces must be used to indent lines; tabs are not allowed
184 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
185 | ERROR | Spaces must be used to indent lines; tabs are not allowed
185 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
186 | ERROR | Spaces must be used to indent lines; tabs are not allowed
186 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
187 | ERROR | Spaces must be used to indent lines; tabs are not allowed
187 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
188 | ERROR | Spaces must be used to indent lines; tabs are not allowed
188 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
189 | ERROR | Spaces must be used to indent lines; tabs are not allowed
189 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
190 | ERROR | Spaces must be used to indent lines; tabs are not allowed
190 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
191 | ERROR | Spaces must be used to indent lines; tabs are not allowed
191 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
192 | ERROR | Spaces must be used to indent lines; tabs are not allowed
192 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
193 | ERROR | Spaces must be used to indent lines; tabs are not allowed
193 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
195 | ERROR | Spaces must be used to indent lines; tabs are not allowed
195 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
196 | ERROR | Spaces must be used to indent lines; tabs are not allowed
196 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
197 | ERROR | Spaces must be used to indent lines; tabs are not allowed
197 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
198 | ERROR | Spaces must be used to indent lines; tabs are not allowed
198 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
199 | ERROR | Whitespace found at end of line
199 | ERROR | Spaces must be used to indent lines; tabs are not allowed
200 | ERROR | Spaces must be used to indent lines; tabs are not allowed
200 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
201 | ERROR | Whitespace found at end of line
201 | ERROR | Spaces must be used to indent lines; tabs are not allowed
202 | ERROR | Spaces must be used to indent lines; tabs are not allowed
202 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
203 | ERROR | Whitespace found at end of line
203 | ERROR | Spaces must be used to indent lines; tabs are not allowed
204 | ERROR | Spaces must be used to indent lines; tabs are not allowed
204 | ERROR | Line indented incorrectly; expected at least 2 spaces, found 1
--------------------------------------------------------------------------------
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.

klausi’s picture

Issue summary: View changes

Clone from branch instead of master