summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-09Fix bug in Users::getIndexAttribs() where auth_name was being omitted.concurrent-editingLuke Shumaker
2011-10-09Select ! to be username separator.Luke Shumaker
2011-10-09Merge branch 'anon-userlist'Luke Shumaker
2011-10-09Fix the markup with the spreadsheet link in the user index.Luke Shumaker
2011-10-09Link to the userlist from the user registration page, if anon_userlist is ↵Luke Shumaker
enabled.
2011-10-09Change users/index.html a bit depending on if logged in or not.Luke Shumaker
2011-10-09Add the system config option 'anon_userlist' to control if an anonymous ↵Luke Shumaker
userlist is visible or not.
2011-10-09Allow username lookup even if $user->canRead()==falseLuke Shumaker
2011-10-09Merge branch 'concurrent-editing' into anon-userlistLuke Shumaker
Conflicts: src/controllers/Users.class.php
2011-10-09Don't show full name to anon users, comment out security check for index.Luke Shumaker
2011-10-09Merge branch 'bug-fix'Luke Shumaker
2011-10-09Fix bug in Auth model; I used <= instead of < for isNameLegal length.Luke Shumaker
2011-10-09Fix typo in codeLuke Shumaker
2011-10-09Merge branch 'master' into concurrent-editingLuke 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-09Move 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-09Begin adding a userlist visable to non-authenticated users.Luke Shumaker
2011-10-09Properly use thead and tbody.Luke Shumaker
2011-10-09Improve usability of scss. (a lot of form style stuff)Luke Shumaker
2011-10-09Add auth_uid as a parameter for forms in the Users controller.Luke Shumaker
2011-10-05Edit individual.html to allow showing multiple users at once. AddLuke 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-05Improve printed formatting.Luke Shumaker
2011-10-04Change the title on user pages from "Users: NAME" to "User: NAME".Luke Shumaker
2011-10-04Add some (S)CSS for printing.Luke Shumaker
2011-10-04Use SCSS, tweak styles a bit.Luke Shumaker
2011-10-04Begin work on safely allowing concurrent edits on data, giving better form ↵Luke Shumaker
interface.
2011-10-04Add a trailing newline to Database.class.phpLuke Shumaker
2011-10-04Add the ability to close user registration.Luke Shumaker
2011-10-01Fix the multiple-edit protection (I'd done this yesterday, but didn't commit)Luke Shumaker
2011-09-30Move username validation from the Users controller to the Auth model.Luke Shumaker
2011-09-30Fix 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-30Quick and ugly hack to safely allow multiple users to edit data at onceLuke Shumaker
2011-09-28On the user index page, add field names to the bottom of the table,Luke Shumaker
and a save botton to the top.
2011-09-28Force users to give an email address when they create an account.Luke Shumaker
2011-09-28Move the contact info to above the plugin-configurable area on theLuke Shumaker
individual user page.
2011-09-25Don't let a logged in user go through new-user registration.Luke Shumaker
2011-09-25Make the first page of new user registration say "Go on to Step 2"Luke Shumaker
instead of "Submit".
2011-09-25don't allow deleted users to log in. (They'd get permission denied on ↵Luke Shumaker
everything, but they could log in)
2011-09-25Remove obsolete sections from README.txtLuke Shumaker
2011-09-25Make xss-check.php.sample use all regexLuke Shumaker
2011-09-25add a quick hack for XSS protectionLuke Shumaker
2011-09-22Merge branch 'master' of https://git.gitorious.org/messagemanager/messagemanagerLuke Shumaker
2011-09-22whitespace fixmckenzierobotics.org
2011-09-22Implement ReCaptcha entirely as a plugin, remove all of the uglinessLuke Shumaker
from my old implementation.
2011-09-22Add an ugly hacky-hacked reCaptcha to new user registration.Luke Shumaker
2011-09-22Implement actual plugin management. I was tired of doing the SQL queries by ↵Luke Shumaker
hand :)
2011-09-22Misc. cleanup: improve comments in Login, add description to SenderIdenticaLuke Shumaker
2011-09-22Finally get around to implementing deleting users. (status=4)Luke Shumaker
2011-09-22Fix a terrible, terrible bug in Database.class.php, I was calling ↵Luke Shumaker
getSysConf() without this "$this->" in front of it.
2011-09-19Don'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-19Add a decent fallback for when both file extension and Accept methods of ↵Luke Shumaker
selecting the view fail (as they do in IE6-8)