TYPO3: TYPO3 vs. Joomla – The definite answer

2010年1月24日 220 views没有评论

原文地址:http://www.essentialdots.com/int_en/blog/typo3_typo3_vs_joomla_the_definite_answer/index.html

A lot of clients have asked us why is TYPO3 better than Joomla, as these two both aim for the title of the best PHP open-source CMS. If you try to "google" the answer you can mostly find just Joomla developers writing that TYPO3 is indeed more advanced but way more complex to set up – but without detailed comparison.

As we don’t offer any services on Joomla, I have invested some time in researching the differences between these two. For this article I have used information provided on the CMS Matrix web site as well as the list of Joomla flaws stated in the book Professional Joomla! by Dan Rahmel.

Document version control

Joomla completely lacks document version control. TYPO3 on other hand has great version control – you can control absolutely every record and content element in the page tree – you can undo changes, browse history etc. When creating custom record type, adding version control features is as easy as clicking on the "Enable versioning" check box in the Kickstarter.

Workflow feature

Joomla completely lacks workflow as well. For example, if you have many editors who write articles, it won’t be possible to allow chief editor to make decision what will be published and what will be returned for revision.

TYPO3 has great feature called "Task center" where you can define tasks for each user and workflow. For example:

  • a chief editor can create a task for editor to create a news article
  • once editor writes the article it passes it for review
  • once the chief editor reviews the article he can publish the article to the news archive, censor the article or he can return it to the editor for revision.

While the workflow system in TYPO3 certainly needs improvement, what is currently present is a great advantage over Joomla.

Import/Export of the content

Joomla lacks export functionality. In order to transfer content from one website to another you would have to dig into MySQL tables directly and manually copy all the files using FTP.

TYPO3 has built-in import/export functionality. You can export and import content using TYPO3′s native .t3d archives. These archives can contain both records and content elements from the database and files stored on a server’s file system. While this feature can be a little tricky on a complex web sites when you try to use it on just one part of the page tree, it certainly helps a lot in manipulating data and is very easy to use in most of the cases.

阅读全文…

分类: 技术 标签:

2010年1月20日 156 views没有评论

今天在广州转了一大圈

本来想帮刘先平搬家,要去天河客运站附近

结果不熟悉路,绕的不知道到了哪里了

在沙河绕了一个圈子

然后去了天寿路,再兜回来

广园快速,好像没有找到出口

到广州大道

后来就不知道在哪里了

。。。。。。

好像到了珠江边

差点准备过去了

去了海珠广场

进了小村子

查我的手机地图

好像是大通路

在那里又绕了2圈

东风路好像

还有看到了区庄立交,竟然又没有走了路口又转走了

我好累啊

结果坐下来好好研究gps

终于上了内环

在恒福路下来

才回来

整个转了一大圈

花费4个小时

我的脚都麻了

分类: 杂志 标签:

刘德华-浪花

2010年1月13日 142 views没有评论

歌手:刘德华
歌名:浪花
别等不该等的人
别伤不该伤的心
彼此都是飘流中的浮萍
搭上缘份的列车
总有一个人只是过客
认识你认识我
早注定是个错
谁能解开命运的锁
背叛个够
谁能不顾岁月洪流
为了爱走回头
在茫茫的人海中奔走
曾经以为我最寂寞
一生一世难得你和我
再轮回又是那时候
在生命的浪涛中起落
该珍惜还是该澹泊
当舞台亮起谢幕的灯火
你我只是一朵浪花

分类: 音乐 标签: ,

时间旅行者的妻子

2010年1月12日 177 views没有评论

如题

不错

分类: 电影 标签:

IMDB被封

2010年1月8日 364 views没有评论

如题

FACEBOOK

TWITTER

YOUTUBE

新年快乐

2010年1月1日 159 views没有评论

又是一年

……………………………………

……………………………………

……………………………………

一言难尽

失去了一些最重要的东西

得到了一些看起来重要的东西

我知道我在说什么

又是一年

对某些事情已经失望

希望真的存在外星人

可以把我带走做试验

但是不要活剥我

我怕疼

分类: 杂志 标签:

俺么搔瑞

2009年12月31日 160 views没有评论

200912310803022af12

分类: 图片 标签:

EVERY WOMAN IN THE WORLD

2009年12月13日 164 views没有评论

EVERY WOMAN IN THE WORLD
Air Supply
(Dominic Buggatti/Frank Musker)


Every night seems dinner and wine
Saturday days
I was never in love, never had the time
In my hustle and hurried world
Laughing my self to sleep, waking up lonely
I needed someone to hold me, oh
It’s such a crazy home town
It can drag you down
Till you run out of dreams
So you party all night to the music and lights
But you don’t know what happiness means
I was dancing in the dark with strangers
No love around me
When suddenly you found me, oh
Girl, you’re every woman in the world to me
You’re my fantasy, you’re my reality
Girl, you’re every woman in the world to me
You’re everything I need, you’re everything to me

阅读全文…

vbs批量重命名脚本

2009年12月3日 305 views没有评论

功能::假设有个文件夹的所有文件名称前面有个AA_开头,这个小脚本的作用就是删除这个AA_。只是简单的小脚本,如果还有多个”_”字符的时候,重复使用有可能会全部都删除了。

使用:dir填写实际文件所在目录;target填写要分割的字符,保存为.VBS文件,双击运行。做好备份,因为是直接修改原始文件!

dir=("C:\Users\海军\Desktop\104CANON")
target=("_")

Set fso = CreateObject("Scripting.FileSystemObject")
set rfd=fso.getfolder(dir)
set fs=rfd.files
for each f in fs

        If InStr(f.name,target) Then
            length=Len(f.name)
            star=InStr(f.name,target)
            newname=Right(f.name,length-star)
            f.name=newname
        End If

Next

分类: 技术 标签: ,

Virtuemart Menu

2009年11月26日 152 views没有评论

The vmart module just outputs links instead of an unordered list like they should.
You’ll need to edit /templates/jp_techpraise_1.5/css/theme1.css (or the theme you’re using)
and add this

.moduletable-list a{
display:block;
padding:4px 10px;
border-bottom:1px solid #C8CACA;
border-top:1px solid #FDFDFD;
color:#666;
text-decoration:none;
}
.moduletable-list a:hover {
background-color:#F0F0F0;
}

分类: 技术 标签: