*** giampaolo has quit IRC | 00:03 | |
*** alga has joined #zope | 00:23 | |
*** Charlie_X has quit IRC | 00:28 | |
*** neo|4D has quit IRC | 00:32 | |
TresEquis | *if* client and server share a blobdir, then obviously they must have compatible write permissions | 00:39 |
---|---|---|
TresEquis | in practice, this means running as the same user | 00:40 |
TresEquis | if they don't share, then client has to fetch blobs added by other clients over ZEO protocol, which is typically painful compared to SAN | 00:41 |
*** mcdonc has quit IRC | 00:48 | |
*** mcdonc has joined #zope | 00:49 | |
*** MrWu has joined #zope | 00:50 | |
*** redir_ has quit IRC | 01:02 | |
*** d2m has quit IRC | 01:07 | |
*** d2m has joined #zope | 01:08 | |
*** J1m has quit IRC | 01:10 | |
*** MrWu has quit IRC | 01:11 | |
*** russf has left #zope | 01:13 | |
*** d2m has left #zope | 01:17 | |
*** dvschramm is now known as dvschramm|away | 01:20 | |
*** rogererens has quit IRC | 01:21 | |
*** JaRoel|4D has quit IRC | 01:25 | |
*** dayne has quit IRC | 01:34 | |
*** regebro has quit IRC | 01:45 | |
*** gwik has quit IRC | 01:47 | |
*** TresEquis has quit IRC | 01:54 | |
*** redir has joined #zope | 02:04 | |
*** mcdonc has quit IRC | 02:05 | |
*** dayne has joined #zope | 02:16 | |
*** daMaestro|isBack has joined #zope | 02:18 | |
*** daMaestro has quit IRC | 02:21 | |
*** J1m has joined #zope | 02:25 | |
*** ccomb has quit IRC | 02:41 | |
*** alga has quit IRC | 02:42 | |
*** mcdonc has joined #zope | 02:54 | |
*** J1m has quit IRC | 03:07 | |
*** sm has quit IRC | 03:08 | |
*** vipod has quit IRC | 03:11 | |
*** mr_jolly has quit IRC | 03:20 | |
*** Sarift has joined #zope | 03:23 | |
*** daMaestro|isBack has quit IRC | 03:34 | |
*** menesis has quit IRC | 03:37 | |
*** Sarift has quit IRC | 03:44 | |
*** davisagli is now known as davisagli|away | 04:13 | |
*** tiwula has quit IRC | 04:15 | |
*** goschtl_ has joined #zope | 04:33 | |
*** goschtl has quit IRC | 04:36 | |
*** goschtl_ is now known as goschtl | 04:36 | |
*** allisterb has quit IRC | 05:00 | |
*** allisterb has joined #zope | 05:13 | |
*** tiwula has joined #zope | 05:14 | |
*** River_Rat has joined #zope | 05:21 | |
*** River-Rat has quit IRC | 05:23 | |
*** smita has quit IRC | 05:46 | |
*** smita has joined #zope | 06:01 | |
*** tiwula has quit IRC | 06:45 | |
*** davisagli|away is now known as davisagli | 07:25 | |
*** davisagli is now known as davisagli|away | 07:44 | |
*** davisagli|away is now known as davisagli | 07:44 | |
*** davisagli is now known as davisagli|away | 07:45 | |
*** davisagli|away is now known as davisagli | 07:53 | |
*** benji has quit IRC | 07:58 | |
*** regebro has joined #zope | 08:06 | |
*** JaRoel|4D has joined #zope | 08:26 | |
*** zagy has joined #zope | 08:40 | |
*** JaRoel|4D has quit IRC | 08:41 | |
*** __mac__ has joined #zope | 08:42 | |
*** __mac__ has quit IRC | 08:44 | |
*** __mac__ has joined #zope | 08:44 | |
*** cpf_ has joined #zope | 08:46 | |
*** wosc has joined #zope | 08:55 | |
*** davisagli is now known as davisagli|away | 09:03 | |
*** regebro has quit IRC | 09:05 | |
*** Vejeta has quit IRC | 09:09 | |
*** nitrogenycs has joined #zope | 09:17 | |
*** River-Rat has joined #zope | 09:20 | |
*** River_Rat has quit IRC | 09:22 | |
*** Theuni_ has quit IRC | 09:23 | |
CIA-82 | icemac * r118431 z3c.zrtresource/ (CHANGES.txt src/z3c/zrtresource/tests.py setup.py): | 09:32 |
CIA-82 | - Made tests compatible with ``zope.browserresource`` 3.11, thus requiring at least this version. | 09:32 |
CIA-82 | - One test fails surprisingly, maybe custom ZRT commands are currently broken. | 09:32 |
*** bigkevmcd has joined #zope | 09:36 | |
*** prinzdezibel has joined #zope | 09:37 | |
prinzdezibel | im | 09:37 |
*** regebro has joined #zope | 09:37 | |
prinzdezibel | Morning. Can somebody tell me why in zcml views and local grants work with a simple permission statement for the whole object, whereas the underlying security mechanisms works with permissions for read/write for every attribute on the object? E.g. What does it mean, if I grant a local permission to a annotable object? Which attributes are affected by this? | 09:40 |
wosc | prinzdezibel: IIRC the ZCML <grant> applies to either an explicit list of attributes or an interface | 09:41 |
wosc | in the latter case, all attributes of the interface are affected | 09:42 |
prinzdezibel | yes, for the class directive. but not for the page permission, AFAIK | 09:42 |
wosc | so you'd need to look up IAnnotatable (or something) | 09:42 |
wosc | ah, do you mean <browser:page for="..." class=... permission=...>? | 09:43 |
prinzdezibel | wosc: yes | 09:43 |
wosc | riight | 09:43 |
wosc | that applies to the *view* | 09:43 |
prinzdezibel | yes. but to which attribute? | 09:44 |
prinzdezibel | What does this mean, permission to "use " the view | 09:44 |
prinzdezibel | the __call__ method? | 09:44 |
wosc | I'm not sure about the details | 09:44 |
wosc | I guess it must be __init__ and __call__ | 09:44 |
prinzdezibel | in ZMI I can grant local grants. I have no clue what that really does under the hood | 09:45 |
wosc | no clue about ZMI | 09:45 |
prinzdezibel | concerning the object the permission requirements are declared for. | 09:45 |
wosc | I'd look in one of zope.publisher, zope.app.publication, zope.app.publisher if I wanted to know the details about the view stuff | 09:46 |
prinzdezibel | wosc: ok. need to dig. | 09:46 |
prinzdezibel | wosc: thank you | 09:46 |
*** JaRoel|4D has joined #zope | 09:46 | |
wosc | np, sorry I can't tell you more | 09:46 |
*** d2m has joined #zope | 09:50 | |
*** J1m has joined #zope | 09:57 | |
*** alga has joined #zope | 09:59 | |
*** Theuni_ has joined #zope | 10:02 | |
CIA-82 | icemac * r118432 z3checkins/ (4 files in 2 dirs): | 10:03 |
CIA-82 | - Declated all required install dependencies. | 10:03 |
CIA-82 | - Added test extra to declare test dependency on ``zope.app.testing``. | 10:03 |
CIA-82 | - Made sure functional tests are run. | 10:03 |
CIA-82 | - Fixed test set up to run with ZTK 1.0. | 10:03 |
CIA-82 | icemac * r118433 z3checkins/ (4 files in 2 dirs): Conform to repository policy. | 10:03 |
CIA-82 | icemac * r118434 z3ext.cacheheaders/ (COPYRIGHT.txt LICENSE.txt): Conform to repository policy. | 10:03 |
CIA-82 | icemac * r118435 zope.browserresource/buildout.cfg: currently depends on not yet released zope.security | 10:03 |
*** alga has quit IRC | 10:04 | |
*** sunew has joined #zope | 10:06 | |
*** J1m has left #zope | 10:15 | |
*** prinzdezibel has left #zope | 10:17 | |
*** sm has joined #zope | 10:24 | |
*** sm has quit IRC | 10:30 | |
*** lcpfnyvc has joined #zope | 10:31 | |
*** lcpfnyvc has quit IRC | 10:33 | |
*** planetzopebot has quit IRC | 10:33 | |
*** planetzopebot has joined #zope | 10:34 | |
*** lcpfnyvc has joined #zope | 10:34 | |
*** prinzdezibel has joined #zope | 10:35 | |
*** prinzdezibel has quit IRC | 10:36 | |
*** prinzdezibel_ has joined #zope | 10:36 | |
*** alga has joined #zope | 10:50 | |
*** hever has joined #zope | 10:50 | |
*** Theuni_ has quit IRC | 10:57 | |
CIA-82 | icemac * r118436 z3ext.controlpanel/ (3 files in 2 dirs): - Updated test set up to run with ZTK 1.0. | 10:59 |
CIA-82 | icemac * r118437 z3ext.controlpanel/ (3 files in 2 dirs): Conform to repository policy. | 10:59 |
*** menesis has joined #zope | 11:03 | |
*** sashav has joined #zope | 11:05 | |
*** Theuni_ has joined #zope | 11:05 | |
*** prinzdezibel_ has quit IRC | 11:07 | |
*** alexpilz has joined #zope | 11:07 | |
*** prinzdezibel has joined #zope | 11:08 | |
*** neo|4D has joined #zope | 11:10 | |
*** JaRoel|4D has quit IRC | 11:13 | |
*** bigkevmcd has quit IRC | 11:13 | |
*** JaRoel|4D has joined #zope | 11:15 | |
*** bigkevmcd has joined #zope | 11:15 | |
*** JaRoel|4D has quit IRC | 11:15 | |
*** JaRoel|4D has joined #zope | 11:16 | |
*** hever has quit IRC | 11:21 | |
CIA-82 | icemac * r118438 z3c.zrtresource/CHANGES.txt: typo | 11:21 |
*** vipod has joined #zope | 11:28 | |
*** ccomb has joined #zope | 11:29 | |
*** sylvain has joined #zope | 11:31 | |
*** mr_jolly has joined #zope | 11:39 | |
*** evilbungle has joined #zope | 11:40 | |
*** neo|4D has quit IRC | 11:41 | |
*** TomBlockley has joined #zope | 11:44 | |
*** gwik has joined #zope | 11:49 | |
*** hever has joined #zope | 11:50 | |
*** regebro has quit IRC | 11:54 | |
*** neo|4D has joined #zope | 11:56 | |
*** tisto has joined #zope | 11:58 | |
*** regebro has joined #zope | 12:07 | |
*** rogererens has joined #zope | 12:12 | |
*** acsr has joined #zope | 12:21 | |
*** teix has joined #zope | 12:48 | |
*** agroszer has joined #zope | 13:00 | |
*** thetet has joined #zope | 13:02 | |
*** zagy has quit IRC | 13:48 | |
*** zagy has joined #zope | 13:48 | |
*** lucmult has quit IRC | 14:21 | |
*** lucmult has joined #zope | 14:21 | |
*** rbanffy has joined #zope | 14:30 | |
*** menesis has quit IRC | 14:31 | |
*** alga has quit IRC | 14:31 | |
*** alexpilz has quit IRC | 14:34 | |
*** Theuni_ has quit IRC | 14:47 | |
*** sunew has quit IRC | 14:49 | |
*** wosc has quit IRC | 14:49 | |
*** sashav has quit IRC | 15:00 | |
*** alga has joined #zope | 15:03 | |
*** tisto is now known as tisto|lunch | 15:05 | |
*** menesis has joined #zope | 15:21 | |
*** evilbungle has quit IRC | 15:22 | |
*** benji has joined #zope | 15:33 | |
*** giampaolo has joined #zope | 15:41 | |
*** sunew has joined #zope | 15:52 | |
*** J1m has joined #zope | 15:52 | |
*** sm has joined #zope | 15:57 | |
*** menesis has quit IRC | 16:00 | |
*** menesis1 has joined #zope | 16:00 | |
*** menesis1 is now known as menesis | 16:00 | |
*** avoinea has joined #zope | 16:00 | |
*** redir has quit IRC | 16:03 | |
*** evilbungle has joined #zope | 16:16 | |
*** sunew has quit IRC | 16:23 | |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118439 gocept.selenium/src/gocept/selenium/base.py: Simpler code for picking up settings from the environment. | 16:34 |
*** dayne has quit IRC | 16:34 | |
*** alga has quit IRC | 16:41 | |
*** dvschramm|away is now known as dvschramm | 16:50 | |
*** dayne has joined #zope | 17:00 | |
*** alexpilz has joined #zope | 17:05 | |
*** MrWu has joined #zope | 17:06 | |
*** menesis has quit IRC | 17:07 | |
*** menesis has joined #zope | 17:07 | |
*** __mac__ has quit IRC | 17:08 | |
*** allisterb has quit IRC | 17:15 | |
*** sm_ has joined #zope | 17:17 | |
*** tisto|lunch is now known as tisto | 17:20 | |
*** sm has quit IRC | 17:21 | |
*** sm_ is now known as sm | 17:21 | |
*** ccomb has quit IRC | 17:22 | |
*** cwarner has joined #zope | 17:27 | |
*** allisterb has joined #zope | 17:28 | |
*** redir has joined #zope | 17:29 | |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118440 gocept.selenium/ztk.cfg: Ignore grok and wsgi dirs | 17:33 |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118441 gocept.selenium/src/gocept/selenium/static/__init__.py: Added conditional logging support to the static layer. The host and port are taken from the base layer | 17:33 |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118442 gocept.selenium/src/gocept/selenium/ztk/__init__.py: Take the host and port from the base layer. | 17:33 |
*** redir_ has joined #zope | 17:42 | |
*** redir has quit IRC | 17:45 | |
*** zagy has quit IRC | 17:48 | |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118443 gocept.selenium/buildout.cfg: Sane buildout.cfg from which the different configurations can inherit | 17:48 |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118444 gocept.selenium/ (static.cfg ztk.cfg wsgi.cfg grok.cfg): Extend from buildout.cfg. Add auto-color test runner option. | 17:48 |
mgedmin | yay, someone else also likes colourful test runs | 17:50 |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118445 gocept.selenium/src/gocept/selenium/ztk/tests/test_selenese.py: Fix test after making host/port dynamic. | 18:03 |
*** sunew has joined #zope | 18:06 | |
*** cpf_ has quit IRC | 18:07 | |
*** janjaapdriessen1 has joined #zope | 18:16 | |
*** zagy has joined #zope | 18:16 | |
CIA-82 | janjaapdriessen * r118446 /Sandbox/janjaapdriessen/buildbot/buildout.cfg: Add gocept.selenium branch to buildbot. | 18:19 |
CIA-82 | janjaapdriessen janjaapdriessen-wsgi * r118447 gocept.selenium/grok.cfg: Added missing extends buildout.cfg | 18:19 |
*** giampaolo has quit IRC | 18:20 | |
*** sunew has quit IRC | 18:21 | |
*** goschtl has quit IRC | 18:24 | |
*** tiwula has joined #zope | 18:26 | |
*** fredvd has joined #zope | 18:26 | |
*** tisto has quit IRC | 18:28 | |
*** allisterb has quit IRC | 18:29 | |
*** sunew has joined #zope | 18:30 | |
*** zagy has quit IRC | 18:34 | |
*** neo|4D has quit IRC | 18:37 | |
*** allisterb has joined #zope | 18:43 | |
*** zagy has joined #zope | 18:45 | |
*** zagy has quit IRC | 18:46 | |
*** russf has joined #zope | 18:49 | |
*** acsr has quit IRC | 18:51 | |
*** acsr has joined #zope | 18:52 | |
*** __mac__ has joined #zope | 18:53 | |
*** daMaestro has joined #zope | 18:56 | |
*** prinzdezibel has quit IRC | 18:58 | |
*** River_Rat has joined #zope | 19:05 | |
*** River-Rat has quit IRC | 19:07 | |
*** sunew has quit IRC | 19:15 | |
*** __mac__ has quit IRC | 19:16 | |
*** __mac__ has joined #zope | 19:17 | |
*** avoinea has quit IRC | 19:18 | |
*** cpf_ has joined #zope | 19:19 | |
*** menesis has quit IRC | 19:20 | |
*** menesis has joined #zope | 19:20 | |
*** janjaapdriessen1 has quit IRC | 19:22 | |
*** benji is now known as benji-lunch | 19:29 | |
*** sylvain has quit IRC | 19:35 | |
*** hever has quit IRC | 19:37 | |
*** alga has joined #zope | 19:43 | |
*** gwik has quit IRC | 19:44 | |
*** shastry has joined #zope | 19:44 | |
*** shastry_ has quit IRC | 19:48 | |
*** rogererens has quit IRC | 19:51 | |
*** rogererens has joined #zope | 19:59 | |
*** alexpilz has quit IRC | 20:02 | |
*** zagy has joined #zope | 20:02 | |
*** zagy has quit IRC | 20:07 | |
*** allisterb has quit IRC | 20:09 | |
*** sunew has joined #zope | 20:13 | |
*** agroszer_ has joined #zope | 20:18 | |
*** agroszer has quit IRC | 20:18 | |
*** menesis has quit IRC | 20:20 | |
*** TomBlockley has quit IRC | 20:21 | |
*** thetet has quit IRC | 20:23 | |
*** davisagli|away is now known as davisagli | 20:23 | |
*** allisterb has joined #zope | 20:25 | |
*** toutpt has joined #zope | 20:25 | |
*** benji-lunch is now known as benji | 20:27 | |
*** vipod has quit IRC | 20:29 | |
*** russf has quit IRC | 20:36 | |
*** russf has joined #zope | 20:37 | |
*** hever has joined #zope | 20:40 | |
*** zagy has joined #zope | 20:42 | |
*** sunew_ has joined #zope | 20:52 | |
*** menesis has joined #zope | 20:54 | |
*** sunew has quit IRC | 20:54 | |
*** brguedes has joined #zope | 21:00 | |
brguedes | hello everybodu | 21:00 |
brguedes | everybody | 21:00 |
*** JaRoel|4D has quit IRC | 21:00 | |
*** ccomb has joined #zope | 21:01 | |
brguedes | I've a python external method, which import other python methods, however when I need to change something on the other methods, it is necessary to reload zope | 21:02 |
*** gwik has joined #zope | 21:02 | |
brguedes | Is there a way to when I save the external method, import again the other scripts? | 21:04 |
*** JaRoel|4D has joined #zope | 21:05 | |
*** JaRoel|4D has quit IRC | 21:05 | |
*** JaRoel|4D has joined #zope | 21:06 | |
*** toutpt has quit IRC | 21:07 | |
brguedes | or inside external python methods, it is not possible to change the dependecies (other python scripts imported inside), once imported, it will just import when restart | 21:07 |
brguedes | ? | 21:07 |
*** JaRoel|4D has quit IRC | 21:08 | |
brguedes | someone can help me? | 21:09 |
mgedmin | brguedes, it's been ages since I used zope 2 | 21:10 |
mgedmin | there's a ZMI page that causes zope to reload an external method, isn't it? | 21:10 |
mgedmin | if you do that for all the dependencies manually, do they get the new method? | 21:10 |
brguedes | mgedmin: I use Zope 2 | 21:11 |
brguedes | yah | 21:11 |
brguedes | I do it manually | 21:11 |
brguedes | but just refresh the external method | 21:11 |
brguedes | e.g.: if the external method calls a | 21:12 |
brguedes | calls A | 21:12 |
mgedmin | external methods aren't really suitable for serious development | 21:12 |
brguedes | and inside A we import another python script B | 21:13 |
brguedes | if you change something on B | 21:13 |
*** MrWu has quit IRC | 21:13 | |
*** teix has quit IRC | 21:13 | |
brguedes | and manually update the external method | 21:13 |
brguedes | B will not update | 21:14 |
mgedmin | while you're developing, you can change A.py to do "import B; reload(B)", then when you update A in the ZMI, it'll get the new B | 21:14 |
mgedmin | when you're done, I'd remove the reload() call | 21:14 |
brguedes | ahh | 21:14 |
brguedes | I try: "import general; reload (general)" | 21:17 |
brguedes | mgedmin: doesn't work | 21:17 |
mgedmin | hm, that's a shame, it was such a good idea | 21:21 |
*** alexpilz has joined #zope | 21:22 | |
brguedes | mgedmin: thanks anyway | 21:22 |
brguedes | ;) | 21:22 |
*** gwik has joined #zope | 21:23 | |
*** brguedes has quit IRC | 21:27 | |
*** vipod has joined #zope | 21:33 | |
*** hever has quit IRC | 21:34 | |
*** AnneGilles has joined #zope | 21:37 | |
*** __mac__ has quit IRC | 21:38 | |
*** russf_ has joined #zope | 21:45 | |
*** russf has quit IRC | 21:49 | |
*** russf_ is now known as russf | 21:49 | |
kosh | hmm for external methods I thought that zope still supported a devel mode where it reloaded them fresh on every access | 21:58 |
*** brguedes has joined #zope | 21:59 | |
brguedes | so...anyone can help me with external python methods? | 22:00 |
*** AnneGilles has quit IRC | 22:01 | |
*** agroszer_ has quit IRC | 22:07 | |
*** AnneGilles has joined #zope | 22:08 | |
*** JaRoel|4D has joined #zope | 22:18 | |
*** russf has quit IRC | 22:18 | |
*** russf has joined #zope | 22:18 | |
*** fredvd has quit IRC | 22:34 | |
*** fredvd has joined #zope | 22:35 | |
*** russf_ has joined #zope | 22:54 | |
*** russf has quit IRC | 22:57 | |
*** russf_ is now known as russf | 22:57 | |
CIA-82 | hannosch 1.0 * r118448 zopetoolkit/ztk-versions.cfg: Various bug fix updates | 22:58 |
CIA-82 | hannosch 1.0 * r118449 zopetoolkit/zopeapp-versions.cfg: One more bug fix update | 22:58 |
CIA-82 | hannosch 1.0 * r118450 zopetoolkit/index.rst: Update docs to mention the final 1.0 release | 22:58 |
CIA-82 | hannosch * r118451 /zopetoolkit/tags/1.0.1: Tagged 1.0.1 | 22:58 |
*** vipod has quit IRC | 22:59 | |
*** AnneGilles has quit IRC | 23:01 | |
*** alexpilz has quit IRC | 23:02 | |
*** daMaestro|isBack has joined #zope | 23:06 | |
*** daMaestro has quit IRC | 23:10 | |
*** brguedes has quit IRC | 23:10 | |
CIA-82 | hannosch 2.13 * r118452 Zope/ (doc/CHANGES.rst versions.cfg): Updated to Zope Toolkit 1.0.1. | 23:20 |
CIA-82 | hannosch * r118453 Zope/ (doc/CHANGES.rst versions.cfg): Merged c118452 from 2.13 branch | 23:20 |
*** danielblackburn_ has joined #zope | 23:20 | |
*** danielblackburn has quit IRC | 23:21 | |
*** danielblackburn_ is now known as danielblackburn | 23:21 | |
*** d2m has quit IRC | 23:23 | |
*** daMaestro|isBack is now known as daMaestro | 23:23 | |
*** d2m has joined #zope | 23:27 | |
*** d2m has quit IRC | 23:39 | |
*** hever has joined #zope | 23:47 | |
*** redir_ has quit IRC | 23:47 | |
*** d2m has joined #zope | 23:47 | |
*** zagy has quit IRC | 23:58 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!