]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/details-html.php
change tiger housenumber format to save as lines instead of points and thus new inter...
[nominatim.git] / lib / template / details-html.php
index 463eb4aa7e22f8498932de6da634fb690fb45c0b..3e9e39d75c4fa31a3734ba9546a701339f6c747d 100644 (file)
                echo "</tr>\n";
        }
 
+       function _one_keyword_row($keyword_token,$word_id){
+               echo "<tr>\n";
+               echo '<td>';
+               // mark partial tokens (those starting with a space) with a star for readability
+               echo ($keyword_token[0]==' '?'*':'');
+               echo $keyword_token;
+               if (isset($word_id))
+               {
+                       echo '</td><td>word id: '.$word_id;
+               }
+               echo "</td></tr>\n";
+       }
+
 ?>
 
 
                headline('Name Keywords');
                foreach($aPlaceSearchNameKeywords as $aRow)
                {
-                       echo '<div>'.$aRow['word_token']."</div>\n";
+                       _one_keyword_row($aRow['word_token'], $aRow['word_id']);
                }
        }
 
                headline('Address Keywords');
                foreach($aPlaceSearchAddressKeywords as $aRow)
                {
-                       echo '<div>'.($aRow['word_token'][0]==' '?'*':'').$aRow['word_token'].'('.$aRow['word_id'].')'."</div>\n";
+                       _one_keyword_row($aRow['word_token'], $aRow['word_id']);
                }
        }