Skip to content

Commit

Permalink
qaxml.t.php: tests for spurious ws in some tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
André L F S Bacci committed Nov 7, 2024
1 parent a2f73fb commit 7c6af38
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions scripts/translation/qaxml.w.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?php
/**
* +----------------------------------------------------------------------+
* | Copyright (c) 1997-2023 The PHP Group |
* +----------------------------------------------------------------------+
* | This source file is subject to version 3.01 of the PHP license, |
* | that is bundled with this package in the file LICENSE, and is |
* | available through the world-wide-web at the following url: |
* | https://www.php.net/license/3_01.txt. |
* | If you did not receive a copy of the PHP license and are unable to |
* | obtain it through the world-wide-web, please send a note to |
* | license@php.net, so we can mail you a copy immediately. |
* +----------------------------------------------------------------------+
* | Authors: André L F S Bacci <ae php.net> |
* +----------------------------------------------------------------------+
* | Description: Checks for ws that may cause render trouble. |
* +----------------------------------------------------------------------+
*/

require_once __DIR__ . '/lib/all.php';

$qalist = QaFileInfo::cacheLoad();
$outarg = new OutputIgnoreArgv( $argv );

foreach ( $qalist as $qafile )
{
$source = $qafile->sourceDir . '/' . $qafile->file;
$target = $qafile->targetDir . '/' . $qafile->file;

whitespaceCheckFile( $source );
whitespaceCheckFile( $target );
}

function whitespaceCheckFile( string $filename )
{
if ( file_exists( $filename ) == false )
return;

global $outarg;
$output = new OutputIgnoreBuffer( $outarg , "qaxml.w: {$filename}\n\n" , $filename );

$xml = XmlUtil::loadFile( $filename );
$tags = XmlUtil::listNodeType( $xml , XML_ELEMENT_NODE );

foreach( $tags as $node )
{
switch ( $node->nodeName )
{
case "classname":
case "constant":
case "function":
case "methodname":
case "varname":
$text = $node->nodeValue;
$trim = trim( $text );
if ( $text != $trim )
{
$output->addLine();
$output->add( " {$node->nodeName} {$trim}\n" );
}
break;
}
}

$output->print();
}

0 comments on commit 7c6af38

Please sign in to comment.