• Hallo zusammen,
    Hoffe von Euch kennt jemand ATPhoto, habe momentan ein eher mittleres Problem :lol: .

    Und zwar, ich will Atphoto die Bilder bei Klick in einem neuen Fenster aufmachen lassen, nur nimmt er mir das OriginalBild, was teilweise natürlich zug groß ist...
    Deshalb will ich ATPhoto sagen, nimm net das Original sondern ein skaliertes zb Medium(?), nur wie sag ich ihm das??

    So, sieht der Link zur Zeit aus:

    Code
    <a href=""
                       tal:attributes="href string:${photo/absolute_url};
                                       title title;
                                       rel python:'lightbox[' + object_title + ']';"
                       tal:content="structure python:photo.tag(scale='thumb')" />


    2te Frage:
    Wenn ich ATPhoto sage, exportiere dieses Album, tut er das zwar brav, aber immer unter dem gleichen Namen! Soll heißen beim entpacken der .zip Datei, habe ich nur mehr eine Datei?


    Danke schon mal :lol:

  • Hallo,
    die erste Frage hat sich bereits erledigt, ging dann eigentlich ganz einfach, musst wohl nur etwas essen gehen.... :lol:

    So gings...:

    Code
    <a href=""
                       tal:attributes="href string:${photo/absolute_url}/image_large;;
                                       title download;
                                       rel python:'lightbox[' + object_title + ']';"
                       tal:content="structure python:photo.tag(scale='thumb')" />

    Die 2te Frage bleibt allerdings noch...


    Und wie kann ich Plone bei einen href-Attribut sagen, er soll aus dem Ziel Bild einen Download machen, und es nicht öffnen?

    thx

  • Zitat von mgraf


    Die 2te Frage bleibt allerdings noch...


    Und wie kann ich Plone bei einen href-Attribut sagen, er soll aus dem Ziel Bild einen Download machen, und es nicht öffnen?

    thx

    Code
    tal:attributes="href string:${photo/absolute_url}/download;;


    :D

    Torty

    "Carpe Diem" powered by positiv Feelings

  • Ah, doch so einfach.... ups, hätte ich jetzt nicht gedacht... :kopfpatsch:

    Ich wollte schon mit Python ein "Content-Disposition Header" Skript schreiben.... :cry: :wink:

    Danke, Torty :danke2: