/****************************************************************************************************/
/* */
/* stringSearch.specification.c: */
/* */
/****************************************************************************************************/
/****************************************************************************************************/
/* */
/* Copyright (C) 2006 Joerg Kunze */
/* */
/* This file is part of siliconBrain documentation. */
/* */
/* siliconBrain documentation 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 documentation 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 */
/* */
/****************************************************************************************************/
#define siliconBrainPrintShortNames
#include "siliconBrainLib"
static const char *siliconBrainRelease = "$siliconBrainRelease: 0.1.1 $";
static const char *siliconBrainRcsIdentifier = "$Id: deploy.specification.c,v 1.2 2006/05/02 23:09:35 joerg Exp $";
static const char *siliconBrainSaveStamp = "$siliconBrainSaveStamp: 2006/04/05 22:45:39, Joerg Kunze$";
int main( int argc, const char *argv[] ) {
SiliconBrainPrinter siliconBrainPrinter;
siliconBrainPrinterInit( &siliconBrainPrinter, argc, argv );
tag( "command" );
attribute( "name" , "deploy" );
attribute( "release" , siliconBrainRelease );
attribute( "rcsIdentifier", siliconBrainRcsIdentifier );
attribute( "saveStamp" , siliconBrainSaveStamp );
attribute( "title" , "deploy web site" );
tag( "shortDescription" );
text( "collect all htm files and put then onto web site" );
end();
tag( "longDescription" );
text(
"check, which files have to be deleted, which to be updated. Then copy htm files to web site."
);
end();
tag( "option" );
attribute( "name" , "notUsed" );
attribute( "type" , "value" );
attribute( "oneCharacterName", "e" );
tag( "shortDescription" );
text( "bla" );
end();
tag( "longDescription" );
text(
"bla bla"
);
end();
end();
end();
destroy();
return 0;
}
/*
$Log: deploy.specification.c,v $
Revision 1.2 2006/05/02 23:09:35 joerg
published for new release 0.1.1
Revision 1.1 2006/04/05 22:55:51 joerg
first do nothing version of deploy command
*/