summaryrefslogtreecommitdiff
path: root/src/views
AgeCommit message (Collapse)Author
2011-10-09Begin transitioning to HTML5 (this commit breaks the "build")html5Luke 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-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-09Properly use thead and tbody.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-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-04Add the ability to close user registration.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-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-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-07Fix a bug I introduced while picking apart my last changes intomckenzierobotics.org
separate commits.
2011-09-06Fix a few style issues (use .wide class for $t->inputTextArea(), css tweaks)Luke Shumaker
2011-09-06add 'paragraph' and 'checkbox' datatypes to individual.html.php's inputField()Luke Shumaker
2011-09-06Differentiate 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-05Update TODO/Bugs in README.txt, change appearance a bitLuke Shumaker
2011-09-05(mostly) Fix the installer. We still need to set baseurl in the 'conf' table ↵mckenzierobotics.org
manually.
2011-09-05Change user messages a bitLuke Shumaker
2011-09-05Fix a few growing painsLuke 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-05Refactor a bitLuke Shumaker
* move a lot of stuff out of MessageManager * move models from lib to models
2011-09-04Screw it, I'm tired of trying to break this into individual commitsLuke Shumaker
2011-09-04Migrate 404 page from old router to new view engine.Luke Shumaker
2011-09-04Fix 2 small bugs in Template.class.phpLuke Shumaker
* do a |= instead of = for setting $this->red in Template->link() * don't ever escape the url in Template->url()
2011-09-04Add a textarea input to the normal template form stuff.Luke Shumaker
2011-08-01initial commit.Luke Shumaker
Partway through a rewrite. I have some old files I didn't want to entirely delete.