[script] Eggdrop RSS Syndication
Il semblerait plutôt que ce soit un souci avec tcl8.6 :
Citation :Tcl 8.6 is using build-in zlib for compression so thats why Trf fails, I installed tcl 8.6b2 and I can use both build-in zlib & trf (i've scripts that needs zlib but for sake of rss-synd i installed trf). You can use guide from here to locally install tcl & compile eggdrop against it.

Tu peux peut-être essayer de modifier la procédure en cause:
TCL
# decompress gzip formatted data
proc ::rss-synd::feed_gzip {cdata} {
    variable packages
 
    if {(![info exists packages(trf)]) || \
        ($packages(trf) != 0)} {
        error "Trf package not found."
    }

    # remove the 10 byte gzip header and 8 byte footer
    set cdata [string range $cdata 10 [expr { [string length $cdata] - 9 } ]]

    # decompress the raw data
    if {[catch {zip -mode decompress -nowrap 1 $cdata} data] != 0} {
        error $data
    }
 
    return $data
}


devient:
TCL
# decompress gzip formatted data
proc ::rss-synd::feed_gzip {cdata} {
   return $cdata
}


EDIT : En fait, il suffit que la procédure retourne ce qu'elle reçoit
Répondre


Messages dans ce sujet
[script] Eggdrop RSS Syndication - par CrazyCat - 21/02/2008, 18:14
RE: Eggdrop RSS Syndication - par Piepierre - 21/02/2008, 18:23
RE: Eggdrop RSS Syndication - par CrazyCat - 21/02/2008, 18:28
RE: Eggdrop RSS Syndication - par MenzAgitat - 22/02/2008, 02:17
RE: Eggdrop RSS Syndication - par titinio - 15/05/2008, 09:26
RE: Eggdrop RSS Syndication - par CrazyCat - 15/05/2008, 13:30
RE: Eggdrop RSS Syndication - par tr3nk1l - 15/06/2008, 23:27
RE: Eggdrop RSS Syndication - par Helias - 16/06/2008, 02:00
RE: Eggdrop RSS Syndication - par knx - 11/07/2008, 21:44
RE: Eggdrop RSS Syndication - par lepheniX - 21/07/2008, 03:52
RE: Eggdrop RSS Syndication - par lepheniX - 22/07/2008, 13:40
RE: Eggdrop RSS Syndication - par BdS - 23/07/2008, 12:53
RE: Eggdrop RSS Syndication - par knx - 25/07/2008, 07:28
RE: Eggdrop RSS Syndication - par MenzAgitat - 28/07/2008, 02:27
RE: Eggdrop RSS Syndication - par MenzAgitat - 28/07/2008, 16:29
RE: Eggdrop RSS Syndication - par Rikito - 04/09/2008, 13:52
RE: Eggdrop RSS Syndication - par CrazyCat - 04/09/2008, 21:28
RE: Eggdrop RSS Syndication - par Rikito - 04/09/2008, 22:19
RE: Eggdrop RSS Syndication - par CrazyCat - 05/09/2008, 20:14
RE: Eggdrop RSS Syndication - par MenzAgitat - 05/09/2008, 01:18
RE: Eggdrop RSS Syndication - par Rikito - 05/09/2008, 19:59
RE: Eggdrop RSS Syndication - par kipof - 22/02/2009, 17:30
RE: Eggdrop RSS Syndication - par CrazyCat - 22/02/2009, 22:48
RE: Eggdrop RSS Syndication - par kipof - 22/02/2009, 23:37
RE: Eggdrop RSS Syndication - par CrazyCat - 23/02/2009, 10:24
RE: [script] Eggdrop RSS Syndication - par Utas - 29/04/2010, 16:40
RE: [script] Eggdrop RSS Syndication - par Marc - 29/04/2010, 20:45
RE: [script] Eggdrop RSS Syndication - par Utas - 30/04/2010, 02:52
RE: [script] Eggdrop RSS Syndication - par Xima - 29/08/2010, 17:45
RE: [script] Eggdrop RSS Syndication - par uto - 25/06/2011, 19:30
RE: [script] Eggdrop RSS Syndication - par Cain - 18/08/2011, 05:41
RE: [script] Eggdrop RSS Syndication - par Cain - 22/08/2011, 05:24
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 08:53
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 15:16
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 16:32
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 16:49
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 17:08
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 17:35
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 17:49
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 18:00
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 18:28
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 19:48
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 20:21
RE: [script] Eggdrop RSS Syndication - par Nosy - 21/12/2011, 23:40
RE: [script] Eggdrop RSS Syndication - par Nosy - 22/12/2011, 13:29
RE: [script] Eggdrop RSS Syndication - par Nosy - 04/06/2012, 23:27
RE: [script] Eggdrop RSS Syndication - par Nosy - 05/06/2012, 22:27
RE: [script] Eggdrop RSS Syndication - par Nosy - 07/06/2012, 14:21
RE: [script] Eggdrop RSS Syndication - par T3nS - 25/10/2017, 12:01
RE: [script] Eggdrop RSS Syndication - par CrazyCat - 25/10/2017, 12:19
RE: [script] Eggdrop RSS Syndication - par T3nS - 25/10/2017, 13:02
RE: [script] Eggdrop RSS Syndication - par T3nS - 25/10/2017, 17:18
RE: [script] Eggdrop RSS Syndication - par T3nS - 28/10/2017, 00:23
RE: [script] Eggdrop RSS Syndication - par T3nS - 29/10/2017, 16:19
RE: [script] Eggdrop RSS Syndication - par T3nS - 29/10/2017, 16:56
RE: [script] Eggdrop RSS Syndication - par T3nS - 29/10/2017, 17:11

Atteindre :


Utilisateur(s) parcourant ce sujet : 4 visiteur(s)
Tchat 100% gratuit -Discutez en toute liberté