summaryrefslogtreecommitdiff
path: root/plugins/HTTPServer/docs/data/HTTPServerIndex.html
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-01-22 17:38:03 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-01-22 17:38:03 +0000
commitbd8210d0d851e2041b4924c5166141d16d0afc9a (patch)
tree7b46b5e9388e30a49d5438f83397cf4821edf5b8 /plugins/HTTPServer/docs/data/HTTPServerIndex.html
parente1b2602b836a315e10a3ebbc118da5ca4ed1d388 (diff)
- fixed contact menu
- updated default template git-svn-id: http://svn.miranda-ng.org/main/trunk@3234 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HTTPServer/docs/data/HTTPServerIndex.html')
-rw-r--r--plugins/HTTPServer/docs/data/HTTPServerIndex.html113
1 files changed, 81 insertions, 32 deletions
diff --git a/plugins/HTTPServer/docs/data/HTTPServerIndex.html b/plugins/HTTPServer/docs/data/HTTPServerIndex.html
index 4fdc41940a..a64f9c4884 100644
--- a/plugins/HTTPServer/docs/data/HTTPServerIndex.html
+++ b/plugins/HTTPServer/docs/data/HTTPServerIndex.html
@@ -1,34 +1,83 @@
-<html>
-<head>
-<title>Directory Listing of [DirectoryName]</title>
-<style type="text/css">
-td { font-size:14px; color:#000033;}
-a:link { text-decoration: none; color:#003366; }
-a:visited { text-decoration: none; color:#003366; }
-a:active { text-decoration: none; color:#FFAA33; }
-a:hover { text-decoration: underline; color:#FFAA33; }
-</style>
-</head>
-<body bgcolor=#B0B0CC>
-<font face='tahoma, arial'>
-
-<table cellspacing=1 cellpadding=2 width=700>
-<tr height=40 bgcolor=#EEEEFF><td colspan=3 align=center>
-<h3 style='margin:0px'><font color="#666688">Directory Listing of [DirectoryName]</font></h3>
-[ForDirectoriesDo]<tr [IsEven]bgcolor=#EEEEFF[End][IsOdd]bgcolor=#DDDDEE[End]><td colspan=3><img src="/icons/folder_gray.png"><img src="/placeholder.gif" width=5><a href="[DirectoryUrl]">[DirectoryName]</a></td></tr>[End]
-[ForFilesDo]<tr [IsEven]bgcolor=#EEEEFF[End][IsOdd]bgcolor=#DDDDEE[End]><td>
-[IsFileType=jpg,jpeg,gif,png,bmp]<img src="/icons/image2.png">[End]
-[IsFileType=zip,rar,ace,arj,lha,lhz,tar,gz]<img src="/icons/tar.png">[End]
-[IsFileType=rtf,doc]<img src="/icons/doc.png">[End]
-[IsFileType=txt,diz]<img src="/icons/txt.png">[End]
-[IsFileType=pdf]<img src="/icons/pdf.png">[End]
-[IsFileType=exe,bat]<img src="/icons/win_apps.png">[End]
-[IsFileType=html,htm,xml]<img src="/icons/www.png">[End]
-[IsFileType=avi,mpg]<img src="/icons/video.png">[End]
-[IsFileType=c,cpp,h]<img src="/icons/source.png">[End]
-[IsFileType=mp3,ogg,wav,mid,mod,xm]<img src="/icons/sound.png">[End]
-[IsFileType=*]<img src="/icons/empty.png">[End]<img src="/placeholder.gif" width=5><a href="[FileUrl]">[FileName]</a></td><td>[FileModified]</td><td align='right'>[FileSize]</td></tr>[End]
-</font>
-</body>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
+
+ <!--
+ * template for HTTPServer Plugin for Miranda IM by Houdini
+ http://addons.miranda-im.org/details.php?action=viewfile&id=2304
+
+ * the icons are taken from the 'Crystal Project' by Everaldo Coelho, licenced under LGPL
+ http://www.everaldo.com/
+
+ modded by Wishmaster
+ + header bar
+ + tooltips on each field
+ + moved design to seperate CSS file
+ * proper support for "shortcut icon" aka "favicon" (with link tag)
+ * lots of code changes
+ * converted to XHTML 1.1
+ -->
+
+ <head>
+
+ <!-- title of the page -->
+ <title>Directroy [DirectoryName]</title>
+
+ <!-- path to the FavIcon -->
+ <link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/favicon.ico" />
+
+ <!-- path to the CSS file -->
+ <link rel="stylesheet" type="text/css" href="/theme/style/simpleTheme.css" />
+ </head>
+ <body>
+ <table id="listing">
+ <caption id="tablecaption" class="tablecaption">Directory [DirectoryName]</caption>
+ <tr id="header">
+ <th class="file">Name</th>
+ <th class="size">Size</th>
+ <th class="modified">Modified</th>
+ <th class="created">Created</th>
+ </tr>
+
+[ForDirectoriesDo]
+ <tr [IsEven]class="even"[End][IsOdd]class="odd"[End]>
+ <td title="Directory: [DirectoryName]" class="folder" colspan="4">
+ <a href="[DirectoryUrl]" title="[DirectoryName] (Directory)" class="folder">
+ <img src="/theme/icons/folder_gray.png" alt="folder" />
+ [DirectoryName]
+ </a>
+ </td>
+ </tr>
+[End]
+
+[ForFilesDo]
+ <tr [IsEven]class="even"[End][IsOdd]class="odd"[End]>
+ <td title="File: [FileName]" class="file">
+ <a href="[FileUrl]" title="[FileName] ([FileSize])">
+[IsFileType=jpg,jpeg,gif,png,bmp]<img src="/theme/icons/image2.png" alt="" />[End]
+[IsFileType=zip,rar,ace,arj,lha,lhz,tar,gz,7z]<img src="/theme/icons/tar.png" alt="" />[End]
+[IsFileType=rtf,doc]<img src="/theme/icons/doc.png" alt="" />[End]
+[IsFileType=txt,diz]<img src="/theme/icons/txt.png" alt="" />[End]
+[IsFileType=pdf]<img src="/theme/icons/pdf.png" alt="" />[End]
+[IsFileType=tex]<img src="/theme/icons/tex.png" alt="" />[End]
+[IsFileType=java,jar]<img src="/theme/icons/source_java.png" alt="" />[End]
+[IsFileType=exe,bat,dll]<img src="/theme/icons/win_apps.png" alt="" />[End]
+[IsFileType=html,htm,xml,php,css]<img src="/theme/icons/www.png" alt="" />[End]
+[IsFileType=avi,mpg,mpeg]<img src="/theme/icons/video.png" alt="" />[End]
+[IsFileType=c,cpp,h]<img src="/theme/icons/source.png" alt="" />[End]
+[IsFileType=mp3,ogg,wav,mid,mod,xm]<img src="/theme/icons/sound.png" alt="" />[End]
+[IsFileType=*]<img src="/theme/icons/empty.png" alt="" />[End]
+ [FileName]
+ </a>
+ </td>
+ <td class="size" title="Size: [FileSize]">[FileSize]</td>
+ <td class="modified" title="Modified: [FileModified]">[FileModified]</td>
+ <td class="created" title="Created: [FileCreated]">[FileCreated]</td>
+ </tr>
+[End]
+
+ </table>
+ </body>
</html> \ No newline at end of file