mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:10:11 +00:00
Fix review points
- Fix headers hierarchy - Improve accessibility: - set mouse pointer - make rows focusable - open on key press - add tooltip with "title" - add role and aria attributes - Rename `ParsedLog` to `ParsedLogLine` - Add docs to `ReversedFileReader`'s implementation of `Iterator`'s methods - Add docs to `ParsedLogIterator`'s implementation of `Iterator`'s methods - Remove unnecessary comment - Add more test for parsing log lines and fix some edge cases - Fix function name in snake-case to camelCase - Remove `DIRECTORY_SEPARATOR`
This commit is contained in:
parent
5520f100b2
commit
7f695197aa
10 changed files with 280 additions and 54 deletions
|
@ -42,12 +42,7 @@ class ParsedLogIteratorTest extends TestCase
|
|||
|
||||
protected function setUp(): void
|
||||
{
|
||||
$logfile = dirname(__DIR__) . DIRECTORY_SEPARATOR .
|
||||
'..' . DIRECTORY_SEPARATOR .
|
||||
'..' . DIRECTORY_SEPARATOR .
|
||||
'datasets' . DIRECTORY_SEPARATOR .
|
||||
'log' . DIRECTORY_SEPARATOR .
|
||||
'friendica.log.txt';
|
||||
$logfile = dirname(__DIR__) . '/../../datasets/log/friendica.log.txt';
|
||||
|
||||
$reader = new ReversedFileReader();
|
||||
$this->pli = new ParsedLogIterator($reader);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue