GeSHi / geshi-1.0

Original version of Generic Syntax Highlighter for PHP
http://qbnz.com/highlighter/
GNU General Public License v2.0
168 stars 101 forks source link

ABAP keyword documentation URLs are broken #40

Closed ketelaars closed 7 years ago

ketelaars commented 9 years ago

The ABAP keyword document URLs no longer link to existing pages.

This can be fixed by replacing the following in abap.php:

    'URLS' => array(
        1 => 'http://help.sap.com/abapdocu/en/ABAP{FNAMEU}.htm',
        2 => 'http://help.sap.com/abapdocu/en/ABAP{FNAMEU}.htm',
        3 => 'http://help.sap.com/abapdocu/en/ABAP{FNAMEU}.htm',

with:

    'URLS' => array(
        1 => 'http://help.sap.com/abapdocu_740/en/ABAP{FNAMEU}.htm',
        2 => 'http://help.sap.com/abapdocu_740/en/ABAP{FNAMEU}.htm',
        3 => 'http://help.sap.com/abapdocu_740/en/ABAP{FNAMEU}.htm',

After this the keywords link to the keyword documentation of the latest language version.