> > * When the app starts up, something seems to be copying a bunch of
files into public/plugin_assets/calendar_date_select. This is giving > me trouble because it's also copying .svn folders. For now, it's > causing a permissions error and I have to just go delete all the .svn > folders and try again, but I have a feeling it will cause bigger > problems once I add public/plugin_assets into the project's svn repo. > In your development or production.rb, put: config.after_initialize do EnginesHelper.autoload_assets = false end Note that that will stop CE from copying its assets (stylesheets, etc) into your app, so you'll have to do it manually and add them to your SCM. > Can/should I disable these various plugins within CE in favor of the > plugins/gems we were already using? > There's no easy way to 'disable' plugins within CE. You could hack the CE source (i.e. remove taggable from CE's plugins directory), but you might cause a bunch of new errors. > --~--~---------~--~----~------------~-------~--~----~ > You received this message because you are subscribed to the Google Groups > "CommunityEngine" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected]<communityengine%[email protected]> > For more options, visit this group at > http://groups.google.com/group/communityengine?hl=en > -~----------~----~----~----~------~----~------~--~--- > > -- You received this message because you are subscribed to the Google Groups "CommunityEngine" group. To post to this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/communityengine?hl=.
