Index: branches/2.8.x/wb/modules/droplets/htt/overview_tool.htt
===================================================================
--- branches/2.8.x/wb/modules/droplets/htt/overview_tool.htt	(nonexistent)
+++ branches/2.8.x/wb/modules/droplets/htt/overview_tool.htt	(revision 1741)
@@ -0,0 +1,72 @@
+<!-- BEGIN main_block -->
+<div class="droplets">
+
+<h4 style="margin: 0; border-bottom: 1px solid #DDD; padding-bottom: 5px;">
+	<a href="{ADMINTOOL_LINK}" title="{HEADING_ADMINISTRATION_TOOLS}">{HEADING_ADMINISTRATION_TOOLS}</a>
+	<span> &raquo; </span>
+	<a href="{MODULE_EDIT_LINK}" title="">Droplet Overview</a>
+</h4>
+
+<table summary="" >
+<tbody>
+<tr>
+	<td>
+		<button class="add" type="button" name="add_droplet" onclick="javascript:window.location='<?php echo WB_URL; ?>/modules/droplets/add_droplet.php';">{TEXT_ADD} {DR_TEXT_DROPLETS}</button>
+	</td>
+	<td>
+		<a href="#" onclick="javascript:window.open('<?php echo WB_URL; ?>/modules/droplets/readme/{DR_TEXT_README}','helpwindow','width=700,height=550,directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes');">{DR_TEXT_HELP}</a>
+		<br /><br />
+		<a href="#" onclick="javascript:window.location='<?php echo WB_URL; ?>/modules/droplets/backup_droplets.php?id=<?php echo $admin->getIDKEY(999); ?>'">{DR_TEXT_BACKUP}</a>
+	</td>
+</tr>
+</tbody>
+</table>
+
+<table summary="" >
+<thead>
+<tr>
+	<td style="width: 3%;"></td>
+	<td style="width: 21%;">{TEXT_NAME}</td>
+	<td style="width: 68%;">{TEXT_DESCRIPTION}</td>
+	<td style="width: 4%;">{TEXT_ACTIVE}</td>
+	<td style="width: 3%;"></td>
+</tr>
+</thead>
+<tfoot>
+<tr>
+<td>{PAGINATION}</td>
+</tr>
+</tfoot>
+<tbody>
+<!-- BEGIN loop_droplet_block -->
+<tr class="row_{ROWBIT}" >
+	<td >
+		<a href="{WB_URL}/modules/droplets/modify_droplet.php?droplet_id={DROPLET_IDKEY}" title="TEXT_MODIFY">
+			<img src="{THEME_URL}/images/modify_16.png" alt="Modify" />
+		</a>
+	</td>
+	<td >
+		<a href="{WB_URL}/modules/droplets/modify_droplet.php?droplet_id={DROPLET_IDKEY}" class="tooltip">
+		<img src="{WB_URL}/modules/droplets/img/{STATUS_ICON}" title="" alt=""/>{DROPLET_NAME}{COMMENTS}
+		</a>
+	</td>
+	<td >
+		<small>{DESCRIPTION}</small>
+	</td>
+	<td>
+		<strong>{DROPLET_ACTIVE}</strong>
+	</td>
+	<td >
+		<a href="javascript:confirm_link('{TEXT_ARE_YOU_SURE}','{WB_URL}/modules/droplets/delete_droplet.php?droplet_id={DROPLET_IDKEY}');" title="{TEXT_DELETE}">
+			<img src="{THEME_URL}/images/delete_16.png" alt="{TEXT_DELETE}" />
+		</a>
+	</td>
+</tr>
+<!-- END loop_droplet_block -->
+<tr>
+<td>{NO_DROPLET_FOUND}</td>
+</tr>
+</tbody>
+</table>
+</div>
+<!-- END main_block -->
\ No newline at end of file

Property changes on: branches/2.8.x/wb/modules/droplets/htt/overview_tool.htt
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision HeadURL
\ No newline at end of property
Index: branches/2.8.x/wb/modules/droplets/tool.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/tool.php	(revision 1740)
+++ branches/2.8.x/wb/modules/droplets/tool.php	(revision 1741)
@@ -3,10 +3,8 @@
  *
  * @category        module
  * @package         droplet
- * @author          Ruud Eisinga (Ruud) John (PCWacht)
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
+ * @author          Ruud Eisinga (Ruud) John (PCWacht),WebsiteBaker Project
+ * @copyright       2009-2012, WebsiteBaker Org. e.V.
  * @link			http://www.websitebaker2.org/
  * @license         http://www.gnu.org/licenses/gpl.html
  * @platform        WebsiteBaker 2.8.x
@@ -18,7 +16,7 @@
  */
 /* -------------------------------------------------------- */
 // Must include code to stop this file being accessed directly
-if(!defined('WB_PATH')) {
+if(!defined('WB_URL')) {
 
 	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
 	throw new IllegalFileException();
@@ -66,7 +64,8 @@
 if(is_writeable(dirname(WB_PATH.$temp_dir))) {
  	rm_full_dir ( WB_PATH.$temp_dir );
 }
-?><br />
+?><div class="droplets" style="margin-top: -6px; border-top: 1px solid #DDD;">
+
 <table summary="" cellpadding="0" cellspacing="0" border="0" width="100%">
 <tr>
 	<td valign="bottom" width="50%">
@@ -160,6 +159,7 @@
 	}
 	?>
 	</table>
+</div>
 	<?php
 }
 
Index: branches/2.8.x/wb/modules/droplets/modify_droplet.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/modify_droplet.php	(revision 1740)
+++ branches/2.8.x/wb/modules/droplets/modify_droplet.php	(revision 1741)
@@ -3,10 +3,8 @@
  *
  * @category        module
  * @package         droplet
- * @author          Ruud Eisinga (Ruud) John (PCWacht)
- * @author          WebsiteBaker Project
- * @copyright       2004-2009, Ryan Djurovich
- * @copyright       2009-2011, Website Baker Org. e.V.
+ * @author          Ruud Eisinga (Ruud) John (PCWacht),WebsiteBaker Project
+ * @copyright       2009-2012, Website Baker Org. e.V.
  * @link			http://www.websitebaker2.org/
  * @license         http://www.gnu.org/licenses/gpl.html
  * @platform        WebsiteBaker 2.8.x
@@ -64,10 +62,11 @@
 $fetch_content = $query_content->fetchRow();
 $content = (htmlspecialchars($fetch_content['code']));
 ?>
+<div class="droplets" style="margin-top: 6px;">
 <h4 style="margin: 0; border-bottom: 1px solid #DDD; padding-bottom: 5px;">
 	<a href="<?php echo $admintool_link;?>" title="<?php echo $HEADING['ADMINISTRATION_TOOLS']; ?>"><?php echo $HEADING['ADMINISTRATION_TOOLS']; ?></a>
-	->
-	<a href="<?php echo $module_edit_link;?>" title="<?php echo $sOverviewDroplets ?>" alt="<?php echo $sOverviewDroplets ?>">Droplet Edit</a>
+	<span> &raquo; </span>
+	<a href="<?php echo $module_edit_link;?>" title="<?php echo $sOverviewDroplets ?>" alt="<?php echo $sOverviewDroplets ?>">Droplet Overview</a>
 </h4>
 <br />
 <form name="modify" action="<?php echo WB_URL; ?>/modules/droplets/save_droplet.php" method="post" style="margin: 0;">
@@ -95,7 +94,7 @@
 		<td class="setting_name" width="60px">
 			<?php echo $TEXT['ACTIVE']; ?>:
 		</td>
-		<td>	
+		<td>
 			<input type="radio" name="active" id="active_true" value="1" <?php if($fetch_content['active'] == 1) { echo ' checked="checked"'; } ?> />
 			<a href="#" onclick="javascript: document.getElementById('active_true').checked = true;">
 			<label><?php echo $TEXT['YES']; ?></label>
@@ -114,8 +113,8 @@
 		<td class="setting_name" width="60px">
 			<?php echo $TEXT['ADMIN']; ?>:
 		</td>
-		<td> 
-			<?php echo $DR_TEXT['ADMIN_EDIT']; ?>&nbsp;   	
+		<td>
+			<?php echo $DR_TEXT['ADMIN_EDIT']; ?>&nbsp;
 			<input type="radio" name="admin_edit" id="admin_edit_true" value="1" <?php if($fetch_content['admin_edit'] == 1) { echo ' checked="checked"'; } ?> />
 			<a href="#" onclick="javascript: document.getElementById('admin_edit_true').checked = true;">
 			<label><?php echo $TEXT['YES']; ?></label>
@@ -124,7 +123,7 @@
 			<a href="#" onclick="javascript: document.getElementById('admin_edit_false').checked = true;">
 			<label><?php echo $TEXT['NO']; ?></label>
 			</a>
-			&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
+			&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 			<?php echo $DR_TEXT['ADMIN_VIEW']; ?>:
 			<input type="radio" name="admin_view" id="admin_view_true" value="1" <?php if($fetch_content['admin_view'] == 1) { echo ' checked="checked"'; } ?> />
 			<a href="#" onclick="javascript: document.getElementById('admin_view_true').checked = true;">
@@ -145,7 +144,7 @@
 		</td>
 	</tr>
 	<tr>
-		<td colspan="2">					
+		<td colspan="2">
 		</td>
 	</tr>
 	<tr>
@@ -155,7 +154,7 @@
 		</td>
 	</tr>
 	<tr>
-		<td colspan="2">&nbsp;					
+		<td colspan="2">&nbsp;
 		</td>
 	</tr>
 </table>
@@ -178,6 +177,7 @@
 	</tr>
 </table>
 </form>
+</div>
 <?php
 
 // Print admin footer
Index: branches/2.8.x/wb/modules/droplets/backup_droplets.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/backup_droplets.php	(revision 1740)
+++ branches/2.8.x/wb/modules/droplets/backup_droplets.php	(revision 1741)
@@ -35,10 +35,11 @@
 }
 
 ?>
+<div class="droplets" style="margin-top: 6px;">
 <h4 style="margin: 0; border-bottom: 1px solid #DDD; padding-bottom: 5px;">
 	<a href="<?php echo $admintool_link;?>" title="<?php echo $HEADING['ADMINISTRATION_TOOLS']; ?>"><?php echo $HEADING['ADMINISTRATION_TOOLS']; ?></a>
-	->
-	<a href="<?php echo $module_edit_link;?>" title="<?php echo $sOverviewDroplets ?>" alt="<?php echo $sOverviewDroplets ?>">Droplet Edit</a>
+	<span> &raquo; </span>
+	<a href="<?php echo $module_edit_link;?>" title="<?php echo $sOverviewDroplets ?>" alt="<?php echo $sOverviewDroplets ?>">Droplet Overview</a>
 </h4>
 <?php
 
@@ -104,5 +105,5 @@
 else {
 	echo '<br /><br />Backup not created - <a href="'.$module_edit_link.'">'.$TEXT['BACK'].'</a>';
 }
-
+echo '</div>';
 $admin->print_footer();
