diff --git a/Sunfish/ShareWeb/$sunfish/$index-old.html b/Sunfish/ShareWeb/$sunfish/$index-old.html
deleted file mode 100644
index e72deae..0000000
--- a/Sunfish/ShareWeb/$sunfish/$index-old.html
+++ /dev/null
@@ -1,234 +0,0 @@
-
-
-
-
- Sunfish [Home]
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Sunfish/ShareWeb/$sunfish/$index.html b/Sunfish/ShareWeb/$sunfish/$index.html
index d054589..d1e8d4b 100644
--- a/Sunfish/ShareWeb/$sunfish/$index.html
+++ b/Sunfish/ShareWeb/$sunfish/$index.html
@@ -1,40 +1,37 @@
-
-
-
-
- {AppName} {AppVersion}
+
+
+ {AppName} {AppVersion}
+
+
+
+
+
+
+
+ {Include}
-
-
-
-
\ No newline at end of file
+
+
+
+
+{%:sunfish-header}{%Items:directory-item}{%:sunfish-footer}
+
+
+
+{@Icon}{Icon}{/}{Name}
diff --git a/Sunfish/ShareWeb/$sunfish/style.css b/Sunfish/ShareWeb/$sunfish/style.css
index 5501e54..425ca79 100644
--- a/Sunfish/ShareWeb/$sunfish/style.css
+++ b/Sunfish/ShareWeb/$sunfish/style.css
@@ -5,42 +5,43 @@
}
body {
- margin: 0 auto;
+ margin: 0;
padding: 0;
width: 100%;
- max-width: 50rem;
background: white;
- box-shadow: 0 0 0.3rem black;
}
a {
text-decoration: none;
- color: unset;
+ color: black;
+}
+
+* {
+ box-sizing: border-box;
}
a:hover {
- color: #272c2a;
+ color: #5d6962;
}
#head {
- height: 3rem;
- background: #e7eff3 url(/$sunfish/logo.png) 1rem 1rem no-repeat;
+ height: 4.7rem;
+ background: white url(/$sunfish/logo.png) 1rem 1rem no-repeat;
padding: 1rem;
position: relative;
- box-shadow: 0 0.1rem 0.1rem #00000066;
}
#main-title {
- font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
+ font-family: 'Montserrat', Verdana, sans-serif;
font-size: 2.2rem;
- left: 5rem;
- top: 0;
+ left: 4.5rem;
+ top: 0.3rem;
position: absolute;
}
#main-subtitle {
position: absolute;
- font-family: tahoma, verdana, sans-serif;
+ font-family: 'Montserrat', Verdana, sans-serif;
font-size: 1.1rem;
color: #000000b2;
top: 1.3rem;
@@ -49,25 +50,32 @@
#main-location {
position: absolute;
- bottom: 0.5rem;
- left: 6rem;
- font-family: Verdana, Geneva, Tahoma, sans-serif;
- font-size: 0.8rem;
+ bottom: 0;
+ left: 4.5rem;
+ right: 0;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 0.9rem;
color: #696969;
+ background: #a6e1ff;
+ padding: 0.2rem;
+ border-top-left-radius: 0.6rem;
+ border-bottom-left-radius: 0.6rem;
}
-.breadcrumb::after {
- content: "/";
+#main-location>a::after {
+ content: " / ";
+ color: #777777;
}
-.breadcrumb i.material-icons{
- font-size: 1.0rem;
+#main-location>a>i.material-icons {
+ font-size: 1.3rem;
vertical-align: bottom;
}
#wrapper {
+ margin: 0 auto;
padding: 0.5rem;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ font-family: 'Roboto Condensed', sans-serif;
text-align: center;
}
@@ -80,16 +88,14 @@
width: 22.5rem;
max-width: calc(100% - 2rem);
display: inline-block;
- border-bottom: 1px solid #EEEEEE;
+ border-bottom: 1px solid #DEDEDE;
text-align: initial;
- height: 2rem;
+ height: 3rem;
}
.item:hover {
- border: 1px solid #66A7E8;
- background-color: #EEF4FF;
- margin: 4px 4px 9px 4px;
- border-radius: 2px;
+ background-color: #ecf9ff;
+ border-radius: 0.2rem;
}
.item-icon {
@@ -105,6 +111,7 @@
top: 0.3rem;
left: 3rem;
font-weight: 500;
+ font-size: 0.9rem;
}
.item-desc {
@@ -114,4 +121,40 @@
font-weight: 400;
font-size: 0.7rem;
color: gray;
+}
+
+.item-actions {
+ position: absolute;
+ bottom: 0.5rem;
+ right: 0rem;
+}
+
+.item-actions i.material-icons {
+ font-size: 1.1rem;
+ color: #aaaaaa;
+}
+
+.popup {
+ position: fixed;
+ top: 50%;
+ left: 50%;
+ width: 30rem;
+ max-width: 90%;
+ background-color: #201a12be;
+ font-family: 'Roboto Condensed', sans-serif;
+ font-weight: bold;
+ color: white;
+ padding: 1rem;
+ margin-left: -15rem;
+ margin-top: -2rem;
+ border-radius: 1rem;
+}
+
+.popup button {
+ background-color: #e2d9cd;
+ font-family: 'Open Sans', sans-serif;
+ font-weight: bold;
+ color: #424242;
+ border:0;
+ border-radius: 1rem;
}
\ No newline at end of file
diff --git a/Sunfish/ShareWeb/$sunfish/sunfish.js b/Sunfish/ShareWeb/$sunfish/sunfish.js
index 09bb79f..9a1d3dc 100644
--- a/Sunfish/ShareWeb/$sunfish/sunfish.js
+++ b/Sunfish/ShareWeb/$sunfish/sunfish.js
@@ -1,3 +1,55 @@
-function Sunfish(){
+function Sunfish() {
+ function build(def, into) {
+ var el;
+ if (!def.$) {
+ el = document.createTextNode(def);
+ if (into)
+ into.appendChild(el);
+ return el;
+ }
+ el = document.createElement(def.$);
+ var childs = def._;
+ delete def.$;
+ delete def._;
+ for (var i in def)
+ el[i] = def[i];
+ if (childs)
+ if (typeof childs == "string")
+ build(childs, el);
+ else
+ for (var i in childs)
+ build(childs[i], el);
+ if (into)
+ into.appendChild(el);
+ return el;
+ }
+
+ function ask(question, bt1, bt2, bt3, bt4, bt5) {
+ var def = { $: "div", className: "popup", _: [{ $: "div", _: question }] };
+ var el;
+ function addbt(bt) {
+ if (bt) {
+ if (bt.go)
+ bt.do = function () { document.location = bt.go };
+ def._.push({
+ $: "button", _: bt.b, onclick: function () {
+ bt.do();
+ document.body.removeChild(el);
+ }
+ });
+ }
+ }
+ addbt(bt1);
+ addbt(bt2);
+ addbt(bt3);
+ addbt(bt4);
+ addbt(bt5);
+ el=build(def, document.body);
+ }
+
+ this.build = build;
+ this.ask = ask;
}
+
+var sunfish = new Sunfish();
diff --git a/Sunfish/Sunfish/Form1.cs b/Sunfish/Sunfish/Form1.cs
index b2db193..3dbe37f 100644
--- a/Sunfish/Sunfish/Form1.cs
+++ b/Sunfish/Sunfish/Form1.cs
@@ -252,7 +252,6 @@
ssc.Enabled = true;
ssc.Settings[Services.WebServiceConfigurator.CFG_PATH] = fil;
ssc.Settings[Services.WebServiceConfigurator.CFG_SHARE] = true;
- ssc.Settings[Services.WebServiceConfigurator.CFG_NAVIGATION] = true;
EditConfiguration(ssc, null);
}
Activate();
diff --git a/Sunfish/Sunfish/Middleware/MimeTypes.cs b/Sunfish/Sunfish/Middleware/MimeTypes.cs
new file mode 100644
index 0000000..848e9af
--- /dev/null
+++ b/Sunfish/Sunfish/Middleware/MimeTypes.cs
@@ -0,0 +1,589 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DolphinWebXplorer2.Middleware
+{
+ class MimeTypes
+ {
+ private static IDictionary _mappings = new Dictionary(StringComparer.InvariantCultureIgnoreCase) {
+
+ #region Big freaking list of mime types
+ // combination of values from Windows 7 Registry and
+ // from C:\Windows\System32\inetsrv\config\applicationHost.config
+ // some added, including .7z and .dat
+ {".323", "text/h323"},
+ {".3g2", "video/3gpp2"},
+ {".3gp", "video/3gpp"},
+ {".3gp2", "video/3gpp2"},
+ {".3gpp", "video/3gpp"},
+ {".7z", "application/x-7z-compressed"},
+ {".aa", "audio/audible"},
+ {".AAC", "audio/aac"},
+ {".aaf", "application/octet-stream"},
+ {".aax", "audio/vnd.audible.aax"},
+ {".ac3", "audio/ac3"},
+ {".aca", "application/octet-stream"},
+ {".accda", "application/msaccess.addin"},
+ {".accdb", "application/msaccess"},
+ {".accdc", "application/msaccess.cab"},
+ {".accde", "application/msaccess"},
+ {".accdr", "application/msaccess.runtime"},
+ {".accdt", "application/msaccess"},
+ {".accdw", "application/msaccess.webapplication"},
+ {".accft", "application/msaccess.ftemplate"},
+ {".acx", "application/internet-property-stream"},
+ {".AddIn", "text/xml"},
+ {".ade", "application/msaccess"},
+ {".adobebridge", "application/x-bridge-url"},
+ {".adp", "application/msaccess"},
+ {".ADT", "audio/vnd.dlna.adts"},
+ {".ADTS", "audio/aac"},
+ {".afm", "application/octet-stream"},
+ {".ai", "application/postscript"},
+ {".aif", "audio/x-aiff"},
+ {".aifc", "audio/aiff"},
+ {".aiff", "audio/aiff"},
+ {".air", "application/vnd.adobe.air-application-installer-package+zip"},
+ {".amc", "application/x-mpeg"},
+ {".application", "application/x-ms-application"},
+ {".art", "image/x-jg"},
+ {".asa", "application/xml"},
+ {".asax", "application/xml"},
+ {".ascx", "application/xml"},
+ {".asd", "application/octet-stream"},
+ {".asf", "video/x-ms-asf"},
+ {".ashx", "application/xml"},
+ {".asi", "application/octet-stream"},
+ {".asm", "text/plain"},
+ {".asmx", "application/xml"},
+ {".aspx", "application/xml"},
+ {".asr", "video/x-ms-asf"},
+ {".asx", "video/x-ms-asf"},
+ {".atom", "application/atom+xml"},
+ {".au", "audio/basic"},
+ {".avi", "video/x-msvideo"},
+ {".axs", "application/olescript"},
+ {".bas", "text/plain"},
+ {".bcpio", "application/x-bcpio"},
+ {".bin", "application/octet-stream"},
+ {".bmp", "image/bmp"},
+ {".c", "text/plain"},
+ {".cab", "application/octet-stream"},
+ {".caf", "audio/x-caf"},
+ {".calx", "application/vnd.ms-office.calx"},
+ {".cat", "application/vnd.ms-pki.seccat"},
+ {".cc", "text/plain"},
+ {".cd", "text/plain"},
+ {".cdda", "audio/aiff"},
+ {".cdf", "application/x-cdf"},
+ {".cer", "application/x-x509-ca-cert"},
+ {".chm", "application/octet-stream"},
+ {".class", "application/x-java-applet"},
+ {".clp", "application/x-msclip"},
+ {".cmx", "image/x-cmx"},
+ {".cnf", "text/plain"},
+ {".cod", "image/cis-cod"},
+ {".config", "application/xml"},
+ {".contact", "text/x-ms-contact"},
+ {".coverage", "application/xml"},
+ {".cpio", "application/x-cpio"},
+ {".cpp", "text/plain"},
+ {".crd", "application/x-mscardfile"},
+ {".crl", "application/pkix-crl"},
+ {".crt", "application/x-x509-ca-cert"},
+ {".cs", "text/plain"},
+ {".csdproj", "text/plain"},
+ {".csh", "application/x-csh"},
+ {".csproj", "text/plain"},
+ {".css", "text/css"},
+ {".csv", "text/csv"},
+ {".cur", "application/octet-stream"},
+ {".cxx", "text/plain"},
+ {".dat", "application/octet-stream"},
+ {".datasource", "application/xml"},
+ {".dbproj", "text/plain"},
+ {".dcr", "application/x-director"},
+ {".def", "text/plain"},
+ {".deploy", "application/octet-stream"},
+ {".der", "application/x-x509-ca-cert"},
+ {".dgml", "application/xml"},
+ {".dib", "image/bmp"},
+ {".dif", "video/x-dv"},
+ {".dir", "application/x-director"},
+ {".disco", "text/xml"},
+ {".dll", "application/x-msdownload"},
+ {".dll.config", "text/xml"},
+ {".dlm", "text/dlm"},
+ {".doc", "application/msword"},
+ {".docm", "application/vnd.ms-word.document.macroEnabled.12"},
+ {".docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"},
+ {".dot", "application/msword"},
+ {".dotm", "application/vnd.ms-word.template.macroEnabled.12"},
+ {".dotx", "application/vnd.openxmlformats-officedocument.wordprocessingml.template"},
+ {".dsp", "application/octet-stream"},
+ {".dsw", "text/plain"},
+ {".dtd", "text/xml"},
+ {".dtsConfig", "text/xml"},
+ {".dv", "video/x-dv"},
+ {".dvi", "application/x-dvi"},
+ {".dwf", "drawing/x-dwf"},
+ {".dwp", "application/octet-stream"},
+ {".dxr", "application/x-director"},
+ {".eml", "message/rfc822"},
+ {".emz", "application/octet-stream"},
+ {".eot", "application/octet-stream"},
+ {".eps", "application/postscript"},
+ {".etl", "application/etl"},
+ {".etx", "text/x-setext"},
+ {".evy", "application/envoy"},
+ {".exe", "application/octet-stream"},
+ {".exe.config", "text/xml"},
+ {".fdf", "application/vnd.fdf"},
+ {".fif", "application/fractals"},
+ {".filters", "Application/xml"},
+ {".fla", "application/octet-stream"},
+ {".flr", "x-world/x-vrml"},
+ {".flv", "video/x-flv"},
+ {".fsscript", "application/fsharp-script"},
+ {".fsx", "application/fsharp-script"},
+ {".generictest", "application/xml"},
+ {".gif", "image/gif"},
+ {".group", "text/x-ms-group"},
+ {".gsm", "audio/x-gsm"},
+ {".gtar", "application/x-gtar"},
+ {".gz", "application/x-gzip"},
+ {".h", "text/plain"},
+ {".hdf", "application/x-hdf"},
+ {".hdml", "text/x-hdml"},
+ {".hhc", "application/x-oleobject"},
+ {".hhk", "application/octet-stream"},
+ {".hhp", "application/octet-stream"},
+ {".hlp", "application/winhlp"},
+ {".hpp", "text/plain"},
+ {".hqx", "application/mac-binhex40"},
+ {".hta", "application/hta"},
+ {".htc", "text/x-component"},
+ {".htm", "text/html"},
+ {".html", "text/html"},
+ {".htt", "text/webviewhtml"},
+ {".hxa", "application/xml"},
+ {".hxc", "application/xml"},
+ {".hxd", "application/octet-stream"},
+ {".hxe", "application/xml"},
+ {".hxf", "application/xml"},
+ {".hxh", "application/octet-stream"},
+ {".hxi", "application/octet-stream"},
+ {".hxk", "application/xml"},
+ {".hxq", "application/octet-stream"},
+ {".hxr", "application/octet-stream"},
+ {".hxs", "application/octet-stream"},
+ {".hxt", "text/html"},
+ {".hxv", "application/xml"},
+ {".hxw", "application/octet-stream"},
+ {".hxx", "text/plain"},
+ {".i", "text/plain"},
+ {".ico", "image/x-icon"},
+ {".ics", "application/octet-stream"},
+ {".idl", "text/plain"},
+ {".ief", "image/ief"},
+ {".iii", "application/x-iphone"},
+ {".inc", "text/plain"},
+ {".inf", "application/octet-stream"},
+ {".inl", "text/plain"},
+ {".ins", "application/x-internet-signup"},
+ {".ipa", "application/x-itunes-ipa"},
+ {".ipg", "application/x-itunes-ipg"},
+ {".ipproj", "text/plain"},
+ {".ipsw", "application/x-itunes-ipsw"},
+ {".iqy", "text/x-ms-iqy"},
+ {".isp", "application/x-internet-signup"},
+ {".ite", "application/x-itunes-ite"},
+ {".itlp", "application/x-itunes-itlp"},
+ {".itms", "application/x-itunes-itms"},
+ {".itpc", "application/x-itunes-itpc"},
+ {".IVF", "video/x-ivf"},
+ {".jar", "application/java-archive"},
+ {".java", "application/octet-stream"},
+ {".jck", "application/liquidmotion"},
+ {".jcz", "application/liquidmotion"},
+ {".jfif", "image/pjpeg"},
+ {".jnlp", "application/x-java-jnlp-file"},
+ {".jpb", "application/octet-stream"},
+ {".jpe", "image/jpeg"},
+ {".jpeg", "image/jpeg"},
+ {".jpg", "image/jpeg"},
+ {".js", "application/x-javascript"},
+ {".json", "application/json"},
+ {".jsx", "text/jscript"},
+ {".jsxbin", "text/plain"},
+ {".latex", "application/x-latex"},
+ {".library-ms", "application/windows-library+xml"},
+ {".lit", "application/x-ms-reader"},
+ {".loadtest", "application/xml"},
+ {".lpk", "application/octet-stream"},
+ {".lsf", "video/x-la-asf"},
+ {".lst", "text/plain"},
+ {".lsx", "video/x-la-asf"},
+ {".lzh", "application/octet-stream"},
+ {".m13", "application/x-msmediaview"},
+ {".m14", "application/x-msmediaview"},
+ {".m1v", "video/mpeg"},
+ {".m2t", "video/vnd.dlna.mpeg-tts"},
+ {".m2ts", "video/vnd.dlna.mpeg-tts"},
+ {".m2v", "video/mpeg"},
+ {".m3u", "audio/x-mpegurl"},
+ {".m3u8", "audio/x-mpegurl"},
+ {".m4a", "audio/m4a"},
+ {".m4b", "audio/m4b"},
+ {".m4p", "audio/m4p"},
+ {".m4r", "audio/x-m4r"},
+ {".m4v", "video/x-m4v"},
+ {".mac", "image/x-macpaint"},
+ {".mak", "text/plain"},
+ {".man", "application/x-troff-man"},
+ {".manifest", "application/x-ms-manifest"},
+ {".map", "text/plain"},
+ {".master", "application/xml"},
+ {".mda", "application/msaccess"},
+ {".mdb", "application/x-msaccess"},
+ {".mde", "application/msaccess"},
+ {".mdp", "application/octet-stream"},
+ {".me", "application/x-troff-me"},
+ {".mfp", "application/x-shockwave-flash"},
+ {".mht", "message/rfc822"},
+ {".mhtml", "message/rfc822"},
+ {".mid", "audio/mid"},
+ {".midi", "audio/mid"},
+ {".mix", "application/octet-stream"},
+ {".mk", "text/plain"},
+ {".mmf", "application/x-smaf"},
+ {".mno", "text/xml"},
+ {".mny", "application/x-msmoney"},
+ {".mod", "video/mpeg"},
+ {".mov", "video/quicktime"},
+ {".movie", "video/x-sgi-movie"},
+ {".mp2", "video/mpeg"},
+ {".mp2v", "video/mpeg"},
+ {".mp3", "audio/mpeg"},
+ {".mp4", "video/mp4"},
+ {".mp4v", "video/mp4"},
+ {".mpa", "video/mpeg"},
+ {".mpe", "video/mpeg"},
+ {".mpeg", "video/mpeg"},
+ {".mpf", "application/vnd.ms-mediapackage"},
+ {".mpg", "video/mpeg"},
+ {".mpp", "application/vnd.ms-project"},
+ {".mpv2", "video/mpeg"},
+ {".mqv", "video/quicktime"},
+ {".ms", "application/x-troff-ms"},
+ {".msi", "application/octet-stream"},
+ {".mso", "application/octet-stream"},
+ {".mts", "video/vnd.dlna.mpeg-tts"},
+ {".mtx", "application/xml"},
+ {".mvb", "application/x-msmediaview"},
+ {".mvc", "application/x-miva-compiled"},
+ {".mxp", "application/x-mmxp"},
+ {".nc", "application/x-netcdf"},
+ {".nsc", "video/x-ms-asf"},
+ {".nws", "message/rfc822"},
+ {".ocx", "application/octet-stream"},
+ {".oda", "application/oda"},
+ {".odc", "text/x-ms-odc"},
+ {".odh", "text/plain"},
+ {".odl", "text/plain"},
+ {".odp", "application/vnd.oasis.opendocument.presentation"},
+ {".ods", "application/oleobject"},
+ {".odt", "application/vnd.oasis.opendocument.text"},
+ {".one", "application/onenote"},
+ {".onea", "application/onenote"},
+ {".onepkg", "application/onenote"},
+ {".onetmp", "application/onenote"},
+ {".onetoc", "application/onenote"},
+ {".onetoc2", "application/onenote"},
+ {".orderedtest", "application/xml"},
+ {".osdx", "application/opensearchdescription+xml"},
+ {".p10", "application/pkcs10"},
+ {".p12", "application/x-pkcs12"},
+ {".p7b", "application/x-pkcs7-certificates"},
+ {".p7c", "application/pkcs7-mime"},
+ {".p7m", "application/pkcs7-mime"},
+ {".p7r", "application/x-pkcs7-certreqresp"},
+ {".p7s", "application/pkcs7-signature"},
+ {".pbm", "image/x-portable-bitmap"},
+ {".pcast", "application/x-podcast"},
+ {".pct", "image/pict"},
+ {".pcx", "application/octet-stream"},
+ {".pcz", "application/octet-stream"},
+ {".pdf", "application/pdf"},
+ {".pfb", "application/octet-stream"},
+ {".pfm", "application/octet-stream"},
+ {".pfx", "application/x-pkcs12"},
+ {".pgm", "image/x-portable-graymap"},
+ {".pic", "image/pict"},
+ {".pict", "image/pict"},
+ {".pkgdef", "text/plain"},
+ {".pkgundef", "text/plain"},
+ {".pko", "application/vnd.ms-pki.pko"},
+ {".pls", "audio/scpls"},
+ {".pma", "application/x-perfmon"},
+ {".pmc", "application/x-perfmon"},
+ {".pml", "application/x-perfmon"},
+ {".pmr", "application/x-perfmon"},
+ {".pmw", "application/x-perfmon"},
+ {".png", "image/png"},
+ {".pnm", "image/x-portable-anymap"},
+ {".pnt", "image/x-macpaint"},
+ {".pntg", "image/x-macpaint"},
+ {".pnz", "image/png"},
+ {".pot", "application/vnd.ms-powerpoint"},
+ {".potm", "application/vnd.ms-powerpoint.template.macroEnabled.12"},
+ {".potx", "application/vnd.openxmlformats-officedocument.presentationml.template"},
+ {".ppa", "application/vnd.ms-powerpoint"},
+ {".ppam", "application/vnd.ms-powerpoint.addin.macroEnabled.12"},
+ {".ppm", "image/x-portable-pixmap"},
+ {".pps", "application/vnd.ms-powerpoint"},
+ {".ppsm", "application/vnd.ms-powerpoint.slideshow.macroEnabled.12"},
+ {".ppsx", "application/vnd.openxmlformats-officedocument.presentationml.slideshow"},
+ {".ppt", "application/vnd.ms-powerpoint"},
+ {".pptm", "application/vnd.ms-powerpoint.presentation.macroEnabled.12"},
+ {".pptx", "application/vnd.openxmlformats-officedocument.presentationml.presentation"},
+ {".prf", "application/pics-rules"},
+ {".prm", "application/octet-stream"},
+ {".prx", "application/octet-stream"},
+ {".ps", "application/postscript"},
+ {".psc1", "application/PowerShell"},
+ {".psd", "application/octet-stream"},
+ {".psess", "application/xml"},
+ {".psm", "application/octet-stream"},
+ {".psp", "application/octet-stream"},
+ {".pub", "application/x-mspublisher"},
+ {".pwz", "application/vnd.ms-powerpoint"},
+ {".qht", "text/x-html-insertion"},
+ {".qhtm", "text/x-html-insertion"},
+ {".qt", "video/quicktime"},
+ {".qti", "image/x-quicktime"},
+ {".qtif", "image/x-quicktime"},
+ {".qtl", "application/x-quicktimeplayer"},
+ {".qxd", "application/octet-stream"},
+ {".ra", "audio/x-pn-realaudio"},
+ {".ram", "audio/x-pn-realaudio"},
+ {".rar", "application/octet-stream"},
+ {".ras", "image/x-cmu-raster"},
+ {".rat", "application/rat-file"},
+ {".rc", "text/plain"},
+ {".rc2", "text/plain"},
+ {".rct", "text/plain"},
+ {".rdlc", "application/xml"},
+ {".resx", "application/xml"},
+ {".rf", "image/vnd.rn-realflash"},
+ {".rgb", "image/x-rgb"},
+ {".rgs", "text/plain"},
+ {".rm", "application/vnd.rn-realmedia"},
+ {".rmi", "audio/mid"},
+ {".rmp", "application/vnd.rn-rn_music_package"},
+ {".roff", "application/x-troff"},
+ {".rpm", "audio/x-pn-realaudio-plugin"},
+ {".rqy", "text/x-ms-rqy"},
+ {".rtf", "application/rtf"},
+ {".rtx", "text/richtext"},
+ {".ruleset", "application/xml"},
+ {".s", "text/plain"},
+ {".safariextz", "application/x-safari-safariextz"},
+ {".scd", "application/x-msschedule"},
+ {".sct", "text/scriptlet"},
+ {".sd2", "audio/x-sd2"},
+ {".sdp", "application/sdp"},
+ {".sea", "application/octet-stream"},
+ {".searchConnector-ms", "application/windows-search-connector+xml"},
+ {".setpay", "application/set-payment-initiation"},
+ {".setreg", "application/set-registration-initiation"},
+ {".settings", "application/xml"},
+ {".sgimb", "application/x-sgimb"},
+ {".sgml", "text/sgml"},
+ {".sh", "application/x-sh"},
+ {".shar", "application/x-shar"},
+ {".shtml", "text/html"},
+ {".sit", "application/x-stuffit"},
+ {".sitemap", "application/xml"},
+ {".skin", "application/xml"},
+ {".sldm", "application/vnd.ms-powerpoint.slide.macroEnabled.12"},
+ {".sldx", "application/vnd.openxmlformats-officedocument.presentationml.slide"},
+ {".slk", "application/vnd.ms-excel"},
+ {".sln", "text/plain"},
+ {".slupkg-ms", "application/x-ms-license"},
+ {".smd", "audio/x-smd"},
+ {".smi", "application/octet-stream"},
+ {".smx", "audio/x-smd"},
+ {".smz", "audio/x-smd"},
+ {".snd", "audio/basic"},
+ {".snippet", "application/xml"},
+ {".snp", "application/octet-stream"},
+ {".sol", "text/plain"},
+ {".sor", "text/plain"},
+ {".spc", "application/x-pkcs7-certificates"},
+ {".spl", "application/futuresplash"},
+ {".src", "application/x-wais-source"},
+ {".srf", "text/plain"},
+ {".SSISDeploymentManifest", "text/xml"},
+ {".ssm", "application/streamingmedia"},
+ {".sst", "application/vnd.ms-pki.certstore"},
+ {".stl", "application/vnd.ms-pki.stl"},
+ {".sv4cpio", "application/x-sv4cpio"},
+ {".sv4crc", "application/x-sv4crc"},
+ {".svc", "application/xml"},
+ {".swf", "application/x-shockwave-flash"},
+ {".t", "application/x-troff"},
+ {".tar", "application/x-tar"},
+ {".tcl", "application/x-tcl"},
+ {".testrunconfig", "application/xml"},
+ {".testsettings", "application/xml"},
+ {".tex", "application/x-tex"},
+ {".texi", "application/x-texinfo"},
+ {".texinfo", "application/x-texinfo"},
+ {".tgz", "application/x-compressed"},
+ {".thmx", "application/vnd.ms-officetheme"},
+ {".thn", "application/octet-stream"},
+ {".tif", "image/tiff"},
+ {".tiff", "image/tiff"},
+ {".tlh", "text/plain"},
+ {".tli", "text/plain"},
+ {".toc", "application/octet-stream"},
+ {".tr", "application/x-troff"},
+ {".trm", "application/x-msterminal"},
+ {".trx", "application/xml"},
+ {".ts", "video/vnd.dlna.mpeg-tts"},
+ {".tsv", "text/tab-separated-values"},
+ {".ttf", "application/octet-stream"},
+ {".tts", "video/vnd.dlna.mpeg-tts"},
+ {".txt", "text/plain"},
+ {".u32", "application/octet-stream"},
+ {".uls", "text/iuls"},
+ {".user", "text/plain"},
+ {".ustar", "application/x-ustar"},
+ {".vb", "text/plain"},
+ {".vbdproj", "text/plain"},
+ {".vbk", "video/mpeg"},
+ {".vbproj", "text/plain"},
+ {".vbs", "text/vbscript"},
+ {".vcf", "text/x-vcard"},
+ {".vcproj", "Application/xml"},
+ {".vcs", "text/plain"},
+ {".vcxproj", "Application/xml"},
+ {".vddproj", "text/plain"},
+ {".vdp", "text/plain"},
+ {".vdproj", "text/plain"},
+ {".vdx", "application/vnd.ms-visio.viewer"},
+ {".vml", "text/xml"},
+ {".vscontent", "application/xml"},
+ {".vsct", "text/xml"},
+ {".vsd", "application/vnd.visio"},
+ {".vsi", "application/ms-vsi"},
+ {".vsix", "application/vsix"},
+ {".vsixlangpack", "text/xml"},
+ {".vsixmanifest", "text/xml"},
+ {".vsmdi", "application/xml"},
+ {".vspscc", "text/plain"},
+ {".vss", "application/vnd.visio"},
+ {".vsscc", "text/plain"},
+ {".vssettings", "text/xml"},
+ {".vssscc", "text/plain"},
+ {".vst", "application/vnd.visio"},
+ {".vstemplate", "text/xml"},
+ {".vsto", "application/x-ms-vsto"},
+ {".vsw", "application/vnd.visio"},
+ {".vsx", "application/vnd.visio"},
+ {".vtx", "application/vnd.visio"},
+ {".wav", "audio/wav"},
+ {".wave", "audio/wav"},
+ {".wax", "audio/x-ms-wax"},
+ {".wbk", "application/msword"},
+ {".wbmp", "image/vnd.wap.wbmp"},
+ {".wcm", "application/vnd.ms-works"},
+ {".wdb", "application/vnd.ms-works"},
+ {".wdp", "image/vnd.ms-photo"},
+ {".webarchive", "application/x-safari-webarchive"},
+ {".webtest", "application/xml"},
+ {".wiq", "application/xml"},
+ {".wiz", "application/msword"},
+ {".wks", "application/vnd.ms-works"},
+ {".WLMP", "application/wlmoviemaker"},
+ {".wlpginstall", "application/x-wlpg-detect"},
+ {".wlpginstall3", "application/x-wlpg3-detect"},
+ {".wm", "video/x-ms-wm"},
+ {".wma", "audio/x-ms-wma"},
+ {".wmd", "application/x-ms-wmd"},
+ {".wmf", "application/x-msmetafile"},
+ {".wml", "text/vnd.wap.wml"},
+ {".wmlc", "application/vnd.wap.wmlc"},
+ {".wmls", "text/vnd.wap.wmlscript"},
+ {".wmlsc", "application/vnd.wap.wmlscriptc"},
+ {".wmp", "video/x-ms-wmp"},
+ {".wmv", "video/x-ms-wmv"},
+ {".wmx", "video/x-ms-wmx"},
+ {".wmz", "application/x-ms-wmz"},
+ {".wpl", "application/vnd.ms-wpl"},
+ {".wps", "application/vnd.ms-works"},
+ {".wri", "application/x-mswrite"},
+ {".wrl", "x-world/x-vrml"},
+ {".wrz", "x-world/x-vrml"},
+ {".wsc", "text/scriptlet"},
+ {".wsdl", "text/xml"},
+ {".wvx", "video/x-ms-wvx"},
+ {".x", "application/directx"},
+ {".xaf", "x-world/x-vrml"},
+ {".xaml", "application/xaml+xml"},
+ {".xap", "application/x-silverlight-app"},
+ {".xbap", "application/x-ms-xbap"},
+ {".xbm", "image/x-xbitmap"},
+ {".xdr", "text/plain"},
+ {".xht", "application/xhtml+xml"},
+ {".xhtml", "application/xhtml+xml"},
+ {".xla", "application/vnd.ms-excel"},
+ {".xlam", "application/vnd.ms-excel.addin.macroEnabled.12"},
+ {".xlc", "application/vnd.ms-excel"},
+ {".xld", "application/vnd.ms-excel"},
+ {".xlk", "application/vnd.ms-excel"},
+ {".xll", "application/vnd.ms-excel"},
+ {".xlm", "application/vnd.ms-excel"},
+ {".xls", "application/vnd.ms-excel"},
+ {".xlsb", "application/vnd.ms-excel.sheet.binary.macroEnabled.12"},
+ {".xlsm", "application/vnd.ms-excel.sheet.macroEnabled.12"},
+ {".xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"},
+ {".xlt", "application/vnd.ms-excel"},
+ {".xltm", "application/vnd.ms-excel.template.macroEnabled.12"},
+ {".xltx", "application/vnd.openxmlformats-officedocument.spreadsheetml.template"},
+ {".xlw", "application/vnd.ms-excel"},
+ {".xml", "text/xml"},
+ {".xmta", "application/xml"},
+ {".xof", "x-world/x-vrml"},
+ {".XOML", "text/plain"},
+ {".xpm", "image/x-xpixmap"},
+ {".xps", "application/vnd.ms-xpsdocument"},
+ {".xrm-ms", "text/xml"},
+ {".xsc", "application/xml"},
+ {".xsd", "text/xml"},
+ {".xsf", "text/xml"},
+ {".xsl", "text/xml"},
+ {".xslt", "text/xml"},
+ {".xsn", "application/octet-stream"},
+ {".xss", "application/xml"},
+ {".xtp", "application/octet-stream"},
+ {".xwd", "image/x-xwindowdump"},
+ {".z", "application/x-compress"},
+ {".zip", "application/x-zip-compressed"},
+ #endregion
+
+ };
+
+ public static string GetMimeType(string extension)
+ {
+ if (!extension.StartsWith("."))
+ extension = "." + extension;
+ string mime;
+ return _mappings.TryGetValue(extension, out mime) ? mime : "application/octet-stream";
+ }
+ }
+}
diff --git a/Sunfish/Sunfish/Middleware/Templater.cs b/Sunfish/Sunfish/Middleware/Templater.cs
index ca50c7e..004d6cd 100644
--- a/Sunfish/Sunfish/Middleware/Templater.cs
+++ b/Sunfish/Sunfish/Middleware/Templater.cs
@@ -1,5 +1,6 @@
using Microsoft.SqlServer.Server;
using System;
+using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
@@ -11,7 +12,28 @@
{
public class Templater
{
- private List parts = new List();
+ enum TempaltePartMode
+ {
+ Literal, Value, Start, End, Call
+ }
+
+ class TemplatePart
+ {
+ public TempaltePartMode Mode;
+ public string Key;
+
+ public TemplatePart(TempaltePartMode mode, string key)
+ {
+ Mode = mode;
+ Key = key;
+ }
+ public override string ToString()
+ {
+ return "Part <" + Mode + " " + Key + ">";
+ }
+ }
+
+ private List parts = new List();
public Templater(string template)
{
@@ -29,24 +51,43 @@
if (!key && c == '{')
{
key = true;
- parts.Add(sb.ToString());
+ string p = sb.ToString();
+ if (!string.IsNullOrWhiteSpace(p))
+ parts.Add(new TemplatePart(TempaltePartMode.Literal, p));
sb.Clear();
}
else if (key && c == '}')
{
key = false;
- parts.Add(sb.ToString());
+ string p = sb.ToString().Trim();
+ if (p.Length > 0)
+ if (p.StartsWith("@"))
+ parts.Add(new TemplatePart(TempaltePartMode.Start, p.Substring(1)));
+ else if (p.StartsWith("%"))
+ parts.Add(new TemplatePart(TempaltePartMode.Call, p.Substring(1)));
+ else if (p == "/")
+ parts.Add(new TemplatePart(TempaltePartMode.End, null));
+ else if (p == "{")
+ parts.Add(new TemplatePart(TempaltePartMode.Literal, p));
+ else parts.Add(new TemplatePart(TempaltePartMode.Value, p));
sb.Clear();
}
else
sb.Append(c);
}
if (sb.Length > 0)
- parts.Add(sb.ToString());
+ if (key)
+ throw new Exception("Template placeholder not closed");
+ else
+ parts.Add(new TemplatePart(TempaltePartMode.Literal, sb.ToString().Trim()));
}
- private string GetValue(string key, object[] data)
+ private object GetValue(string key, object[] data)
{
+ if (key == "AppName")
+ return "Sunfish";
+ if (key == "AppVersion")
+ return Program.VERSION;
foreach (object o in data)
{
if (o == null)
@@ -56,10 +97,7 @@
Dictionary d = (Dictionary)o;
object v;
if (d.TryGetValue(key, out v))
- if (v == null)
- return null;
- else
- return v.ToString();
+ return v;
}
else
{
@@ -70,7 +108,7 @@
if (p != null)
{
object v = p.GetValue(o);
- return v?.ToString();
+ return v;
}
}
catch { };
@@ -82,24 +120,74 @@
public string Process(params object[] data)
{
StringBuilder sb = new StringBuilder();
- bool key = false;
- foreach (string s in parts)
+ int level = 0;
+ int ignore = int.MaxValue;
+ foreach (TemplatePart s in parts)
{
- if (key)
+ switch (s.Mode)
{
- key = false;
- string v = GetValue(s, data);
- if (!string.IsNullOrEmpty(v))
- sb.Append(v);
- }
- else
- {
- key = true;
- sb.Append(s);
+ case TempaltePartMode.Value:
+ if (level < ignore)
+ {
+ string v = GetValue(s.Key, data)?.ToString();
+ if (!string.IsNullOrEmpty(v))
+ sb.Append(v);
+ }
+ break;
+ case TempaltePartMode.Literal:
+ if (level < ignore)
+ sb.Append(s.Key);
+ break;
+ case TempaltePartMode.Start:
+ level++;
+ if (level < ignore)
+ {
+ object v = GetValue(s.Key, data);
+ if (v == null || (v is string && ((string)v).Length == 0))
+ ignore = level;
+ }
+ break;
+ case TempaltePartMode.End:
+ level--;
+ if (level < ignore)
+ ignore = int.MaxValue;
+ break;
+ case TempaltePartMode.Call:
+ if (level < ignore)
+ {
+ string[] cmd = s.Key.Split(':');
+ if (cmd.Length != 2)
+ throw new Exception("Template call placeholder format is :");
+ object v;
+ if (cmd[0].Length > 0)
+ {
+ v = GetValue(cmd[0], data);
+ if (v == null)
+ break;
+ }
+ else v = data;
+ Templater templ = WebUI.Templs[cmd[1]];
+ if (templ == null)
+ break;
+ if (v is Array)
+ {
+ foreach (object o in (Array)v)
+ if (o != null)
+ sb.Append(templ.Process(o));
+ }
+ else if (v is IList)
+ {
+ foreach (object o in (IList)v)
+ if (o != null)
+ sb.Append(templ.Process(o));
+ }
+ else
+ sb.Append(templ.Process(v));
+ }
+ break;
}
}
return sb.ToString();
}
-
}
}
diff --git a/Sunfish/Sunfish/Middleware/WebUI.cs b/Sunfish/Sunfish/Middleware/WebUI.cs
index 24a7478..d2dcea2 100644
--- a/Sunfish/Sunfish/Middleware/WebUI.cs
+++ b/Sunfish/Sunfish/Middleware/WebUI.cs
@@ -19,13 +19,9 @@
private static string rpath = @"C:\Users\XWolf\Source\Repos\Sunfish\Sunfish\ShareWeb\$sunfish";
private const string SECBEGIN = "";
- private static Dictionary BaseData = new Dictionary()
- {
- ["AppName"] = "Sunfish",
- ["AppVersion"] = Program.VERSION,
- };
+ public static Dictionary Templs = new Dictionary();
- public static void InitResources()
+ public static void InitResources() //TODO: Now calling from several sites, in future make private and call in static ctor
{
Templs.Clear();
string template = File.ReadAllText(Path.Combine(rpath, "$index.html"));
@@ -47,38 +43,18 @@
Templs[tname] = new Templater(template);
}
- private static Dictionary Templs = new Dictionary();
-
#endregion
- public static void WriteHeader(WebUILink[] breadcrumb, WebUILink[] toolbar, HttpCall call)
- {
- call.Write(Templs["head-a"].Process(BaseData));
- if (breadcrumb != null)
- foreach (WebUILink l in breadcrumb)
- call.Write(Templs["head-location-item"].Process(l, BaseData));
- call.Write(Templs["head-b"].Process(BaseData));
- if (breadcrumb != null)
- foreach (WebUILink l in breadcrumb)
- call.Write(Templs["head-toolbar-item"].Process(l, BaseData));
- call.Write(Templs["head-c"].Process(BaseData));
- }
-
- public static void WriteFooter(HttpCall call)
- {
- call.Write(Templs["footer"].Process(BaseData));
- }
-
- public static void WriteItem(WebUILink item, HttpCall call)
- {
- call.Write(Templs["item"].Process(item, BaseData));
- }
-
public static void WriteResource(string path, HttpCall call)
{
call.Write(File.ReadAllBytes(Path.Combine(rpath, path)));
}
+ public static void WriteTemplate(string template, HttpCall call, params object[] para)
+ {
+ call.Write(Templs[template].Process(para));
+ }
+
public static string FBytes(double lng)
{
string[] tail = { " bytes", "Kb", "Mb", "Gb", "Tb", "Pb", "Yb" };
@@ -90,7 +66,6 @@
}
return lng.ToString("#0.00") + (taili >= tail.Length ? "^b" : tail[taili]);
}
-
}
public class WebUILink
@@ -100,7 +75,8 @@
public string Link { get; set; }
public string Icon { get; set; }
public string Tooltip { get; set; }
-
- public string Styles { get; set; }
+ public string Style { get; set; }
+ public string Click { get; set; }
+ public WebUILink[] Actions { get; set; }
}
}
diff --git a/Sunfish/Sunfish/Program.cs b/Sunfish/Sunfish/Program.cs
index bbf0cdb..325ebf9 100644
--- a/Sunfish/Sunfish/Program.cs
+++ b/Sunfish/Sunfish/Program.cs
@@ -7,7 +7,7 @@
{
static class Program
{
- public static string VERSION = "2.0(alpha5)";
+ public static string VERSION = "2.0b1";
private static Form1 mainform;
///
/// Punto de entrada principal para la aplicación.
diff --git a/Sunfish/Sunfish/Services/RootService.cs b/Sunfish/Sunfish/Services/RootService.cs
index 913f8c8..ce669de 100644
--- a/Sunfish/Sunfish/Services/RootService.cs
+++ b/Sunfish/Sunfish/Services/RootService.cs
@@ -1,5 +1,6 @@
using DolphinWebXplorer2.Middleware;
using System;
+using System.Collections.Generic;
using System.IO;
using System.Linq.Expressions;
using System.Reflection;
@@ -40,20 +41,24 @@
// Root page
if (ShowMenu)
{
- WebUI.WriteHeader(new WebUILink[] { LinkHome }, null, call);
+ List items = new List();
foreach (SunfishService s in Sunfish.Services)
{
if (!s.Enabled)
continue;
- WebUI.WriteItem(new WebUILink()
+ items.Add(new WebUILink()
{
Icon = "/$sunfish/folder.png",
Name = s.Configuration.Name,
Description = s.Configuration.Location,
Link = s.Configuration.Location,
- }, call);
+ });
}
- WebUI.WriteFooter(call);
+ Dictionary data = new Dictionary();
+ data["Breadcrumb"] = new WebUILink[] { LinkHome };
+ //data["Actions"] = actions;
+ data["Items"] = items;
+ WebUI.WriteTemplate("directory-index", call, data);
}
else
call.Response.StatusCode = 404;
@@ -91,7 +96,6 @@
ApiRest.WriteError("Format only supports 'js' and 'json'.", call);
break;
}
-
}
else
{
diff --git a/Sunfish/Sunfish/Services/WebService.cs b/Sunfish/Sunfish/Services/WebService.cs
index b7bb026..7335dcd 100644
--- a/Sunfish/Sunfish/Services/WebService.cs
+++ b/Sunfish/Sunfish/Services/WebService.cs
@@ -15,7 +15,9 @@
private VFS vfs = new VFS();
private string index;
private bool allowNavigation;
- private bool allowSubfolderNavigation;
+ private bool allowDelete;
+ private bool allowExec;
+ private bool readOnly;
public WebService(SunfishServiceConfiguration ssc) : base(ssc)
{
vfs.AddVirtualFolder(null, new VFSFolderFileSystem(ssc.GetConf(WebServiceConfigurator.CFG_PATH)));
@@ -23,7 +25,9 @@
if (string.IsNullOrWhiteSpace(index))
index = null;
allowNavigation = ssc.GetConf(WebServiceConfigurator.CFG_SHARE);
- allowSubfolderNavigation = ssc.GetConf(WebServiceConfigurator.CFG_NAVIGATION);
+ allowDelete = ssc.GetConf(WebServiceConfigurator.CFG_DELETE);
+ allowExec = ssc.GetConf(WebServiceConfigurator.CFG_EXECUTE);
+ readOnly = ssc.GetConf(WebServiceConfigurator.CFG_RONLY);
}
#region WebServer
@@ -39,18 +43,18 @@
ErrorPage(500, call, text);
}
- private void DownloadAt(string path, HttpCall call)
- {
- using (Stream s = vfs.OpenRead(path))
- {
- if (s == null)
- {
- Error500(call, "Problem transfering file");
- return;
- }
- call.Out.BaseStream.TransferFrom(s);
- }
- }
+ //private void DownloadAt(string path, HttpCall call)
+ //{
+ // using (Stream s = vfs.OpenRead(path))
+ // {
+ // if (s == null)
+ // {
+ // Error500(call, "Problem transfering file");
+ // return;
+ // }
+ // call.Out.BaseStream.TransferFrom(s);
+ // }
+ //}
private void DownloadAt(VFSItem item, HttpCall call)
{
@@ -61,6 +65,7 @@
Error500(call, "Problem transfering file");
return;
}
+ call.Response.ContentType = MimeTypes.GetMimeType(Path.GetExtension(item.Name));
call.Out.BaseStream.TransferFrom(s);
}
}
@@ -189,43 +194,53 @@
private void WriteIndex(string path, VFSItem dir, HttpCall call)
{
- WebUI.InitResources();
- WebUI.WriteHeader(getBreadcrumb(path), null, call);
+ List items = new List();
List fileList = new List();
- if (allowSubfolderNavigation)
+ foreach (string d in dir.ListDirectories())
+ fileList.Add(d);
+ fileList.Sort();
+ foreach (string d in fileList)
{
- foreach (string d in dir.ListDirectories())
- fileList.Add(d);
- fileList.Sort();
- foreach (string d in fileList)
+ items.Add(new WebUILink()
{
- WebUI.WriteItem(new WebUILink()
- {
- Icon = "/$sunfish/folder.png",
- Name = d,
- Description = "Directory",
- Link = d + "/"
- }, call);
- }
- fileList.Clear();
+ Icon = "/$sunfish/folder.png",
+ Name = d,
+ Description = "Directory",
+ Link = d + "/"
+ });
}
+ fileList.Clear();
foreach (string d in dir.ListFiles())
fileList.Add(d);
fileList.Sort();
foreach (string d in fileList)
{
- WebUI.WriteItem(new WebUILink()
+ items.Add(new WebUILink()
{
Icon = d + "?meta=icon",
Name = d,
Description = "File",
- Link = d
- }, call);
+ Link = d,
+ Actions = new WebUILink[]{
+ allowDelete?new WebUILink()
+ {
+ Icon="delete",
+ Tooltip="Delete file",
+ //Link="?action=delete"
+ Click="sunfish.ask('Sure to delete?',{b:'Cancel'},{b:'Delete',color:'red',go:'?action=delete&file="+d+"'});"
+ }:null
+ }
+ }); ;
}
- WebUI.WriteFooter(call);
+ WebUI.InitResources();
+ Dictionary data = new Dictionary();
+ data["Breadcrumb"] = GetBreadcrumb(path);
+ //data["Actions"] = actions;
+ data["Items"] = items;
+ WebUI.WriteTemplate("directory-index", call, data);
}
- private WebUILink[] getBreadcrumb(string path)
+ private WebUILink[] GetBreadcrumb(string path)
{
string link = "";
path = Configuration.Location + path;
diff --git a/Sunfish/Sunfish/Services/WebServiceConfigurator.cs b/Sunfish/Sunfish/Services/WebServiceConfigurator.cs
index 9ae7830..6b02872 100644
--- a/Sunfish/Sunfish/Services/WebServiceConfigurator.cs
+++ b/Sunfish/Sunfish/Services/WebServiceConfigurator.cs
@@ -8,10 +8,7 @@
internal const string CFG_PATH = "path";
internal const string CFG_INDEX = "defaultFile";
internal const string CFG_SHARE = "folderShare";
- internal const string CFG_NAVIGATION = "allowSubfolderNavigation";
- internal const string CFG_UPLOAD = "allowUploads";
- internal const string CFG_EDITOR = "allowEditor";
- internal const string CFG_RENAME = "allowRenaming";
+ internal const string CFG_RONLY = "readOnly";
internal const string CFG_DELETE = "allowDeletion";
internal const string CFG_EXECUTE = "allowServerExecution";
@@ -38,28 +35,16 @@
Tooltip = "Default document for directory path",
DefaultValue = "index.html"
},
- new ConfigurationBool(CFG_SHARE,"Folder share")
+ new ConfigurationBool(CFG_SHARE,"Folder share (Web && DAV)")
{
- Tooltip = "Allow directory listings, switched off the server will report a forbidden message if the directory has no default file.",
+ Tooltip = "Allow directory listings, switched off the server will report a forbidden message if the directory has no default file. Also enables DAV protocol",
DefaultValue = true,
},
- new ConfigurationBool(CFG_NAVIGATION,"Subfolder navigation")
+ new ConfigurationBool(CFG_RONLY,"Read only")
{
- Tooltip = "Allow subfolder navigation.",
+ Tooltip = "Avoids upload of files and folders, create folders, edit files, copy and move.",
DefaultValue = true,
},
- new ConfigurationBool(CFG_UPLOAD,"Allow upload")
- {
- Tooltip = "Allow upload of files and folders, also enables the create folder option if subfolder navigation is enabled."
- },
- new ConfigurationBool(CFG_EDITOR,"Allow text editor")
- {
- Tooltip = "Allow text file creation and edition, also enables the create folder option if subfolder navigation is enabled."
- },
- new ConfigurationBool(CFG_RENAME,"Allow rename")
- {
- Tooltip = "Allow raname of server files and folders."
- },
new ConfigurationBool(CFG_DELETE,"Allow delete")
{
Tooltip = "Allow delete files and folders."
diff --git a/Sunfish/Sunfish/Sunfish.csproj b/Sunfish/Sunfish/Sunfish.csproj
index 9e38780..19a8a8b 100644
--- a/Sunfish/Sunfish/Sunfish.csproj
+++ b/Sunfish/Sunfish/Sunfish.csproj
@@ -108,6 +108,7 @@
+