From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Hofmann To: development@lists.ipfire.org Subject: Re: [PATCH v2 1/3] webinterface: Add links to the configuration wiki Date: Tue, 05 Oct 2021 09:57:59 +0200 Message-ID: <524def45-80cb-78b5-486b-1d1a584d3b0d@leo-andres.de> In-Reply-To: <8cfa7b37-da1c-cb5d-ab16-109308bc0ddd@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0367275417100090798==" List-Id: --===============0367275417100090798== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi, Am 04.10.2021 um 22:34 schrieb Bernhard Bitsch: > Hi all, > > Am 04.10.2021 um 19:42 schrieb Leo Hofmann: >> Hi all, >> >> @Bernhard, Thank you again for testing this patch! >> >> @Jon, This is the file format of the manualpages configuration: >> >> [cgi basename]=3D[path/to/page] >> >> For example: >> >> =C2=A0> BASE_URL=3Dhttps://wiki.ipfire.org >> =C2=A0> index=3Dconfiguration/system/startpage >> >> Results in "index.cgi" linking to "https://wiki.ipfire.org/configuration/s= ystem/startpage". >> Please note that the path does not start with a slash, because the get_man= ualpage_url function always adds one between the base url and the path. >> >> Unfortunately, I couldn't figure out how to include all this in the instal= ler and I need help with that. > > Another part is the sampling of all help pages. > Should this be done in several patches for different pages or by collecting= the contributions by one person ( Leo? ), which submit one patch? I suggest everyone sends their contribution as a patch so that git shows the = correct author later on. But if that doesn't work, of course I'm happy to col= lect everything! > ( I've applied the mechanism to other pages, yet. And are very satisfied wi= th it! Great idea! ) :) > > Regards, > Bernhard Regards, Leo > >> So I would suggest we wait until this has been approved and integrated. >> >> Regards, >> Leo >> >> Am 28.09.2021 um 14:55 schrieb Bernhard Bitsch: >>> Reviewed-by: Bernhard Bitsch >>> Tested-by: Bernhard Bitsch >>> >>> Am 28.09.2021 um 13:09 schrieb Leo-Andres Hofmann: >>>> This patch adds a little "help" icon to the page header. >>>> If a manual entry exists for a configuration page, the icon >>>> appears and offers a quick way to access the wiki. >>>> Wiki pages can be configured in the "manualpages" file. >>>> >>>> Signed-off-by: Leo-Andres Hofmann >>>> --- >>>> =C2=A0 config/cfgroot/header.pl=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0= =C2=A0=C2=A0 | 20 +++++++++++++++++++ >>>> =C2=A0 config/cfgroot/manualpages=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 |= =C2=A0 7 +++++++ >>>> =C2=A0 html/html/themes/ipfire/include/css/style.css | 13 ++++++++++++ >>>> =C2=A0 html/html/themes/ipfire/include/functions.pl=C2=A0 | 17 +++++++++= ++++++- >>>> =C2=A0 4 files changed, 56 insertions(+), 1 deletion(-) >>>> =C2=A0 create mode 100644 config/cfgroot/manualpages >>>> >>>> diff --git a/config/cfgroot/header.pl b/config/cfgroot/header.pl >>>> index 79accbe8a..e97f90d67 100644 >>>> --- a/config/cfgroot/header.pl >>>> +++ b/config/cfgroot/header.pl >>>> @@ -91,7 +91,11 @@ if ( -d "/var/ipfire/langs/${language}/" ) { >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 }; >>>> =C2=A0 }; >>>> =C2=A0 +### Initialize user manual >>>> +my %manualpages =3D (); >>>> +&General::readhash("${General::swroot}/main/manualpages", \%manualpages= ); >>>> =C2=A0 +### Load selected language and theme functions >>>> =C2=A0 require "${swroot}/langs/en.pl"; >>>> =C2=A0 require "${swroot}/langs/${language}.pl"; >>>> =C2=A0 eval `/bin/cat /srv/web/ipfire/html/themes/ipfire/include/functio= ns.pl`; >>>> @@ -553,3 +557,19 @@ sub colorize { >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return $string; >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 } >>>> =C2=A0 } >>>> + >>>> +# Get user manual URL for the specified configuration page, returns emp= ty if no entry is configured >>>> +sub get_manualpage_url() { >>>> +=C2=A0=C2=A0=C2=A0 my ($cgi_page) =3D @_; >>>> + >>>> +=C2=A0=C2=A0=C2=A0 # Ensure base url is configured >>>> +=C2=A0=C2=A0=C2=A0 return unless($manualpages{'BASE_URL'}); >>>> + >>>> +=C2=A0=C2=A0=C2=A0 # Return URL >>>> +=C2=A0=C2=A0=C2=A0 if($cgi_page && defined($manualpages{$cgi_page})) { >>>> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 return "$manualpages{'BASE_U= RL'}/$manualpages{$cgi_page}"; >>>> +=C2=A0=C2=A0=C2=A0 } >>>> + >>>> +=C2=A0=C2=A0=C2=A0 # No manual page configured, return nothing >>>> +=C2=A0=C2=A0=C2=A0 return; >>>> +} >>>> diff --git a/config/cfgroot/manualpages b/config/cfgroot/manualpages >>>> new file mode 100644 >>>> index 000000000..e5ab1a13c >>>> --- /dev/null >>>> +++ b/config/cfgroot/manualpages >>>> @@ -0,0 +1,7 @@ >>>> +# User manual base URL (without trailing slash) >>>> +BASE_URL=3Dhttps://wiki.ipfire.org >>>> + >>>> +# Assign manual page URL path to CGI file ([cgi basename]=3D[path/to/pa= ge]) >>>> +index=3Dconfiguration/system/startpage >>>> +pppsetup=3Dconfiguration/system/dial >>>> +qos=3Dconfiguration/services/qos >>>> diff --git a/html/html/themes/ipfire/include/css/style.css b/html/html/t= hemes/ipfire/include/css/style.css >>>> index b92f476c4..661773675 100644 >>>> --- a/html/html/themes/ipfire/include/css/style.css >>>> +++ b/html/html/themes/ipfire/include/css/style.css >>>> @@ -169,6 +169,19 @@ iframe { >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 margin-bottom: 1em; >>>> =C2=A0 } >>>> =C2=A0 +#main_header > * { >>>> +=C2=A0=C2=A0=C2=A0 display: inline-block; >>>> +=C2=A0=C2=A0=C2=A0 vertical-align: baseline; >>>> +} >>>> + >>>> +#main_header > span { >>>> +=C2=A0=C2=A0=C2=A0 margin-left: 0.8em; >>>> +} >>>> + >>>> +#main_header img { >>>> +=C2=A0=C2=A0=C2=A0 padding: 0; >>>> +} >>>> + >>>> =C2=A0 #footer { >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 height: 2.5em; >>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 margin-bottom: 1em; >>>> diff --git a/html/html/themes/ipfire/include/functions.pl b/html/html/th= emes/ipfire/include/functions.pl >>>> index 9f12bbe59..18931428e 100644 >>>> --- a/html/html/themes/ipfire/include/functions.pl >>>> +++ b/html/html/themes/ipfire/include/functions.pl >>>> @@ -170,7 +170,22 @@ END >>>> =C2=A0 print <>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0
>>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0
>>>> -=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0

= $title

>>>> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 >>>> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0

$title

>>>> +END >>>> +; >>>> + >>>> +# Print user manual link >>>> +my $manual_url =3D &Header::get_manualpage_url($scriptName); >>>> +if($manual_url) { >>>> +=C2=A0=C2=A0=C2=A0 print <>>> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0 3D"$= >>>> +END >>>> +; >>>> +} >>>> + >>>> +print <>>> +=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 >>>> =C2=A0 END >>>> =C2=A0 ; >>>> =C2=A0 } >>>> --===============0367275417100090798==--