Starting new site building

This commit is contained in:
Serge Lamikhov-Center 2012-03-09 12:01:14 +02:00
parent 0237e33a30
commit 03da533493
6 changed files with 175 additions and 5 deletions

View File

@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFDump", "Examples\ELFDump\ELFDump.vcxproj", "{CBAA735F-E237-4976-909F-2349920ED871}"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 11
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFDump", "examples\ELFDump\ELFDump.vcxproj", "{CBAA735F-E237-4976-909F-2349920ED871}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ELFIOTest", "ELFIOTest\ELFIOTest.vcxproj", "{FC8A3379-B8AA-4C32-804F-F8C43AFBC2A1}"
EndProject

View File

@ -14,12 +14,14 @@
<ProjectGuid>{FC8A3379-B8AA-4C32-804F-F8C43AFBC2A1}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>ELFIOTest</RootNamespace>
<VCTargetsPath Condition="'$(VCTargetsPath11)' != '' and '$(VSVersion)' == '' and $(VisualStudioVersion) == ''">$(VCTargetsPath11)</VCTargetsPath>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
@ -57,7 +59,8 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>
</AdditionalDependencies>
<AdditionalLibraryDirectories>d:\Developer\boost_1_48_0\stage\lib</AdditionalLibraryDirectories>
<AdditionalLibraryDirectories>d:\Developer\boost_1_48_0\stage11\lib</AdditionalLibraryDirectories>
<Profile>true</Profile>
</Link>
<PostBuildEvent>
<Command>"$(TargetDir)\$(TargetName).exe" --result_code=no --report_level=short </Command>

50
doc/site/elfio.htm Executable file
View File

@ -0,0 +1,50 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ELFIO - C++ library for reading and generating ELF files</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<table summary="Title and Sourceforge logo.">
<tr>
<td align="left">
<h1>ELFIO - C++ library for reading and generating ELF files</h1>
</td>
<td align="right">
<a href="http://sourceforge.net/projects/elfio"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=76645&amp;type=15" width="150" height="40" alt="Get Templatized C++ Command Line Parser at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>
</td>
</tr>
</table>
<div class="links">
<h3>Links</h3>
<ul class="menu">
<li><a href="http://sourceforge.net/projects/elfio/files/">Download</a> the source</li><br/>
<li>Read the <a href="manual.html">Manual</a></li><br/>
<li>Read the <a href="html/index.html">API documentation</a></li><br/>
<li>Visit the
<a href="http://sourceforge.net/projects/elfio/">SourceForge project page</a></li><br/>
<li>Send <a href="mailto:to_serge@users.sourceforge.net">feedback, comments, patches, etc.</a></li></br>
</ul>
</div>
<div class="main">
<p>
<em>ELFIO</em> is a small, header only C++ library that provides a simple interface for
reading and generating files in ELF binary format.
</p>
<p>
<em>ELFIO</em> library is independent and does not rely on any other additional projects.
It is also cross-platform - the library uses standard ANSI C++ constructions
and runs on wide variety of architectures.
</p>
<div class="main">
</body>
</html>

117
doc/site/style.css Executable file
View File

@ -0,0 +1,117 @@
/*
color:#ffffff; white
color:#e0e0e0; light gray
color:#f8f8f8; light gray
color:#003366; dark blue
color:#555555; gray
color:#ff9933; light orange
color:#cc3300; red/brown/orange
color:#660066; purple
color:#669900; green
*/
a {
color:#003366;
text-decoration:underline;
}
a:hover {
color:#ff9933;
}
body {
font-family: verdana, tahoma, helvetica, arial, sans-serif;
font-size: 90%;
background-color:#ffffff;
margin: 1em;
}
pre {
font-family: courier, serif;
background-color:#f8f8f8;
margin: 1.5em;
font-size:90%;
}
ul {
list-style: circle outside;
font-stretch:extra-expanded;
/* font-size:90%;*/
}
ul.menu { /* inherits from ul */
padding-left: 1em;
}
em {
color:#FF7700;
font-size:110%;
}
h1,h2,h3{
color:#FF7700;
}
h1 {
border-color:#d0d0d0;
border-style:solid;
border-width:1px;
font-weight:bold;
padding: 0.2em;
background-color:#f8f8f8
}
h2 {
font-size:120%;
font-weight:bold;
border-bottom-style:solid;
border-bottom-width:1px;
border-bottom-color:#d0d0d0;
}
h3 {
font-size:110%;
font-weight:bold;
font-style:italic;
}
tt {
font-family: courier, serif;
}
tt.classname {
font-weight:bold;
}
tt.constant {
font-weight:bold;
}
p {
line-height: 1.5em;
}
div.links{
float: left;
clear: left;
width: 12em;
background-color:#f8f8f8;
border-style:solid;
border-width:1px;
border-color:#d0d0d0;
margin-bottom: 0.5em;
padding: 0.5em 0.5em 0.5em 0.5em;
margin: 0.5em 0.5em 0em 0em;
}
div.main{
border-style:solid;
border-width:1px;
border-color:#d0d0d0;
margin: 0.5em 0em 0.5em 14em;
padding: 0.5em 0.5em 0.5em 0.5em;
}

View File

@ -1,5 +1,5 @@
/*
Copyright (C) 2001-2011 by Serge Lamikhov-Center
Copyright (C) 2001-2012 by Serge Lamikhov-Center
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal