Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/04/2012 in all areas

  1. Wondering if anyone here has tried Asana? Just stumbled on it as a potential collaboration tool and it looks very good.
    1 point
  2. I don't know what the capabilities or limitations of the software are, but I'm all in favor of anything multi language.
    1 point
  3. Looks cool. We are currently using Trello.com, that is nice one too.
    1 point
  4. Hi! I realized that I am really behind regarding the Dutch translation. There were many new files to be translated, so I started working on them again. I'll update the Github repository as soon as I've updated all translation files. /Jasper
    1 point
  5. Thank you for your attention and patience Ryan. I think I getting control ProcessWire
    1 point
  6. You can do it on the template with $array->shift() echo $array->shift()->title; foreach($array->find("sort=date") as $item) echo $item->title; edit: Or, if you want the complete array: $first = $array->shift(); $final = $array->find("sort=date")->prepend($first);
    1 point
  7. Hi Ryan, yes the environnement is a bit unusual due to scalabilty priorities: The architecture consist of a loadbalanced set of x slaves servers and one master (load balancer/ mysql director), each time you request the website you never know which slave server is handling the response, mysql handle that fine: one master which read/write and replicate on mysql slaves, so if you want to write and read right after, you better rw on the master due to replication delays. this mechanism is not existing for the filesystem, don't know if it's possible/usable in session usage. many thanks for your inputs, I think that I will do with my customs libraries afterall, and get back on processwire for the next project! because pw looks very promising
    1 point
  8. Hey Nico, after the multi-language features ryan implemented for backend and static template content, I'm still re-thinking the purpose of my module. The goal is to keep the idea of separate page trees. But basically the new module won‘t be about languages but about contexts the content belongs to. Such a context can - but doesn't have to - be a language. Or a mobile version of your site. You'll be able to define rules like url matching or client language detection to define what page tree to use. An API object var will give you the possibility to switch contexts. And it will be working together with PWs native language management. The page mapping feature will be provided by an additional module extending the context module by the mapping capabilities you know from language module. As there is still a lot work to do, I can't tell you yet when I'll be able to push a first stable version. Would need some holidays to focus on this one.
    1 point
×
×
  • Create New...