* Looking for configuration file format @ 2022-03-21 19:27 Leo Hofmann 2022-03-21 19:29 ` Michael Tremer 0 siblings, 1 reply; 4+ messages in thread From: Leo Hofmann @ 2022-03-21 19:27 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 455 bytes --] Hi all, To fix an issue with the manualpages feature, I had planned to use this key/value file format: logs.cgi/config.dat=configuration/logs/logsettings But unfortunately this is not possible with the existing General::readhash() function, because it removes non-alphanumeric keys. Before I write yet another readsomething() function: Is there a file format available somewhere in the IPFire CGIs that supports this? Best regards, Leo ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Looking for configuration file format 2022-03-21 19:27 Looking for configuration file format Leo Hofmann @ 2022-03-21 19:29 ` Michael Tremer 2022-03-21 20:12 ` Leo Hofmann 0 siblings, 1 reply; 4+ messages in thread From: Michael Tremer @ 2022-03-21 19:29 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 789 bytes --] Hey Leo, Did you try &General::readhasharray()? Then this file would just be a CSV file. I believe that readhasharray might want a numeric key, but maybe it accepts the first value as key whatever it is. -Michael > On 21 Mar 2022, at 19:27, Leo Hofmann <hofmann(a)leo-andres.de> wrote: > > Hi all, > > To fix an issue with the manualpages feature, I had planned to use this key/value file format: > > logs.cgi/config.dat=configuration/logs/logsettings > > But unfortunately this is not possible with the existing General::readhash() function, because it removes non-alphanumeric keys. > > Before I write yet another readsomething() function: Is there a file format available somewhere in the IPFire CGIs that supports this? > > Best regards, > Leo > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Looking for configuration file format 2022-03-21 19:29 ` Michael Tremer @ 2022-03-21 20:12 ` Leo Hofmann 2022-03-22 12:01 ` Michael Tremer 0 siblings, 1 reply; 4+ messages in thread From: Leo Hofmann @ 2022-03-21 20:12 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1249 bytes --] Hi Michael, Thank you, I just tried it. As you suspected, General::readhasharray() accepts only numeric keys. This format would work: 1,logs.cgi/config.dat,configuration/logs/logsettings But I need the path as a key, because I don't want to write a clumsy search routine. I'll wait for other suggestions and then build my own readmanualpages() if needed! Best regards, Leo Am 21.03.2022 um 20:29 schrieb Michael Tremer: > Hey Leo, > > Did you try &General::readhasharray()? > > Then this file would just be a CSV file. > > I believe that readhasharray might want a numeric key, but maybe it accepts the first value as key whatever it is. > > -Michael > >> On 21 Mar 2022, at 19:27, Leo Hofmann <hofmann(a)leo-andres.de> wrote: >> >> Hi all, >> >> To fix an issue with the manualpages feature, I had planned to use this key/value file format: >> >> logs.cgi/config.dat=configuration/logs/logsettings >> >> But unfortunately this is not possible with the existing General::readhash() function, because it removes non-alphanumeric keys. >> >> Before I write yet another readsomething() function: Is there a file format available somewhere in the IPFire CGIs that supports this? >> >> Best regards, >> Leo >> ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Looking for configuration file format 2022-03-21 20:12 ` Leo Hofmann @ 2022-03-22 12:01 ` Michael Tremer 0 siblings, 0 replies; 4+ messages in thread From: Michael Tremer @ 2022-03-22 12:01 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 1887 bytes --] Hello, You could just remove the check for whether the key is numeric: https://git.ipfire.org/?p=ipfire-2.x.git;a=blob;f=config/cfgroot/general-functions.pl;h=6f49585dc6b4cae5818d1df54912458c464715f1;hb=HEAD#l879 I do not see it serving any purpose being strictly numeric. We could just treat the first value as the key no matter what it is. The only place where this could because a problem is when calling &findhasharraykey() since that is enumerating all keys. -Michael > On 21 Mar 2022, at 20:12, Leo Hofmann <hofmann(a)leo-andres.de> wrote: > > Hi Michael, > > Thank you, I just tried it. As you suspected, General::readhasharray() accepts only numeric keys. > > This format would work: > 1,logs.cgi/config.dat,configuration/logs/logsettings > > But I need the path as a key, because I don't want to write a clumsy search routine. > I'll wait for other suggestions and then build my own readmanualpages() if needed! > > Best regards, > Leo > > Am 21.03.2022 um 20:29 schrieb Michael Tremer: >> Hey Leo, >> >> Did you try &General::readhasharray()? >> >> Then this file would just be a CSV file. >> >> I believe that readhasharray might want a numeric key, but maybe it accepts the first value as key whatever it is. >> >> -Michael >> >>> On 21 Mar 2022, at 19:27, Leo Hofmann <hofmann(a)leo-andres.de> wrote: >>> >>> Hi all, >>> >>> To fix an issue with the manualpages feature, I had planned to use this key/value file format: >>> >>> logs.cgi/config.dat=configuration/logs/logsettings >>> >>> But unfortunately this is not possible with the existing General::readhash() function, because it removes non-alphanumeric keys. >>> >>> Before I write yet another readsomething() function: Is there a file format available somewhere in the IPFire CGIs that supports this? >>> >>> Best regards, >>> Leo >>> ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-22 12:01 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2022-03-21 19:27 Looking for configuration file format Leo Hofmann 2022-03-21 19:29 ` Michael Tremer 2022-03-21 20:12 ` Leo Hofmann 2022-03-22 12:01 ` Michael Tremer
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox