Wednesday, 2011-04-20

*** Quits: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au) (Remote host closed the connection)01:30
*** Joins: Hyper-Core (~lol@h174.117.31.71.dynamic.ip.windstream.net)02:05
*** Joins: kirillka (~Miranda@195.242.142.17)02:07
*** Parts: Hyper-Core (~lol@h174.117.31.71.dynamic.ip.windstream.net) ()02:10
*** Joins: Cupertino (~Cupez@unaffiliated/cupertino)02:33
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 276 seconds)02:35
*** Joins: soc42 (~soc42@f052057114.adsl.alicedsl.de)02:48
*** Joins: giallu (~giallu@fedora/giallu)03:04
*** Joins: siebrand (~chatzilla@535392CA.cm-6-4c.dynamic.ziggo.nl)03:07
*** Quits: mellen (~thansen@cl-289.cph-01.dk.sixxs.net) (Ping timeout: 248 seconds)03:21
*** Joins: mellen (~thansen@x1-6-00-22-02-00-0c-40.k1109.webspeed.dk)03:24
*** Quits: mellen (~thansen@x1-6-00-22-02-00-0c-40.k1109.webspeed.dk) (Ping timeout: 248 seconds)03:35
*** Joins: mellen (~thansen@cl-289.cph-01.dk.sixxs.net)03:36
*** Quits: soc42 (~soc42@f052057114.adsl.alicedsl.de) (Remote host closed the connection)03:38
*** Joins: soc42 (~soc42@f052057114.adsl.alicedsl.de)03:38
CIA-35Mantisbt: s.mazeland master-1.2.x * r432896f74dc2 /lang/ (6 files): Localisation updates from http://translatewiki.net.03:56
*** Joins: rolfkleef (~rolfkleef@92.254.21.180)04:34
*** Joins: paulr (~IceChat09@cpc1-enfi9-0-0-cust389.hari.cable.virginmedia.com)05:14
* paulr yawns05:32
*** Joins: fusenigk (~Karsten@p4FFC9C4B.dip.t-dialin.net)07:02
*** Joins: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au)07:03
paulrmoo dhx07:04
paulrare we just supporting xhtml/css3?07:05
dhx1paulr: hey07:16
paulrhi07:16
dhx1paulr: XHTML5 + CSS3?07:17
dhx1I was thinking that with CSS3... the main style is done using the latest web standards07:17
paulri was thinking07:17
paulrtarget=_blank07:17
dhx1but we can also offer a minimalistic "fallback" style for people with crap browsers07:17
paulrshower-brb07:18
paulrbk07:25
paulrso dhx, any thoughts? :)07:25
dhx1where would we use that?07:26
paulrin 4 palces atm07:26
dhx1I personally hate sites that try to pop windows up for me07:26
dhx1I prefer to use my browser to choose whether or not I want to open a new window07:27
dhx1cltr+click, etc07:27
paulrright so nuke07:27
paulrkkk07:27
paulrarray( 'print_all_bug_page_word', 'word', '', 'fileicons/doc.gif', 'Word 2000' ),07:28
paulrarray( 'print_all_bug_page_word', 'word', '', 'fileicons/doc.gif', 'Word 2000' ),07:28
paulrarray( 'print_all_bug_page_word', 'html', 'target="_blank"', 'ie.gif', 'Word View' ) );07:28
paulrwow, what a way to build a url07:28
paulr;/07:28
dhx1I aim to nuke print_all_bug_page_word :P07:28
paulrwell07:31
paulrwant to know my thoughts on that?07:31
dhx1you like the idea? :)07:37
paulrI need to remind myself on what export/import functionality we have ;p07:37
paulralthough fixing xhtml validation atm07:39
paulromg07:41
paulrdo you prefer more css entries or less?07:41
paulrtable.width100{ width: 100%; border: solid 1px #000000; }07:45
paulrtable.width100{ width: 100%; border: solid 1px #000000; }07:45
paulr-07:46
paulr-07:46
paulris that really the approach we want to take?07:47
dhx1width100 is bad07:48
dhx1I'd prefer it is logical/easy to understand over anything else07:48
dhx1the stylesheet will be quite large07:49
dhx1so splitting it up into logical chunks will make it much easier to use07:49
dhx1for instance, "generic stuff" (and that can be grouped together as needed)07:49
dhx1"styles applicable to the login page specifically", etc07:49
paulrwell07:51
paulrthat's table.width9007:51
paulrwe'd need07:51
paulrtd.width707:51
paulrtd.width807:51
paulrtd.with1007:51
paulrtd.width3007:51
paulrisn't that OTT? :)07:51
paulroh and I assume if we need td.width707:51
paulrwe probably need th.width7 too07:52
paulror is that *OK*?07:52
dhx1no no, we won't need to assign those classes in the first place07:53
dhx1the rule should look more like:07:53
dhx1#login-form table {07:53
dhx1  width: 30%;07:53
dhx1}07:53
dhx1... although that'd be wrong because we shouldn't use tables there :)07:54
paulrwell07:54
paulrso erm07:54
paulrit's not for a table element07:55
paulrfor td's07:55
dhx1so just apply the rules to the td's :P07:58
paulr[12:51.27] <paulr> td.width807:58
paulr[12:51.30] <paulr> td.with1007:58
paulr[12:51.32] <paulr> td.width3007:58
paulrthats what I said07:58
paulrcan one just define .width10 though?07:58
dhx1it's very ugly...08:01
dhx1in fact, why aren't be letting the browser handle the widths automatically?08:02
paulron its own?08:02
paulr:P08:02
paulrahh08:03
paulrso it lines up nicely08:03
paulrwe need a width08:03
paulr;/08:03
dhx1which page are you referring to?08:04
dhx1normally you apply width's to <colgroup> elements08:05
dhx1which then filter down08:05
paulrsummary page :)08:06
paulrwe are using them to make sure seperate tables look good ;p08:07
dhx1http://www.w3.org/TR/html401/struct/tables.html#h-11.2.408:08
dhx1don't use the width= attributes... use CSS instead :)08:09
dhx1also see http://stackoverflow.com/questions/2416453/please-explain-rowspan-and-colspan-col-and-colgroup08:09
paulrso insted of doing seperate tables08:09
paulrone big one?08:09
dhx1no, separate tables08:09
dhx1just scrap the width classes08:10
dhx1add in <colgroup><col>... tags and assign CSS styles to those08:10
dhx1for instance:08:10
dhx1<table id="somestats">08:10
dhx1<colgroup>08:10
paulrthey are seperate tables08:11
dhx1yes, do this for each table08:11
dhx1you don't style the td's, th's and tr's unless you really need to (highlighting certain cells, changing the style of the header row, etc)08:12
dhx1rather you style the col elements (and those styles filter down entire columns)08:12
dhx1you can use 2n+1 style CSS selectors to select the 2nd, 3rd column etc08:12
dhx1without the need for classes08:12
*** Joins: daryn (~daryn@h158.249.190.173.static.ip.windstream.net)09:02
*** Joins: Adambean (AdamR@82.hosts.reece-eu.net)09:35
Adambeanquick question: i have 3 projects with custom fields (regex to have a 4 digit number) labelled reported/tested/fixed at revision09:36
Adambean"reported at revision" is the only field with the 'required on report' tickbox09:36
Adambeanwhy would mantis complain that the "tested in revision" value is invalid when reporting a new issue?09:36
Adambeanit's neither displayed or required09:37
Adambeanfixed it09:48
Adambeanit appears back in mantis 1.1.1 the default value was automatically used if the field wasn't shown09:48
Adambeanwhere as in mantis 1.2.5 null is used instead09:48
darynAdambean, see http://www.mantisbt.org/bugs/view.php?id=11684 for a long discussion that I believe addresses your issue.09:52
Adambeanah that is exactly the issue09:53
Adambeanodd.. i already had a default value defined for the fields, 000009:53
darynAdambean, personally I hacked the code to put it back the way it was.  I understand the argument in the bug but the result is just not acceptable from a user standpoint imho09:55
Adambeani think i will personally modify my mantis too09:58
Adambeanthanks for the link daryn  :)09:58
darynyw09:58
*** Quits: kirillka (~Miranda@195.242.142.17) (Quit: kirillka)10:00
paulr.10:36
paulrdid dhx go sleep?10:36
darynpaulr, haven't seen him10:38
*** Joins: soc42_ (~soc42@e179086224.adsl.alicedsl.de)10:40
*** Quits: soc42 (~soc42@f052057114.adsl.alicedsl.de) (Ping timeout: 246 seconds)10:42
*** Quits: rolfkleef (~rolfkleef@92.254.21.180) (Read error: Connection reset by peer)10:47
*** Quits: Cupertino (~Cupez@unaffiliated/cupertino) (Quit: I give up...)11:01
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 260 seconds)11:17
*** Quits: fusenigk (~Karsten@p4FFC9C4B.dip.t-dialin.net) (Quit: fusenigk)11:37
*** Joins: JonMarkGo (~Jon@ool-18bfe16f.dyn.optonline.net)12:34
*** Joins: tmckeown (~Adium@64.191.211.43)12:47
paulrdaryn: so form->name is dead?13:10
darynpaulr,  yes13:11
*** Quits: Adambean (AdamR@82.hosts.reece-eu.net) (Quit: Gone fishing)13:19
paulrdead as in what13:25
paulr:)13:25
paulrjust delete?13:25
darynhm13:25
darynit's possible that we have some javascript that still uses the name attribute.  I'd certainly check for that first13:26
paulrphp print_category_filter_option_list( $t_filter[FILTER_PROPERTY_CATEGORY_ID] )?>13:29
* paulr slaps daryn13:29
paulrI bet that's you13:29
daryncould be.  what did i do13:29
paulrfunction print_category_filter_option_list( $p_category_name = '', $p_project_id = null ) {13:30
paulr$t_filter[dfsd] is an arrayt13:30
darynwell, you can yell at me for not catching it but it was that way before. all i did was change the constant.13:40
paulr:)13:40
paulranyway13:43
paulrsqlite seems to work ok for a db ;p13:43
daryncool13:44
paulrcan't really do schema upgrades though13:44
paulras it doesn't support delete/rename etc on columns13:44
paulri've just created a mantisbt-185.sqlite file atm13:44
darynwell...that's not really helpful...13:45
paulrit is ;p13:48
*** Quits: soc42_ (~soc42@e179086224.adsl.alicedsl.de) (Remote host closed the connection)15:14
*** Quits: mellen (~thansen@cl-289.cph-01.dk.sixxs.net) (Ping timeout: 248 seconds)15:44
*** Joins: mellen (~thansen@x1-6-00-22-02-00-0c-40.k1109.webspeed.dk)15:46
*** Joins: darsic (~darsic@188.2.226.234)16:25
darsici need help!16:25
darsiccan anyone tell me how to edit code to show value of custom field on My View?16:27
*** Joins: giallu (~giallu@fedora/giallu)16:45
darynhi darsic16:51
*** Quits: tmckeown (~Adium@64.191.211.43) (Ping timeout: 246 seconds)17:16
CIA-35Mantisbt: robert.munteanu master-1.2.x * r6bcc29a1f248 /config_defaults_inc.php: Fix #12794 : Java Exception when the Issue has an attached file (using mantis plugin in Hudson/Jenkins)17:20
*** Joins: fusenigk (~Karsten@p4FFC9C4B.dip.t-dialin.net)17:46
*** Quits: fusenigk (~Karsten@p4FFC9C4B.dip.t-dialin.net) (Quit: fusenigk)17:58
*** Quits: darsic (~darsic@188.2.226.234) (Ping timeout: 260 seconds)18:18
*** Quits: daryn (~daryn@h158.249.190.173.static.ip.windstream.net) (Quit: Ex-Chat)18:19
* paulr wonders what time dhx gets up18:44
*** Quits: scribe9343423 (~scribe934@static.96.23.63.178.clients.your-server.de) (Remote host closed the connection)20:00
*** Joins: scribe9343423 (~scribe934@static.96.23.63.178.clients.your-server.de)20:00
*** Quits: paulr (~IceChat09@cpc1-enfi9-0-0-cust389.hari.cable.virginmedia.com) (Quit: Friends help you move. Real friends help you move bodies.)21:29

Generated by irclog2html.py 2.9.2 by Marius Gedminas - find it at mg.pov.lt!