-
Posts
528 -
Joined
-
Last visited
-
Days Won
4
Everything posted by Beluga
-
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!
-
They are still trying to install Arch Linux, though: http://twitchintheshell.com/
-
You can check-out any time you like, but you can never leave!
-
HermodBB - Basic BB/Forum/Comments module
Beluga replied to GuruMeditation's topic in Module/Plugin Development
I believe this thread is the documentation -
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.
-
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..
-
@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.
-
I mostly just need a grid and a solid typography solution.
- 31 replies
-
- 10
-
HermodBB - Basic BB/Forum/Comments module
Beluga replied to GuruMeditation's topic in Module/Plugin Development
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) -
Apparently not, should work with both.
-
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
-
Still interested in the reason that was on cssabc123's mind.
-
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?
-
It should be created automatically, so seems to be because of not being able to write.
-
Module FrontendUser: login, logout and register users / members
Beluga replied to pwFoo's topic in Modules/Plugins
In PW settings - languages - your lang - select file for translation and give the module file. -
Now I picture renobird sleepwalking to his computer and posting praise to himself, then forgetting all about it and replying like normal
-
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
-
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.
- 7 replies
-
- 2
-
- intranet
- password-protection
-
(and 2 more)
Tagged with:
-
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
-
Module FrontendUser: login, logout and register users / members
Beluga replied to pwFoo's topic in Modules/Plugins
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. -
How do you guys like https://readthedocs.org/ ? Real world example: http://bugzilla.readthedocs.org/en/latest/
-
Module FrontendUser: login, logout and register users / members
Beluga replied to pwFoo's topic in Modules/Plugins
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.. -
Were the solutions that use only CSS not acceptable?
-
Module FrontendUser: login, logout and register users / members
Beluga replied to pwFoo's topic in Modules/Plugins
Actually, no one has seen EmailAdminNewUser, because it is a module I edited from adrian's module I am attaching it here: EmailAdminNewUser.zip