Changeset 15844 for gsdl


Ignore:
Timestamp:
2008-06-04T11:55:21+12:00 (16 years ago)
Author:
mdewsnip
Message:

Changed "identityaction" to "identifyaction", so it actually matches the OAI specification.

Location:
gsdl/trunk/src/oaiservr
Files:
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/src/oaiservr/Makefile.in

    r15786 r15844  
    7676    abstractlistaction.cpp \
    7777    dublincore.cpp \
    78     identityaction.cpp \
     78    identifyaction.cpp \
    7979    listidsaction.cpp \
    8080    listrecsaction.cpp \
     
    9595    abstractlistaction.o \
    9696    dublincore.o \
    97     identityaction.o \
     97    identifyaction.o \
    9898    listidsaction.o \
    9999    listrecsaction.o \
  • gsdl/trunk/src/oaiservr/identifyaction.cpp

    r15843 r15844  
    1 #include "identityaction.h"
     1#include "identifyaction.h"
    22
    3 bool identityaction::validateAction(recptproto *protocol, oaiargs &params)
     3bool identifyaction::validateAction(recptproto *protocol, oaiargs &params)
    44{
    55  int params_size = params.getSize();
     
    2727}
    2828
    29 bool identityaction::output_content(ostream &output, recptproto *protocol, oaiargs &params)
     29bool identifyaction::output_content(ostream &output, recptproto *protocol, oaiargs &params)
    3030{
    3131  // Get the repository name (some human-readable name for the site, or superset of collections)
  • gsdl/trunk/src/oaiservr/identifyaction.h

    r15843 r15844  
    33#include "oaiconfig.h"
    44
    5 class identityaction : public oaiaction
     5class identifyaction : public oaiaction
    66{
    77 public:
    8   identityaction() : oaiaction("Identify") {}
     8  identifyaction() : oaiaction("Identify") {}
    99  virtual bool validateAction(recptproto *protocol, oaiargs &params);
    1010 protected:
  • gsdl/trunk/src/oaiservr/oaimain.cpp

    r15428 r15844  
    4545#include "cgiargs.h"
    4646
    47 #include "identityaction.h"
     47#include "identifyaction.h"
    4848#include "recordaction.h"
    4949#include "listsetsaction.h"
     
    134134  dispatcher.setConfiguration(&config);
    135135
    136   identityaction *id   = new identityaction;
     136  identifyaction *id   = new identifyaction;
    137137  recordaction   *rec  = new recordaction;
    138138  listsetsaction *sets = new listsetsaction;
  • gsdl/trunk/src/oaiservr/win32.mak

    r15827 r15844  
    106106    abstractlistaction.cpp \
    107107    dublincore.cpp \
    108     identityaction.cpp \
     108    identifyaction.cpp \
    109109    listidsaction.cpp \
    110110    listrecsaction.cpp \
     
    125125    abstractlistaction.obj \
    126126    dublincore.obj \
    127     identityaction.obj \
     127    identifyaction.obj \
    128128    listidsaction.obj \
    129129    listrecsaction.obj \
Note: See TracChangeset for help on using the changeset viewer.