Personal tools
Skip to content. | Skip to navigation
Sheet gallery for plonetruegallery
Adds supersized jquery plugin to collective.plonetruegallery
Adds a 'thumbnailzoom' view to collective.plonetruegallery
Truegallery tile for collective.cover
uigallery for plonetruegallery
This product offers a multiple files upload tool for Plone, with multi selection, drag and drop, and progress bar. A pure javacript tool is used on client side, with html5 file fields and ajax upload for modern browsers, and a graceful fallback for other browsers. You can also choose to replace the javascript with jquery.uploadify, a flashupload based script which could be interesting in rare situations (Plone site for MSIE client's browsers only, without http authentication in front, and no https).
collective.recipe module
This recipe satisfies the (perhaps not-so-common) use case of "I want to keep my buildout bootstrap.py file up to date without having to manually download it from svn.zope.org." It also makes it possible to add a bootstrap.py file to a buildout created via ``buildout init``. In other words, with this recipe you can avoid having to do:: % svn cat svn://svn.zope.org/repos/main/zc.buildout/trunk/bootstrap/bootstrap.py > bootstrap.py Just add a new ``section``, then refer to it in your buildout section's ``parts``. E.g.:: [buildout] parts = ... bootstrap [bootstrap] recipe = collective.recipe.bootstrap Now whenever you run buildout, this recipe will update your bootstrap.py file.
Introduction ============ Simple buildout recipe that generated three commands *push a jenkins job*, *pull a jenkins job* and *trigger build on jenkins job*. Recipe enables developer to sync configuration on Jenkins with buildout configuration. Workflow to be used with the recipe: - create and configure a job through the web - run pull jenkins job - later, make more changes the job through the web - run pull jenkins job and use your SCM to diff the config - (optional) push configuration to any other server or use it as restore - (optional) trigger build, because you are too lazy to wait n minutes for cronjob
Buildout recipe to generate a text file from a template