Changeset 2615:09b5b27127a8
- Timestamp:
- 12/11/13 12:21:37 (12 years ago)
- Branch:
- default
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r2558 r2615 40 40 ./$(DC)/themes/ 41 41 42 ## Copy built-in plugins 43 cp -pRf \ 44 ./plugins/aboutConfig \ 45 ./plugins/akismet \ 46 ./plugins/antispam \ 47 ./plugins/attachments \ 48 ./plugins/blogroll \ 49 ./plugins/blowupConfig \ 50 ./plugins/dclegacy \ 51 ./plugins/fairTrackbacks \ 52 ./plugins/importExport \ 53 ./plugins/maintenance \ 54 ./plugins/tags \ 55 ./plugins/pages \ 56 ./plugins/pings \ 57 ./plugins/simpleMenu \ 58 ./plugins/themeEditor \ 59 ./plugins/userPref \ 60 ./plugins/widgets \ 42 ## Copy built-in plugins based on DC_DISTRIB_PLUGINS constant 43 cp -pRf $$(grep DC_DISTRIB_PLUGINS inc/prepend.php | \ 44 sed -e "s/.*,'//" -e "s/'.*//" | \ 45 sed -e 's/\(^\|,\)/ .\/plugins\//g') \ 61 46 ./$(DC)/plugins/ 62 47 … … 68 53 find $(DC)/admin/js/ie7/*.js -exec ./build-tools/min-js.php \{\} \; 69 54 find $(DC)/admin/js/jquery/*.js -exec ./build-tools/min-js.php \{\} \; 70 find $(DC)/admin/js/jsToolBar/*.js -exec ./build-tools/min-js.php \{\} \;71 55 find $(DC)/admin/js/jsUpload/*.js -exec ./build-tools/min-js.php \{\} \; 72 56 find $(DC)/plugins -name '*.js' -exec ./build-tools/min-js.php \{\} \; … … 134 118 135 119 120 copy-plugins: clean -
inc/prepend.php
r2610 r2615 142 142 define('DC_L10N_ROOT',dirname(__FILE__).'/../locales'); 143 143 define('DC_L10N_UPDATE_URL','http://services.dotclear.net/dc2.l10n/?version=%s'); 144 define('DC_DISTRIB_PLUGINS','aboutConfig,akismet,antispam,attachments,blogroll,blowupConfig,dclegacy,fairTrackbacks,importExport,maintenance,pages,pings,simpleMenu,tags,themeEditor,userPref,widgets ');144 define('DC_DISTRIB_PLUGINS','aboutConfig,akismet,antispam,attachments,blogroll,blowupConfig,dclegacy,fairTrackbacks,importExport,maintenance,pages,pings,simpleMenu,tags,themeEditor,userPref,widgets,dcLegacyEditor'); 145 145 define('DC_DISTRIB_THEMES','blueSilence,blowupConfig,customCSS,default,ductile'); 146 146 define('DC_DEFAULT_TPLSET','mustek'); -
plugins/dcLegacyEditor/_install.php
r2614 r2615 21 21 $settings->addNamespace('dclegacyeditor'); 22 22 23 $settings->dclegacyeditor->put('active', false, 'boolean', 'dcLegacyEditor plugin activated ?', false);23 $settings->dclegacyeditor->put('active', true, 'boolean', 'dcLegacyEditor plugin activated ?', false); 24 24 25 25 $core->setVersion('dclegacyeditor', $version);
Note: See TracChangeset
for help on using the changeset viewer.