/****************************************************************************************************/
/* */
/* documentation.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 */
/* */
/****************************************************************************************************/
#include <stdio.h>
#define siliconBrainPrintShortNames
#include "siliconBrainLib"
static const char *siliconBrainRelease = "$siliconBrainRelease: 0.1.1 $";
static const char *siliconBrainRcsIdentifier = "$Id: documentation.specification.c,v 1.2 2006/05/02 23:09:36 joerg Exp $";
static const char *siliconBrainSaveStamp = "$siliconBrainSaveStamp: 2006/04/04 22:19:58, Joerg Kunze$";
int main( int argc, const char *argv[] ) {
SiliconBrainPrinter siliconBrainPrinter;
siliconBrainPrinterInit( &siliconBrainPrinter, argc, argv );
tag( "command" );
attribute( "name" , "specification" );
attribute( "release", siliconBrainRelease );
attribute( "rcsIdentifier", siliconBrainRcsIdentifier );
attribute( "saveStamp", siliconBrainSaveStamp );
attribute( "title", "siliconBrain documentation main configuration." );
tag( "shortDescription" );
text( "web page of the siliconBrain project" );
end();
tag( "longDescription" );
text( "all pages, wrapped in a project including auto test and auto deploy" );
end();
/*-------------------------------------------------------------------------------------------------*/
/* deployTargetHost: */
/*-------------------------------------------------------------------------------------------------*/
tag( "option" );
attribute( "name" , "deployTargetHost" );
attribute( "type" , "value" );
tag( "shortDescription" );
text( "IP address or domain name where web site should be deployed to" );
end();
tag( "longDescription" );
text(
"Host to which the complete web site is deployed."
);
end();
end();
/*-------------------------------------------------------------------------------------------------*/
/* deployTargetWeb: */
/*-------------------------------------------------------------------------------------------------*/
tag( "option" );
attribute( "name" , "deployTargetWeb" );
attribute( "type" , "value" );
tag( "shortDescription" );
text( "directory on the deployTargetHost, where html pages 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();
destroy();
return 0;
}
/*
$Log: documentation.specification.c,v $
Revision 1.2 2006/05/02 23:09:36 joerg
published for new release 0.1.1
Revision 1.1 2006/04/04 22:27:44 joerg
first test; project specification
*/