Jump to content

Soma

Moderators
  • Posts

    6,808
  • Joined

  • Last visited

  • Days Won

    159

Everything posted by Soma

  1. *Grabs some popcorn*
  2. lol read their tweet!
  3. RT @processwire: Don't forget to click on the Facebook Like and Google+1 icons on this page http://t.co/K9Yxnsq9jG as they apparently count…

  4. How about httpUrl ?
  5. I was using XAMPP (mac) for a long time but had to switch to MAMP because it was horribly broken and lots of strange things happening. (Couldn't create new Inputfields)
  6. Not worth the effort. I knew it the moment ametitis appeared.
  7. Hehe if smashingmag retweets that, bitzunami will go down...
  8. I can't even vote on my (old) android phone, cause their website doesn't really work on it. Telling them on twitter gave no answer. I also have dynamic ips but can't vote multiple times, even on other computer or browsers.
  9. And you guys even help them spread their name even in this forum!
  10. Any news on this? How far is it translated already? Especially it would be useful to have translated Comments module and anything that could be shown on front-end. I think they're all missing yet. Can this @underk repo be added to the French pack already on modules.processwire.com instead of the download link to this forum. I didn't realize there's a repo on github already.
  11. Hey Alessio, are you still maintaining this or anyone interested in? Not only for own needs I think it would be great to have some up to date version of Italian translation pack. Especially regarding comments module and error messages that could be needed for front-end also.
  12. ... because Fredi renders/construct outputs the form itself, using ProcessPageEdit to buildForm, just the part you changed is not involved.
  13. No Ryan, I reported that they were not visible in modals where modal=1 is used cause they're were cut off, but it seems it's gone in latest admin theme version, but not sure why or how. Yeah I also preach that, but I meant getting along with the project/site I'm trying to develop. Well, it was wierd with the role thing, and costed my editors time and frustration, in that they couldn't edit when they actually wanted Just debugged half hour why Fredi modal (renderAll()) wouldn't now show WireTabs. Turned out you changed the ProcessPageEdit to init the script from an inline script: https://github.com/ryancramerdesign/ProcessWire/blob/dev/wire/modules/Process/ProcessPageEdit/ProcessPageEdit.module#L135 So simple changes like this can be nasty, and break other modules that depend on it
  14. BTW, I'm using Fredi a lot lately, and noticed that the WireTabs don't work there anymore when doing a renderAll(), which renders complete page edit form. I'm not sure which part is responsible for, but lately I find quite a lot of those glitches and wierd behaviors of PW, and find myself debugging and trying searching rather than developing. Latest was I updated a install 2.3 to latest 2.3.13 and the editors couldn't edit content anymore cause the "edit" action was gone. After not finding abvious reason, I saved something with the roles or something and it was working again.
  15. @adrian, that config is a monster you know ok added style to overwrite max width of popup. Pushed an update with some translations added
  16. Soma

    Hanna Code

    I just noticed that the complete ACE editor is bundled with TextformatterHannaCode. Wouldn't it be nice to make it a separate js module and use it if it's installed? Also there's already a ACE editor fieldtype from Adam. Since ACE editor source comes with 1million! files I think it would be the way to go. Much like jQueryDataTables or Magnific etc.
  17. The only time I got a strange effect was when messing around with a module and has 2 of the same installed I think when I moved AdminTheme module from core to site modules and tried installing that, there was no "Core" anymore.
  18. RT @Joss_Sanglier: @processwire is simply a stunning #CMS - so go vote for it! http://t.co/eWJAlsJKsa

  19. I would lol if they get disqalified.
  20. It's only visible for the hard'core'.
  21. Same for links that have a class added and if reopened in link modal and changed the link lost the class added before. This is ever since. And with image too. Think there was some thread about it.
  22. There's no $page->urlSegment only $input->urlSegment. You problem is not a bug. You're using a context in a Textformatter, but it's of course in the context of the current page as I understand what you saying. So you would need to do something differently. There's many ways and solutions I guess, but without seeing your Textformatter it's hard. One would be to set the $page to the one you render the field from and set it back to the page before. etc.
  23. You can't login user, as you don't know the password. setCurrentUser does not login but set the current user, so if you do that for every request it's like he's logged in. To you original question I have no idea. Not something usual.
  24. My take if($page->parents->has($section)) ... if($section->find("id=$page")->count()) ... // direct parent-child if($section->children("id=$page")->count()) ... if($page->parent === $section) ...
×
×
  • Create New...