-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style, js, contenttype, import scripts, email templates (#525)
* Squashed commit of the following from BL/contenttypes: history upgrade to add descrptions to content types deleted non-castle icon types added new icons for contenttypes * castle types updated and upgrades to match * handle max function in css instead of less * add resuming (quick skipping already imported paths) to import script * fix folder_contents paging bugs * allow floats or stringified floats in lat and lng * update HISTORY * fix some resume bugs, add delete-resumeable-file flag * fix too-modern js * style toggle-advanced like other buttons * compile resources * upgrade step * update HISTORY * fix max function in less compiler * compile resources * typo * compilation that seems to have worked * Squashed commit of the following from BL/contenttypes: history upgrade to add descrptions to content types deleted non-castle icon types added new icons for contenttypes * castle types updated and upgrades to match * update .gitignore * remove unneeded init-dev and templates folder * update max statement to compile with newer less/css * permanently add makefile and package.json * update package-lock, compiled resources * update docs and HISTORY * fix typo * move from 3004 (old pr) to 3005 * append upgrade description * add parallax icons * compile resources, note on svg * try aligning with flex * adjust dexterity type descriptions * icons change and profile/ compile stuff commit * update/ add svg files * fix tinymce vertical spacing issue * fix typo * add a version for collective.easyform * swap profile number * update compilation date * remove unused inline style * give recycle bin its own icon * update package-lock * add back in compile resource/grunt weirdness * update compiled files * update gitignore * restore init-dev.py * restore templates makefile * remove incorrect contents for upgrade 3005 * update descriptions and titles * update CHANGES * restore deleted audio.xml contents * remove easyform after testing icons * fix error messages for unneeded tiles in dexterity control panel * add rolemap to upgrade step * add EmailTemplate to upgrade step * update CHANGES * j3cbot templates to add/ move button * override documentviewer template * add dexterity types back button * add missing back button * update/ simplify back buttons * update CHANGES * further arrange svg icons * recompile resources * some more icon tweaks * try to fix initial run of plone-compile-resources * update README * tweaks --------- Co-authored-by: Brian Duncan <[email protected]>
- Loading branch information
1 parent
b39c7e6
commit 24bf26e
Showing
648 changed files
with
10,769 additions
and
7,614 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.PHONY: less-plone less-plone-logged-in compile-plone compile-plone-logged-in verify-gruntfile-exists | ||
ERROR_MESSAGE = You must run ./bin/plone-compile-resources --site-id <YOUR_SITE_ID> before these targets will work | ||
|
||
verify-gruntfile-exists: | ||
test -f Gruntfile.js || ( echo "\n\n$(ERROR_MESSAGE)\n\n"; exit 1 ) | ||
|
||
less-plone: | ||
make verify-gruntfile-exists && grunt less:plone | ||
|
||
less-plone-logged-in: | ||
make verify-gruntfile-exists && grunt less:plone-logged-in | ||
|
||
compile-plone: | ||
make verify-gruntfile-exists && grunt compile-plone | ||
|
||
compile-plone-logged-in: | ||
make verify-gruntfile-exists && grunt compile-plone-logged-in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from collective.documentviewer.browser.controlpanel import GlobalSettingsForm | ||
from plone.app.z3cform.layout import wrap_form | ||
from zope.browserpage.viewpagetemplatefile import ViewPageTemplateFile | ||
|
||
|
||
class CastleDocumentViewerSettingsForm(GlobalSettingsForm): | ||
template = ViewPageTemplateFile('templates/documentviewer.pt') | ||
label = None | ||
description=None | ||
|
||
|
||
GlobalSettingsFormView = wrap_form(CastleDocumentViewerSettingsForm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.