<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Artiklar</title>
	<link>http://mortfiles.se/demofiles/index.html</link>
	<pubDate>Wed, 22 Feb 2012 15:49:38 +0000</pubDate>
	<ttl>43200</ttl>
	<description>Manage articles</description>
	<item>
		<title>Lägg in Facebooks nya kommentarer på din webbplats</title>
		<link>http://mortfiles.se/demofiles/index.html/_/facebook/lagg-in-facebooks-nya-kommentarer-pa-din-webbplats-r12</link>
		<description><![CDATA[<span style='font-size: 13px;'><span style='font-family: arial, verdana, tahoma, sans-serif'><span style='font-size: 13px;'><strong class='bbc'>Häromdagen skrev jag en bloggpost om Facebooks nya kommentarsbox och nu är det dags att visa hur du lägger till en sådan box på din egen blogg eller webbplats.</strong><br />
<br />
Det första du bör göra om du vill kunna moderera dina kommentarer är att skapa en applikation. Det gör du så att du kan hänvisa till applikationen och sätta upp administratörer för dina kommentarer. Gå till <a href='http://www.facebook.com/developers/apps.php' class='bbc_url' title='Extern länk' rel='nofollow external'>Facebook apps</a> och klicka på att sätta upp en ny app (grå knapp i högra hörnet). Ge din app ett namn och klicka på skapa app.<br />
<br />
[attachment=69:app1.jpg]<br />
<br />
<br />
Nu har du en app och jag ska inte krångla till det med detaljer hur du kan sätta upp din app, det får bli en annan bloggpost. Du kan låta appen vara som den är.  Det du bör göra är att klicka på Facebook Integration och notera Application ID. Det är identifikationen för din app som du kommer att använda senare.<br />
<br />
[attachment=70:app2.jpg]<br />
<br />
<br />
Ok, nu har vi en app och då ska vi lägga in boxen på din webbplats. Det första vi gör är att lägga in två metataggar mellan header taggarna så vi kan tala om för Facebook vilken app som ska få moderera och vem som ska få notifikationer om någon skriver en kommentar.<br />
<br />
<pre class='prettyprint'>&lt;meta property="fb:app_id" content="{YOUR_APPLICATION_ID}"&gt;</pre><br />
Den koden talar om att det är din app som ska användas och du lägger in Application ID från din skapade applikation istället för "{YOUR_APPLICATION_ID}".<br />
<br />
<pre class='prettyprint'>&lt;meta property="fb:admins" content="{YOUR_USER_ID}"&gt;</pre><br />
Här lägger du in din profil's ID. Enklast sättet att hitta det är att gå till din profil och föra musen över din profilbild. Du ser då id numret i slutet på den länken. Den brukar se ut så här: "http://www.facebook.com/album.php?profile=1&id=<span style='color: #FF0000'><strong class='bbc'>594037815</strong></span>" eller liknande. Det rödmarkerade är ditt användar ID som du lägger in här.<br />
<br />
Med dom två metataggarna på plats i din header så kan du lägga in din kommentarsbox. Vill du ändra layout och URL så rekommenderar jag att du går till <a href='http://developers.facebook.com/docs/reference/plugins/comments/' class='bbc_url' title='Extern länk' rel='nofollow external'>den officiella webbplatsen</a> för kommentarerna och gör dina ändringar så du ser dom direkt. När du är klar så klickar du på "get code" så kommer din kod upp direkt så du kan kopiera och klistra in på din sida.<br />
<br />
[attachment=71:comments1.jpg]<br />
<br />
<br />
Koden är ganska enkel och du klistrar in den på den sida där du vill ha dina kommentarer:<br />
<pre class='prettyprint'>&lt;div id="fb-root"&gt;&lt;/div&gt;<br />&lt;script src="http&#58;//connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;<br />&lt;fb:comments href="YOUR_CANONICAL_URL"&gt;&lt;/fb:comments&gt;</pre><br />
<br />
<br />
Du ersätter "YOUR_CANONICAL_URL" med sidans adress där kommentarerna ska synas. Om du vill så kan du expandera funktionerna lite genom att lägga till antalet kommentarer som ska visas och bredden på kommentarsrutan genom att lägga till <span class='bbc_underline'>num_posts="2"</span> och <span class='bbc_underline'>width="500"</span> till exempel om du vill visa två poster och ge kommentarsboxen en vidd på 500px. <br />
<br />
<pre class='prettyprint'>&lt;div id="fb-root"&gt;&lt;/div&gt;&lt;script src="http&#58;//connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;&lt;fb:comments href="example.com" num_posts="2" width="500"&gt;&lt;/fb:comments&gt;</pre><br />
<br />
<br />
<strong class='bbc'>Nu ska din nya kommentarsbox synas på din webbplats!</strong><br />
<br />
Om du ska lägga till kommentarsboxen på en dynamisk webbplats som till exempel Wordpress där varje ny post eller sida har samma template, men med olika adresser så kan du antingen lägga in en variabel för sidans URL eller så fuskar du lite och lägger in en tagg som heter migrated=1. Den taggen gör så att varje gång kommentarsboxen laddas så använder den sidans URL som referens automatiskt. det är smidigt, men kan du lägga in rätt URL så är det att föredra.<br />
<pre class='prettyprint'>&lt;div id="fb-root"&gt;&lt;/div&gt;<br />&lt;script src="http&#58;//connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;<br />&lt;fb:comments  migrated="1"&gt;&lt;/fb:comments&gt;</pre><br />
<br />
<br />
I Wordpress så lägger du in facebook boxen i dom templates där dom passar. Förslagsvis lägger du in i till exempel single.php direkt under comments, men innan loopen avslutas:<br />
<br />
[attachment=72:comments2.jpg]<br />
<br />
<br />
För att få rätt url så lägger du in Wordpress variabel för det så här:<br />
<pre class='prettyprint'>&lt;div id="fb-root"&gt;&lt;/div&gt;<br />&lt;script src="http&#58;//connect.facebook.net/en_US/all.js#xfbml=1"&gt;&lt;/script&gt;<br />&lt;fb:comments href="&lt;?php the_permalink();?&gt;"&gt;&lt;/fb:comments&gt;</pre><br />
<br />
<br />
Har du ett plugin som ger Facebook kommentarsboxar så kan du troligen ändra i pluginets kod också, så har du ett sådant så skriv en kommentar kan jag försöka visa hur du gör det.<br />
<br />
Lycka till!</span></span></span>]]></description>
		<pubDate>Sun, 24 Apr 2011 07:31:34 +0000</pubDate>
		<guid isPermaLink="false">7f6ffaa6bb0b408017b62254211691b5</guid>
	</item>
	<item>
		<title>w</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/w-r11</link>
		<description><![CDATA[<span style='font-family: Arial, Helvetica, sans'><span style='font-size: 13px;'><span style='font-size: 13px;'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis gravida nunc luctus ligula dictum eget convallis est vehicula. Etiam sem tortor, faucibus iaculis rhoncus eget, ornare ac sem. Praesent tristique interdum libero, a aliquam enim semper eget. Etiam id neque in nisl convallis commodo. Sed euismod rutrum mauris quis dignissim. Nunc pharetra, libero vitae laoreet consequat, leo enim convallis tortor, sit amet elementum magna leo eget turpis. Suspendisse potenti. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus mattis quam eget risus porta sed porta diam mollis. Pellentesque vel purus libero, quis dignissim turpis.</span><br />
<br />
<span style='font-size: 13px;'>Aliquam eu metus ut orci vehicula iaculis lacinia vitae dolor. Pellentesque sit amet magna eros. Vestibulum et purus vel ligula blandit lobortis. Nullam mattis pharetra ligula sed mattis. Vestibulum facilisis eleifend nulla et volutpat. Praesent ullamcorper ultrices iaculis. Nunc ultrices ullamcorper eros. In lobortis aliquam venenatis. Quisque auctor fermentum elit, eu vulputate ipsum tempus vitae. Integer imperdiet nibh augue. Nullam sed libero eget orci pellentesque aliquam non a odio.</span></span></span><br />
<span style='font-family: Arial, Helvetica, sans'> </span><br />
<span style='font-family: Arial, Helvetica, sans'><span style='font-size: 13px;'> <br />
<br />
<span style='font-size: 13px;'>Cras mauris justo, placerat malesuada egestas at, eleifend vel sem. Sed hendrerit, nisi eu blandit luctus, orci purus rhoncus eros, sed gravida orci orci sed lectus. Vestibulum at ipsum elit, accumsan eleifend neque. Morbi vehicula dapibus magna. Cras eget metus at arcu congue aliquam a a tortor. Praesent a est nunc, placerat fermentum sapien. Ut enim arcu, mollis id imperdiet id, condimentum eu ligula. Duis eu nisi ante. Duis posuere felis a felis ornare pretium. Nulla felis elit, rutrum vel aliquam id, consequat sed elit. Vivamus ornare orci sed felis suscipit dignissim. In dui augue, tristique viverra fringilla sit amet, commodo at leo. Aliquam accumsan nunc sed tortor auctor interdum. Fusce vel arcu enim, nec blandit nulla. Curabitur condimentum nulla ut mauris tempor pulvinar.</span><br />
<br />
<span style='font-size: 13px;'>Nam sed lectus in orci molestie aliquam non vitae felis. In hac habitasse platea dictumst. Nullam consequat quam bibendum purus condimentum egestas. Nulla non turpis erat. Pellentesque facilisis erat sit amet erat molestie consectetur. Maecenas mollis magna in turpis dignissim vehicula. Donec at tristique enim. Donec id faucibus nulla. Sed rutrum augue ac neque consectetur dictum. Nullam interdum, urna ut facilisis feugiat, massa urna egestas libero, sed rutrum est nunc a erat. Aenean ac sem eget felis varius consectetur. Nunc id dolor sed urna aliquam placerat ac nec leo. Nunc iaculis ligula vel neque venenatis dictum. Morbi quis mattis lacus. Quisque at leo condimentum turpis lacinia dictum. In et leo est. Aliquam erat volutpat. Phasellus volutpat lacinia purus eu posuere. Nunc aliquet, lacus ac facilisis tincidunt, nibh elit sodales mauris, sed lacinia dolor dolor ac diam. Vivamus at odio eu turpis congue sollicitudin sit amet nec dolor.</span><br />
<br />
<span style='font-size: 13px;'>Nullam convallis risus sit amet quam mattis egestas. Mauris feugiat, magna non aliquet posuere, est felis accumsan urna, dapibus viverra massa dui ut lectus. Sed placerat aliquam sapien, vitae sodales quam feugiat porta. Donec nec risus ut est adipiscing vestibulum. Fusce erat lorem, sodales a bibendum sed, tristique in lorem. Praesent venenatis lectus ut justo pulvinar vel egestas nunc blandit. Morbi eu metus augue, ut accumsan ligula. Ut mattis urna in tortor volutpat sed dapibus nibh interdum. Aenean a turpis lorem, nec varius leo. Etiam eu iaculis mauris. Aenean vel nisl mi. Ut tincidunt convallis mauris at elementum. Nulla varius nulla ut velit porta ultrices imperdiet nisi fringilla. Aliquam erat volutpat. Nunc ultrices mauris quis ligula vestibulum quis blandit felis laoreet. Morbi venenatis urna eu risus molestie posuere. Nunc nulla felis, pharetra eget mattis sit amet, commodo sed ligula. Pellentesque posuere placerat erat et facilisis. Cras vitae ligula diam, sed dapibus nisl. Praesent lectus purus, fermentum in congue non, sodales sit amet leo.</span><br />
<br />
</span></span><span style='font-family: Arial, Helvetica, sans'><span style='font-size: 13px;'>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis gravida nunc luctus ligula dictum eget convallis est vehicula. Etiam sem tortor, faucibus iaculis rhoncus eget, ornare ac sem. Praesent tristique interdum libero, a aliquam enim semper eget. Etiam id neque in nisl convallis commodo. Sed euismod rutrum mauris quis dignissim. Nunc pharetra, libero vitae laoreet consequat, leo enim convallis tortor, sit amet elementum magna leo eget turpis. Suspendisse potenti. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vivamus mattis quam eget risus porta sed porta diam mollis. Pellentesque vel purus libero, quis dignissim turpis.<span style='font-size: 13px;'>Aliquam eu metus ut orci vehicula iaculis lacinia vitae dolor. Pellentesque sit amet magna eros. Vestibulum et purus vel ligula blandit lobortis. Nullam mattis pharetra ligula sed mattis. Vestibulum facilisis eleifend nulla et volutpat. Praesent ullamcorper ultrices iaculis. Nunc ultrices ullamcorper eros. In lobortis aliquam venenatis. Quisque auctor fermentum elit, eu vulputate ipsum tempus vitae. Integer imperdiet nibh augue. Nullam sed libero eget orci pellentesque aliquam non a odio.</span><br />
<br />
<span style='font-size: 13px;'>Cras mauris justo, placerat malesuada egestas at, eleifend vel sem. Sed hendrerit, nisi eu blandit luctus, orci purus rhoncus eros, sed gravida orci orci sed lectus. Vestibulum at ipsum elit, accumsan eleifend neque. Morbi vehicula dapibus magna. Cras eget metus at arcu congue aliquam a a tortor. Praesent a est nunc, placerat fermentum sapien. Ut enim arcu, mollis id imperdiet id, condimentum eu ligula. Duis eu nisi ante. Duis posuere felis a felis ornare pretium. Nulla felis elit, rutrum vel aliquam id, consequat sed elit. Vivamus ornare orci sed felis suscipit dignissim. In dui augue, tristique viverra fringilla sit amet, commodo at leo. Aliquam accumsan nunc sed tortor auctor interdum. Fusce vel arcu enim, nec blandit nulla. Curabitur condimentum nulla ut mauris tempor pulvinar.</span><br />
<br />
<span style='font-size: 13px;'>Nam sed lectus in orci molestie aliquam non vitae felis. In hac habitasse platea dictumst. Nullam consequat quam bibendum purus condimentum egestas. Nulla non turpis erat. Pellentesque facilisis erat sit amet erat molestie consectetur. Maecenas mollis magna in turpis dignissim vehicula. Donec at tristique enim. Donec id faucibus nulla. Sed rutrum augue ac neque consectetur dictum. Nullam interdum, urna ut facilisis feugiat, massa urna egestas libero, sed rutrum est nunc a erat. Aenean ac sem eget felis varius consectetur. Nunc id dolor sed urna aliquam placerat ac nec leo. Nunc iaculis ligula vel neque venenatis dictum. Morbi quis mattis lacus. Quisque at leo condimentum turpis lacinia dictum. In et leo est. Aliquam erat volutpat. Phasellus volutpat lacinia purus eu posuere. Nunc aliquet, lacus ac facilisis tincidunt, nibh elit sodales mauris, sed lacinia dolor dolor ac diam. Vivamus at odio eu turpis congue sollicitudin sit amet nec dolor.</span><br />
<br />
<span style='font-size: 13px;'>Nullam convallis risus sit amet quam mattis egestas. Mauris feugiat, magna non aliquet posuere, est felis accumsan urna, dapibus viverra massa dui ut lectus. Sed placerat aliquam sapien, vitae sodales quam feugiat porta. Donec nec risus ut est adipiscing vestibulum. Fusce erat lorem, sodales a bibendum sed, tristique in lorem. Praesent venenatis lectus ut justo pulvinar vel egestas nunc blandit. Morbi eu metus augue, ut accumsan ligula. Ut mattis urna in tortor volutpat sed dapibus nibh interdum. Aenean a turpis lorem, nec varius leo. Etiam eu iaculis mauris. Aenean vel nisl mi. Ut tincidunt convallis mauris at elementum. Nulla varius nulla ut velit porta ultrices imperdiet nisi fringilla. Aliquam erat volutpat. Nunc ultrices mauris quis ligula vestibulum quis blandit felis laoreet. Morbi venenatis urna eu risus molestie posuere. Nunc nulla felis, pharetra eget mattis sit amet, commodo sed ligula. Pellentesque posuere placerat erat et facilisis. Cras vitae ligula diam, sed dapibus nisl. Praesent lectus purus, fermentum in congue non, sodales sit amet leo.</span><br />
<br />
</span></span><br />
<br />
<br />
<br />
<br />
<a href='http://www.scribd.com/doc/46746174/anvandningsvillkor' class='bbc_url' title='Extern länk' rel='nofollow external'>användningsvillkor</a><br />
<br />
sdfsdf]]></description>
		<pubDate>Sun, 03 Apr 2011 08:03:52 +0000</pubDate>
		<guid isPermaLink="false">698d51a19d8a121ce581499d7b701668</guid>
	</item>
	<item>
		<title>refwdfasfdasfas</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/refwdfasfdasfas-r10</link>
		<description>sdfasfasfasdfasdfas</description>
		<pubDate>Sat, 18 Dec 2010 07:19:50 +0000</pubDate>
		<guid isPermaLink="false">5f93f983524def3dca464469d2cf9f3e</guid>
	</item>
	<item>
		<title>titel</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/titel-r9</link>
		<description>test</description>
		<pubDate>Sat, 18 Dec 2010 06:19:35 +0000</pubDate>
		<guid isPermaLink="false">1f0e3dad99908345f7439f8ffabdffc4</guid>
	</item>
	<item>
		<title>Promoting Posts to Articles</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/promoting-posts-to-articles-r1</link>
		<description><![CDATA[Beginning with IP.Content 2.0, you can now promote forum posts to your articles section in IP.Content.  <br />
<br />
The administrator can configure the specifics of this feature in the ACP under My Apps -> IP.Content -> Promote Article Settings.  You can turn the system on and off, control which groups can copy and move posts to the articles section, and specify a few other details for the feature.  A new hook is included with IP.Content which adds a button to each post labeled "Promote to Article".  This button only shows up if you have permission to use the feature based on the ACP configuration.<br />
<br />
When clicked, the button will take you to a new form where you can formalize the details of the new article.  You can tweak the text and title, upload an image, and specify other pertinent details.  If you are able to both move and copy posts to the articles section, you will also be asked which type of promotion you wish to use.  Upon submitting the form, IP.Content handles the rest.<br />
<br />
This new feature can be used to showcase important content otherwise hidden in your forums by pushing this content to your frontpage.  It is then up to you whether you want a copy made in the articles section (leaving the original post in tact), whether you want to actually move the post to the articles section, and whether you want any cross-linking left in place.  With such powerful options, we are sure you will find many uses for this new promotion tool in IP.Content 2.0.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">6512bd43d9caa6e02c990b0a82652dca</guid>
	</item>
	<item>
		<title>What Is A Frontpage?</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/what-is-a-frontpage-r2</link>
		<description><![CDATA[IP.Content 2.0 uses the term "frontpage" to refer to both the homepage of the Articles module, and the landing page of each individual category.  We have introduced this new navigational structure to better allow you to showcase content, while presenting it in a standardized format that your users will be able to understand and jump into without assistance.<br />
<br />
Firstly, you will now be able to define "frontpage" templates in the ACP for the Articles module.  IP.Content 2.0 will ship with 3 defaults:<br />
<br />
<ul class='bbc'><li><strong class='bbc'>1x2x2 Layout</strong><br /><br />This layout will display articles in a traditional "news" style layout.<br /><br /></li><li><strong class='bbc'>Blog format</strong><br /><br />This format will display articles in a blog-style format.<br /><br /></li><li><strong class='bbc'>Single column</strong><br /><br />This layout will force articles to display in a single column, one per row.</li></ul><br />
<br />
You can use one or more of these frontpage layouts, or you can create your own.  Experiment with displaying articles in different formats on your homepage to determine which layout your users like best.<br />
<br />
Articles must be set to "Show on front page" in order for them to display on the homepage frontpage.<br />
<br />
In addition to the homepage frontpage, each category has it's own frontpage.  The category frontpage functions identically to the homepage frontpage, except for two important factors:<br />
<br />
<ul class='bbc'><li>Only records from within that category (and it's subcategories) will be displayed<br /><br /></li><li>The "Show on front page" setting is not honored for the category frontpage</li></ul><br />
<br />
You will be able to easily review and manage the articles set to display on the frontpage from a new section of the ACP labeled "Frontpage Manager".  We feel that this new area of the articles section will help showcase important articles and increase user interaction with your articles section.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">c20ad4d76fe97759aa27a0c99bff6710</guid>
	</item>
	<item>
		<title>Media Management</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/media-management-r3</link>
		<description><![CDATA[The media module in the IP.Content 2.0 ACP section allows you to quickly and easily manage multimedia files you may need to use with IP.Content.  While you can certainly upload your files through FTP, or link to offsite files, you may find it easier to upload the files using the media section of the ACP, and then copy the links for use within pages, templates, and blocks.<br />
<br />
From within the media module, you can create folders, upload files, move files and folders, rename files and folders, and delete files and folders.  Files can be listed and you can click on a file to view it (or right click on the file to copy the link).<br />
<br />
This simple tool can be a timesaver when you simply need to upload an image quickly for use within a page template.  The media folder is defined in the media_path.php file in your forum root directory, giving you the freedom to move and organize your paths as needed.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">c51ce410c124a10e0db5e4b97fc2af39</guid>
	</item>
	<item>
		<title>Page Management</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/page-management-r4</link>
		<description><![CDATA[The page management module interface has been overhauled for IP.Content 2.0 to make it easier to manage your pages in the ACP.<br />
<br />
Firstly, the folder navigation utilizes AJAX to load the folder contents inline without requiring you to visit a new page to view the contents of the folder.  We found that folder navigation was a slow process, especially when working with many files and folders, so we wanted to speed up the interaction with the software in this particular area.<br />
<br />
We have also updated some common management features to utilize AJAX to help facilitate management of your pages.  Actions like clearing folders and deleting folders, for instance, will now occur without page refreshes, making your managerial activities flow smoother and quicker.<br />
<br />
Additionally, the interface as a whole has been updated to provide a nicer, smoother feel for the page management areas.  In practice, we found that many administrators spend the majority of their time setting up and utilizing IP.Content in the page management areas, so we wanted to update the user interface to make this experience as easy and enjoyable as possible.  Minor details like confirmation dialogs have been updated to bring everything together for a more consistent feel.<br />
<br />
A new filter bar, utilizing AJAX to retrieve the results without the need for a page refresh, has also been added to the page management area.  You can begin typing in the name of a page and a live-search action will occur in the background, showing you the results of your search as you type.  If you have many pages and many folders (and many pages within those many folders), you will find that using the filter bar to locate your pages can dramatically speed up your navigation of IP.Content within the page management areas of the ACP.<br />
<br />
Overall, we've modernized the IP.Content page management area of the ACP, polishing up the little details, in an effort to make your experience all the more pleasant.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">aab3238922bcc25a6f606eb525ffdc56</guid>
	</item>
	<item>
		<title>Template Management</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/template-management-r5</link>
		<description><![CDATA[In IP.Content 2.0, you will notice that there are 3 separate template sections of the ACP:<br />
<br />
<ul class='bbc'><li><strong class='bbc'>Page Templates</strong><br /><br /></li><li><strong class='bbc'>Database Templates</strong><br /><br /></li><li><strong class='bbc'>Article Templates</strong></li></ul><br />
<br />
In IP.Content 1.x, database and page templates were combined into a single "Templates" section, which worked fine for our original intentions.  However, with the introduction of a separate Articles module, and additional template types related to the articles module, we decided to separate the templates so that each template type is displayed separately.  This should help finding and editing your templates easier in practice, as you will be able to filter the template types and work with fewer at a time.<br />
<br />
Within each templates section, you can create containers to group your templates into logical groupings.  For instance, you may wish to create a grouping for each database you create, and then place the database templates appropriately into the container representing the database itself.  Or you may wish to create multiple front page templates, and group them all together in the article templates area.  You can use containers for whatever purposes you may have, or not at all: it's up to you!<br />
<br />
Templates can be reordered by dragging and dropping the rows up and down, and they can be moved from one container to another via drag n drop as well.  <br />
<br />
Certain meta data about the templates are stored when you create new database or article templates, allowing IP.Content to tailor other areas of the ACP to help you out.  For example, in IP.Content 1.x the software did not "remember" what kind of database template you were creating, so all database templates were presented in each of the dropdowns when creating or editing a database.  Beginning with IP.Content 2.x, the software stores the template type when you create a new template.  This allows us to show only "category listing" templates in the "category listing template" selection dropdowns.  Similarly, the template tag help popup can automatically know which template type you are editing without you having to specify.<br />
<br />
Properly making use of templates can help you push out pages on your site in a uniform manner quickly and easily, and without having to "reinvent the wheel" each time a new page is ready to be published.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">9bf31c7ff062936a96d3c8bd1f8f2ff3</guid>
	</item>
	<item>
		<title>Store Comments In Forum</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/store-comments-in-forum-r6</link>
		<description><![CDATA[With IP.Content 2.0, articles and custom databases can now mirror a topic to the forums when a new article or database record is submitted.  In doing so, IP.Content can also utilize that automatically-generated topic as the comment "storage" for the article or record.  When a comment is submitted to the article, the comment is actually stored as a reply to the topic.  Similarly, replies made directly to the topic in the forum also show up as comments for the record.<br />
<br />
This new functionality can be enabled at a per-database and per-category level.  You can specify separate forums for each category in your article section, for instance, or you can turn off forum commenting for a specific category, while enabling it for all others.<br />
<br />
A few additional configuration options, such as allowing you to automatically remove the topic when the record is removed, and specifying a prefix and/or suffix for the topic title so that your users can more easily identify that such topics were stemmed from the articles section help round out the feature, giving you better control over how these automatically posted topics are handled.<br />
<br />
These new forum cross-posting capabilities allow the administrator to better tie in articles with the forums, giving you better opportunities to expose your content to a wider audience.  Additionally, forum management of comments provides for easier maintenance and stronger managerial options of the comments, utilizing IP.Board's powerful, proven feature set.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">c74d97b01eae257e44aa9d5bade97baf</guid>
	</item>
	<item>
		<title>Sharing links</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/sharing-links-r7</link>
		<description><![CDATA[IP.Board 3.1 introduces a new feature that is available for any application to make use of: <a href='http://community.invisionpower.com/index.php?app=blog&blogid=1174&showentry=4162' class='bbc_url' title='Extern länk' rel='nofollow external'>sharing links</a>.  IP.Content 2.0 makes use of this new feature in the custom databases (and articles) modules to allow you to more easily expose your content to a wider audience.<br />
<br />
Along with supporting sharing of your content with third party services such as Facebook and Twitter, you can now also send an article via email, print the article, and download the article easily by clicking the appropriate icon under the article body.  The additional printing and downloading features allow the content to be shared, online as well as offline. <br />
<br />
Within the articles module specifically, the article image that you upload when posting the article (optionally) will automatically be flagged for use with Facebook when someone uses Facebook to share the link.  This ensures that the correct image is the one Facebook displays to other users.  Similarly, we pull out an appropriate extract of textual content for Facebook to use as well.  If the user is logged in to Twitter or Facebook, sharing the content becomes even easier, not requiring you to even leave the site.<br />
<br />
We hope that by providing tools to make it easier to share content on your site, your content will be exposed to a wider audience, bringing you more traffic and making your content more easily and readily available to the world.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">70efdf2ec9b086079795c442636b55fb</guid>
	</item>
	<item>
		<title>Template Variables Help</title>
		<link>http://mortfiles.se/demofiles/index.html/_/misc/template-variables-help-r8</link>
		<description><![CDATA[All templates are capable of using template tags, and as such when you edit any type of template, there will be a "template tag help" link.  Clicking this produces a sidebar (there is then a link in the sidebar to open a separate popup) that details all of the template tags you can insert to include IP.Content data within your template.<br />
<br />
However, with database and article templates, there are additional variables that are passed into the template to allow it to manipulate and display the HTML that represents the content.  For instance, different data is retrieved and available when you are looking at a list of articles compared to when you are viewing a single article.  You need to know what these variables are in order to be able to properly modify the template to display data in the manner you want, and as such, a template variable help popup is available that will detail the variables available for each template type.<br />
<br />
When you are editing a template, click on "template variable help" and a new window opens displaying the variables you can expect to be available to the template with a short description of each variable.  If you get stuck, this help window can help shed some light on the variables that are available, what values they should contain, and how you can use these variables to your advantage to build a more dynamic and useful interface for your database.]]></description>
		<pubDate>Sun, 05 Dec 2010 09:24:38 +0000</pubDate>
		<guid isPermaLink="false">6f4922f45568161a8cdf4ad2299f6d23</guid>
	</item>
</channel>
</rss>
