*** jelkner has joined #schooltool | 00:06 | |
jelkner | th1a, are you here? | 00:06 |
---|---|---|
jelkner | replaceafill, are you here? | 00:13 |
*** jelkner has quit IRC | 00:16 | |
*** hoffman_ has joined #schooltool | 00:52 | |
*** fsufitch has quit IRC | 01:26 | |
*** replaceafill has quit IRC | 01:26 | |
*** hoffman_ has quit IRC | 02:25 | |
*** replaceafill has joined #schooltool | 02:42 | |
*** ignas has quit IRC | 04:03 | |
*** replaceafill has quit IRC | 04:13 | |
*** th1a has quit IRC | 04:43 | |
*** aks has joined #schooltool | 06:13 | |
*** aks has joined #schooltool | 06:13 | |
*** aks has quit IRC | 08:34 | |
*** aks has joined #schooltool | 08:38 | |
*** aks has joined #schooltool | 08:38 | |
*** aks has quit IRC | 14:39 | |
*** th1a has joined #schooltool | 15:04 | |
* th1a is here if anyone wants to meet... | 16:31 | |
*** replaceafill has joined #schooltool | 16:32 | |
th1a | hi replaceafill. | 16:32 |
replaceafill | hey th1a | 16:32 |
th1a | I'm going to be pretty much available today, so we can keep working on these views. | 16:32 |
replaceafill | ah ok | 16:33 |
replaceafill | should i start with "Manage contacts"? | 16:34 |
th1a | Let's see... | 16:34 |
th1a | Edit general info and edit attributes take you to the same edit form. | 16:35 |
th1a | Which I think I can live with for now. | 16:35 |
th1a | But I've got that right? | 16:35 |
replaceafill | yes | 16:35 |
replaceafill | it's the same form | 16:35 |
th1a | OK, and all four add person views use the same layout. | 16:36 |
th1a | So that's good. | 16:36 |
th1a | Can we try some sidebar removal first? | 16:36 |
replaceafill | ok | 16:37 |
* th1a assumes replaceafill is looking at that. | 17:00 | |
replaceafill | i was waiting for you to tell me what to do :D | 17:01 |
th1a | lol | 17:01 |
th1a | OK, well, remove the sidebar from the add/edit forms. | 17:01 |
replaceafill | ah ok | 17:01 |
th1a | Or, just one for starters. | 17:01 |
replaceafill | th1a http://69.164.203.135:6660/persons/alvaro/@@edit.html | 17:14 |
replaceafill | should we expand the content area? | 17:15 |
th1a | no | 17:15 |
th1a | It should match the UWG spec now. | 17:15 |
th1a | Does it? | 17:15 |
replaceafill | yes | 17:15 |
th1a | OK. Perfect. | 17:15 |
th1a | I think it is clearer. | 17:16 |
th1a | Do you? | 17:16 |
replaceafill | less chance that the user will leave the form | 17:16 |
th1a | Yes. | 17:16 |
th1a | I say go ahead implement the change. | 17:17 |
th1a | What do you have to do, btw? | 17:17 |
replaceafill | for add forms too, right? | 17:17 |
th1a | y | 17:17 |
replaceafill | it's pretty simple actually, yvl defined a ExpandedPage class with no Refine sidebar | 17:18 |
replaceafill | you just have to subclass that instead of the regular Page class | 17:18 |
th1a | OK. | 17:18 |
replaceafill | let me change the rest of the forms | 17:18 |
replaceafill | th1a http://69.164.203.135:6660/persons | 17:26 |
replaceafill | try the add forms | 17:26 |
th1a | OK. | 17:28 |
th1a | Looks good. | 17:29 |
th1a | Advisors form. | 17:29 |
th1a | Advisees. | 17:29 |
th1a | Groups. | 17:29 |
replaceafill | ah! ok | 17:30 |
replaceafill | th1a done | 17:35 |
th1a | OK. | 17:36 |
th1a | That's all I can think of for the moment. | 17:37 |
th1a | OK, on to contacts. | 17:37 |
replaceafill | where should we put the "Create new contact" button? | 17:40 |
replaceafill | also, do we want two fields for searching contacts? | 17:40 |
th1a | Uh... | 17:41 |
th1a | Sure, why not. | 17:41 |
th1a | Well... | 17:41 |
replaceafill | i'm referring to the "current" manage contact page btw :) | 17:41 |
th1a | Right, it should be the same as on People. | 17:41 |
th1a | We need to make those consistent. | 17:42 |
replaceafill | let me see something | 17:42 |
th1a | (except you don't need to filter by groups) | 17:42 |
th1a | I suspect the change will take a little plumbing. | 17:42 |
replaceafill | the contact catalog has this: | 17:43 |
replaceafill | attributes = ('first_name', 'last_name') | 17:43 |
replaceafill | that's why the form has two fields for searching | 17:43 |
replaceafill | should we add "title" like in the persons catalog? | 17:43 |
replaceafill | for indexing first_name and last_name at the same time... | 17:44 |
th1a | idk... it should just work the same. | 17:44 |
th1a | If you enter first and last does it give you AND or OR results? | 17:44 |
replaceafill | parameters = ['SEARCH_FIRST_NAME', 'SEARCH_LAST_NAME'] | 17:46 |
replaceafill | no, it looks in each field | 17:46 |
replaceafill | if 'SEARCH_FIRST_NAME' in self.request: | 17:46 |
replaceafill | if 'SEARCH_LAST_NAME' in self.request: | 17:46 |
th1a | Basically in this case you might want the first AND last option in this case if you had many students with the same last name. | 17:49 |
th1a | Rodriguez, for example. | 17:49 |
replaceafill | i think we should add a "title" property to the Contact class, like BasicPerson | 17:51 |
replaceafill | and add that property to the contact catalog | 17:51 |
th1a | ok | 17:51 |
replaceafill | so we can have the same functionality for searching in just one box | 17:51 |
replaceafill | and i think that's why we have versioned catalogs now ;) | 17:52 |
replaceafill | th1a what about the "Create new contact" button? | 17:52 |
replaceafill | i go to Álvaro Álvarez contacts | 17:52 |
replaceafill | i see all the current and available contacts | 17:53 |
th1a | lets do the rest first | 17:53 |
replaceafill | ok | 17:53 |
replaceafill | just assigning existing ones to a person | 17:53 |
th1a | I think it'll end up in the sidebar. | 18:07 |
th1a | We also need to add those done links. | 18:09 |
*** fsufitch has joined #schooltool | 18:39 | |
th1a | fsufitch: So, how does CQ look on your rig? | 18:50 |
fsufitch | looks pretty swanky | 18:50 |
fsufitch | max graphics and all :) | 18:50 |
replaceafill | th1a http://69.164.203.135:6660/persons/alvaro | 18:51 |
th1a | Does your character look as good as in the character creator? | 18:51 |
th1a | We need a little more separation between the Current and Available sections on these forms. | 18:52 |
th1a | replaceafill: Basically the search hint should describe what it searches for. | 18:53 |
fsufitch | th1a: the lighting and shadows on my character is more poorly done in CQ than in the character creator, otherwise yeah he looks the same | 18:53 |
replaceafill | you can search first name and last name for contacts | 18:53 |
th1a | So... "First name or last name" | 18:54 |
replaceafill | and/or | 18:54 |
replaceafill | changed | 18:55 |
th1a | You could make it "and/or" | 18:58 |
replaceafill | ok | 18:58 |
th1a | Can you make the search not sensitive to order? | 18:58 |
th1a | easily... | 18:58 |
replaceafill | "not sensitive to order"? | 18:58 |
th1a | So that Cerna Douglas returns something. | 18:59 |
replaceafill | let me see... | 19:00 |
replaceafill | th1a refresh | 19:16 |
replaceafill | something is wrong with our vps :( | 19:16 |
replaceafill | it takes ages to start the instance | 19:16 |
replaceafill | look for "cerna douglas" | 19:18 |
th1a | Good. | 19:24 |
th1a | I think add should go in the sidebar. | 19:24 |
th1a | Add... | 19:24 |
th1a | Contact | 19:24 |
replaceafill | ok | 19:25 |
th1a | Actually, let's go redundant. | 19:25 |
th1a | New contact. | 19:25 |
* th1a assumes replaceafill is looking at that. | 19:38 | |
replaceafill | yes | 19:38 |
th1a | ;-) | 19:38 |
replaceafill | the thing is that i get the old sidebar | 19:38 |
replaceafill | i'm looking for a way to get an "empty" sidebar | 19:38 |
th1a | Oh... | 19:38 |
th1a | Yeah. | 19:38 |
replaceafill | th1a http://69.164.203.135:6660/persons/alvaro/@@manage_contacts.html?SEARCH_TITLE=%C3%81lvarez | 19:52 |
replaceafill | boy! does the instance load slowly for you too th1a ? | 19:52 |
th1a | Did you look at the management console? | 20:05 |
th1a | It doesn't load slowly for me. | 20:05 |
replaceafill | ah well, maybe it's my connection then | 20:06 |
th1a | OK. Seems good. | 20:06 |
replaceafill | working on the new contact form | 20:06 |
replaceafill | question | 20:06 |
th1a | I don't think there is anything tricky for that. | 20:06 |
replaceafill | are we going to group the fields for the new contact? | 20:06 |
replaceafill | like in new person? | 20:06 |
th1a | Oh, yes, you're right. | 20:06 |
replaceafill | want to see the fields? | 20:07 |
replaceafill | or maybe you have a running instance with the old UI | 20:07 |
replaceafill | :) | 20:07 |
th1a | Do *I* want to seem them? | 20:07 |
th1a | I have an old instance running. | 20:07 |
*** ignas has joined #schooltool | 20:07 | |
replaceafill | ah ok | 20:07 |
replaceafill | prefix, first name, middle name, last name ,suffix -> Full name | 20:08 |
replaceafill | Addess line 1 and 2, city, state, country, postal code -> Address ? | 20:08 |
th1a | OK. | 20:09 |
replaceafill | email, home, work and mobile phones -> XXX? | 20:09 |
replaceafill | language -> XXX? | 20:09 |
replaceafill | relationship -> XXX? | 20:09 |
replaceafill | :) | 20:09 |
th1a | Phone | 20:09 |
replaceafill | email in its own fieldset? | 20:10 |
th1a | Well... | 20:11 |
th1a | Put relationship in its own. | 20:11 |
th1a | And maybe just put phone, email and language together. | 20:12 |
replaceafill | ok | 20:12 |
th1a | And I'll think about the title... | 20:12 |
replaceafill | cool | 20:12 |
*** fsufitch has quit IRC | 20:34 | |
*** fsufitch has joined #schooltool | 20:34 | |
replaceafill | th1a http://69.164.203.135:6660/persons/alvaro/add_contact.html | 21:05 |
th1a | How about just Contact Information as the missing label for now. | 21:06 |
replaceafill | k | 21:06 |
replaceafill | refresh | 21:07 |
replaceafill | oops | 21:08 |
replaceafill | typo fixed, refresh | 21:09 |
replaceafill | (we need tests...) | 21:09 |
th1a | OK. Done links. | 21:11 |
replaceafill | question | 21:11 |
replaceafill | Add and Cancel on this form | 21:11 |
replaceafill | where should they take you? | 21:11 |
replaceafill | they go back to the person | 21:12 |
th1a | Oh, back to contact management. | 21:12 |
th1a | I think the manage contact link in the accordion needs to be bigger. | 21:13 |
th1a | I see you made the modal background bluish. | 21:20 |
replaceafill | ok buttons fixed | 21:20 |
replaceafill | actually it's supposed to be white :D | 21:20 |
replaceafill | http://jqueryui.com/themeroller/ | 21:20 |
th1a | Huh. | 21:20 |
replaceafill | allows you to create overlays | 21:20 |
th1a | It looks bluish. | 21:20 |
th1a | Oh, there are jquery icons? | 21:21 |
replaceafill | yes | 21:22 |
replaceafill | we use some | 21:22 |
replaceafill | for accordions and dialogs | 21:22 |
th1a | OK. Good to know. | 21:22 |
th1a | Do you think we should beef up the manage contacts link? | 21:22 |
replaceafill | i was looking at the tables | 21:23 |
th1a | also, is there an extra comma after the contact name in the accordion. | 21:23 |
th1a | Oh... | 21:23 |
th1a | I wonder if our search forms should have "Search" buttons instead of "Submit" to avoid making it seem like that's saving the form or leaving it. | 21:27 |
replaceafill | ah | 21:27 |
th1a | Or "I'm Feeling Lucky" | 21:27 |
th1a | ;-) | 21:27 |
replaceafill | :D | 21:27 |
replaceafill | changing them to "Search" | 21:28 |
replaceafill | fixed the comma | 21:28 |
replaceafill | it's shown when there's a relationship with the contact | 21:28 |
replaceafill | Tom Hoffman, Parent | 21:28 |
replaceafill | but now, it's conditional | 21:29 |
th1a | kk | 21:29 |
replaceafill | how many search forms do we have? :) | 21:29 |
th1a | Not many yet. | 21:29 |
th1a | People index. | 21:29 |
replaceafill | done | 21:30 |
replaceafill | ah and the relationship views | 21:30 |
replaceafill | groups | 21:30 |
replaceafill | changed | 21:31 |
replaceafill | check if i missed any ;) | 21:31 |
th1a | I'll let you know. | 21:32 |
th1a | OK, "Done" buttons. | 21:32 |
replaceafill | ok | 21:32 |
replaceafill | in which views? | 21:36 |
th1a | Relationships. | 21:37 |
replaceafill | at the bottom? | 21:37 |
replaceafill | or in the sidebar? | 21:37 |
th1a | I'm getting an error on the contact edit now. | 21:38 |
th1a | Bottom. | 21:38 |
th1a | Where the submit button would be if there was one. | 21:38 |
th1a | But a link, not a button. | 21:38 |
th1a | And, say, h3 size. | 21:38 |
replaceafill | we dont have contact edit yet | 21:38 |
replaceafill | ok | 21:38 |
replaceafill | maybe you wanted "Manage contacts"? ;) | 21:39 |
th1a | Oh... well we need to do that too! | 21:39 |
th1a | Whichever you want to do first. | 21:39 |
replaceafill | i'll start with edit contact | 21:41 |
replaceafill | then the buttons | 21:41 |
replaceafill | or "OK" links | 21:41 |
replaceafill | "Done" links | 21:41 |
th1a | OK. | 21:44 |
* replaceafill goes to get lunch | 22:00 | |
*** replaceafill has quit IRC | 22:24 | |
*** replaceafill has joined #schooltool | 22:46 | |
replaceafill | is it possible that for a contact to be contact for two different persons? | 23:05 |
replaceafill | ah cool! it works :) | 23:07 |
replaceafill | th1a http://69.164.203.135:6660/persons/alvaro | 23:20 |
replaceafill | edit contact works now | 23:20 |
replaceafill | and the two buttons take you to the person you were visiting before | 23:21 |
replaceafill | oops, forgot to change the title of the contact page | 23:22 |
* th1a is back. | 23:36 | |
th1a | Should there be an edit link for the contacts in the contact manage page. | 23:37 |
th1a | And should that be INSTEAD of the one in the accordion? | 23:38 |
th1a | Also do we need a contact view view still? | 23:38 |
th1a | I guess the edit link could be on that page. | 23:38 |
replaceafill | as a new action? | 23:39 |
replaceafill | pencil in the row? | 23:39 |
th1a | I think just a pencil on the contact view view. | 23:40 |
replaceafill | ah ok | 23:40 |
replaceafill | will add the contact view view :) | 23:41 |
replaceafill | are we going to leave the pencil in the contacts accordion? | 23:41 |
replaceafill | or put a link to the contact view? | 23:41 |
th1a | tbh I think the edit link in the contacts view is a little confusing. | 23:43 |
*** ignas has quit IRC | 23:43 | |
th1a | And maybe it should just be a link to the view. | 23:43 |
th1a | And then maybe at the bottom the Manage contacts should be h3 with the pencil next to it. | 23:43 |
replaceafill | i'll start adding the contact view | 23:45 |
th1a | OK, and I'll go make dinner. | 23:46 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!