Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-09 | Link to the userlist from the user registration page, if anon_userlist is ↵ | Luke Shumaker | |
enabled. | |||
2011-10-09 | Change users/index.html a bit depending on if logged in or not. | Luke Shumaker | |
2011-10-09 | Add the system config option 'anon_userlist' to control if an anonymous ↵ | Luke Shumaker | |
userlist is visible or not. | |||
2011-10-09 | Allow username lookup even if $user->canRead()==false | Luke Shumaker | |
2011-10-09 | Merge branch 'concurrent-editing' into anon-userlist | Luke Shumaker | |
Conflicts: src/controllers/Users.class.php | |||
2011-10-09 | Don't show full name to anon users, comment out security check for index. | Luke Shumaker | |
2011-10-09 | Merge branch 'master' into concurrent-editing | Luke Shumaker | |
So, here's the deal: * The meat of [concurrent-editing]:Form.class got merged into [master]:DB.class * The string-generation stuff in [concurrent-editing]:Form.class didn't fit nicely anywhere anymore, so I got rid of it by makeing datatype explicit. * Users.class: declare datatypes explicitly in attrib() * index.html.php: use this new explicit data * style.scss: add a .small, which we can do because of the datatypes thing. Conflicts: src/controllers/Users.class.php | |||
2011-10-09 | Move Users->[gs]etConf into a new DB.class.php, add in some wrappers for ↵ | Luke Shumaker | |
equivalent stuff with plugin and system config. | |||
2011-10-09 | Begin adding a userlist visable to non-authenticated users. | Luke Shumaker | |
2011-10-09 | Properly use thead and tbody. | Luke Shumaker | |
2011-10-09 | Add auth_uid as a parameter for forms in the Users controller. | Luke Shumaker | |
2011-10-05 | Edit individual.html to allow showing multiple users at once. Add | Luke Shumaker | |
a hack to the Users.class controller to show all users for the "all" username. Mark "all" as forbiddent in the Auth.class model. | |||
2011-10-04 | Change the title on user pages from "Users: NAME" to "User: NAME". | Luke Shumaker | |
2011-10-04 | Add some (S)CSS for printing. | Luke Shumaker | |
2011-10-04 | Begin work on safely allowing concurrent edits on data, giving better form ↵ | Luke Shumaker | |
interface. | |||
2011-10-04 | Add a trailing newline to Database.class.php | Luke Shumaker | |
2011-10-04 | Add the ability to close user registration. | Luke Shumaker | |
2011-10-01 | Fix the multiple-edit protection (I'd done this yesterday, but didn't commit) | Luke Shumaker | |
2011-09-30 | Move username validation from the Users controller to the Auth model. | Luke Shumaker | |
2011-09-30 | Fix a typo in a individual.html.php that caused an error to show whenever a ↵ | Luke Shumaker | |
username was changed. When the message does show, it will say username "", since $new_name is never set, but that's another bug. | |||
2011-09-30 | Quick and ugly hack to safely allow multiple users to edit data at once | Luke Shumaker | |
2011-09-28 | On the user index page, add field names to the bottom of the table, | Luke Shumaker | |
and a save botton to the top. | |||
2011-09-28 | Force users to give an email address when they create an account. | Luke Shumaker | |
2011-09-28 | Move the contact info to above the plugin-configurable area on the | Luke Shumaker | |
individual user page. | |||
2011-09-25 | Don't let a logged in user go through new-user registration. | Luke Shumaker | |
2011-09-25 | Make the first page of new user registration say "Go on to Step 2" | Luke Shumaker | |
instead of "Submit". | |||
2011-09-25 | don't allow deleted users to log in. (They'd get permission denied on ↵ | Luke Shumaker | |
everything, but they could log in) | |||
2011-09-22 | Merge branch 'master' of https://git.gitorious.org/messagemanager/messagemanager | Luke Shumaker | |
2011-09-22 | whitespace fix | mckenzierobotics.org | |
2011-09-22 | Implement ReCaptcha entirely as a plugin, remove all of the ugliness | Luke Shumaker | |
from my old implementation. | |||
2011-09-22 | Add an ugly hacky-hacked reCaptcha to new user registration. | Luke Shumaker | |
2011-09-22 | Implement actual plugin management. I was tired of doing the SQL queries by ↵ | Luke Shumaker | |
hand :) | |||
2011-09-22 | Misc. cleanup: improve comments in Login, add description to SenderIdentica | Luke Shumaker | |
2011-09-22 | Finally get around to implementing deleting users. (status=4) | Luke Shumaker | |
2011-09-22 | Fix a terrible, terrible bug in Database.class.php, I was calling ↵ | Luke Shumaker | |
getSysConf() without this "$this->" in front of it. | |||
2011-09-19 | Don't give back 201 for the HTML view after creating a user. Doing so will ↵ | Luke Shumaker | |
prevent the browser from following the Location: header, which is not what HTML users want. | |||
2011-09-19 | Add a decent fallback for when both file extension and Accept methods of ↵ | Luke Shumaker | |
selecting the view fail (as they do in IE6-8) | |||
2011-09-07 | Fix a bug I introduced while picking apart my last changes into | mckenzierobotics.org | |
separate commits. | |||
2011-09-06 | Update InformationPlugin to (mostly) match the form that Mr. Smith sent me. | Luke Shumaker | |
2011-09-06 | Fix a few style issues (use .wide class for $t->inputTextArea(), css tweaks) | Luke Shumaker | |
2011-09-06 | add 'paragraph' and 'checkbox' datatypes to individual.html.php's inputField() | Luke Shumaker | |
2011-09-06 | Differentiate between when we want checkboxes to be booleans, or bit arrays. | Luke Shumaker | |
For the booleans, we use a hidden input to send false back if they aren't selected. * Template.class.php: rename inputBool() to inputBoolArray(), create new inputBool() * index.html.php: use a hidden input to send false when an checkbox isn't selected. * individual.html.php: add inputBool() function, use $t->inputBoolArray() in inputArray() | |||
2011-09-05 | Update TODO/Bugs in README.txt, change appearance a bit | Luke Shumaker | |
2011-09-05 | Fix 3 bugs (stray * in SQL, typo in variable name, a place where ↵ | Luke Shumaker | |
isLoggedIn() was still being called on the DB | |||
2011-09-05 | (mostly) Fix the installer. We still need to set baseurl in the 'conf' table ↵ | mckenzierobotics.org | |
manually. | |||
2011-09-05 | Fix a nasty bug in View.class.php when the installation path contains a dot | mckenzierobotics.org | |
2011-09-05 | Change user messages a bit | Luke Shumaker | |
2011-09-05 | Fix a few growing pains | Luke Shumaker | |
* Users.class.php: whitespace change, fix a few array things * Database.class.php: refer to $mm->hasher(), not $this->hasher() * new.html.php: fix stupid shit | |||
2011-09-05 | Refactor a bit | Luke Shumaker | |
* move a lot of stuff out of MessageManager * move models from lib to models | |||
2011-09-04 | Screw it, I'm tired of trying to break this into individual commits | Luke Shumaker | |