Posts

Showing posts from October, 2013

New version of pkrssv2 in the Android Market

=20 =09 =09 Hello lian deliang, You've just released the 2.19 version of your "pkrssv2"= app on the official Android Market. You've uploaded the 2.05 version to AndroidPIT. Please upload the latest ve= rsion to AndroidPIT, so that AndroidPIT users can also install the latest v= ersion of your app. Just click on "Upload upgrade" on your developer page for the "pkrssv2" app= . Access your developer page here: http://www.androidpit.com/developer/3= 433529/lian-deliang Bes...

New version of pkrssv2 in the Android Market

=20 =09 =09 Hello lian deliang, You've just released the 2.19 version of your "pkrssv2"= app on the official Android Market. You've uploaded the 2.05 version to AndroidPIT. Please upload the latest ve= rsion to AndroidPIT, so that AndroidPIT users can also install the latest v= ersion of your app. Just click on "Upload upgrade" on your developer page for the "pkrssv2" app= . Access your developer page here: http://www.androidpit.com/developer/3= 433529/lian-deliang Bes...

Happy Birthday

share my writed messagebox with duilib by cpp

Image
1.todo my partern need me replace all messagebox windows style with same as worker window style. our project is used duilib. 2.code 1.dialog_newpersonal.xml <?xml version= "1.0" encoding= "utf-8" standalone= "yes" ?> <Window size= "285,161" sizebox= "6,6,6,6" caption= "0,0,0,36" mininfo= "80,60" roundcorner= "5,5" > <VerticalLayout bordersize= "1" width= "330" height= "198" bkcolor= "#FFFFFFFF" bkcolor2= "#FF477FFF" bordercolor= "#FF4775CC" > <HorizontalLayout name= "header" height= "32" padding= "1,0,1,2" bkcolor= "#FF1E94DC" > <HorizontalLayout> <Control width= "10" /> <Label name= "title" text= "信息提示" textcolor= "#FFFFFFFF" disabledtextcolor= "#F...

=B7=D6=B3=C9=D5=CB=B5=A5

------=_Part_2120_21364835.1381843652995 Content-Type: text/html;charset=GB2312 Content-Transfer-Encoding: quoted-printable =B7=D6=B3=C9=D5=CB=B5=A5 body{font-size:12px;text-align:center;} #wrap img{border:none;} #wrap a{color:#094faa;text-decoration:none;} #wrap *{padding:0;margin:0;} #wrap i{font-style:normal;} #wrap .left{float:left;width:402px;} #wrap .right{float:left;width:185px;padding-top:93px;} #wrap .right a{margin-bottom:21px;display: block;} #wrap .left dl{padding:119px 0 0 41px;} #wrap .left h3{background:url(http://u5.mm-img.com/rs/res/publish/settlemen= t/images/h3bg.jpg) no-repeat;color:#0a4a85;font-size:12px;height:25px;paddi= ng:22px 0 14px 43px;margin-top: 12px;} #wrap .left dt{padding-bottom:13px;} #wrap .left dt i{font-size:14px;font-weight:bold;color:#004395;} #wrap .left dd{line-height:20px;width:305px;text-indent:24px;} #wrap .left dd i{font-weight:bold;font-size:14px;color:#fe0000;} #wrap{width:598px;border:1px solid #e0e0e0;background:url(http://u5.mm-img.= co...

private cloud storage program – my draft log

Image
1. owncloud 1.1 brief ownCloud gives you universal access to your files through a web interface or WebDAV. It also provides a platform to easily view & sync your contacts, calendars and bookmarks across all your devices and enables basic editing right on the web. Installation has minimal server requirements, doesn’t need special permissions and is quick. ownCloud is extendable via a simple but powerful API for applications and plugins. ownCloud started with a keynote by Frank Karlitschek at Camp KDE’10 where he talked about the need of a self-controlled free and open source cloud. 为了给用户提供免费的替代,3 年前,Frank Karlitschek 开发了开源版的文件存储、同步及共享软件包 ownCloud 。目前,该软件包已经正式推出了 4 个版本,支持 42 种语言。除了具备 Dropbox 或 Box.net 的基本功能以外,ownCloud 还支持通讯录、日历等功能。现在,ownCloud 又发布了 5.0 的 beta 版,预计将会在几周后正式推出。 1.2 screenshots office website: server: install:     1.3 install 1.3.1 server package prepare: install for  iis install web plateform installer for iis. install php 5.3, mysql 5.5,we...

New version of pkrssv2 in the Android Market

=20 =09 =09 Hello lian deliang, You've just released the 2.06 version of your "pkrssv2"= app on the official Android Market. You've uploaded the 2.05 version to AndroidPIT. Please upload the latest ve= rsion to AndroidPIT, so that AndroidPIT users can also install the latest v= ersion of your app. Just click on "Upload upgrade" on your developer page for the "pkrssv2" app= . Access your developer page here: http://www.androidpit.com/developer/3= 433529/lian-deliang Bes...

DOMDocument cannot parse XML: Document labelled UTF-16 but has UTF-8 content

1.screenshots when i get this url's rss data: http://ipaper.ipapercms.dk/AfricanShareHolder/za/CVI/2002/RSS.ashx 2.error: DOMDocument cannot parse XML: Document labelled UTF-16 but has UTF-8 content fixed: see here : $xml = preg_replace( '/(<\?xml[^?]+?)utf-16/i' , '$1utf-8' , $xml);  

found jquery mobile swipe event error in jquery.mobile.1.40 alpha2

1.screenshots: code: pkrss.q(document).on( "swipeleft swiperight" , "#" + this .name, function (e) { }); error: when some seconds delay contents can’t scroll to bottom by touch behaviors. 2.fixed: no used swipe event in current version jquery.mobile. 3.how search jquery.mobile.css to search "scroll" keyword and jquery.mobile.js to found "touchstart" keywords. then only found in jquery.mobile.js line: // also handles swipeleft, swiperight $. event .special.swipe = { scrollSupressionThreshold: 30, // More than this horizontal displacement, and we will suppress scrolling. durationThreshold: 1000, // More time than this, and it isn't a swipe. horizontalDistanceThreshold: 10, // Swipe horizontal displacement must be more than this. verticalDistanceThreshold: 75, // Swipe vertical displacement must be less than this. start: function( event ) { var data = event .originalEvent.touches ? ...