This file contains hidden or 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
0) Finish and integrate release.rst (timo) | |
1) Add check changelog functionality to zest.release (martin) | |
2) Integrate checkmanifest to release.cfg (jean-francois) | |
3) Check pyroma, see if we want/can integrate it (jean-francois) | |
4) Add "pkg best practices" to plone.recipe.codeanalysis (jean-francois, martin) | |
a) use src directory | |
b) CHANGES/README (docs team) | |
c) => write to dev mailinglist asking (timo) | |
5) Add do-not-trigger jenkins commit tag. (ramon, timo) | |
6) Store version-dev.cfg as artifact on the jenkins job (jf, martin, benoit, timo) |
This file contains hidden or 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
JENKINS / CI / RELEASE: | |
[ ] Document release process (esteele) | |
[ ] Write todo list for release process steps that we want to automate (esteele) | |
[ ] Remove KGS-jobs from mr.roboto/jenkins/github (bloodbare) | |
[ ] Set up jenkins status angular app on jenkins master | |
[ ] Extend jenkins status angular app to show commits | |
[ ] Set up a jenkins master with ansible and ubuntu 14.04 lts (svx, bloodbare) | |
[ ] Set up multiple jenkins slaves with ansible and ubuntu 14.04 lts (svx) | |
[ ] Set up experimental devpi |
This file contains hidden or 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
timo@Ubuntu-1204-precise-32-minimal ~ $ npm install -g grunt-cli | |
npm http GET http://registry.npmjs.org/grunt-cli | |
npm http 304 http://registry.npmjs.org/grunt-cli | |
npm ERR! Error: No compatible version found: grunt-cli | |
npm ERR! No valid targets found. | |
npm ERR! Perhaps not compatible with your version of node? | |
npm ERR! at installTargetsError (/usr/share/npm/lib/cache.js:488:10) | |
npm ERR! at next_ (/usr/share/npm/lib/cache.js:438:17) | |
npm ERR! at next (/usr/share/npm/lib/cache.js:415:44) |
This file contains hidden or 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
# Install Node 0.8.9 | |
wget http://nodejs.org/dist/v0.8.9/node-v0.8.9.tar.gz | |
tar xfvz node-v0.8.9.tar.gz | |
cd node-v0.8.9/ | |
./configure | |
make | |
make install | |
npm config set registry http://registry.npmjs.org/ |
This file contains hidden or 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
timo@rudolf:~/workspace/krebswegweiser-tmp$ bin/test --all | |
Running dkg.addresscontenttypes.testing.DkgaddressesLayer:Integration tests: | |
Set up plone.testing.zca.LayerCleanup in 0.000 seconds. | |
Set up plone.testing.z2.Startup in 0.199 seconds. | |
Set up plone.app.testing.layers.PloneFixture in 7.202 seconds. | |
Set up dkg.addresscontenttypes.testing.DkgaddressesLayer in 6.586 seconds. | |
Set up dkg.addresscontenttypes.testing.DkgaddressesLayer:Integration in 0.000 seconds. | |
Ran 91 tests with 0 failures and 0 errors in 1.730 seconds. | |
Running dkg.consulting.testing.DkgconsultingLayer:Integration tests: | |
Tear down dkg.addresscontenttypes.testing.DkgaddressesLayer:Integration in 0.000 seconds. |
This file contains hidden or 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
/test_acceptance_1826.robot': Calling dynamic method 'get_keyword_names' failed: Connecting remote server at http://localhost:55001/plone/RobotRemote failed: <Fault -1: "Unexpected Zope exception: <class 'zExceptions.NotFound'> - Site Error \n An error was encountered while publishing this resource.\n \n Resource not found \n\n Sorry, the requested resource does not exist. Check the URL and try again. Resource: http://localhost:55001/plone/RobotRemote \n \n\n Troubleshooting Suggestions \n\n \n The URL may be incorrect. \n The parameters passed to this resource may be incorrect. \n A resource that this resource relies on may be\n encountering an error. \n \n\n For more detailed information about the error, please\n refer to the error log.\n \n\n If the error persists please contact the site maintainer.\n Thank you for your patience.\n "> | |
<string>:1: DeprecationWarning: Using len() for getting the actual pagesize is deprecated. Use the `pagesize` attribute instead. |
This file contains hidden or 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
/*jshint strict: true, undef: true*/ | |
/*global $,jQuery,window,document,localStorage,confirm,location,portal_url*/ | |
(function ($) { | |
"use strict"; | |
$("form#searchform").on("click", "input[type='submit']", function (event) { | |
event.preventDefault(); | |
$('#solr-suggestions').remove(); | |
var SearchableText = $("input[name='SearchableText']").val(); | |
var url = portal_url + "/@@suggest-terms?term=" + SearchableText; |
This file contains hidden or 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
File "/home/timo/.buildout/eggs/robotsuite-1.3.2-py2.7.egg/robotsuite/__init__.py", line 306, in runTest | |
shutil.copyfile(path, "%s%s" % (prefix, filename)) | |
File "/usr/lib/python2.7/shutil.py", line 83, in copyfile | |
with open(dst, 'wb') as fdst: | |
IOError: [Errno 2] No such file or directory: u'robot_test_acceptance_2034_As_editor_I_can_compare_three_audiences_../../../../docs/source/_screenshots/2034_audience_text_comparison.png' |
This file contains hidden or 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
configure.zcml:: | |
<browser:page | |
for="plone.app.discussion.interfaces.IComment" | |
name="edit-comment" | |
class=".comment.EditComment" | |
permission="cmf.ModifyPortalContent" | |
/> | |
comment.py:: |
This file contains hidden or 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
deco plone-4.3-plone-app-contenttypes | |
deco-acceptance plone-4.3-plone-app-multilingual | |
deco-docs plone-4.3-pull-requests | |
Deco-robot plone-4.3-python-2.6 | |
Dexterity_Plone_4.0 plone-4.3-python-2.7 | |
Dexterity_Plone_4.1 plone-4.3-python-2.7-base | |
mockup plone-4.3-python-2.7-robot | |
plone-4.0 plone-4.3-python-2.7-robot-windows-2003-chrome24 | |
plone-4.0-git plone-4.3-python-2.7-robot-windows-2003-ie9 | |
plone-4.1 plone-4.3-python-2.7-tests |