<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Tips and Tricks from PS: What's up?</title>
    <link>http://blog.publicsquarehq.com/</link>
    <pubDate>Wed, 27 Feb 2008 15:02:22 GMT</pubDate>
    <description>Stories on Tips and Tricks from PS: What's up?</description>
    <item>
      <title>Keyboard Shortcuts for WYSIWYG</title>
      <link>http://blog.publicsquarehq.com/view/keyboard-shortcuts</link>
      <guid>http://blog.publicsquarehq.com/view/keyboard-shortcuts</guid>
      <description>&lt;p&gt;&amp;lt;img src=&amp;quot;/files/blog/keyboard-shortcuts/PS-WYSIWYG-2.png&amp;quot; width=&amp;quot;245&amp;quot; height=&amp;quot;215&amp;quot; alt=&amp;quot;WYSIWYG new functionality&amp;quot; title=&amp;quot;WYSIWYG new functionality&amp;quot; align=&amp;quot;right&amp;quot; /&amp;gt;You may have noticed &lt;span class="caps"&gt;WYSIWYG&lt;/span&gt; has gone on a diet and started working out&amp;hellip; and she's looking (and acting!) better than ever before. What you don't know is Jim, which exploring the depths of the FCKEditor documentation, found some awesome keyboard shortcuts for you! If you've never used them before, go ahead a play a bit. The secret is to hold these keys down together... or in order. So, for example, hold down the CTRL key (on window's machines, on Mac's it's usually the apple) and while holding it down, push the letter A. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Keyboard Shortcuts&lt;/h2&gt;
&lt;p&gt;&lt;br /&gt;
enter gets you a&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;br /&gt;
shift-enter gets you a &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Accelerator keys:&lt;br /&gt;
&lt;br /&gt;
CTRL + A, select all&lt;br /&gt;
CTRL + C, copy&lt;br /&gt;
CTRL + F,&amp;nbsp; Launches find&lt;br /&gt;
CTRL + S, Saves (currently to disk, we're planning to return to it and get it to save to PS)&lt;br /&gt;
CTRL + X, Cut&lt;br /&gt;
CTRL + V, 'Paste' &lt;br /&gt;
SHIFT + INS, 'Paste' &lt;br /&gt;
CTRL + X, 'Cut' &lt;br /&gt;
SHIFT + DEL, 'Cut' &lt;br /&gt;
CTRL + Z, 'Undo' &lt;br /&gt;
CTRL + Y 'Redo' &lt;br /&gt;
CTRL + SHIFT + Z, 'Redo' &lt;br /&gt;
CTRL + L, 'Link' &lt;br /&gt;
CTRL + B, 'Bold' &lt;br /&gt;
CTRL + I, 'Italic' &lt;br /&gt;
CTRL + U, 'Underline' &lt;br /&gt;
CTRL + SHIFT + S, 'Save' &lt;br /&gt;
CTRL + ALT + ENTER, 'FitWindow' &lt;br /&gt;
CTRL + TAB, 'Source'&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;BTW, FitWindow is a feature we're very excited to discover. We know you've been begging for more room to edit! The only problem is we haven't figured out how to get out of full-screen mode. I'll keep you updated for when we do...&lt;/p&gt;</description>
      <pubDate>Wed, 27 Feb 2008 15:02:22 GMT</pubDate>
      <author>Christina Wodtke</author>
      <category>Tips and Tricks</category>
    </item>
    <item>
      <title>Three Tiny Tricks for Cooler Interfaces</title>
      <link>http://blog.publicsquarehq.com/view/three-tiny-tricks</link>
      <guid>http://blog.publicsquarehq.com/view/three-tiny-tricks</guid>
      <description>&lt;img src="/files/blog/three-tiny-tricks/2008-02-13_2029.png" width="247" height="236" alt="trick out your sidebar!" title="trick out your sidebar!" align="right"/&gt;Firstly, we all now how important it is to keep our readers engaged. Here is a bit of liquid to show related categories. A great way to get more clicks!
&lt;br clear="all"&gt;
&lt;pre&gt;
 {% if story.categories != empty %}
&lt;h4&gt;Related Categories&lt;/h4&gt;
        &lt;ul&gt;
          {% for category in story.categories %}
            &lt;li&gt;{{ category.link }}&lt;/li&gt;
          {% endfor %}
        &lt;/ul&gt;
  {% endif %}
&lt;/pre&gt;

Did you now PublicSquare generates a tiny url for every story? You can find it for your newsletters in the lower right sidebar. But sometimes you want to offer your users an easy way to share your stories too. Try sticking this bit of code in your sidebar.

&lt;pre&gt;
&lt;p&gt;Use this when sending links by email.&lt;/p&gt;
        &lt;p&gt;&lt;a href="{{ story.tiny_url }}"&gt;{{ story.tiny_url }}&lt;/a&gt;&lt;/p&gt;
&lt;/pre&gt;

Finally, a goodie for your geekier users: rss on comments on each and every story (authors love it too!).

&lt;pre&gt;
&lt;h4&gt;Comments Feed&lt;/h4&gt;
        &lt;p&gt;Follow the comments on this story via RSS:&lt;/p&gt;
        &lt;a href="{{ story.comments_rss_url }}"&gt;
            &lt;img alt="Feed-icon-16x16" height="16" src="{{ 'feed-icon-16x16.gif' | asset_url }}"  width="16" /&gt;
            &lt;/a&gt;
        &lt;a href="{{ story.comments_rss_url }}"&gt;Comments RSS feed&lt;/a&gt;
&lt;/pre&gt;</description>
      <pubDate>Thu, 14 Feb 2008 04:44:21 GMT</pubDate>
      <author></author>
      <category>Tips and Tricks</category>
    </item>
    <item>
      <title>Cocktail: Category and Story Iteration</title>
      <link>http://blog.publicsquarehq.com/view/cocktail-category</link>
      <guid>http://blog.publicsquarehq.com/view/cocktail-category</guid>
      <description>(cocktail == recipe for liquid ... get it? ;)

&lt;pre&gt;
{% for category in current_site.story_categories %}
  {% if category.label == category_label &amp;&amp; category.published_stories != empty %}
    &lt;div class='item {{ category_class }}'&gt;
      &lt;h3&gt;{{ category | link }}&lt;/h3&gt;
      &lt;h6 class="tagline"&gt;{{ tagline }}&lt;/h6&gt;
      &lt;ul class='list list-small'&gt;
        {% for story in category.published_stories %}
        &lt;li&gt;{{ story | link }}&lt;/li&gt;
        {% endfor %}
      &lt;/ul&gt;
    &lt;/div&gt;
  {% endif %}
{% endfor %}
&lt;/pre&gt;


</description>
      <pubDate>Wed, 16 Jan 2008 08:00:00 GMT</pubDate>
      <author>Jim Meyer</author>
      <category>Tips and Tricks</category>
    </item>
    <item>
      <title>Statistics</title>
      <link>http://blog.publicsquarehq.com/view/statistics</link>
      <guid>http://blog.publicsquarehq.com/view/statistics</guid>
      <description>A nice thing about PublicSquare is the ability to show off your community's statistics. Here's a bit of liquid to pull up some commonly used statistics.

&lt;h2&gt;Most commented upon&lt;/h2&gt;&lt;img src="/files/blog/statistics/mostcommented.png" width="253" height="199" alt="statistics screenshot" hspace="5" vspace="5" align="left" /&gt;
Most commented shows people what's hot, what's contraversial. A great way to get more discussion flowing!

This code lists the stories that have the most comments.  You don't have to use tables. &lt;br clear="all"&gt;
&lt;pre&gt; {% if current_site.most_commented != empty %}
   &lt;h4&gt;Most-commented Stories (past 60 days)&lt;/h4&gt;
        &lt;table class="SBTable"&gt;
          &lt;tr&gt;
            &lt;th class="SBTableHead"&gt;Title&lt;/th&gt;
            &lt;th class="SBTableHead headRight"&gt;Comments&lt;/th&gt;
          &lt;/tr&gt;
          {% for content in current_site.most_commented %}
            &lt;tr&gt;
              &lt;td class="SBTableCell"&gt;
             &lt;a href="{{ content.url }}"&gt;{{ content.title | truncate: 25 }}&lt;/a&gt;
             &lt;/td&gt;
              &lt;td class="cellRight"&gt;{{ content.recent_comments_count }}&lt;/td&gt;
            &lt;/tr&gt;      
          {% endfor %}
        &lt;/table&gt;
  {% endif %}
&lt;/pre&gt;

&lt;h2&gt;Highest Rated&lt;/h2&gt; &lt;img src="/files/blog/statistics/highestrated.png" width="249" height="226" alt="statistics screenshot" align="left" /&gt;Everyone wants to know what's the best-- let them find those stories easily!&lt;br clear="all"&gt;
&lt;pre&gt;  {% if current_site.highest_rated_stories != empty %}
&lt;h4&gt;Highest-rated Stories&lt;/h4&gt;
      &lt;div class="SBCopy"&gt;
        &lt;table class="SBTable"&gt;
          &lt;tr&gt;
            &lt;th class="SBTableHead"&gt;Story&lt;/th&gt;
            &lt;th class="SBTableHead"&gt;Rating&lt;/th&gt;
          &lt;/tr&gt;
          {% for story in current_site.highest_rated_stories %}
            &lt;tr&gt;
              &lt;td class="SBTableCell"&gt;&lt;a href="{{ story.url }}"&gt;{{ story.title | truncate: 30 }}&lt;/a&gt;
             &lt;/td&gt;
              &lt;td class="cellCenter" title="Based on {{ story.ratings_count | pluralize: "vote" }}"&gt;
             {% for step in story.rating_steps %}{% if step.on %}
              &lt;img src="{{ 'dot-orange.gif' | asset_url}}" class="RatingSolid" alt="*" /&gt;
              {% else %}
              &lt;img src="{{ 'dot-white.gif' | asset_url }}" class="RatingEmpty" alt=" " /&gt;
              {% endif %}
              {% endfor %}
              &lt;/td&gt;
            &lt;/tr&gt;
          {% endfor %}
        &lt;/table&gt;
  {% endif %}&lt;/pre&gt;

&lt;h2&gt;Most Active Authors&lt;/h2&gt; 
&lt;img src="/files/blog/statistics/activeauthors.png" width="248" height="191" alt="statistics screenshot" align="left" /&gt;This can be useful if you have a group of regular authors, to spur a little competition, keep people writing...&lt;br clear="all"&gt;
&lt;pre&gt;  
    &lt;div class="SBHead"&gt;&lt;h4&gt;Most Active Authors&lt;/h4&gt;
    &lt;div class="SBCopy"&gt;
      &lt;table class="SBTable"&gt;
        &lt;tr&gt;
          &lt;th class="SBTableHead"&gt;Author&lt;/th&gt;
          &lt;th class="SBTableHead headRight"&gt;Stories&lt;/th&gt;
        &lt;/tr&gt;
        {% for user in current_site.most_active_authors %}
          &lt;tr&gt;
            &lt;td class="SBTableCell"&gt;{{ user.link }}&lt;/td&gt;
            &lt;td class="cellRight"&gt;{{ user.stories_count }}&lt;/td&gt;
          &lt;/tr&gt;
        {% endfor %}
      &lt;/table&gt;&lt;/pre&gt;

&lt;h2&gt;Most Active Contributors&lt;/h2&gt;&lt;img src="/files/blog/statistics/activecommenters.png" width="248" height="188" alt="statistics screenshot" align="left" /&gt;You can call them commenters, or community members, but you want to reward the folks who make your community work with a little shout-out!&lt;br clear="all"&gt;
  &lt;pre&gt;
    &lt;div class="SBHead"&gt;&lt;h4&gt;Most Active Commenters&lt;/h4&gt;
    &lt;div class="SBCopy"&gt;
      &lt;table class="SBTable"&gt;
        &lt;tr&gt;
          &lt;th class="SBTableHead"&gt;Name&lt;/th&gt;
          &lt;th class="SBTableHead headRight"&gt;Comments&lt;/th&gt;
        &lt;/tr&gt;
        {% for user in current_site.most_active_commenters %}
          &lt;tr&gt;
            &lt;td class="SBTableCell"&gt;{{ user.link }}&lt;/td&gt;
            &lt;td class="cellRight"&gt;{{ user.comments_count }}&lt;/td&gt;
          &lt;/tr&gt;
        {% endfor %}
      &lt;/table&gt;&lt;/pre&gt;

More tips soon!</description>
      <pubDate>Tue, 03 Jul 2007 17:20:20 GMT</pubDate>
      <author>Jim Meyer</author>
      <category>Tips and Tricks</category>
    </item>
    <item>
      <title>New! Add RSS feeds to your Publication</title>
      <link>http://blog.publicsquarehq.com/view/new-add-rss-feeds-to</link>
      <guid>http://blog.publicsquarehq.com/view/new-add-rss-feeds-to</guid>
      <description>Erstwhile Matt Pelletier of EastMedia has just added the ability to add rss feeds as a way of populating content to the pages of your publication. It's a easy way to tie in blogs, or any outside ap with an RSS feed. For example, let's say you wanted to show the latest blog posts form friends using typepad, or say you wanted to pull in job listings from a job board... Just this!

&lt;pre&gt;
   &lt;ul&gt;
   {% feedreader url: 'http://digg.com/', max: 15 as link %}
     &lt;li&gt;&lt;a href="{{ link.href }}"&gt;{{ link.description }}&lt;/a&gt; 
     {{ link.extended }}&lt;/li&gt;
   {% endfeedreader %}
   &lt;/ul&gt; 
&lt;/pre&gt;</description>
      <pubDate>Fri, 01 Jun 2007 03:28:22 GMT</pubDate>
      <author>Christina Wodtke</author>
      <category>Tips and Tricks</category>
      <category>Update!</category>
    </item>
  </channel>
</rss>

