[TYPO3-timtab] RSS-feed: missing archive information in external URL

Jens Schaller jens.schaller at _nospam_gmx.net
Sat Oct 22 08:11:44 CEST 2005


On Sat, 22 Oct 2005 01:11:31 +0200, "ben van 't ende [netcreators]" <ben at netcreators.nl> wrote:

>
>I also ran into that same problem. Can you post it?
>

Hi Ben,

of course I can. Here you go:

$TYPO3_CONF_VARS['EXTCONF']['realurl'] = array(
            '_DEFAULT' => array(
                        'init' => array(
                                    'enableCHashCache' => 1,
                                    'appendMissingSlash' => 'ifNotFile',
                                    'enableUrlDecodeCache' => 1,
                                    'enableUrlEncodeCache' => 1,
                        ),
                        'redirects' => array(),
                        'preVars' => array(

// --- moved into "preVars". Makes more sense IMHO. ---
                                    array(
                                                'GETvar' => 'no_cache',
                                                'valueMap' => array(
                                                            'nc' => 1,
                                                ),
                                                'noMatch' => 'bypass',
                                    ),
// -------------------------------------------------------------

                                    array(
                                                'GETvar' => 'L',
                                                'valueMap' => array(
                                                            'en' => '0',
                                                            'de' => '1',
                                                ),
                                                'noMatch' => 'bypass',
                                    ),
                        ),
                        'pagePath' => array(
                                    'type' => 'user',
                                    'userFunc' => 'EXT:realurl/class.tx_realurl_advanced.php:&tx_realurl_advanced->main',
                                    'spaceCharacter' => '-',
                                    'languageGetVar' => 'L',
                                    'expireDays' => 7,

// --- should be adjusted ---
                                    'rootpage_id' => 1,
// -------------------------------------------------------------

                        ),
                        'fixedPostVars' => array(),
                        'postVarSets' => array(
                                    '_DEFAULT' => array(
                                                // news archive parameters
                                                'archive' => array(
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[year]' ,
                                                            ),
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[month]' ,
                                                                        'valueMap' => array(
                                                                                    'january' => '01',
                                                                                    'february' => '02',
                                                                                    'march' => '03',
                                                                                    'april' => '04',
                                                                                    'may' => '05',
                                                                                    'june' => '06',
                                                                                    'july' => '07',
                                                                                    'august' => '08',
                                                                                    'september' => '09',
                                                                                    'october' => '10',
                                                                                    'november' => '11',
                                                                                    'december' => '12',
                                                                        )
                                                            ),
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[day]',
                                                                        'noMatch' => 'bypass',
                                                            ),
                                                ),
                                                // news pagebrowser
                                                'browse' => array(
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[pointer]',
                                                            ),
                                                ),
                                                // news categories
                                                'category' => array(
                                                            array(
                                                                        'GETvar'      => 'tx_ttnews[cat]',
                                                                        'lookUpTable' => array(
                                                                                    'table'               => 'tt_news_cat',
                                                                                    'id_field'            => 'uid',
                                                                                    'alias_field'         => 'title',
                                                                                    'addWhereClause'      => ' AND NOT deleted',
                                                                                    'useUniqueCache'      => 1,
                                                                                    'useUniqueCache_conf' => array(
                                                                                                'strtolower'     => 1,
                                                                                                'spaceCharacter' => '_',
                                                                                    ),
                                                                        ),
                                                            ),
                                                ),                                                          

// --- this part was missing. Actually a part of it was included in the "archive"-section. ---

                                                // news articles and searchwords
                                                'article' => array(
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[tt_news]',
                                                                        'lookUpTable' => array(
                                                                                    'table' => 'tt_news',
                                                                                    'id_field' => 'uid',
                                                                                    'alias_field' => 'title',
                                                                                    'addWhereClause' => ' AND NOT deleted',
                                                                                    'useUniqueCache' => 1,
                                                                                    'useUniqueCache_conf' => array(
                                                                                                'strtolower' => 1,
                                                                                                'spaceCharacter' => '-',
                                                                                    ),
                                                                        ),
                                                            ),
                                                            array(
                                                                        'GETvar' => 'tx_ttnews[swords]',
                                                            ),
                                                ),
// -------------------------------------------------------------

                                                'xmlrpc' => array(
                                                            'type' => 'single',
                                                            'keyValues' => array(
                                                                        'type' => 200,
                                                            ),
                                                ),
                                                'trackback' => array(
                                                            'type' => 'single',
                                                            'keyValues' => array(
                                                                        'type' => 200,
                                                            ),
                                                ),
                                    ),
                        ),
                        // configure filenames for different pagetypes
                        'fileName' => array(
                                    'index' => array(
                                                'rss.xml' => array(
                                                            'keyValues' => array(
                                                                        'type' => 100,
                                                            ),
                                                ),
                                                'index.htm' => array(
                                                            'keyValues' => array(),
                                                ),
                                    ),
                                    'defaultToHTMLsuffixOnPrev' => 1,
                        ),
            ),
);


That's it. I hope this works for you!

Now, if I only knew, why all HTML formatting is removed in the XML-export, i'd be a happy camper...


Greets,
Jens



More information about the TYPO3-project-timtab mailing list