From 49a058856589de208b9abc094630be8678de1459 Mon Sep 17 00:00:00 2001 From: Evgeny Gryaznov Date: Tue, 21 Oct 2008 22:04:45 +0000 Subject: [PATCH] initial site git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@189 c66351dc-e62f-0410-b875-e3a5c0b9693f --- site/demo.html | 37 ++++++ site/download.html | 43 ++++++ site/features.html | 96 ++++++++++++++ site/index.html | 49 +++++++ site/niftyCorners.css | 35 +++++ site/niftycube.js | 298 ++++++++++++++++++++++++++++++++++++++++++ site/styles.css | 31 +++++ site/webimlogo.gif | Bin 0 -> 1146 bytes 8 files changed, 589 insertions(+) create mode 100644 site/demo.html create mode 100644 site/download.html create mode 100644 site/features.html create mode 100644 site/index.html create mode 100644 site/niftyCorners.css create mode 100644 site/niftycube.js create mode 100644 site/styles.css create mode 100644 site/webimlogo.gif diff --git a/site/demo.html b/site/demo.html new file mode 100644 index 00000000..ed9b827d --- /dev/null +++ b/site/demo.html @@ -0,0 +1,37 @@ + + + +Web Messenger + + + + + + + +
+
+

DEMO

+

Sorry, demo is not available yet.

+
+
+ + diff --git a/site/download.html b/site/download.html new file mode 100644 index 00000000..2f73a649 --- /dev/null +++ b/site/download.html @@ -0,0 +1,43 @@ + + + +Web Messenger + + + + + + + +
+
+

Latest release

+ + + +
+
+ + diff --git a/site/features.html b/site/features.html new file mode 100644 index 00000000..d78262da --- /dev/null +++ b/site/features.html @@ -0,0 +1,96 @@ + + + +Web Messenger + + + + + + + +
+ + +
+ + diff --git a/site/index.html b/site/index.html new file mode 100644 index 00000000..1c374fc4 --- /dev/null +++ b/site/index.html @@ -0,0 +1,49 @@ + + + +Web Messenger + + + + + + + +
+
+

What is Web Messenger?

+

"Web Messenger" - is unique software allowing visitors of your site to chat with your operators.

+ +

Why should I use Web Messenger?

+

"Web Messenger" makes it easier to communicate with existing and potential clients. It will significantly increase conversion rates and online sales of your web site.

+ +

How it works?

+

You should place the button of Web Messenger at your site. Your visitors click the button and chat with your operators who help them.

+ +

License

+

This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0.

+ +

Project is hosted by SourceForge.

+ +
+
+ + diff --git a/site/niftyCorners.css b/site/niftyCorners.css new file mode 100644 index 00000000..6570f60e --- /dev/null +++ b/site/niftyCorners.css @@ -0,0 +1,35 @@ +/*Nifty Corners Cube CSS by Alessandro Fulciniti +The following classes are added dinamically by javascript, +and their use should be avoided in the markup */ + +b.niftycorners,b.niftyfill{display:block} +b.niftycorners *{display:block;height: 1px;line-height:1px;font-size: 1px; + overflow:hidden;border-style:solid;border-width: 0 1px} +/*normal*/ +b.r1{margin: 0 3px;border-width: 0 2px} +b.r2{margin: 0 2px} +b.r3{margin: 0 1px} +b.r4{height: 2px} +b.rb1{margin: 0 8px;border-width:0 2px} +b.rb2{margin: 0 6px;border-width:0 2px} +b.rb3{margin: 0 5px} +b.rb4{margin: 0 4px} +b.rb5{margin: 0 3px} +b.rb6{margin: 0 2px} +b.rb7{margin: 0 1px;height:2px} +b.rb8{margin: 0;height:2px} +b.rs1{margin: 0 1px} +/*transparent inside*/ +b.t1{border-width: 0 5px} +b.t2{border-width: 0 3px} +b.t3{border-width: 0 2px} +b.t4{height: 2px} +b.tb1{border-width: 0 10px} +b.tb2{border-width: 0 8px} +b.tb3{border-width: 0 6px} +b.tb4{border-width: 0 5px} +b.tb5{border-width: 0 4px} +b.tb6{border-width: 0 3px} +b.tb7{border-width: 0 2px;height:2px} +b.tb8{border-width: 0 1px;height:2px} +b.ts1{border-width: 0 2px} \ No newline at end of file diff --git a/site/niftycube.js b/site/niftycube.js new file mode 100644 index 00000000..23efeb61 --- /dev/null +++ b/site/niftycube.js @@ -0,0 +1,298 @@ +/* Nifty Corners Cube - rounded corners with CSS and Javascript +Copyright 2006 Alessandro Fulciniti (a.fulciniti@html.it) + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ + +var niftyOk=(document.getElementById && document.createElement && Array.prototype.push); +var niftyCss=false; + +String.prototype.find=function(what){ +return(this.indexOf(what)>=0 ? true : false); +} + +var oldonload=window.onload; +if(typeof(NiftyLoad)!='function') NiftyLoad=function(){}; +if(typeof(oldonload)=='function') + window.onload=function(){oldonload();AddCss();NiftyLoad()}; +else window.onload=function(){AddCss();NiftyLoad()}; + +function AddCss(){ +niftyCss=true; +var l=CreateEl("link"); +l.setAttribute("type","text/css"); +l.setAttribute("rel","stylesheet"); +l.setAttribute("href","niftyCorners.css"); +l.setAttribute("media","screen"); +document.getElementsByTagName("head")[0].appendChild(l); +} + +function Nifty(selector,options){ +if(niftyOk==false) return; +if(niftyCss==false) AddCss(); +var i,v=selector.split(","),h=0; +if(options==null) options=""; +if(options.find("fixed-height")) + h=getElementsBySelector(v[0])[0].offsetHeight; +for(i=0;i0;i--) + d.appendChild(CreateStrip(i,side,color,border,btype)); +el.style.paddingBottom=0; +el.appendChild(d); +} + +function CreateStrip(index,side,color,border,btype){ +var x=CreateEl("b"); +x.className=btype+index; +x.style.backgroundColor=color; +x.style.borderColor=border; +if(side=="left"){ + x.style.borderRightWidth="0"; + x.style.marginRight="0"; + } +else if(side=="right"){ + x.style.borderLeftWidth="0"; + x.style.marginLeft="0"; + } +return(x); +} + +function CreateEl(x){ +return(document.createElement(x)); +} + +function FixIE(el){ +if(el.currentStyle!=null && el.currentStyle.hasLayout!=null && el.currentStyle.hasLayout==false) + el.style.display="inline-block"; +} + +function SameHeight(selector,maxh){ +var i,v=selector.split(","),t,j,els=[],gap; +for(i=0;imaxh) maxh=els[i].offsetHeight; + els[i].style.height="auto"; + } +for(i=0;i0){ + t=CreateEl("b");t.className="niftyfill";t.style.height=gap+"px"; + nc=els[i].lastChild; + if(nc.className=="niftycorners") + els[i].insertBefore(t,nc); + else els[i].appendChild(t); + } + } +} + +function getElementsBySelector(selector){ +var i,j,selid="",selclass="",tag=selector,tag2="",v2,k,f,a,s=[],objlist=[],c; +if(selector.find("#")){ //id selector like "tag#id" + if(selector.find(" ")){ //descendant selector like "tag#id tag" + s=selector.split(" "); + var fs=s[0].split("#"); + if(fs.length==1) return(objlist); + f=document.getElementById(fs[1]); + if(f){ + v=f.getElementsByTagName(s[1]); + for(i=0;i&PwyoQS;DK^w3T8(p&V@V)fQ( z_SkLq*>m>Wd-mOf_TGv2;E?y@nE2Xs_}qK=-h}wyiTL4-_~MlKazRnyZi3J`|!s6@yz`5)BN?@{r2Jg_~rij>;C@!0000000000000000000000000 z00000A^8LZ3IG5AEC2ui06_p`000L6z?*PLEEkl)7Ei&`PZZVwDCA8k+yuhvM-$u=@JTJ)0(bRC8u%^y zUJSH*2k^!{ZU?j!9P$Aly@f-3ak~I@+PW5kt);&IT!F@P($OEsC02W z;ES+E;u|>~7O&YhfPvIC?6@&j({DfooN>Z&bD(exhE#*)aKP8VDHjQ;{>pj9tu+}M z7YEFW;{qSB(p+4GN*yP#WHO2cxLwoR_X9FDZas_x72oqQClm}=u11CLRGYcXfK76Z zi~!#Sgx|7Zzyq;rY~=lZeM<@kLF3rymtH^v_*A^mKm%J%20(uT7y#T8t}tN2B?zWM zz-~~`Kmh^z#8Ei&O1Q!t0NoKwk;7t)WlrVt@pzYG!cMV*2gA8C4IE;7w zMd0BLDNIlSh00WLV0wjcP(cG8EI8%^U%{D5GWC$ap#x%mQ(c5jl4C=U97@P%HZBax zp#*1U6GEc6tU1&SFvLKEoq~KYAEg2;umO!#)X+f$+6|yU1QcY@fd?LJaKQw54hSkN zbaMK{Hlk?q9gB3_ipv8i=*k2N3_PPrBdI7bK?j^BFdjo&s;sR(Vj>anrn}A4UFD@}9vf94C+?5EF-z^})1rBJN zUVVVj5SKL#T#$kc3fW-83neV&n{JT6@Gt-bP=JEFL%eW-RjB}AEhI9au)zoIR^h?{ z=a{9@4HjBc$;~&|z$+~M-fY95LEj7)EG_a(rT~%hECf`6@+^Y^1AOar2LX_Ja|{p| Ms}W*OQxOCJJ6=uvBLDyZ literal 0 HcmV?d00001