<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>ImpressCMS Community :: Forum</title>
    <link>http://community.impresscms.org/</link>
    <description>Make a Lasting Impression :: ImpressCMS Community Bulletin Board</description>
    <lastBuildDate>Thu, 17 May 2012 01:20:48 -2300</lastBuildDate>
    <docs>http://backend.userland.com/rss/</docs>
    <generator>CBB 3.08</generator>
    <category>Support Forums</category>
    <managingEditor>contact@impresscms.org</managingEditor>
    <webMaster>contact@impresscms.org</webMaster>
    <language>en</language>
        <image>
      <title>ImpressCMS Community :: Forum</title>
      <url>http://community.impresscms.org/modules/newbb/images/xoopsbb_slogo.png</url>
      <link>http://community.impresscms.org/</link>
      <width>92</width>
      <height>52</height>
    </image>
            <item>
      <title>Re: load only content [by fiammybe]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5203&amp;forum=9&amp;post_id=46406#forumpost46406</link>
      <description>Modules Support:: load only content&lt;br /&gt;
Sorry for the late reply. I had a jetlag to digest these last two days.&lt;br /&gt;&lt;br /&gt;What you want can be done in an easy way : When you look at the theme.html file in the theme, you see that there are smart variables that define the different block positions. If you remove the block positions you do not want, and only keep the center position, you will get what you want.&lt;br /&gt;&lt;br /&gt;You might delete some stuff that is needed for the display to work at all, so check that you are only removing block positions you don&amp;#039;t need.</description>
      <pubDate>Wed, 16 May 2012 23:45:49 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5203&amp;forum=9&amp;post_id=46406#forumpost46406</guid>
    </item>
        <item>
      <title>Re: Suggestion for module devs [by skenow]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5204&amp;forum=52&amp;post_id=46405#forumpost46405</link>
      <description>Modules Development:: Suggestion for module devs&lt;br /&gt;
Good point, Will&lt;br /&gt;&lt;br /&gt;I&amp;#039;m not sure if this is an example of how it might work on a limited basis, but there is a block in SimplyWiki that has different &amp;#039;display modes&amp;#039;. That mode is passed to the template (rather inefficiently, now that I look at it again - something else to put on my list &lt;img src=&quot;http://community.impresscms.org/uploads/smil3dbd4e398ff7b.gif&quot; alt=&quot;&quot; /&gt;)&lt;br /&gt;&lt;br /&gt;The block in SimplyWiki I&amp;#039;m referring to is the List Pages block - &lt;a href=&quot;http://subversion.assembla.com/svn/impresscmsaddons/modules/wiwimod/trunk/templates/blocks/swiki_listpages.html/&quot; rel=&quot;external&quot;&gt;http://subversion.assembla.com/svn/ ... ages.html/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And the code that passes the display mode is &lt;br /&gt;&lt;div class=&quot;xoopsCode&quot;&gt;&lt;pre&gt;&lt;code&gt;
function swiki_listpages ($options) {
        global $xoopsDB;
        $wikiModDir = basename(dirname(dirname(__FILE__)));
        $limit = (int) $options[0];
        $field = $sort = $display = $datetime = &amp;#039;&amp;#039;;
        $field = in_array($options[1], array(&amp;#039;createdate&amp;#039;, &amp;#039;lastmodified&amp;#039;, &amp;#039;revisions&amp;#039;, &amp;#039;lastviewed&amp;#039;, &amp;#039;views&amp;#039;), true) ? (string) $options[1] : &amp;#039;&amp;#039;;
        $sort = in_array($options[2], array(&amp;#039;ASC&amp;#039;, &amp;#039;DESC&amp;#039;), true) ? (string) $options[2] : &amp;#039;&amp;#039;;
        $display = in_array($options[3], array(&amp;#039;compact&amp;#039;, &amp;#039;light&amp;#039;, &amp;#039;full&amp;#039;), true) ? (string) $options[3] : &amp;#039;&amp;#039;;
        $datetime = (string) htmlspecialchars(trim($options[4]));
        $block = array();
        $myts =&amp; MyTextSanitizer::getInstance();
        $sql = &amp;#039;SELECT keyword, title, &amp;#039; . $field  .&amp;#039; as date, r.userid as u_id, prid, summary FROM &amp;#039; . $xoopsDB-&amp;gt;prefix(&amp;#039;wiki_pages&amp;#039;) . &amp;#039; p, &amp;#039; . $xoopsDB-&amp;gt;prefix(&amp;#039;wiki_revisions&amp;#039;) . &amp;#039; r WHERE p.pageid=r.pageid AND lastmodified=modified ORDER BY &amp;#039;. $field .&amp;#039; &amp;#039; . $sort .&amp;#039; LIMIT &amp;#039; . $limit;
        $result = $xoopsDB-&amp;gt;query($sql);

        //Filter each entry according to its privilege
        $prf = new WiwiProfile();
        while ($content = $xoopsDB-&amp;gt;fetcharray($result)) {
                $prf-&amp;gt;load($content[&amp;#039;prid&amp;#039;]);
                if ($prf-&amp;gt;canRead()) {
                        $link = array();
                        $link[&amp;#039;page&amp;#039;] = wiwiRevision::encode($content[&amp;#039;keyword&amp;#039;]);
                        $link[&amp;#039;title&amp;#039;] = $content[&amp;#039;title&amp;#039;];
                        if ($link[&amp;#039;title&amp;#039;] == &amp;quot;&amp;quot;) $link[&amp;#039;title&amp;#039;] = $content[&amp;#039;keyword&amp;#039;];
                        if ($options[1]!==&amp;#039;revisions&amp;#039; &amp;&amp; $options[1]!==&amp;#039;views&amp;#039;){
                                $link[&amp;#039;date&amp;#039;] = formatTimestamp(strtotime($content[&amp;#039;date&amp;#039;]), $datetime !== &amp;#039;&amp;#039; ? $datetime : _SHORTDATESTRING); //
                        } else {
                                $link[&amp;#039;date&amp;#039;] = (int) $content[&amp;#039;date&amp;#039;];
                        }
                        $link[&amp;#039;user&amp;#039;] = xoops_getLinkedUnameFromId($content[&amp;#039;u_id&amp;#039;]);
                        $link[&amp;#039;summary&amp;#039;] = $content[&amp;#039;summary&amp;#039;];
                        $link[&amp;#039;display_mode&amp;#039;] = $display;
                        $block[&amp;#039;links&amp;#039;][] = $link;
                }
        }

        $block[&amp;#039;dirname&amp;#039;] = $wikiModDir;
        return $block;
}
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;It&amp;#039;s not all the config options, but one that has a direct impact on how the block will render.&lt;br /&gt;&lt;br /&gt;I&amp;#039;ll have to think about how to do it, but this might be a core enhancement that would append the block options to the block array, if possible.</description>
      <pubDate>Wed, 16 May 2012 03:44:01 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5204&amp;forum=52&amp;post_id=46405#forumpost46405</guid>
    </item>
        <item>
      <title>Re: Double definitions in Captcha Settings [by skenow]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5205&amp;forum=48&amp;post_id=46404#forumpost46404</link>
      <description>ImpressCMS Troubleshooting:: Double definitions in Captcha Settings&lt;br /&gt;
I would back up the config table, then delete the records with the lowest ID.</description>
      <pubDate>Wed, 16 May 2012 03:27:32 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5205&amp;forum=48&amp;post_id=46404#forumpost46404</guid>
    </item>
        <item>
      <title>Re: Import and update user details with csv [by nmshah]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5200&amp;forum=51&amp;post_id=46400#forumpost46400</link>
      <description>General Usage:: Import and update user details with csv&lt;br /&gt;
The updates will need to be made in bulk. Also participants fill up the form in writing, which is then sent to office staff who converts it to excel, sends it to me and I upload it to the website to update their details. &lt;br /&gt;&lt;br /&gt;The data sheet for level 1 will add participants and their details to the website as profiles.&lt;br /&gt;Then after level 2 another data sheet is uploaded which updates the details of existing members. Important fields in the form which will change in each update is user group and certificate no. (A custom profile field) for the level (course) the participant has completed.&lt;br /&gt;&lt;br /&gt;Participants will not be allowed to change / update their certificate no. and groups them belong to. These fields are updated only by admin.</description>
      <pubDate>Sun, 13 May 2012 06:42:24 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5200&amp;forum=51&amp;post_id=46400#forumpost46400</guid>
    </item>
        <item>
      <title>Re: How to use one concrete theme only for a module? [by skenow]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5202&amp;forum=10&amp;post_id=46392#forumpost46392</link>
      <description>Themes and Templates:: How to use one concrete theme only for a module?&lt;br /&gt;
Does your theme for the wiki use a different HTML markup, or just different CSS?&lt;br /&gt;&lt;br /&gt;If it is just different CSS, you could conditionally include the CSS in the theme based on $icms_dirname Smarty variable. You could probably also do the same for the HTML portion, too.</description>
      <pubDate>Thu, 10 May 2012 12:28:29 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5202&amp;forum=10&amp;post_id=46392#forumpost46392</guid>
    </item>
        <item>
      <title>Re: TinyConfig [by McDonald]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5178&amp;forum=52&amp;post_id=46389#forumpost46389</link>
      <description>Modules Development:: TinyConfig&lt;br /&gt;
Moxiecode has released TinyMCE 3.5. I hope to test it next week and see what changes have to be made to TinyConfig.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;u&gt;TinyMCE 3.5 release note&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;It was time for the 3.5 branch to go from beta to a production release. The 3.5 version includes HTML5 support, style preview support, rewritten noneditable plugin, selection and caret behavior changes/fixes, new enter/return logic and much more check the changelog for details.&lt;br /&gt;&lt;br /&gt;This is also the first official release of the NuGet packages for TinyMCE.&lt;br /&gt;&lt;br /&gt;Thanks for all bug reports and help with testing out the beta versions.&lt;br /&gt;&lt;br /&gt;Here are some more details on whats in the 3.5 release:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Rewritten noneditable plugin&lt;/strong&gt;&lt;br /&gt;We decided to rewrite the noneditable plugin from scratch since the old one had some issues with nested editable contents and was a bit tricky to use. The new logic makes it easier to handle nested editable regions and inline noneditable blocks of text like variables/placeholders.&lt;br /&gt;&lt;br /&gt;Here is a demo of the new noneditable plugin:&lt;br /&gt;&lt;a href=&quot;http://www.tinymce.com/tryit/noneditable_content.php&quot; rel=&quot;external&quot;&gt;http://www.tinymce.com/tryit/nonedi ... ontent.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;HTML5 support and visualblocks plugin&lt;/strong&gt;&lt;br /&gt;We have seen some feedback on subject of editing HTML5 contents inside TinyMCE so we decided to add support for editing the block level HTML5 elements like section and article etc.&lt;br /&gt;&lt;br /&gt;We needed to create a visualblocks plugin in order to edit these new block types since it would be difficult without having visible guidelines where the blocks start/end.&lt;br /&gt;&lt;br /&gt;Here is a demo of the visualblocks plugin and a config setup for editing HTML5.&lt;br /&gt;&lt;a href=&quot;http://www.tinymce.com/tryit/html5_formats.php&quot; rel=&quot;external&quot;&gt;http://www.tinymce.com/tryit/html5_formats.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Styles preview&lt;/strong&gt;&lt;br /&gt;A common request over the years have been to have a preview of the styles in the styles drop down. The common response we had before was that it would be difficult since some CSS properties of these styles might interfere with the UI. We solved this by only taking CSS properties that alter text appearance and not the once that might break layout.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;New br_in_pre option&lt;/strong&gt;&lt;br /&gt;This option is enabled by default and changes the behavior on how the enter key is used within a pre tag. Since most pre tags are used for things like code examples like on our Wiki it made more sense to produce a BR on enter by default and only split pre tags when hitting shift+enter. If you don&amp;#039;t want this new behavior you can set the br_in_pre to false.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;BR vs P&lt;/strong&gt;&lt;br /&gt;I&amp;#039;ve seen a lot of requests over the years to have better support for producing BR elements by default in the editor. And I have always tried to explain why paragraphs is better than br:s.&lt;br /&gt;&lt;br /&gt;But guess what I got some news for you BR fan boys out there this version now fully supports BR elements and things like alignment and indentation work it will auto generate a div if you don&amp;#039;t have any block element to align or indent.&lt;br /&gt;&lt;br /&gt;The force_br_newlines/force_p_newlines where removed since it doesn&amp;#039;t make sense to mix the forced_root_block option with that. So just set forced_root_block to false and it will start spitting out those pesky BR elements. &lt;br /&gt;&lt;br /&gt;If you want to split a block element while having forced_root_block set to false you would have to press shift+enter since enter will insert a BR within the block. We might add some option to control this as well in the future.</description>
      <pubDate>Wed, 09 May 2012 16:13:05 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5178&amp;forum=52&amp;post_id=46389#forumpost46389</guid>
    </item>
        <item>
      <title>Re: Uploads and store object [by Eyekeeper]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5199&amp;forum=9&amp;post_id=46388#forumpost46388</link>
      <description>Modules Support::&lt;font color=&quot;#00CC00&quot;&gt;[solved]&lt;/font&gt; Uploads and store object&lt;br /&gt;
welcome :)&lt;br /&gt;&lt;br /&gt;I think once we have a problem and then find the solution we should share... so anyone facing a similar problem can save time debugging :)</description>
      <pubDate>Tue, 08 May 2012 16:31:28 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5199&amp;forum=9&amp;post_id=46388#forumpost46388</guid>
    </item>
        <item>
      <title>Re: Modules Pack: Addons [by fiammybe]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4691&amp;forum=62&amp;post_id=46387#forumpost46387</link>
      <description>Other Addons Category::&lt;font color=&quot;#FF0000&quot;&gt;[unsolved]&lt;/font&gt; Modules Pack: Addons&lt;br /&gt;
Cool, it would be interesting to see this alpha pack, so we can put it through the wringer &lt;img src=&quot;http://community.impresscms.org/uploads/smil3dbd4d6422f04.gif&quot; alt=&quot;&quot; /&gt;</description>
      <pubDate>Tue, 08 May 2012 15:20:24 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4691&amp;forum=62&amp;post_id=46387#forumpost46387</guid>
    </item>
        <item>
      <title>Re: SmartSection 2.20 [by david]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5179&amp;forum=71&amp;post_id=46384#forumpost46384</link>
      <description>SmartFactory Modules:: SmartSection 2.20&lt;br /&gt;
I havent forgotting about commiting this to our SVN....&lt;br /&gt;&lt;br /&gt;BTW - would you like SVN Access to commit any changes?</description>
      <pubDate>Mon, 07 May 2012 09:29:31 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5179&amp;forum=71&amp;post_id=46384#forumpost46384</guid>
    </item>
        <item>
      <title>Re: The &quot;Gone Native&quot; Module Collection [by david]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5130&amp;forum=52&amp;post_id=46383#forumpost46383</link>
      <description>Modules Development:: The &quot;Gone Native&quot; Module Collection&lt;br /&gt;
Several of these modules will be appearing in my first module pack... excellent work Madfish!</description>
      <pubDate>Mon, 07 May 2012 09:28:55 -2300</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=5130&amp;forum=52&amp;post_id=46383#forumpost46383</guid>
    </item>
      </channel>
</rss>
