Ignore:
Timestamp:
2012-01-20T16:22:35+13:00 (12 years ago)
Author:
ak19
Message:

First commit to do with Greenstone's support for RSS. Committing Dr Bainbridge's code which was already working for windows. This has now been tested on Linux, where it can be got to work with changes to zextra.dm and base.dm and if the rss-items.rdf file generated by the update to BasePlugout is moved to the index folder). The next set of commits will make the way rssaction.cpp accesses the rss-items.rdf file independent of where the GS server is located, with changes to the protocol class.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/recpt/cgiwrapper.cpp

    r23389 r24958  
    7272#endif
    7373
     74#if defined(USE_RSS)
     75#include "rssaction.h"
     76#endif
     77
    7478#include "tipaction.h"
    7579#include "statusaction.h"
     
    531535#endif
    532536
     537#if defined(USE_RSS)
     538  rssaction *arssaction = new rssaction();
     539  recpt.add_action (arssaction);
     540#endif
     541
    533542  queryaction *aqueryaction = new queryaction();
    534543  aqueryaction->set_receptionist (&recpt);
Note: See TracChangeset for help on using the changeset viewer.