Jump to content

Beluga

Members
  • Posts

    528
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Beluga

  1. I just put this to use on a site, because I realized the core password reset module does not have good user experience. It is too much to expect a user to keep their tab open after clicking submit or that they have to do the reset on the same device. So thanks for this traditional reset module!
  2. They are still trying to install Arch Linux, though: http://twitchintheshell.com/
  3. You can check-out any time you like, but you can never leave!
  4. Well, the author of Lost Grid thinks Singularity is awesome Btw., here are tutorial vids about PostCSS and also Lost Grid and the responsive typography tool.
  5. http://www.walkercoderanger.com/blog/2015/06/state-of-js-build-tools-2015/ Btw. here is a slightly outdated list for your pleasure: https://gist.github.com/callumacrae/9231589 Comments kind of work as updates, though..
  6. @formulate: I try to keep my menus really simple, preferably no hamburger icons.. Here is a more complex setup I used: CSS-only responsive multi-level menu.
  7. I mostly just need a grid and a solid typography solution.
  8. Is there any way I can send you money? (On some occasions I believe I have threatened to send money to someone brave enough to take a stab at creating a PW-based forum solution)
  9. Apparently not, should work with both.
  10. Ha! Nice try, but I know that you are trying to trick us into revealing we are all PW fanbois. I will counter the trickery with a reverse double jinx and vote for Wordpress = 1
  11. Still interested in the reason that was on cssabc123's mind.
  12. Smalltalk and ADA are programming languages, though. Btw. you can build web apps with Smalltalk http://www.aidaweb.si/ and Ada https://github.com/stcarrez/ada-awa What is the reason Wordpress is #1?
  13. https://blog.documentfoundation.org/2015/10/01/tender-for-design-and-implementation-of-all-about-libreoffice-community-and-developer-dashboard-201510-01/ Thought some of you might be interested in this gig. This is a bit silly, but I think it will be negotiable:
  14. It should be created automatically, so seems to be because of not being able to write.
  15. In PW settings - languages - your lang - select file for translation and give the module file.
  16. Now I picture renobird sleepwalking to his computer and posting praise to himself, then forgetting all about it and replying like normal
  17. No offense to any of you, but did you look at how small pwFoo's system's basic building blocks are: https://bitbucket.org/pwFoo/formhelper/src/21693e79e771b85c236124e523c972a805fb44e1/FormHelper/FormHelper.module?at=master&fileviewer=file-view-default https://bitbucket.org/pwFoo/frontenduser/src/71207f581585ac6e089b47790eadbf3bdbedd5a9/FrontendUser/FrontendUser.module?at=master&fileviewer=file-view-default If "possibility of abandoning" means "possibility of breaking with API changes", 1. PW API breaks very rarely 2. pwFoo's codebase is really small and anyone depending on it could fix breakage, if push comes to shove
  18. If I may interject, here is an MW skin that uses Foundation: https://www.mediawiki.org/wiki/Skin:Foreground Only v4 though.. maybe they will go straight to v6 when it hits.
  19. It sounds like good old CSS media queries would solve this just fine: https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries Edit: ok, posted probably at the exact same second as tpr
  20. Thanks heaps! Now I can throw away my silly little module made in a hurry. Here is a solution that will email to all your superusers, thanks to LostKobrakai for being there on IRC to give advice: $form->addHookAfter('FrontendUser::save', function() use($fu, $input) { $superusers = wire('users')->find("roles=superuser"); $emails = $superusers->explode('email'); $subject = "A new user registered at the site: " . $fu->userObj->fullname; $emailContentPlain = "Go and activate them: http://www.mysite.fi/myadmin/"; $mail = wireMail(); $mail->to($emails); $mail->from('admin@mysite.fi'); $mail->subject($subject); // plain body $mail->body($emailContentPlain); $mail->send(); }); $fu->process($redirectDestination); Note: wire('pages')->find("template=user.. did not work. It had to be wire('users') !! $fu->userObj->fullname; is getting the value of my extra field, fullname.
  21. How do you guys like https://readthedocs.org/ ? Real world example: http://bugzilla.readthedocs.org/en/latest/
  22. Try putting $modules->get('EmailAdminNewUser'); After $fu = $modules->get('FrontendUser'); At least that is how I have it. Do you have this in site/config.php: /** * adminEmail: address to send optional fatal error notifications to. * */ $config->adminEmail = 'name@exampledomain.com'; Because my module is getting the email with wire('config')->adminEmail I did notice that I didn't even have that config set, but it still always worked for me..
  23. Beluga

    My Off-Canvas Plugin

    Were the solutions that use only CSS not acceptable?
  24. Actually, no one has seen EmailAdminNewUser, because it is a module I edited from adrian's module I am attaching it here: EmailAdminNewUser.zip
×
×
  • Create New...