<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-13389900</id><updated>2011-10-27T18:59:47.702-04:00</updated><category term='datasource'/><category term='Metadata'/><category term='JBoss'/><category term='Trigger'/><category term='.NET MVC DropDownList'/><category term='ping'/><category term='JBossWS'/><category term='Hibernate'/><category term='import'/><category term='SOAPUI'/><category term='mock'/><category term='Categorization'/><category term='Postgres'/><category term='TriggerAssignedIdentityGenerator'/><category term='Web Business Models'/><category term='4201P'/><category term='WSDL'/><category term='social networking'/><category term='content management'/><category term='micro-blogging'/><category term='Tagging'/><category term='Taxonomy'/><category term='cms'/><category term='Eclipse'/><category term='Web Revenue Models'/><category term='SelectList'/><category term='usability'/><category term='HibernateException'/><title type='text'>A Software Engineering Journal</title><subtitle type='html'>About Java, .NET, design patterns, databases, content management and knowledge portals.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>26</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-13389900.post-8395424218640333442</id><published>2011-07-08T12:05:00.004-04:00</published><updated>2011-07-08T13:58:41.915-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TriggerAssignedIdentityGenerator'/><category scheme='http://www.blogger.com/atom/ns#' term='Hibernate'/><category scheme='http://www.blogger.com/atom/ns#' term='Postgres'/><title type='text'>Resolving Postgres "returning auto generated keys no supported"</title><content type='html'>I discovered Jean-Pol Landrain's, "&lt;a href="https://forum.hibernate.org/viewtopic.php?t=973262"&gt;TriggerAssignedIdentityGenerator&lt;/a&gt;" to address the issue of the Hibernate ID Generator not supporting an Id created by the database via a BEFORE INSERT trigger.&lt;br /&gt;&lt;br /&gt;However the TriggerAssignedIdentityGenerator design for Oracle did not work for the older JDBC PostgreSQL driver which doesn't support the return of auto-generated keys.&lt;br /&gt;&lt;br /&gt;The probem was resolved by changes to the 'prepare' and 'executeAndExtract' methods:&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;protected PreparedStatement prepare(String insertSQL, SessionImplementor session) throws SQLException {&lt;br /&gt;&lt;br /&gt; return session.getBatcher().prepareStatement(insertSQL + " RETURNING *");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;protected Serializable executeAndExtract(PreparedStatement insert) throws SQLException {&lt;br /&gt;&lt;br /&gt; insert.execute();&lt;br /&gt; // get the new id back&lt;br /&gt; ResultSet rs = insert.getResultSet();&lt;br /&gt; if (rs.next()) {&lt;br /&gt;  return new String(rs.getString(1)); // assume that 1 is id&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; throw new SQLException("Returned no id in resultset");&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-8395424218640333442?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/8395424218640333442/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=8395424218640333442' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8395424218640333442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8395424218640333442'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/07/resolving-postgres-returning-auto.html' title='Resolving Postgres &quot;returning auto generated keys no supported&quot;'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-5052444426114117131</id><published>2011-07-08T10:00:00.003-04:00</published><updated>2011-07-08T10:04:13.849-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Trigger'/><category scheme='http://www.blogger.com/atom/ns#' term='4201P'/><category scheme='http://www.blogger.com/atom/ns#' term='Postgres'/><title type='text'>postgres create trigger error relation does not exist 42P01</title><content type='html'>PostgreSQL 8.4: When attempting to create a simple trigger the executes a function, for a table that exists, I was getting a 42P01 error: relation "table_name" does not exist &lt;br /&gt;&lt;br /&gt;CREATE TRIGGER genUuid&lt;br /&gt;BEFORE INSERT ON table_name&lt;br /&gt;FOR EACH ROW EXECUTE PROCEDURE generate_function_v1();&lt;br /&gt;&lt;br /&gt;This was simple resolved by including the schema name along with the table as follows:&lt;br /&gt;&lt;br /&gt;CREATE TRIGGER genUuid&lt;br /&gt;BEFORE INSERT ON my_schma.table_name&lt;br /&gt;FOR EACH ROW EXECUTE PROCEDURE generate_function_v1();&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-5052444426114117131?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/5052444426114117131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=5052444426114117131' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/5052444426114117131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/5052444426114117131'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/07/postgres-create-trigger-error-relation.html' title='postgres create trigger error relation does not exist 42P01'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-7375469091193975998</id><published>2011-06-21T14:44:00.005-04:00</published><updated>2011-06-21T14:55:00.057-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HibernateException'/><category scheme='http://www.blogger.com/atom/ns#' term='JBoss'/><category scheme='http://www.blogger.com/atom/ns#' term='datasource'/><title type='text'>org.hibernate.HibernateException: Unable to locate current JTA transaction</title><content type='html'>It started with a "org.hibernate.HibernateException: Could not find datasource" which was resolved by moving the hibernate-cfg.xml to the root folder (above WEB-INF). Once this was resolved my servlet returned a "Unable to locate current JTA transaction" transaction error. The postgres datasource configured via JBoss indicated status DOWN.&lt;br /&gt;&lt;br /&gt;Error text: &lt;br /&gt;&lt;br /&gt;org.hibernate.context.JTASessionContext.currentSession(JTASessionContext.java:88)&lt;br /&gt;org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:621)&lt;br /&gt;&lt;br /&gt;occurs when getSessionFactory is attempted. Direct connection to db (w/o JBoss DS) works fine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-7375469091193975998?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/7375469091193975998/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=7375469091193975998' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/7375469091193975998'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/7375469091193975998'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/06/orghibernatehibernateexception-unable.html' title='org.hibernate.HibernateException: Unable to locate current JTA transaction'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-1985451945465632795</id><published>2011-04-06T08:23:00.004-04:00</published><updated>2011-04-06T08:35:17.294-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SelectList'/><category scheme='http://www.blogger.com/atom/ns#' term='.NET MVC DropDownList'/><title type='text'>.NET MVC DropDownList, SelectList and Selected Value</title><content type='html'>If you've tried using the Html.DropDownList in .NET MVC you know that it the selectedValue of the populating SelectList doesn't work. The frequently posted workaround, is to change the name of DropDownList to something other that the field it is supposed to be bound to.&lt;br /&gt;&lt;br /&gt;Perfect, now the value is selected in the list as expected. BUT, the problem with this however is that is the DropDownList no longer binds to the model as needed. Since we've changed the name, updates to the database do not work. After reading numerous posts on Stackoverflow I discovered zero solutions.&lt;br /&gt;&lt;br /&gt;Here is how I resolved it:&lt;br /&gt;&lt;br /&gt;Assuming that your SelectList is constructed in your Controller or ViewModel like this:&lt;br /&gt;&lt;br /&gt;CatsRepository CatsRepo = new CatsRepository();  &lt;br /&gt;CatsList = new SelectList(CatsRepo.FindCats(), "CatId", "Category", Content.CatId);&lt;br /&gt;            &lt;br /&gt;&lt;br /&gt;The HTML.DropDownList can be constructed in your control like this:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;%lt;input type="hidden" name="CatId" id="CatId" value="" /%gt;&lt;br /&gt;%lt;%= Html.DropDownList("CatIdList", Model.CatsList, new { @onchange = "CatId.value = this.value"})%%gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;In Summary, &lt;br /&gt;&lt;br /&gt;1) I renamed my "CatId" bound DropDownList to "CatIdList".&lt;br /&gt;2) Then I added a hiddel field named "CatId" setting it's value to "".&lt;br /&gt;3) I added a "new { @onchange = "CatId.value = this.value"}" as an htmlAttribute to my DropDownList, so when a different value is picked it updates the hidden field value accordingly.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-1985451945465632795?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/1985451945465632795/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=1985451945465632795' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1985451945465632795'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1985451945465632795'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/04/net-mvc-dropdownlist-selectlist-and.html' title='.NET MVC DropDownList, SelectList and Selected Value'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-1146607537650785741</id><published>2011-01-19T10:03:00.002-05:00</published><updated>2011-01-19T10:15:21.893-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mock'/><category scheme='http://www.blogger.com/atom/ns#' term='SOAPUI'/><category scheme='http://www.blogger.com/atom/ns#' term='Eclipse'/><category scheme='http://www.blogger.com/atom/ns#' term='import'/><category scheme='http://www.blogger.com/atom/ns#' term='WSDL'/><title type='text'>SOAPUI - Failed to import wsdl</title><content type='html'>It seems that this is a very generic error, but if you examine the SOAPUI logs you can usually find out what's causing it. The SOAPUI error log (found in the "soapUI Logs" in the eclipse soapUI perspective tabs) shows the error details.&lt;br /&gt;&lt;br /&gt;In my case, there was a SchemaException: Error loading schema types. My WSDL referenced numerous .xsd schemas, one of which was on a secured remote site. I changed the schema reference to a local address using the 'schemaLocation=../localpath/some.xsd' attribute of the import tag and all worked fine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-1146607537650785741?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/1146607537650785741/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=1146607537650785741' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1146607537650785741'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1146607537650785741'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/01/soapui-failed-to-import-wsdl.html' title='SOAPUI - Failed to import wsdl'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-6833518527542654751</id><published>2011-01-19T09:36:00.003-05:00</published><updated>2011-01-19T09:39:46.440-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Eclipse'/><category scheme='http://www.blogger.com/atom/ns#' term='JBoss'/><category scheme='http://www.blogger.com/atom/ns#' term='JBossWS'/><title type='text'>How to check if JBoss WS is deployed</title><content type='html'>It seems like a simple task, but it took me a little while to determine whether or not my Web service deployed to JBossWS from Eclipse actually got deployed. Just browse to http://localhost:8080/jbossws/services, and you can see what services are active on the server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-6833518527542654751?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/6833518527542654751/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=6833518527542654751' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/6833518527542654751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/6833518527542654751'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2011/01/how-to-check-if-jboss-ws-is-deployed.html' title='How to check if JBoss WS is deployed'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-8869520948243765360</id><published>2009-03-19T10:33:00.003-04:00</published><updated>2009-03-19T10:38:52.853-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='social networking'/><category scheme='http://www.blogger.com/atom/ns#' term='micro-blogging'/><title type='text'>Big Fish, Little Fish: Tracking Web Startups</title><content type='html'>Gone are the days of the dotcom boom, but there are still alot of new ideas being launched. After spending some time on &lt;a href="http://news.cnet.com/webware/"&gt;WebWare&lt;/a&gt; and &lt;a href="http://www.killerstartups.com"&gt;KillerStartups&lt;/a&gt; you can see the current trends, which as of late are social networking and micro-blogging. There are all kinds of widgets and mash-ups that take advantage of the API's that the bigger fish are providing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-8869520948243765360?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/8869520948243765360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=8869520948243765360' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8869520948243765360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8869520948243765360'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2009/03/big-fish-little-fish-tracking-web.html' title='Big Fish, Little Fish: Tracking Web Startups'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-4298008447087358759</id><published>2009-03-19T07:51:00.003-04:00</published><updated>2009-03-19T08:15:57.762-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Web Revenue Models'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Business Models'/><title type='text'>Web Business Models</title><content type='html'>Making money from an idea. This is something most of us would like to learn more about. &lt;a href="http://twitter.com/zambonini"&gt;Dan Zamboni&lt;/a&gt; over at Box UK gives a nice breakdown of &lt;a href="http://www.boxuk.com/blog/monetizing-your-web-app-business-models"&gt;Web business models&lt;/a&gt;. Dan's Web business model taxonomy is loosely related.&lt;br /&gt;&lt;br /&gt;In general, Dan defines 2 top-levels "immediate" and "long-term". The immediate (short-term) level breaks down into what we see in most Web revenue models --subscription based, one-time payments or 3rd-party (sponsor/partner/advertiser) supported. At the long-term level (do you have the patience?) the general idea is to build an audience before expecting any return -- "Attract a substantial audience before monetizing".&lt;br /&gt;&lt;br /&gt;Now to figure out which ones are the most successful. What do you think?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-4298008447087358759?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/4298008447087358759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=4298008447087358759' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4298008447087358759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4298008447087358759'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2009/03/web-business-models.html' title='Web Business Models'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-3022482573929920395</id><published>2009-03-18T20:43:00.004-04:00</published><updated>2009-03-19T07:37:24.547-04:00</updated><title type='text'>Tripping on Egos</title><content type='html'>This isn't really a post, more like a stumple upon. Today, I was lucky enough to discover a large ego pool: &lt;a href="http://www.monitortalent.com"&gt;http://www.monitortalent.com&lt;/a&gt;. How nice that these folks are there to guide us.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-3022482573929920395?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/3022482573929920395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=3022482573929920395' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/3022482573929920395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/3022482573929920395'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2009/03/tripping-on-egos.html' title='Tripping on Egos'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-4756458158800467860</id><published>2009-03-18T20:32:00.003-04:00</published><updated>2009-03-18T20:36:55.323-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tagging'/><category scheme='http://www.blogger.com/atom/ns#' term='Metadata'/><category scheme='http://www.blogger.com/atom/ns#' term='Categorization'/><category scheme='http://www.blogger.com/atom/ns#' term='Taxonomy'/><title type='text'>Why Unstructured Classification Matters?</title><content type='html'>&lt;a href="http://www.shirky.com/writings/ontology_overrated.html"&gt;Clay Shirky&lt;/a&gt; once write a great article about the importance of user defined classification. This is even more important for the socially networked "Web 3.0" CMS. Of course a CMS will let the publisher classify content by format/function (ie; content type) and topically (ie; categories,sub category,etc..) -- But the new CMS will also let me "tag" my content and generate another map it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-4756458158800467860?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/4756458158800467860/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=4756458158800467860' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4756458158800467860'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4756458158800467860'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2009/03/why-unstructured-classification-matters.html' title='Why Unstructured Classification Matters?'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-5057857984662138530</id><published>2009-03-17T07:33:00.005-04:00</published><updated>2009-04-05T07:48:24.249-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cms'/><title type='text'>My Favorite Web Developer Blogs</title><content type='html'>Web Development&lt;br /&gt;&lt;a href="http://www.webworkerdaily.com"&gt;Web Worker Daily&lt;/a&gt;&lt;br /&gt;&lt;a href="http://gadgetopia.com/"&gt;Gadgetopia&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.webappers.com/"&gt;WebAppers&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Content Management&lt;br /&gt;&lt;a href="http://www.cmsjournal.com" title="Compare CMS"&gt;CMS Journal&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cmsmyth.com"&gt;The CMS Myth&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.contentmatters.info"&gt;Content Matters&lt;/a&gt;&lt;br /&gt;&lt;a href="http://gadgetopia.com/category/12"&gt;Gadgetopia - Content Management&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.steptwo.com.au/category/papers/content-management"&gt;StepTwo&lt;/a&gt;&lt;br /&gt;&lt;a href="http://cmscritic.com"&gt;CMS Critic&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-5057857984662138530?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/5057857984662138530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=5057857984662138530' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/5057857984662138530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/5057857984662138530'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2009/03/my-favorite-web-developer-blogs.html' title='My Favorite Web Developer Blogs'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-8081441702935200214</id><published>2007-05-09T09:55:00.000-04:00</published><updated>2007-05-09T10:00:51.882-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='usability'/><category scheme='http://www.blogger.com/atom/ns#' term='cms'/><category scheme='http://www.blogger.com/atom/ns#' term='content management'/><title type='text'>11</title><content type='html'>Today I discovered and interesting article on &lt;a href="http://www.steptwo.com.au/papers/kmc_usabilitycms/index.html"&gt;11 usability principles for CMS products&lt;/a&gt;. While I don't completely agree with some of the author's principles, usability is a critical consideration for Content Management Systems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-8081441702935200214?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/8081441702935200214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=8081441702935200214' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8081441702935200214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/8081441702935200214'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2007/05/11.html' title='11'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-1669007163642606365</id><published>2007-04-26T11:02:00.000-04:00</published><updated>2007-04-26T11:09:08.995-04:00</updated><title type='text'>Technical Considerations for Choosing a CMS</title><content type='html'>Can the CMS host multiple websites without separate installations?&lt;br /&gt; &lt;br /&gt;Does the CMS allows for integration with additional plug-ins where required&lt;br /&gt;For example, future features might include forums, mapping packages, statistics,&lt;br /&gt;geographical tracking, etc.&lt;br /&gt; &lt;br /&gt;Is there a customizable front-end styles on the CMS interface&lt;br /&gt;We would like to be able to style up the interface of each separate instance of the CMS in different look &amp; feels. Specifically we want to be able to change colours, font styles, and maybe images. Some CMS solutions allow you to edit the text straight on the website (after logging in) not via an admin site. In this case this feature is not applicable.&lt;br /&gt; &lt;br /&gt;Is there a WYSIWYG editing interface&lt;br /&gt;The user can see the page change as they are editing it, in the same look &amp; feel (template) as the actual page. A preview button would also be ok.&lt;br /&gt;Maybe even a preview website that displays latest changes rather than published items as the live site does. MS Word style formatting options appear at the top of the edit area, so that users can change the style without HTML knowledge.&lt;br /&gt;Code should be cross-browser compliant (IE 6+ and Firefox 1+) and ideally accessible.&lt;br /&gt; &lt;br /&gt;Does it allow Blog-style visitor comments&lt;br /&gt;When enabled, website visitors can post comments on articles published on a website.&lt;br /&gt;This technology would allow us to use the CMS as a Blogging tool.&lt;br /&gt;CMS administrators can choose whether anyone can comment, only registered users (manageable via the CMS) or only team members.&lt;br /&gt;Email alert goes to administrators for approval before a comment appears.&lt;br /&gt; &lt;br /&gt;Is there staged content management (preview / live)? Can development content can be easily migrated to live. It should be easy for us to start adding content while the site is in development (on a development server) and for the same content then to be available on the live site.  So some sort of extract from development which is able to be inserted on live. Some CMS's appear to assign id's to items which are referenced and this mean they are then not copyable to separate database instances where the id's may already be taken.&lt;br /&gt; &lt;br /&gt;Is the CMS Modular / Pluggable?&lt;br /&gt;All options are simple to turn on and off for different sites.&lt;br /&gt;For example, advanced options like changing navigation are disabled by default, but can be switched on, if we need it.&lt;br /&gt; &lt;br /&gt;Is there an keyword / text search in the CMS?&lt;br /&gt;So that users can easily find the content they are looking for. With Keyword highlighting.&lt;br /&gt;  &lt;br /&gt;Is there automatic RSS feed generation of page content?&lt;br /&gt;A tick box to decide whether an RSS feed link appears on the page or not.&lt;br /&gt; &lt;br /&gt;What type of security model does the CMS offer? Different permissioning levels - lock content from certain users&lt;br /&gt;We need at least the following levels:&lt;br /&gt;* User (can edit but not publish)&lt;br /&gt;* Moderator (can edit and publish)&lt;br /&gt;* Administrator (can edit, publish, and change navigation, user permissions, etc)&lt;br /&gt;Preferably, we would like a system where the administrators can set permissions for other users, and create custom user groups. Sections of the public website (I.e. not the admin section) can be kept behind a login.&lt;br /&gt;Access can be administered from within the CMS system.&lt;br /&gt; &lt;br /&gt;Can the navigation/menu be changed at all levels, add new pages as necessary&lt;br /&gt;Ideally the CMS should be able to change the entire structure of the site.&lt;br /&gt; &lt;br /&gt;Is there automatic updating of the Sitemap&lt;br /&gt;Based on any changes to page titles or navigation.&lt;br /&gt; &lt;br /&gt;Are there user-defined templates?&lt;br /&gt;Can Administrators define new templates for pages and add new data fields to existing ones as required.&lt;br /&gt; &lt;br /&gt;Auto-populate details based on login&lt;br /&gt;Certain fields of the templates are automatically populated. Such as date and author.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-1669007163642606365?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/1669007163642606365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=1669007163642606365' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1669007163642606365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/1669007163642606365'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2007/04/technical-considerations-for-choosing.html' title='Technical Considerations for Choosing a CMS'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-4040935457149916707</id><published>2007-03-06T14:48:00.000-05:00</published><updated>2007-03-06T14:51:02.336-05:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ping'/><title type='text'>Another Ping Test from Google Blog</title><content type='html'>This is a test of the blog server ping system. I hope to add a Technorati Ping tag to get this updated. Post a comment if you see it worked!&lt;br /&gt;&lt;br /&gt;&lt;A class="ListFont" style="font-size:7pt;" href="http://technorati.com/tag/ping" rel="tag"&gt;Technorati&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-4040935457149916707?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/4040935457149916707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=4040935457149916707' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4040935457149916707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/4040935457149916707'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2007/03/another-ping-test-from-google-blog.html' title='Another Ping Test from Google Blog'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-116307671353223897</id><published>2006-11-09T07:49:00.000-05:00</published><updated>2006-11-09T10:42:27.866-05:00</updated><title type='text'>Some Insight on CMS</title><content type='html'>&lt;strong&gt;2 Whitepapers about the portal / CMS space:&lt;/strong&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://www.aspapp.com/Difference-between-Portal-and-Website~"&gt;Differences between Portals and Websites&lt;/a&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://www.aspapp.com/Top-10-Reasons-to-get-Content-Management-System~"&gt;Top 10 Reasons to get a Content Management System&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cmsjournal.com/library/contenttypewhitepapers.xml"&gt;Content Management Whitepapers RSS&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-116307671353223897?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/116307671353223897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=116307671353223897' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/116307671353223897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/116307671353223897'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2006/11/some-insight-on-cms.html' title='Some Insight on CMS'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-116231925037430044</id><published>2006-10-31T13:12:00.000-05:00</published><updated>2006-10-31T13:29:24.723-05:00</updated><title type='text'>Overcoming Weaknesses in CMS / Portal Software</title><content type='html'>Historically, the obstacles in this space (CMS) have been cost and ease of use.&lt;br /&gt;&lt;br /&gt;Cost&lt;br /&gt;&lt;br /&gt;There is really no rhyme or reason to the cost of CMS software. The cost problem is that the great majority of CMS / portal vendors use competitor-based pricing which has created greyness for buyers. "Why is this CMS product $1000 and this other CMS product $50,000?". Or as I have often heard, "Your CMS app does the same thing as one that was came in at over 6 figures." Secondly, application pricing and offshore programming fees have plummeted, so vendors have tried to reclaim what was lost with increasingly higher license prices. Typically license pricing is done either per CPU or per user. &lt;br /&gt;&lt;br /&gt;Ease-of-Use&lt;br /&gt;&lt;br /&gt;Out-of-the-box most business users will be intimidated by the user interface offered. If you speak to existing portal users they will most likely call their portal software a nice demo, but very cumbersome to work with. Arranging and placing portlets on major sites can be a very time consuming effort. As the site structure grows, the navigation load time can increase dramatically. This is a problem web content management systems experienced years ago, but most have solved today. If you add a new menu item or rearrange the navigation you might be forced to place the portlets from scratch again. Most portal interfaces were far from designed for business users but instead IT staff. In many systems, flexiblility also means complexity. Many CMS admistration interfaces are so cryptic that they must be deciphered by a technical user in order to configure. &lt;br /&gt;&lt;br /&gt;How Can PortalApp.NET Overcome These Weaknesses&lt;br /&gt;&lt;br /&gt;Cost has always been a strong point of PortalApp which delivers unbeatable versatility and value when compared to other CMS solutions. The fact the PortalApp's license cost is structured per site and not per user is an added benefit. Existing customers have often commented that the price point is so affordable that it is misleading to the product's actual potential. Formost, PortalApp is a versatile "out-of-the-box" solution that is ready to accomodate 90% of common Web requirements. This means instant deployment of a content managed Website, portal or intranet. Subsequently, PortalApp can be extensively configured and customized (both design and functionality) with minimal technical expertise. By distinguishing these 2 separate tasks the ease-of-use becomes more apparent.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-116231925037430044?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/116231925037430044/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=116231925037430044' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/116231925037430044'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/116231925037430044'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2006/10/overcoming-weaknesses-in-cms-portal.html' title='Overcoming Weaknesses in CMS / Portal Software'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-112843780574099392</id><published>2005-10-04T10:53:00.000-04:00</published><updated>2005-10-20T05:18:38.936-04:00</updated><title type='text'>Is Corporate Blogging the Killer App of 2006?</title><content type='html'>Blogs have become a staple for business communication. With staff blogs on Websites being made available for public consumption, customers get insight into the people and culture of the company they may be buying into. Corporate blogs also provide customers and partners with an opportunity to provide feedback. Wether you're a business principal, partner or customer, I am interested in hearing your stories about how a business blog has changed your perspective on busuiness communication.&lt;br /&gt;&lt;br /&gt;Primary Reasons for Starting a Corporate Blog&lt;br /&gt;&lt;br /&gt;- Community building&lt;br /&gt;- Thought leadership / idea provocation&lt;br /&gt;- Communicate with customers&lt;br /&gt;- Marketing / sales driving&lt;br /&gt;- SEO / Improve search engine rank&lt;br /&gt;&lt;br /&gt;Key Benefits of Corporate Blogging&lt;br /&gt;&lt;br /&gt;- Increased credibility&lt;br /&gt;- Increased sales leads&lt;br /&gt;- Improved communication with audience&lt;br /&gt;- Increased communication on casual / personal level&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Key Risk Factors of Corporate Blogging&lt;br /&gt;&lt;br /&gt;- Negative PR&lt;br /&gt;- Cost / Man hours&lt;br /&gt;- Legal Liability&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/Corporate Blogging" rel="tag"&gt;Corporate Blogging&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-112843780574099392?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112843780574099392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112843780574099392'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/10/is-corporate-blogging-killer-app-of.html' title='Is Corporate Blogging the Killer App of 2006?'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-112230666903105265</id><published>2005-07-25T11:40:00.000-04:00</published><updated>2005-10-04T15:27:03.196-04:00</updated><title type='text'>Core CMS Features</title><content type='html'>What makes a CMS a CMS? What features should a content management system have? Is a CMS a subset of other common knowledge management systems -- or does the CMS contains theses sub systems?&lt;br /&gt;&lt;br /&gt;Core considerations for a CMS:&lt;br /&gt;&lt;br /&gt;Content Management - Document management and related workflow&lt;br /&gt;&lt;br /&gt;Content Creation (authoring) - Web based forms for content entry. Easy-to-use UI for editing (WYSIWYG editor)&lt;br /&gt;&lt;br /&gt;Content Delivery - Separation of content from presentation. Publishing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-112230666903105265?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112230666903105265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112230666903105265'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/07/core-cms-features.html' title='Core CMS Features'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-112230425869192171</id><published>2005-07-25T11:02:00.000-04:00</published><updated>2005-10-20T05:22:30.773-04:00</updated><title type='text'>RSCM = Really Simple Content Management</title><content type='html'>While 2005 is marked as the year where RSS came of age, 2006 will mark the dawn of  RSCM (Really Simple Content Management) -- a new protocol for the standardization of content management. By using an XML based structure CM vendors, content providers and publishers will improve productivity and knowledge management.&lt;br /&gt;&lt;br /&gt;The RSCM protocol is a common language spoken by systems that handle content management data, such as news, articles, lists and other standard Website data.. A common language enables computers like the one on your desk to receive information from many different content management systems without being specially "trained" to understand the information from each.&lt;br /&gt;&lt;br /&gt;Standards like RSCM exist in many different fields. Sometimes, the standard simply adopts one of many pre-existing languages that everyone agrees to use. For example, air traffic controllers at international airports all speak English, no matter what their native language, so pilots are guaranteed that they need learn only one language to fly anywhere in the world.&lt;br /&gt;&lt;br /&gt;RSCM, like many XML standards, is a language that was built for a specific purpose, but the goal is the same: to have all computers that deal with content management, workflow, so that you can use the same desktop computer program with any CM that has adopted RSCM.&lt;br /&gt;&lt;br /&gt;For software developers and for providers of CM applications, RSCM means having to write programs to use only one language, the common language of RSCM, in order to work with many different CM systems. This means lower costs, more products, more competition among vendors, and faster implementations of new systems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-112230425869192171?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112230425869192171'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112230425869192171'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/07/rscm-really-simple-content-management.html' title='RSCM = Really Simple Content Management'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-112117436901733983</id><published>2005-07-12T08:58:00.000-04:00</published><updated>2005-10-20T05:22:08.943-04:00</updated><title type='text'>A CMS that Supports "Ad-hoc" Data</title><content type='html'>I am discovering that with all of the CMS products that are now available, the good majority do not support Ad-hoc data (A.K.A "metadata").&lt;br /&gt;&lt;br /&gt;When it comes to standard "content" fields such as "Title", "Description", "Author", "Date" most CMS tools have a means to publish and search on these fields. This of course also makes sense when it comes to the standards for syndication -- RSS, ATOM, etc..&lt;br /&gt;&lt;br /&gt;But what happens when other industry specific data needs to go into your CMS? While there are endless scenarios that can be applied -- consider the Real Estate Industry. Realtors (NAR) are now formulating the industry standard RETS (Real Estate Transaction Standard) specification. This is an XML-based protocol that will define common fields for real estate listings and transactions.&lt;br /&gt;&lt;br /&gt;Ideally, for a CMS to assist with the support of RETS, it would require a means for CMS administrators to "add-on" some of the RETS fields:&lt;br /&gt;"Bedrooms", "Bathrooms", "Acres", "Rental", "W/D", etc..&lt;br /&gt;&lt;br /&gt;So now when a content item (page) gets created, we can apply our custom real estate data to our standard CMS data.&lt;br /&gt;&lt;br /&gt;"Title"&lt;br /&gt;"Description"&lt;br /&gt;"Location"&lt;br /&gt;"Bedrooms"&lt;br /&gt;"Bathrooms"&lt;br /&gt;etc...&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.portalapp.com"&gt;PortalApp&lt;/a&gt; does support this "ad-hoc" data, which means it can be used to publish or index any content fields as defined by the CMS's adminstrator. This means that "content" can literally be anything from a "news article" to "real estate listing" to "classified ad" to "tech note".&lt;br /&gt;&lt;br /&gt;For example, here is how you create an article with PortalApp:&lt;br /&gt;&lt;a href="http://www.portalapp.net/content.asp?contenttype=Article"&gt;http://www.portalapp.net/content.asp?contenttype=Article&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;AND, here is how you create a real estate listing with PortalApp:&lt;br /&gt;&lt;a href="http://www.portalapp.net/content.asp?contenttype=Real%20Estate"&gt;http://www.portalapp.net/content.asp?contenttype=Real%20Estate&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(Login using Admin, Admin if you want to try it yourself)&lt;br /&gt;&lt;br /&gt;Let me know when you find another CMS that will allow you to create custom (ad-hoc, metadata) fields to accomodate industry specific data.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/CMS" rel="tag"&gt;CMS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-112117436901733983?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112117436901733983'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/112117436901733983'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/07/cms-that-supports-ad-hoc-data.html' title='A CMS that Supports &quot;Ad-hoc&quot; Data'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111997177678456643</id><published>2005-06-28T11:07:00.000-04:00</published><updated>2005-10-20T05:20:30.753-04:00</updated><title type='text'>BPM and Content Management</title><content type='html'>Business Process Management (BPM) has become the new buzz-o-nym to remind all of us CM vendors that "content management" is a process -- not a technology. &lt;br /&gt;&lt;br /&gt;Companies need technology -- and they also need flexibility. Flexibility to accomodate their industry, their content and their process. Many CMS's dictate the business process, and I think this is where many CM systems fail. Businesses need content management systems that can adapt industry specific metadata and business logic.&lt;br /&gt;&lt;br /&gt;Instead of engineering the "content management" process in one fell swoop, and then cementing a workflow model into code, CMS vendors should design processes that can be changed on the fly and software that's flexible enough to support those changes.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/CMS" rel="tag"&gt;CMS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;, &lt;a href="http://technorati.com/tag/BPM" rel="tag"&gt;BPM&lt;/a&gt;,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111997177678456643?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111997177678456643'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111997177678456643'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/bpm-and-content-management.html' title='BPM and Content Management'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111956214191867164</id><published>2005-06-23T17:16:00.000-04:00</published><updated>2005-06-30T13:17:23.216-04:00</updated><title type='text'>RSS and CMS Workflow?</title><content type='html'>Hhhmmmm. After visting &lt;a href="http://www.cmswatch.com"&gt;CMSWatch&lt;/a&gt; the other day, I &lt;a href="http://www.ccombs.net/weblog/2005/06/06/1118073846000.html"&gt;discovered this posting&lt;/a&gt; about using RSS feeds to manage content workflow.&lt;br /&gt;&lt;br /&gt;While I think a good CMS will support RSS/XML aggregation and publishing of content, it seems a little overkill to push/pull pending content to RSS (for that matter any other XML format) when an adequate CMS administration system should provide the means to notify content approvers of pending content... whether it be email or secured Web. What is the point of pushing it to RSS? What about the &lt;a href="http://www.eweek.com/article2/0,1759,1833035,00.asp"&gt;security implications&lt;/a&gt;? In the end, the CMS should manage the workflow and all aspects -- notification, security, approval, categorization, etc...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/CMS" rel="tag"&gt;CMS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;, &lt;a href="http://technorati.com/tag/RSS" rel="tag"&gt;RSS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Portals" rel="tag"&gt;Portals&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111956214191867164?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/111956214191867164/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=111956214191867164' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111956214191867164'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111956214191867164'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/rss-and-cms-workflow.html' title='RSS and CMS Workflow?'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111873650061105861</id><published>2005-06-14T03:57:00.000-04:00</published><updated>2005-06-14T06:48:08.333-04:00</updated><title type='text'>Why Does a Small Business Need a CMS?</title><content type='html'>&lt;p&gt;&lt;br /&gt;Since most small business owners are completely satisfied with opening and publishing their Websites with Frontpage or Dreamweaver, I thought it time to consider exactly what would motivate a small business to port their adequate Website over to a content management system (CMS)?&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;You know it's time to get a Web CMS when...&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Reason #1: Your Web content has become "unruly"&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;Your site is only as good as it's content, and when your Website become too large with static (.html) pages, the result is pages that become too long (poor readability), out of date and out of context. Links to other internal pages may be inconsistent. In the end, Web users will find it difficult to pinpoint information on the site.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Since CMS's are designed in a content-centric manner, site navigation, categories and site-mapping logically result. Thus, there is less need for redundant site maintence tasks, and users are able to access and intuitively find information.&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Reason #2: You need enhanced or improved functionality&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;Another motivating factor for moving to a CMS, is that your site lacks required functionality. You may wish the site could easily be extended with features like security controls, discussion forums, keyword searching, a feedback system or the ability to easily syndicate content to and from other sources (ie; news feeds).&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Since most CMS's are dynamically driven, features like knowledge management (FAQ lists, customer support, CRM, feedback systems, article management, searching, metadata, archiving) and user management (member login, registration, role-based security) are often inclusive to the CMS features. Some content management systems even offer extended features for collaboration (forums, calendar) and e-commerce (shopping carts, payment gateway) initiatives. &lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Reason #3: You want the experts to publish their own content&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;Website content doesn't get updated effectively when their are administrative bottlenecks. Often, the person that understands A, doesn't know about B, but knowledge of A and B may be required to get content up-to-date on the site.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Web Content management systems can eliminate the bottlenecks associated with delivery, formatting, and editing of site's content. Content authors, editors, and Web administrators can all "work" on the site instead of waiting for each other.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Reason #4: You want to more frequently update the site -- anytime, anywhere&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;Many sites go without basic content updates because there are too many technical obstacles along the way. You may find your content is ready for the site, but the site is not ready for your content. There may be issues with FTP access or scheduling that prevent you from updating the site on a consistent basis. For businesses that have a remote or distributed staff, the site is not updated because the Web authoring software (Frontpage, Dreamweaver, FTP, etc..) is not convenient or accessible. Simple updates to static sites are often time consuming and tedious, so the site goes without updates.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;A good CMS will simplify the time and procedure required to post a content update. Rather than having to know HTML code, or duplicate existing pages, a CMS will provide an intuitive means to add and edit content. A CMS will let the content provider (author) easily format content, and define when and where to publish the content on the site. Most Web CMS tools provide Web-based tools to manage and update the site. This makes secure site updates possible without the use of desktop Web authoring and FTP software.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Reason #5: You need more consistent templating or navigation&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;Another obstacle to Website management can be the site's structure or user interface (UI). There may be multiple menus, sections, images or sub-folders that complicate making changes to one area without breaking another.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Most content management systems separate the "design layer" from the "business logic" layer. This enables you to update site content without creating an entirely new Web page with images, menus and sitewide links. Often CMS navigation (menus) are dynamically driven which means menu labels and related links may get automatically updated when you add new content. Since design and content is separated, future updates to the look-and-feel of the site can be made without having to "redo" or lose all of the content.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Reason #5: You need improved search engine rank (SEO)&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;Your site's .html pages may be indexed by Yahoo! and Google, but you want to drive traffic based on specific keywords and phrases that are in line with your marketing objectives. The quality and format of your site's content is critical to optimizing your site's placement in the search engines.&lt;br /&gt;&lt;br&gt;&lt;br /&gt;Many CMS tools focus on SEO and have search engine friendly tricks "built-in". Some of these SEO tricks include, page titles, meta tags (keywords and description), descriptive hyperlinks, permalinks and optimized filenames that are automatically generated from your site's content. By optimizing each page, search engines can more accurately read and index your site, resulting in better search engine placement.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/CMS" rel="tag"&gt;CMS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;, &lt;a href="http://technorati.com/tag/PortalApp" rel="tag"&gt;PortalApp&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Portals" rel="tag"&gt;Portals&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111873650061105861?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/111873650061105861/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=111873650061105861' title='22 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111873650061105861'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111873650061105861'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/why-does-small-business-need-cms.html' title='Why Does a Small Business Need a CMS?'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>22</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111805725339738501</id><published>2005-06-06T07:26:00.000-04:00</published><updated>2005-06-06T11:33:12.426-04:00</updated><title type='text'>On-line Google Sitemap Generator</title><content type='html'>Heard about Google's new sitemap program?&lt;br /&gt;&lt;br /&gt;On June 2, 2005, Google announced the beta of their new service, Google Sitemaps. This provides Webmasters with a method to map site URLs into an XML based format. On some regular interval, Google will read the sitemap .xml file, to better understand the exact content of the site, and what has been recently updated on the site.&lt;br /&gt;&lt;br /&gt;Basically, you generate a sitemap in the correct format using, and the update your sitemap when you make changes to your site. The sitemap.xml file you submit to Google must adhere to certain guidelines that Google has established. This "set of rules" is provided in the format of an .XSD file (XML Shema Definition) on the Google site: Google Sitemaps .XSD. Once the sitemap .xml file is built, copy (or FTP) it to your Web server, then go to &lt;a href="http://www.google.com/webmasters/sitemaps"&gt;http://www.google.com/webmasters/sitemaps&lt;/a&gt;/ to submit your sitemap to Google.&lt;br /&gt;&lt;br /&gt;Try Iatek's new beta sitemap generator: &lt;br /&gt;&lt;a href="http://www.portalapp.com/google-sitemap.asp"&gt;http://www.portalapp.com/google-sitemap.asp&lt;/a&gt; OR &lt;br /&gt;&lt;a href="http://www.my-google-sitemap.com/"&gt;http://www.my-google-sitemap.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/Google" rel="tag"&gt;Google&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Google Sitemap" rel="tag"&gt;Google Sitemap&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111805725339738501?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/111805725339738501/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=111805725339738501' title='11 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111805725339738501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111805725339738501'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/on-line-google-sitemap-generator.html' title='On-line Google Sitemap Generator'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>11</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111781403544178499</id><published>2005-06-03T11:41:00.000-04:00</published><updated>2005-06-03T12:23:15.036-04:00</updated><title type='text'>10 Traits of Highly Successful Forums</title><content type='html'>When you check out &lt;a href="http://www.big-boards.com"&gt;big-boards.com&lt;/a&gt; you'll find a list of the most popular community (A.K.A forum, bulletin board,BB,etc..) sites and I am sure that knowledge hungry readers like yourself would like to be to lucky as to get this type of traffic to your own Web doms.&lt;br /&gt;&lt;br /&gt;So exactly what makes these communities so special? Is it the &lt;a href="http://www.codedaddy.com/forums.asp?ForumId=29&amp;TopicId=217"&gt;community software&lt;/a&gt; ? Is it the moderators? topics? incentives? activity? quality of the content? cool functionality? design?&lt;br /&gt;&lt;br /&gt;Well -- IMO here is what's important. Please help me to complete or re-order this list:&lt;br /&gt;&lt;br /&gt;1) Activity - Without recent posts no one will stay.&lt;br /&gt;&lt;br /&gt;2) Incentives - Why should you post here? Good communities give members a good reason to take part.&lt;br /&gt;&lt;br /&gt;3) Clarity - Forums and descriptions should be clear so there is no confusion as to where to post.&lt;br /&gt;&lt;br /&gt;4) Eye Appeal - Being attractive helps.&lt;br /&gt;&lt;br /&gt;5) Diversity - Forums and topics should cover a range of subjects with context to your site.&lt;br /&gt;&lt;br /&gt;6) Functionality - Good communities also provide PM, member profiles, avatars, sub-forums, etc..&lt;br /&gt;&lt;br /&gt;7) Moderation - Expert moderators that stay on top of posts help keep content accurate and relevant.&lt;br /&gt;&lt;br /&gt;8) ??&lt;br /&gt;&lt;br /&gt;9) ???&lt;br /&gt;&lt;br /&gt;10) ???&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/PhpBB" rel="tag"&gt;PhpBB&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Forums" rel="tag"&gt;Forums&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111781403544178499?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/111781403544178499/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=111781403544178499' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111781403544178499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111781403544178499'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/10-traits-of-highly-successful-forums.html' title='10 Traits of Highly Successful Forums'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-13389900.post-111780893464917165</id><published>2005-06-03T10:17:00.000-04:00</published><updated>2005-06-03T12:31:35.726-04:00</updated><title type='text'>Content Management Thoughts for June 2005</title><content type='html'>I totally disagree with one of Jeff Veen's comments about what a CMS should do and be:&lt;br /&gt;&lt;br /&gt;"Users of a public web site should never — never — be presented with a way to log into the CMS. Every organization I have ever worked with has kept the content management interface completely separate from their public-facing Web site, yet almost every open source CMS mixes them together. These systems provide a mechanism for anyone to create an account and login to the CMS directly from the site being managed. Yes, I know I can edit the template and take this out. But the only sites that really require this functionality seem to be open source projects; this is an indication that you’re badly misinterpreting your audience."&lt;br /&gt;&lt;br /&gt;Huh? Say what? Who is misinterpreting "audience" here?&lt;br /&gt;&lt;br /&gt;Please clarify this for me.&lt;br /&gt;&lt;br /&gt;A user of a public Web site is a member of the audience -- and yes -- that same user may also be a content provider (or content administrator, or content editor). Let the CMS authenticate the user accordingly -- But removing login prompts from the UI? I think Jeff is badly misinterpreting usability.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://technorati.com/tag/CMS" rel="tag"&gt;CMS&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Content Management" rel="tag"&gt;Content Management&lt;/a&gt;, &lt;a href="http://technorati.com/tag/PortalApp" rel="tag"&gt;PortalApp&lt;/a&gt;, &lt;a href="http://technorati.com/tag/Portals" rel="tag"&gt;Portals&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13389900-111780893464917165?l=portal-cms.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://portal-cms.blogspot.com/feeds/111780893464917165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=13389900&amp;postID=111780893464917165' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111780893464917165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/13389900/posts/default/111780893464917165'/><link rel='alternate' type='text/html' href='http://portal-cms.blogspot.com/2005/06/content-management-thoughts-for-june.html' title='Content Management Thoughts for June 2005'/><author><name>Iatek</name><uri>http://www.blogger.com/profile/16771408922497582554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
