Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4677288 By: mario-orlandi
To successfully use code completion with PyDev Extensions in a Plone project, the simple trick was to add an empty __init__.py file to the Products folder, in order to have your own products encapsulated in a "Products" namespace as required. However, when using paster and buildout to manage a Plone project, the physical path to your sources is now called "products" instead of "Products", so an empty __init__.py file alone is not enought. Recent versions of Pydev Extensions (since 1.3.10) support symlinks, thus allowing again the definition of a suitable "Products" namespace without modifying the folders layout generated by buildout. This works both on Linux and Windows; in the latter case, a command-line utility called Junction is available from sysinternals to create directory symbolic links on NTFS. Junction can be download at this address: http://www.microsoft.com/technet/sysinternals/FileAndDisk/Junction.mspx ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 ------------------------------------------------------------------------- SF.Net email is sponsored by: Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace _______________________________________________ Pydev-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pydev-users
