To self: Next time google map tiles don't display properly in a Plone site page (or anywhere actually) - check to see if you have set the width and height for the map container.
*doh*
Showing posts with label plone. Show all posts
Showing posts with label plone. Show all posts
Monday, 5 May 2014
Wednesday, 30 November 2011
Something for next time
Remember, if you change something in a buildout script - rerun buildout if you want the change to have efffect.
Tuesday, 30 August 2011
Package configuration
When creating a new package and you need to add a new dependency
- edit
profiles/default/metadata.xmlto add in a new dependency and increase version number - edit
configure.zcmlto add the upgrade step for the new version - edit
setup.pyin the top level of the package directory structure and add in the new package to theinstall_requireslist. - rerun buildout so that new dependency can be pulled down
- rerun instance and go to the Add-on Products section of Site Setup and run the upgrade
Plone debugging
To get an interactive debugger in your plone code:
To reload the code you are debugging after you have made changes with out having to restart the service, to go
- add
import ipdb; ipdb.set_trace()into the code - the
set_tracefunction sets a breakpoint at the point in the code.
To reload the code you are debugging after you have made changes with out having to restart the service, to go
host:port/@@reload
this doesn't always work. If you get a complaint mentioning something to do with calling super then you will probably just have to live with restarting the service instead.
Subscribe to:
Comments (Atom)