siliconBrain.specification.c
/****************************************************************************************************/
/*                                                                                                  */
/* siliconBrain.configuration.c:                                                                    */
/*                                                                                                  */
/****************************************************************************************************/

/****************************************************************************************************/
/*                                                                                                  */
/*     Copyright (C) 2004 Joerg Kunze                                                               */
/*                                                                                                  */
/*     This file is part of siliconBrain.                                                           */
/*                                                                                                  */
/*     siliconBrain is free software; you can redistribute it and/or modify                         */
/*     it under the terms of the GNU General Public License as published by                         */
/*     the Free Software Foundation; either version 2 of the License, or                            */
/*     (at your option) any later version.                                                          */
/*                                                                                                  */
/*     siliconBrain is distributed in the hope that it will be useful,                              */
/*     but WITHOUT ANY WARRANTY; without even the implied warranty of                               */
/*     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                */
/*     GNU General Public License for more details.                                                 */
/*                                                                                                  */
/*     You should have received a copy of the GNU General Public License                            */
/*     along with this program; if not, write to the Free Software                                  */
/*     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                    */
/*                                                                                                  */
/****************************************************************************************************/
#include <stdio.h>

#define siliconBrainPrintShortNames

#include "siliconBrainLib"

static const char *siliconBrainRelease       = "$siliconBrainRelease: 0.2.3 $";
static const char *siliconBrainRcsIdentifier = "$Id: siliconBrain.specification.c,v 1.9 2004/12/14 23:31:26 joerg Exp $";
static const char *siliconBrainSaveStamp     = "$siliconBrainSaveStamp: 2004/12/14 22:30:17, Joerg Kunze$";

int main( int argc, const char *argv[] ) {

   SiliconBrainPrinter siliconBrainPrinter;
   siliconBrainPrinterInit( &siliconBrainPrinter, argc, argv );

   tag( "command" );
      attribute( "name"   , "configuration" );
      attribute( "release", siliconBrainRelease );
      attribute( "rcsIdentifier", siliconBrainRcsIdentifier  );
      attribute( "saveStamp", siliconBrainSaveStamp );
      attribute( "title", "siliconBrain main configuration." );

      tag( "shortDescription" );
         text( "general datahandling application framework" );
      end();
      tag( "longDescription" );
         text( "Based on some specification a general frame of standard interfaces ins generated" );
      end();

      tag( "option" );
         attribute( "name"            , "publishTargetHost" );
         attribute( "type"            , "value"   );

         tag( "shortDescription" );
            text( "IP address or domain name where package should be put to" );
         end();
         tag( "longDescription" );
            text(
               "Host to which the complete package is webified. This includes FTP directories for the tar.gz of this package "
               "and a directory for the HTML documentation and the syntaxhighlighted sources."
            );
         end();
      end();

      tag( "option" );
         attribute( "name"            , "publishTargetArchive" );
         attribute( "type"            , "value"   );

         tag( "shortDescription" );
            text( "directory on the publishTargetHost, where the tar.gz should be put to." );
         end();
         tag( "longDescription" );
            text(
               "this directory should already exist. It is reachable from where the FTP command puts one "
               "when logging in."
            );
         end();
      end();

      tag( "option" );
         attribute( "name"            , "publishTargetWeb" );
         attribute( "type"            , "value"   );

         tag( "shortDescription" );
            text( "directory on the publishTargetHost, where the HTMLilized sourcetree should be put to." );
         end();
         tag( "longDescription" );
            text(
               "this directory should already exist. It is reachable from where the FTP command puts one "
               "when logging in."
            );
         end();
      end();

   end();

   return 0;
}

/*
$Log: siliconBrain.specification.c,v $
Revision 1.9  2004/12/14 23:31:26  joerg
published for new release 0.2.3

Revision 1.8  2004/12/14 23:17:05  joerg
published for new release 0.2.2

Revision 1.7  2004/12/14 22:42:23  joerg
allFiles: all sources have a Log CVS keyword at the end now.

*/