<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>时间线 &#8211; 天地一沙鸥</title>
	<atom:link href="https://haoluobo.com/tag/%e6%97%b6%e9%97%b4%e7%ba%bf/feed/" rel="self" type="application/rss+xml" />
	<link>https://haoluobo.com</link>
	<description>to be continue....</description>
	<lastBuildDate>Fri, 01 Jun 2012 08:18:44 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>时间线网站“似水流年”上线</title>
		<link>https://haoluobo.com/2012/06/jstwind-startup/</link>
					<comments>https://haoluobo.com/2012/06/jstwind-startup/#comments</comments>
		
		<dc:creator><![CDATA[vicalloy]]></dc:creator>
		<pubDate>Fri, 01 Jun 2012 08:18:44 +0000</pubDate>
				<category><![CDATA[vicalloy的庄家]]></category>
		<category><![CDATA[编程]]></category>
		<category><![CDATA[jstwind]]></category>
		<category><![CDATA[timeline]]></category>
		<category><![CDATA[似水流年]]></category>
		<category><![CDATA[时间线]]></category>
		<guid isPermaLink="false">/?p=10543</guid>

					<description><![CDATA[网站地址： http://jstwind.com 在很早前就想做这么一个关于时间线的网站了，并在今天年初开始真 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>网站地址：</strong> <a href="http://jstwind.com">http://jstwind.com</a><br />
在很早前就想做这么一个关于时间线的网站了，并在今天年初开始真正开始行动。中途因为各种原因将这件事情给搁置了，直到最近才重新启动。目前还只是完成了基础功能，细节方面也未能调教到自己满意的程度。不过不管怎么说，网站总算是基本可用了。欢迎大家上去看看，去制作自己感兴趣的时间线。<br />
目前网站上只有一个关于 <a href="http://jstwind.com/t/2/">乔布斯</a> 的时间线。事件的编辑比我预想的还要花时间，这也让我更希望能早些加入时间线的协作编辑功能。<br />
这是我在继 <a href="https://github.com/vicalloy/LBForum">LBForum</a> 之后真正有在用心做的一个私人项目。项目后台代码方面的工作量倒还好，主要的工作都花在了前端上。事件的编辑是一项非常繁琐的工作，因此花费了不少时间来使用AJAX来提高事件编辑的易用性。项目代码托管在 <a href="https://github.com/">github</a> 上。项目地址在以前的博客里发布过，如果你感兴趣的话可以去找找。<br />
最后把用到的主要技术和服务列一下，接下来一段时间可能会将其中用到一些技术写成博客：</p>
<ul>
<li>网站部署在 <a href="http://www.webfaction.com/">webfaction</a> ，采用apache+mod_wsgi的方式进行部署。</li>
<li>由于webfaction在国内的访问速度并不理想，静态资源托管在sina的 <a href="http://sae.sina.com.cn/">SAE</a> 平台上。因为申请了SAE的开发者认证，每月有1.5w的免费云豆资源，闲着也是闲着。</li>
<li>域名在 <a href="https://www.godaddy.com/">godaddy</a> 购得。在使用优惠码后，一年的费用不足$2。</li>
<li>域名的DNS解析用的是 <a href="https://www.dnspod.cn/">DNSPod</a> 。 DNSPod在易用性方面确实做的很不错。</li>
<li>使用 <a href="http://exmail.qq.com/">腾讯企业邮箱</a> 。 或许很多人对腾讯比较反感，但腾讯的产品确实都还做的不错。使用腾讯企业邮箱的重要原因之一是免费。</li>
<li>服务端的开发技术依旧用的是 <a href="http://djangoproject.com/">Django</a> 。使用自己熟悉的技术可以大大的加快开发进度。</li>
<li>前端用的是 <a href="twitter.github.com/bootstrap/">twitter-bootstrap</a> 。bootstrap目前已经有烂大街的趋势了，不过这东西确实好用。为减少bootstrap的痕迹，下一步考虑给jstwind换个配色方案。</li>
<li>JS的基础库用 <a href="http://jquery.com/">JQuery</a> 。现在JQuery基本上已经是JS标准的一部分了。</li>
<li>时间线的JS控件用的是 <a href="http://timeline.verite.co/">Timeline JS</a> 。虽然这个JS组件还有不少让我不太满意的地方，但这个组件胜在漂亮，而且作者非常勤奋，github上提的issue基本上在一天内就会有回复。</li>
<li>文件上传用的是 <a href="https://github.com/blueimp/jQuery-File-Upload">jQuery-File-Upload</a> 。纯JS实现，不依赖Flash即可实现文件的批量上传。缺点是如果客户用的浏览器版本太老就无法使用批量上传功能了。</li>
<li>Django的第三方APP方面用的就比较多了，其中包括 django-userena、django-taggit等，以及部分我自己写的与修改的APP。第三方APP的详细列表可以查看项目中的 <strong>requirements.txt</strong> 文件</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://haoluobo.com/2012/06/jstwind-startup/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
			</item>
	</channel>
</rss>
