r20897 - htdocs/branches/beta - Add pretty download container for docs page.

Cristian Marchi cmarchi at code.gnucash.org
Sun Jul 10 15:00:58 EDT 2011


Author: cmarchi
Date: 2011-07-10 15:00:58 -0400 (Sun, 10 Jul 2011)
New Revision: 20897
Trac: http://svn.gnucash.org/trac/changeset/20897

Added:
   htdocs/branches/beta/externals/develdoc.png
   htdocs/branches/beta/externals/stabledoc.png
Modified:
   htdocs/branches/beta/docs.phtml
   htdocs/branches/beta/externals/gnucash.css
Log:
Add pretty download container for docs page.

Modified: htdocs/branches/beta/docs.phtml
===================================================================
--- htdocs/branches/beta/docs.phtml	2011-07-10 06:46:55 UTC (rev 20896)
+++ htdocs/branches/beta/docs.phtml	2011-07-10 19:00:58 UTC (rev 20897)
@@ -13,13 +13,13 @@
 
 <p><?php echo T_("Everything you need concerning <span class=\"gnucash\">Gnucash</span> documentation should be here, if you notice something missing, email <a href='mailto:gnucash-devel at lists.gnucash.org'>gnucash-devel</a> and we will add it.");?></p>
 
+<div class="featurecontainer">
 <div class="featureborder">
 <h2 class="featuretitle"><?= T_("Nightly Documentation Builds");?></h2>
 </div>
-<h3><?= T_("Current unstable user documentation and developer documentation");?></h3>
 
-<p class="justify"><?php echo T_("Every night a server builds the documentation from the current contents of the <span class=\"gnucash\">Gnucash</span> subversion repository.  This includes the Developer Documentation from Doxygen and User Documentation for the current unstable version of GnuCash.");?>
-
+<div id="develdoc">
+<h2><?php echo T_("Download");?></h2>
 <ul>
   <li><b><?php echo T_("Help Manual");?></b>
     <ul>
@@ -59,15 +59,19 @@
     </ul>
   </li>
 </ul>
+</div>
 
+<h3><?= T_("Current unstable user documentation and developer documentation");?></h3>
+
+<p class="justify"><?php echo T_("Every night a server builds the documentation from the current contents of the <span class=\"gnucash\">Gnucash</span> subversion repository.  This includes the Developer Documentation from Doxygen and User Documentation for the current unstable version of GnuCash.");?>
+</div>
+
+<div class="featurecontainer">
 <div class="featureborder">
 <h2 class="featuretitle">GnuCash v2.4 <?=T_("(current stable release)");?></h2>
 </div>
-
-<p class="justify"><?php echo T_("If you have a question about how to use GnuCash, you are in the right place. The first thing you should do is read the Help Manual and the Concepts Guide, most of your questions can probably be answered by these documents.");?></p>
-<p class="justify"><?php echo T_("The Help Manual is designed to be a quick reference of how to accomplish specific tasks and how to use the features in GnuCash. The Concepts Guide is designed to be an in depth guide to the concepts behind using <span class=\"gnucash\">Gnucash</span> with a tutorial to show how to put those concepts into practice.");?></p>
-
-
+<div id="stabledoc">
+<h2><?php echo T_("Download");?></h2>
 <ul>
   <li><b><?php echo T_("Help Manual");?></b>
     <ul>
@@ -107,7 +111,11 @@
     </ul>
   </li>
 </ul>
+</div>
 
+<p class="justify"><?php echo T_("If you have a question about how to use GnuCash, you are in the right place. The first thing you should do is read the Help Manual and the Concepts Guide, most of your questions can probably be answered by these documents.");?></p>
+<p class="justify"><?php echo T_("The Help Manual is designed to be a quick reference of how to accomplish specific tasks and how to use the features in GnuCash. The Concepts Guide is designed to be an in depth guide to the concepts behind using <span class=\"gnucash\">Gnucash</span> with a tutorial to show how to put those concepts into practice.");?></p>
+
 <p class="justify"><?php echo T_("Please send an email to the <a href='mailto:gnucash-user at lists.gnucash.org'>gnucash-user</a> mailing list if you cannot find a satisfactory answer to your question within either the Help Manual or the Concepts Guide. We <b>want</b> feedback from you, it is only through your comments that we know how to modify the documentation.");?></p>
 <p class="justify"><?php echo T_("Additionally, you can talk to someone via IRC at irc.gnome.org channel \"#gnucash\" about your question.  Another resource is the <a href='http://wiki.gnucash.org/wiki/'>English</a> or <a href='http://linuxwiki.de/GnuCash'>Deutsch</a> <span class=\"gnucash\">Gnucash</span> wikis. A wiki is an interactive website where registered users can ask and answer questions.");?></p>
 
@@ -118,7 +126,9 @@
   <li><a href="http://www.object-refinery.com/gnucash/index.html"><?php
 	echo T_("Dave Gilbert's User Guide (Pdf)");?></a></li>
 </ul>
+</div>
 
+<div class="featurecontainer">
 <div class="featureborder">
 <h2 class="featuretitle"><?php echo T_("Older GnuCash Documentation");?></h2>
 </div>
@@ -161,7 +171,9 @@
   <a href="<?=$top_dir;?>/docs/v1.6/es/"><?php echo T_("Spanish");?></a> | 
   <a href="<?=$top_dir;?>/docs/v1.6/pt_PT/"><?php echo T_("Portugese");?></a></li>
 </ul>
+</div>
 
+<div class="featurecontainer">
 <div class="featureborder">
 <h2 class="featuretitle"><?php echo T_("Documentation Development");?></h2>
 </div>
@@ -205,5 +217,6 @@
 <p class="justify"><?php echo T_("The best way of retaining comments about docs in an easy to find way for everyone would be to use <a href='http://bugzilla.gnome.org/'>bugzilla.gnome.org</a> to file the bugs under documentation. This can also be done using bug-buddy.");?></p>
 
 </div>
+</div>
 <?php include("externals/footer.phtml"); ?>
 

Added: htdocs/branches/beta/externals/develdoc.png
===================================================================
(Binary files differ)


Property changes on: htdocs/branches/beta/externals/develdoc.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Modified: htdocs/branches/beta/externals/gnucash.css
===================================================================
--- htdocs/branches/beta/externals/gnucash.css	2011-07-10 06:46:55 UTC (rev 20896)
+++ htdocs/branches/beta/externals/gnucash.css	2011-07-10 19:00:58 UTC (rev 20897)
@@ -343,3 +343,27 @@
   font-style:italic;
   color: #7F7FAA;
 }
+
+#develdoc {
+   width:480px;
+   float:right; 	
+   margin-left:4em;
+   margin-right:2em;
+   margin-bottom:2em;
+   padding:0.4em;
+   background: url(develdoc.png) no-repeat 96% #7F7FAA;
+   border: 1px solid #CACAF7;
+   color: white;
+}
+
+#stabledoc {
+   width:480px;
+   float:right; 	
+   margin-left:4em;
+   margin-right:2em;
+   margin-bottom:2em;
+   padding:0.4em;
+   background: url(stabledoc.png) no-repeat 96% #7F7FAA;
+   border: 1px solid #CACAF7;
+   color: white;
+}

Added: htdocs/branches/beta/externals/stabledoc.png
===================================================================
(Binary files differ)


Property changes on: htdocs/branches/beta/externals/stabledoc.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream



More information about the gnucash-changes mailing list