<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0">

    <channel>

        <title>Adding additional new products to Cyn.in 3.1.3</title>
        <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3</link>
        <description>The process of adding additional new products to the platform Cyn.in</description>

        <generator>basesyndication</generator>

        <image>
            <title>Adding additional new products to Cyn.in 3.1.3</title>
            <url>http://www.cynapse.com/community/logo.jpg</url>
            <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3</link>
        </image>

        
            <item>
                <title>Adding additional new products to Cyn.in 3.1.3</title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3</link>
                <description>
&lt;h3&gt;Overview&lt;br /&gt;&lt;/h3&gt;
&lt;p&gt;The objective of this wiki is guide about the process of adding additional new products to the Cyn.in 3.1.3&lt;/p&gt;
&lt;p&gt;For this task I selected the &lt;a class="external-link" href="http://plone.org/products/example.archetype"&gt;&lt;strong&gt;example.archetype&lt;/strong&gt;&lt;/a&gt; product that is &lt;strong&gt;"an example package for learning how to develop an Archetypes-based content type"&lt;/strong&gt;.&lt;/p&gt;
&lt;p align="center"&gt;&lt;img class="image-inline image-inline" src="/community/home/cyn.in-developers/example.archetype.jpeg/image_preview" alt="example.archetype screenshot" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="result_box" class="short_text"&gt;Although this product is available to install from two resources like:&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class="external-link" href="http://pypi.python.org/pypi/example.archetype/1.0"&gt;http://pypi.python.org/pypi/example.archetype/1.0&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="external-link" href="http://plone.org/products/example.archetype/releases/1.0"&gt;http://plone.org/products/example.archetype/releases/1.0&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;div dir="ltr"&gt;&lt;span id="result_box" class="short_text"&gt;I opted to install it from it's SVN repository:&lt;/span&gt;&lt;/div&gt;
&lt;ul&gt;&lt;li&gt;&lt;a class="external-link" href="http://svn.plone.org/svn/collective/example.archetype/trunk/"&gt;http://svn.plone.org/svn/collective/example.archetype/trunk/&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Step by step&lt;/h3&gt;
Download the &lt;a title="Download Now" href="http://odn.cynapse.com/attachments/download/127/cynin_3_1_3-source.zip"&gt;Cyn.in Community Edition Source - v3.1.3&lt;/a&gt; and install as said on the Wiki. When you finish the installation edit the file buildout configuration
&lt;blockquote&gt;
&lt;p&gt;cd ~/cynin313-source-snapshot/&lt;/p&gt;
&lt;p&gt;nano ~/cynin313-source-snapshot/buildout.cfg&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;
and add the lines bellow:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[buildout]&lt;br /&gt;...&lt;br /&gt;extends = versions.cfg&lt;br /&gt;versions = versions&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;# This extension will dump a list of unpinned versions&lt;br /&gt;# each time you run buildout.&lt;br /&gt;extensions =&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; buildout.dumppickedversions &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mr.developer&lt;br /&gt;&lt;br /&gt;dump-picked-versions-file = dumped-versions.cfg&lt;br /&gt;overwrite-picked-versions-file = True&lt;br /&gt;&lt;br /&gt;always-check = true&lt;br /&gt;auto-checkout =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; example.archetype&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;# Reference any eggs you are developing here, one per line&lt;br /&gt;# e.g.: develop = src/my.package&lt;br /&gt;develop =&lt;br /&gt;&amp;nbsp;&amp;nbsp; ...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;src/example.archetype&lt;/strong&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;...&lt;br /&gt;&lt;br /&gt;[cyninbase]&lt;br /&gt;# Add additional eggs here&lt;br /&gt;# elementtree is required by Plone&lt;br /&gt;eggs =&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;example.archetype&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;zcml = &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;example.archetype&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;...&lt;br /&gt;&lt;strong&gt;#&lt;br /&gt;# specific source checkouts&lt;br /&gt;#&lt;br /&gt;[sources]&lt;br /&gt;example.archetype = svn http://svn.plone.org/svn/collective/example.archetype/trunk/&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
Later go to edit the configuration file that contains constants used by default during setup handler of &lt;strong&gt;ubify.policy&lt;/strong&gt;
&lt;blockquote&gt;
&lt;p&gt;nano ./src/ubify.policy/ubify/policy/config.py&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Locate the bellow sections and add the new configuration&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;PRODUCT_DEPENDENCIES = ('Calendaring',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&lt;strong&gt;example.archetype&lt;/strong&gt;',&lt;br /&gt;&lt;br /&gt;spacesdefaultaddablenonfolderishtypes = ('Document',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '&lt;strong&gt;InstantMessage&lt;/strong&gt;',
&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Then edit &lt;strong&gt;ContentRoot.xml&lt;/strong&gt; file from default profile of &lt;strong&gt;ubify.coretypes&lt;/strong&gt; products and add the bellow configuration:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;nano ./src/ubify.coretypes/ubify/coretypes/profiles/default/types/ContentRoot.xml&lt;/p&gt;
&lt;p&gt;...&lt;br /&gt;&amp;lt;element value="Image"/&amp;gt;&lt;br /&gt;&amp;lt;element value="InstantMessage"/&amp;gt;&lt;br /&gt;&amp;lt;element value="Link"/&amp;gt;,&lt;br /&gt;...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Also you need repeat the last past with &lt;strong&gt;ContentSpace.xml &lt;/strong&gt;files from default profile of &lt;strong&gt;ubify.coretypes &lt;/strong&gt;product and add the bellow configuration:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;nano ./src/ubify.coretypes/ubify/coretypes/profiles/default/types/ContentSpace.xml&lt;/p&gt;
&lt;p&gt;...&lt;br /&gt;
&amp;lt;element value="Image"/&amp;gt;&lt;br /&gt;
&amp;lt;element value="InstantMessage"/&amp;gt;&lt;br /&gt;
&amp;lt;element value="Link"/&amp;gt;,&lt;br /&gt;
...&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Then re-run buildout&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;./bin/buildout -vNc user.cfg&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;When your buildout is complete, you can start the zope server by typing:&lt;/p&gt;
&lt;blockquote&gt;./bin/instance fg&lt;br /&gt;&lt;/blockquote&gt;
This will start the Zope server in foreground mode (so that you can easily kill it by pressing &lt;em&gt;&lt;strong&gt;Ctrl + C&lt;/strong&gt;&lt;/em&gt;). Read the scrolling output, if all goes well you will see something like the following when the scrolling stops:
&lt;p&gt;"2008-07-14 13:58:25 INFO Zope Ready to handle requests"&lt;/p&gt;
&lt;p&gt;Congratulations, you've managed to get over the difficult parts. Now for the easy / fun stuff:&lt;/p&gt;
&lt;p&gt;Open up your favorite browser (Everybody say together with me: Firefox!) :)&lt;/p&gt;
&lt;p&gt;Navigate to &lt;strong&gt;http://localhost:8080&lt;/strong&gt; (if you use the same computer as desktop) or substitute the localhost with the hostname (or even the IP address) of the computer that zope/cyn.in is running on.&lt;/p&gt;
&lt;p&gt;
You should see the "Zope quick start screen". Cool, you can access your newly built Zope server. Next, navigate to http://localhost:8080/manage . This will give you an HTTP basic authentication request. Use the following credentials to get in: &lt;strong&gt;username&lt;/strong&gt;: &lt;em&gt;&lt;strong&gt;admin&lt;/strong&gt;&lt;/em&gt; and &lt;strong&gt;password&lt;/strong&gt;: &lt;em&gt;&lt;strong&gt;secret&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;You will see the standard Zope management interface. On the left you will see a frame when the Id of your previous cyn.in website created. The go to clic on Id and Now, scroll down, and find the item called &lt;strong&gt;portal_quickinstaller&lt;/strong&gt; (Allows to install/uninstall products) and click on that.&lt;/p&gt;
You'll get a list of previous products installed, among these check the check-box next to the item labeled "&lt;strong&gt;Ubify Site Policy&lt;/strong&gt;" and hit the &lt;strong&gt;Reinstall &lt;/strong&gt;
&lt;p&gt;button. Do NOT check any other item.&lt;/p&gt;
&lt;p&gt;Again, this will take some time and you can watch the scrolling progress in your fg command line window. When it completes, the list will refresh where most of the items will have moved down to the "Installed Products" section.&lt;/p&gt;
&lt;p&gt;Great, you don't know it yet, but you've managed to get a working cyn.in installation built out of source! :)&lt;/p&gt;
Let's get to proving that: In your browser, type up the following address:
&lt;blockquote&gt;http://localhost:8080/cynin&lt;br /&gt;&lt;/blockquote&gt;
&lt;p&gt;If you don't like doing as recommended and chose a different ID during Plone Site creation, substitue your ID in place of cyin in the above URL, of course.&lt;/p&gt;
&lt;p&gt;After some moments of tense waiting, the familiar cyn.in login screen should greet you and you can get in by using the following standard credentials: &lt;strong&gt;username&lt;/strong&gt;: &lt;em&gt;&lt;strong&gt;siteadmin&lt;/strong&gt;&lt;/em&gt; and &lt;strong&gt;password&lt;/strong&gt;: &lt;strong&gt;&lt;em&gt;secret&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
Later when you are logged go the Root space and click to &lt;strong&gt;New&lt;/strong&gt; button and there will show the new archetype called "&lt;strong&gt;Example AT - InstantMessage&lt;/strong&gt;".
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div align="center"&gt;&lt;img class="image-inline" src="/community/home/cyn.in-developers/08-08-10_1907.jpg/image_preview" alt="Eureka!!! the Example Archetypes called &amp;quot;Instance Message&amp;quot; is addable :D" /&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div align="center"&gt;&lt;img class="image-inline" src="/community/home/cyn.in-developers/08-08-10_1908.jpg/image_preview" alt="Adding a Example Archetypes called &amp;quot;Instance Message&amp;quot; on Cyn.in 3.1.3" /&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div align="center"&gt;&lt;img class="image-inline" src="/community/home/cyn.in-developers/08-08-10_1909.jpg/image_preview" alt="Continues adding a Example Archetypes" /&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p align="center"&gt;&lt;a title="Example AT - InstantMessage installed" class="internal-link" href="/community/home/cyn.in-developers/ExampleATInstantMessage0.png"&gt;&lt;img class="image-inline" src="/community/home/cyn.in-developers/ExampleATInstantMessage0.png/image_preview" alt="Example AT - InstantMessage installed" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;TODO&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;Write how integrate with &lt;span title="div .c38r metadatablock 119" class="webdeveloper-display-div-order"&gt;meta data block&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Write how create a &lt;span title="div #siteupdatesportlet 117" class="webdeveloper-display-div-order"&gt;new site updates portlet for new content type&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Write how create a &lt;span title="div #siteupdatesportlet 117" class="webdeveloper-display-div-order"&gt;new apps view for new content type&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span title="div .c38r metadatablock 119" class="webdeveloper-display-div-order"&gt;&lt;/span&gt;Write how integrate my &lt;span title="div #siteupdatesportlet 117" class="webdeveloper-display-div-order"&gt;new content type to &lt;/span&gt;&lt;span title="div #sitestats 163" class="webdeveloper-display-div-order"&gt;site stats and &lt;/span&gt;&lt;span title="div .piechart contenttypesdistribution 170" class="webdeveloper-display-div-order"&gt;content types distribution &lt;/span&gt;&lt;span title="div #sitestats 163" class="webdeveloper-display-div-order"&gt;&lt;/span&gt;&lt;span title="div .piechart contenttypesdistribution 170" class="webdeveloper-display-div-order"&gt;pie chart&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span title="div .piechart contenttypesdistribution 170" class="webdeveloper-display-div-order"&gt;Create a Policy product for these configuration&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description>
                <author>Leonardo J. Caballero G.</author>

                
                    <category>development</category>
                
                
                    <category>cynin3.1.3</category>
                
                
                    <category>new products</category>
                
                
                    <category>archetypes</category>
                

                <pubDate>Wed, 11 Apr 2012 22:31:24 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1306415086</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1306415086</link>
                <description>Great tutorial! Worked for me from the first time.&lt;br /&gt;Can you tell how to enable commenting, rating and all the usual stuff that comes after the content display in view mode?&lt;br /&gt;</description>
                <author>Mario Nathan</author>


                <pubDate>Thu, 26 May 2011 13:04:48 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1301616544</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1301616544</link>
                <description>Thanks for writing this. That saved me hours of code browsing.</description>
                <author>Noe Nieto</author>


                <pubDate>Fri, 01 Apr 2011 00:09:05 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1292859899</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1292859899</link>
                <description>Thank you for the suggestion! I&amp;quot;ll try it and let you know what happens.</description>
                <author>Kim Nylander</author>


                <pubDate>Mon, 20 Dec 2010 15:45:02 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1292434346</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1292434346</link>
                <description>Hi @knylander my apologies for my late response&lt;br /&gt;Create a new buidlout file called plonesoftwarecenter.cfg and copy the bellow instructions:&lt;br /&gt;&lt;br /&gt;# Buildout Configuration File for PloneSoftwareCenter products&lt;br /&gt;[buildout]&lt;br /&gt;&lt;br /&gt;extends = user.cfg&lt;br /&gt;&lt;br /&gt;############################################&lt;br /&gt;# Eggs&lt;br /&gt;#&lt;br /&gt;eggs += &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.PloneSoftwareCenter == 1.5.5&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.ArchAddOn == 0.1&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.AddRemoveWidget == 1.4.4 &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.DataGridField == 1.6&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;############################################&lt;br /&gt;# ZCML Slugs&lt;br /&gt;#&lt;br /&gt;zcml +=&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.PloneSoftwareCenter&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.ArchAddOn&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.AddRemoveWidget&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Products.DataGridField&lt;br /&gt;&lt;br /&gt;And later rebuildout like this:&lt;br /&gt;&lt;br /&gt;./bin/buildout -vNc plonesoftwarecenter.cfg&lt;br /&gt;&lt;br /&gt;With this you can install PloneSoftwareCenter Plone 3.3.5 and later try again with this manual to integrate PloneSoftwareCenter on Cyn.in</description>
                <author>Leonardo J. Caballero G.</author>


                <pubDate>Wed, 15 Dec 2010 17:32:28 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1290214429</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1290214429</link>
                <description>No luck using the instructions. I was able to see the Plone Help Center and the additional types in the ZIM. Added the content types manually per tmaysiak's suggestion. Unfortunately, when I restarted and logged in to Cyn.in, none of the content types appeared (only an error message when I pressed &amp;quot;Add new&amp;quot;). &lt;br /&gt;&lt;br /&gt;After a full day trying to get it to work, I finally gave up.</description>
                <author>Kim Nylander</author>


                <pubDate>Sat, 20 Nov 2010 00:53:50 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289487198</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289487198</link>
                <description>Thank you for the heads up! I'll try your instructions. If they work, I'll write an instruction set for Plone Help Center. </description>
                <author>Kim Nylander</author>


                <pubDate>Thu, 11 Nov 2010 14:53:18 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289417418</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289417418</link>
                <description>Hi knylander,&lt;br /&gt;I saw that happening installing plonepopoll.&lt;br /&gt;I named the content types in the contentroot and contentspace like they appear in the zope management interface under portal_types.&lt;br /&gt;&lt;br /&gt;You have to add them via the zope interface under contentroot and contentspace in portal_types.&lt;br /&gt;Have a look at this -&amp;gt;&lt;br /&gt;&lt;a href="http://www.cynapse.com/community/home/cyn.in-developers/is-there-any-plusin-for-plone-or-cyn.in-to-create-a-poll/?searchterm=poll" rel="nofollow"&gt;http://www.cynapse.com/[&amp;hellip;]/?searchterm=poll&lt;/a&gt;</description>
                <author>Tino Matysiak</author>


                <pubDate>Wed, 10 Nov 2010 19:30:19 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289416911</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1289416911</link>
                <description>Greetings. &lt;br /&gt;&lt;br /&gt;I'm trying to get Plone Help Center to work with Cyn.in. I tried the steps in this process and did not have any luck getting the buildout to complete. Instead, I used the process for Zope-2 products without buildout described here: &lt;a href="http://plone.org/documentation/kb/add-ons/installing" rel="nofollow"&gt;http://plone.org/documentation/kb/add-ons/installing&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Plone Help Center appeared in the Zope management interface and installed using the portal_quickinstaller. Everything seems to be active. Unfortunately, the content types are not appear within Cyn.in. &lt;br /&gt;&lt;br /&gt;When adding Plone components, is it a hit or miss as to whether the items will appear as new content types? &lt;br /&gt;&lt;br /&gt;Thanks.&lt;br /&gt;&lt;br /&gt;Kim N.</description>
                <author>Kim Nylander</author>


                <pubDate>Wed, 10 Nov 2010 19:21:52 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1288638000</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1288638000</link>
                <description>hi macagua,&lt;br /&gt;&lt;br /&gt;great tutorial!!&lt;br /&gt;&lt;br /&gt;inspired me to mess around with some plone eggs...&lt;br /&gt;&lt;br /&gt;Get the plone.survey to work but i'm not able to use every function of it. there surely need to be changes in the ui.&lt;br /&gt;&lt;br /&gt;What we would love to use is a poll utility and a small project-management tool where we can keep track of projects and its progress neatly illustrated in a progress-bar or so.&lt;br /&gt;&lt;br /&gt;do you have any idea how we can get this things to work or is it not as trivial as i think? ;)&lt;br /&gt;&lt;br /&gt;best regards and keep up the great work&lt;br /&gt;&lt;br /&gt;Tino</description>
                <author>Tino Matysiak</author>


                <pubDate>Mon, 01 Nov 2010 19:00:02 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283703136</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283703136</link>
                <description>Thanks @dhiraj for you comments</description>
                <author>Leonardo J. Caballero G.</author>


                <pubDate>Sun, 05 Sep 2010 16:12:16 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283703090</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283703090</link>
                <description>You know that from my initial contribution on i18n with cyn.in, I readed several source code lines and I thought that is possible to add other content type like are you doing with the Blog content type (formally called Scrawl) for that, me and other guys like @samuraib and @oswaldolo we are working to integrate new addons for cyn.in 3.1.3&lt;br /&gt;&lt;br /&gt;For that we create this knowledge it's possible to build it on community, As you said &amp;quot;It's quite a complex and non-trivial task to do this successfully&amp;quot; and it's that is a real scenario for to do.&lt;br /&gt;&lt;br /&gt;Because all these task, we are think that all comments and contributions are welcome!!!</description>
                <author>Leonardo J. Caballero G.</author>


                <pubDate>Sun, 05 Sep 2010 16:11:30 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283508411</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283508411</link>
                <description>Nice work on this, @macagua, a lot of people are interested in doing this in the community. It's quite a complex and non-trivial task to do this successfully, and this is the main reason it's not been documented well - but you are proceeding admirably on this. :)&lt;br /&gt;&lt;br /&gt;Keep it up!</description>
                <author>Dhiraj Gupta</author>


                <pubDate>Fri, 03 Sep 2010 10:06:52 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283374065</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283374065</link>
                <description>Also perform the same step for Space and you should be able to add these new types.  Sometimes, it does not put the object into the same space and I am trying to figure out why.</description>
                <author>Huy Bonds</author>


                <pubDate>Wed, 01 Sep 2010 20:47:46 +0000</pubDate>

                
            </item>
        
        
            <item>
                <title></title>
                <guid>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283262478</guid>
                <link>http://www.cynapse.com/community/home/cyn.in-developers/adding-additional-new-products-to-cyn.in-3.1.3/view/#1283262478</link>
                <description>The news steps were not on the tutorial before yesterday ;)</description>
                <author>Leonardo J. Caballero G.</author>


                <pubDate>Tue, 31 Aug 2010 13:47:59 +0000</pubDate>

                
            </item>
        

    </channel>
</rss>
