27 Jul 2005 | ||
| 00:26 | Zain | hey guys, I'm trying to add a page to bugzilla. is there a header and footer file somewhere that i can just include? |
| 00:27 | LpSolit | global/header.html.tmpl and global/footer.html.tmpl |
| 00:27 | Zain | perfect. |
| 00:28 | Zornreich | you need to add PROCESS directive for them, see for example index.html.tmpl for an example |
| 00:28 | Zain | ah. will do. |
| 00:55 | Zain | okay, I think I've figured out the PROCESS directives stuff, but I have one question... how can I stick some PHP code in the middle of a page? |
| 00:56 | Colin | you probably can't, given that bugzilla is perl |
| 00:58 | Zain | =| |
| 00:58 | Zain | can I stick some Perl code somewhere, then? |
| 00:58 | Zain | lol |
| 00:58 | Zornreich | yes, in the new .cgi you created for your new template |
| 00:58 | Zornreich | see index.cgi for nice example |
| 00:59 | Zain | oh. |
| 00:59 | Zain | i see now. |
| 00:59 | Zain | beautiful, thanks |
| 01:13 | LpSolit | Zornreich: are you interested by my 1.0 alpha version of "Potentially Undefined Routines Tracker (PURT)" :) |
| 01:13 | LpSolit | I thought this could be useful for QA testing |
| 01:17 | Zornreich | sure |
| 01:18 | LpSolit | Zornreich: per email, ok? |
| 01:19 | Zornreich | sure |
| 01:19 | LpSolit | Zornreich: and feel free to criticize :-p |
| 01:19 | Zornreich | sure |
| 01:19 | Zornreich | :) |
| 01:26 | LpSolit | Zornreich: you must have it now |
| 01:28 | LpSolit | Zornreich: to make it run correctly, you have to put the script in webtools |
| 01:28 | LpSolit | Zornreich: i.e. in the repository containing bugzilla/ |
| 01:28 | LpSolit | Zornreich: or edit the $basedir parameter |
| 01:30 | Zornreich | yeah, I need to edit. I don't have bugzilla/ subdirectory anywhere. :) |
| 01:31 | LpSolit | Zornreich: "perl -wT purt.pl --verbose > output.log" |
| 01:32 | LpSolit | Zornreich: output.log should be around 146 Kb in size |
| 01:36 | Zornreich | ~123kB |
| 01:36 | Zornreich | then again, I changed the base directory :) |
| 01:36 | Zornreich | 1769 lines |
| 01:37 | LpSolit | 1767 lines here |
| 01:37 | LpSolit | put I have some patches applied |
| 01:37 | LpSolit | s/put/but/ |
| 01:38 | Zornreich | hmm.. so many undefined routines |
| 01:39 | LpSolit | there are two main reasons |
| 01:39 | Zornreich | 702 errors even |
| 01:39 | LpSolit | 1) &::Foo in .pm files are not correctly detected (still have to implement that) |
| 01:40 | LpSolit | 2) DB.pm has some routines in Mysql.pm and Pg.pm which I forgot to import |
| 01:40 | LpSolit | huh?? |
| 01:40 | LpSolit | Analysis done! 362 errors found. |
| 01:41 | LpSolit | Zornreich: this patch assumes CGI.pl is gone |
| 01:41 | LpSolit | bug 301508 |
| 01:41 | ssdbot | LpSolit: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301508 enh, --, Bugzilla 2.22, LpSolit@gmail.com, ASSI, Say 'Goodbye' to CGI.pl |
| 01:41 | LpSolit | Zornreich: this patch is already applied |
| 01:41 | LpSolit | Zornreich: it only consider globals.pl |
| 01:42 | LpSolit | it should be easy to hack if you want it to consider CGI.pl as well |
| 01:44 | Zornreich | most notables misses are SendSQL and friends, Param, most bz_ and sql_ routines from DB.pm, Throw*Error |
| 01:44 | LpSolit | Zornreich: I implement point 2) above now |
| 01:44 | LpSolit | under the --HACK-- section :-D |
| 01:46 | LpSolit | hum... I have no idea if Auth.pm needs this hack too |
| 01:48 | Zornreich | in https://bugzilla.mozilla.org/show_bug.cgi?id=292059, was there a reason you moved logout to happen after user creation? |
| 01:48 | ssdbot | Zornreich: Bug 292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 01:49 | LpSolit | yes |
| 01:49 | * LpSolit rereads his patch | |
| 01:49 | ssdbot | bugzilla@glob.com.au added attachment 190652 to bug 301446. |
| 01:49 | ssdbot | bugzilla@glob.com.au requested review from the wind for attachment 190652 on bug 301446. |
| 01:49 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301446 cri, --, Bugzilla 2.22, bugzilla@glob.com.au, ASSI, Changing several bugs at once crashes if the user wants to automatically redisplay the bug he change |
| 01:50 | LpSolit | Zornreich: because logout() would require to lock additional tables |
| 01:50 | LpSolit | Zornreich: and insert_new_user() only add a new entry in the profiles tables, so there is no conflict with the current user, including cookies |
| 01:52 | Zornreich | hmm.. does DELETE need a lock? |
| 01:54 | LpSolit | which DELETE? |
| 01:54 | Zornreich | the DELETEs logout() does |
| 02:12 | ssdbot | LpSolit@gmail.com granted review for attachment 190652 on bug 301446. |
| 02:12 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301446 cri, --, Bugzilla 2.22, bugzilla@glob.com.au, ASSI, Changing several bugs at once crashes if the user wants to automatically redisplay the bug he change |
| 02:13 | Zornreich | so only thing problem with that patch is bitrot :( |
| 02:13 | ssdbot | LpSolit@gmail.com requested approval from the wind on bug 301446. |
| 02:13 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301446 cri, --, Bugzilla 2.22, bugzilla@glob.com.au, ASSI, Changing several bugs at once crashes if the user wants to automatically redisplay the bug he change |
| 02:13 | LpSolit | really?? |
| 02:14 | Zornreich | hunk 1 on trunk and hunk 1+4 on 2.20 branch |
| 02:14 | * LpSolit looks at the checkin list | |
| 02:15 | Zornreich | hmm.. Bugzilla::Util use has been added, it would seem |
| 02:16 | LpSolit | yes, due to bug 301453 |
| 02:16 | ssdbot | LpSolit: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301453 enh, --, Bugzilla 2.22, LpSolit@gmail.com, RESO FIXED, Move CheckEmailSyntax out of CGI.pl |
| 02:17 | LpSolit | and CheckEmailSyntax is now check_email_syntax |
| 02:17 | LpSolit | word .st |
| 02:17 | word | i guess .st is Sao Tome Principe |
| 02:18 | LpSolit | it's not the same glob?? |
| 02:18 | glob | lpsolit: no, it's me. |
| 02:18 | Zornreich | LpSolit: that change didn't matter.. |
| 02:18 | glob | lpsolit: from my shell account |
| 02:18 | Zornreich | but MaillPassword change did, that's why 2.20 branch hunk 4 failed.. |
| 02:19 | LpSolit | bug 299572 |
| 02:19 | ssdbot | LpSolit: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=299572 enh, --, Bugzilla 2.22, LpSolit@gmail.com, RESO FIXED, Move MailPassword() from CGI.pl into BugMail.pm (and remove an unused variable) |
| 02:19 | LpSolit | both are my patches :-/ |
| 02:20 | LpSolit | Zornreich: ok, I'll update the patch tomorrow |
| 02:21 | LpSolit | I mean today, but later |
| 02:22 | ssdbot | wicked@etlicon.fi denied review for attachment 189241 on bug 292059. |
| 02:22 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 02:23 | Zornreich | just unbitrot and it would be good to go |
| 02:26 | LpSolit | Zornreich: ok. Thanks for the reviews :) |
| 02:28 | LpSolit | Zornreich: PURT 1.0 alpha2 released ;) |
| 02:32 | LpSolit | Zornreich: tell me how many error messages are fixed |
| 02:38 | LpSolit_zzz | Zornreich: I now have 302 errors instead of 362 |
| 03:17 | timelyx | arg |
| 03:17 | timelyx | why doesn't editflagtypes tell me what changes i've made? |
| 03:19 | ssdbot | New Bugzilla bug 302293 filed by timeless@bemail.org. |
| 03:19 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302293 enh, --, ---, attach-and-request@bugzilla.bugs, NEW, Flag type changes page should tell me what changes i've made |
| 05:06 | ssdbot | New Bugzilla bug 302302 filed by johnd@migrationpath.net.au. |
| 05:06 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302302 enh, --, ---, installation@bugzilla.bugs, UNCO, continued use of SENDMAIL causes difficulties for windows user |
| 05:42 | ssdbot | bugzilla@glob.com.au set the Resolution field on bug 302302 to WORKSFORME. |
| 05:42 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302302 enh, --, ---, installation@bugzilla.bugs, RESO WORKSFORME, continued use of SENDMAIL causes difficulties for windows user |
| 06:41 | justdave | http://entwickler.com/itr/online_artikel/psecom,id,743,nodeid,114.html |
| 06:41 | justdave | there's a paragraph on Bugzilla in there |
| 06:45 | justdave | http://os.newsforge.com/os/05/07/25/0349232.shtml?tid=2&tid=35&tid=18&tid=27 |
| 06:45 | justdave | Dave Jones (RH kernel dev) keynoted the Ottawa Linux Symposium, and spent some time talking about Bugzilla |
| 07:24 | timelyx | interesting comments |
| 07:24 | * timelyx isn't quite sure how to address them | |
| 07:24 | timelyx | they're a good summary of most social problems all bugzillas suffer |
| 11:27 | ssdbot | wurblzap@gmail.com set the Resolution field on bug 233088 to DUPLICATE of bug 175222. |
| 11:27 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=233088 enh, --, ---, preed@sigkill.com, RESO DUPLICATE, Able to added the Product name in the email subject |
| 11:27 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=175222 enh, --, Bugzilla 2.20, csl@sunbay.com, RESO FIXED, Add product and component fields to change mails |
| 11:58 | ssdbot | New Bugzilla bug 302326 filed by wurblzap@gmail.com. |
| 11:58 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302326 nor, --, ---, wurblzap@gmail.com, NEW, Column sort links in bug lists should use field IDs instead of names |
| 12:01 | ssdbot | wurblzap@gmail.com added attachment 190692 to bug 302326. |
| 12:01 | ssdbot | wurblzap@gmail.com requested review from the wind for attachment 190692 on bug 302326. |
| 12:02 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302326 nor, --, ---, wurblzap@gmail.com, NEW, Column sort links in bug lists should use field IDs instead of names |
| 12:02 | ssdbot | wurblzap@gmail.com changed the Target Milestone on bug 302326 from --- to Bugzilla 2.22. |
| 12:02 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302326 min, --, Bugzilla 2.22, wurblzap@gmail.com, ASSI, Column sort links in bug lists should use field IDs instead of names |
| 12:35 | LpSolit | myk, have time for some approvals? We want to release 2.20rc2 on Friday and I would like to avoid any checkin in the following 48 hours... |
| 12:35 | LpSolit | ... starting from this afternoon |
| 12:37 | LpSolit | btw, Wurblzap, if you could review my 2.20 backport about invalid POD syntax, I would appreciate :) |
| 12:37 | Wurblzap | Yes, can do |
| 12:37 | LpSolit | I would have it for rc2 |
| 12:38 | Wurblzap | Will the POD test go into 2.20 as well? |
| 12:39 | LpSolit | Wurblzap: no, but justdave wants clean POD syntax for 2.20 too |
| 12:39 | LpSolit | Wurblzap: I copied 011pod.t in my 2.20 t/ directory ;) |
| 12:39 | LpSolit | it doesn't hurt |
| 12:39 | Wurblzap | That's what I'll do, too |
| 12:58 | ssdbot | wurblzap@gmail.com granted review for attachment 190550 on bug 301967. |
| 12:58 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301967 min, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, Some .pm files have invalid POD syntax |
| 12:59 | ssdbot | wurblzap@gmail.com requested approval2.20 from the wind on bug 301967. |
| 12:59 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301967 min, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, Some .pm files have invalid POD syntax |
| 13:05 | ssdbot | wurblzap@gmail.com requested approval2.20 from the wind on bug 184037. |
| 13:05 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=184037 enh, --, Bugzilla 2.22, LpSolit@gmail.com, RESO FIXED, Run podchecker on .pm files |
| 13:05 | Wurblzap | I think it makes sense to have the podchecker on the trunk, too |
| 13:06 | Colin | erm, you mean branch |
| 13:06 | Wurblzap | Right |
| 13:06 | Wurblzap | Or trench, lunch, or bench |
| 13:09 | Wurblzap | Bugzilla needs more reviewer time |
| 13:16 | Zornreich | uhhum, somebody said review? :) |
| 13:20 | Wurblzap | Have your pick, Zornreich :) |
| 13:20 | Zornreich | justdave: hmm.. interesting links, nice to see what people want from bz is what is planned to be done soonish. :) |
| 13:20 | Zornreich | Wurblzap: I'm going to do bug 70907 :) |
| 13:20 | Wurblzap | Really? Cool |
| 13:20 | ssdbot | Zornreich: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=70907 enh, --, Bugzilla 2.22, wurblzap@gmail.com, ASSI, QuickSearch: port the JS code to perl (make it server-side) |
| 13:40 | LpSolit | I hope we can land these bugs on the 2.20 branch today, in order to have 2 days left for QA testing |
| 13:46 | Wurblzap | So again, not all blockers will be included, LpSolit? |
| 13:49 | LpSolit | Wurblzap: maybe we don't have the same conception of "release candidate", but for me, a RC should have all blockers fixed |
| 13:49 | LpSolit | Wurblzap: so this RC2 doesn't make sense to me |
| 13:49 | Wurblzap | Yes, that's what I think, too. Perhaps we can call it a release preview? |
| 13:49 | LpSolit | it should be 2.19.5 |
| 13:50 | LpSolit | rc1 should have been 2.19.4 IMO |
| 13:50 | LpSolit | mkanat wanted to call it 2.20 !! |
| 13:50 | Zornreich | maybe there has been some major bugs in rc1 that make it non-working? and rest of the bugs are so "small" that rc2+them would be final easily? |
| 13:51 | LpSolit | bug 300336 was a major regression |
| 13:51 | ssdbot | LpSolit: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=300336 nor, P2, Bugzilla 2.20, mkanat@bugzilla.org, RESO FIXED, Bugzilla::Auth should not contain any exported subroutines |
| 13:51 | Wurblzap | Even if it were so, Zornreich, then it's still not really a "Release Candidate" if you know *at that time* that the final release will be different. |
| 13:51 | Zornreich | imho, if we wait for all blockers to be fixed.. we'd never release 2.20.. no way charting UI will be written to it as there is nobody doing it. :( |
| 13:51 | LpSolit | sorry, this one fixed a major regression |
| 13:51 | Wurblzap | Then, Zornreich, we should stop having it as a blocker |
| 13:51 | LpSolit | I agree |
| 13:52 | Wurblzap | I understand Max will be back on Friday? |
| 13:52 | LpSolit | he posted an email last night he would be too busy today |
| 13:53 | Zornreich | Wurblzap: depends.. if only minor blockers are left, then they could be fixed in 2.20.1 |
| 13:53 | Zornreich | but then.. are they really blockers? :) |
| 13:53 | LpSolit | precisely :) |
| 13:53 | LpSolit | minor blockers aren't blockers IMO |
| 13:53 | Wurblzap | Yup |
| 13:53 | LpSolit | [wanted for 2.20] would be more appropriate |
| 13:54 | LpSolit | like myk did |
| 13:54 | Zornreich | hmm.. those two gerv bugs are for 2.18 too.. :/ |
| 13:54 | Wurblzap | Or milestone on 2.20 |
| 13:54 | LpSolit | Zornreich: yeah.. that's ridiculous |
| 13:54 | LpSolit | Zornreich: if they were really blockers, we wouldn't have 2.18, .1, .2 and .3 yet |
| 13:55 | Zornreich | Bug 247936 might happen if somebody does it.. |
| 13:55 | ssdbot | Zornreich: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=247936 nor, --, Bugzilla 2.18, gerv@mozilla.org, NEW, Delete Product does not clean up Series table |
| 13:55 | LpSolit | I posted a patch |
| 13:56 | Zornreich | their blocking has moved from 2.18.1 to 2.18.4.. no reason they could be moved to block 2.20.1 :) |
| 13:57 | Zornreich | instead 2.20 that is |
| 13:58 | LpSolit | pushing a blocker means it's not a blocker! |
| 13:59 | LpSolit | Colin: no new patch for Pg docs? :( |
| 13:59 | Colin | LpSolit, probably forgot about it |
| 13:59 | Colin | been doing so much recently |
| 13:59 | Zornreich | hmm.. if mkanat is busy, who is going to handle his three blockers? |
| 14:03 | LpSolit | thanks for you patch, glob |
| 14:03 | LpSolit | glob: what's so insane these days? |
| 14:07 | glob | LpSolit: work, kids |
| 14:23 | LpSolit | timely, timelyx: i don't think we need the blocking-seamonkey1.0a flag for Bugzilla |
| 14:25 | ssdbot | LpSolit@gmail.com added attachment 190705 to bug 292059. |
| 14:25 | ssdbot | LpSolit@gmail.com requested review from wicked@etlicon.fi for attachment 190705 on bug 292059. |
| 14:25 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 14:42 | ssdbot | wicked@etlicon.fi granted review for attachment 190705 on bug 292059. |
| 14:42 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 14:43 | ssdbot | LpSolit@gmail.com added attachment 190710 to bug 292059. |
| 14:43 | ssdbot | LpSolit@gmail.com requested review from wicked@etlicon.fi for attachment 190710 on bug 292059. |
| 14:43 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 14:44 | LpSolit | Zornreich: this one applies cleanly ;) |
| 14:46 | Zornreich | so it does :) |
| 14:49 | ssdbot | wicked@etlicon.fi granted review for attachment 190710 on bug 292059. |
| 14:49 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 14:50 | ssdbot | wicked@etlicon.fi requested approval from the wind on bug 292059. |
| 14:50 | ssdbot | wicked@etlicon.fi requested approval2.20 from the wind on bug 292059. |
| 14:50 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 14:51 | LpSolit | Zornreich: do you have some time left to review the backports in bug 273767? |
| 14:51 | ssdbot | LpSolit: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 14:52 | LpSolit | Zornreich: mkanat reviewed the patch for the trunk but is a bit lazy about the backports :( |
| 15:00 | Zornreich | sure, I'll do them now |
| 15:02 | LpSolit | thanks :) |
| 15:13 | LpSolit | justdave: could you go through the approval queue? I would like to do checkins asap before doing some tests on rc2 |
| 15:14 | justdave | you mean you filled it up again since last night? :) |
| 15:14 | LpSolit | 8 bugs |
| 15:15 | justdave | heh, so you did |
| 15:16 | timelyx | heh |
| 15:18 | Zornreich | hmmhmmhmm.. is shutdownhtml supposed to allow only doeditparams.cgi, editparams.cgi and login? |
| 15:19 | LpSolit | Zornreich: yes |
| 15:20 | LpSolit | Zornreich: and checksetup.pl |
| 15:20 | Zornreich | looks like it doesn't shutdown editclassifications.cgi or any .cgi that doesn't use CGI.pl |
| 15:20 | Zornreich | (this is on 2.20) |
| 15:21 | LpSolit | Zornreich: you are right |
| 15:21 | Zornreich | login is shutdown too, hmm. |
| 15:21 | Zornreich | but not with your patch :/ |
| 15:21 | LpSolit | ? |
| 15:22 | LpSolit | Zornreich: don't forget that the user has to log in to access editparams.cgi |
| 15:24 | LpSolit | Zornreich: the fact that some pages miss require "CGI.pl" is not the topic of this bug |
| 15:24 | Zornreich | LpSolit: no, it's not. just something I run into. :) |
| 15:24 | LpSolit | ok :) |
| 15:25 | Zornreich | so, do we care if editvalues.cgi, editclassifications.cgi, testagent.cgi and showattachment.cgi are not shutdown? |
| 15:25 | Zornreich | and is there a bug open about it already? |
| 15:26 | LpSolit | we don't care about showattachment, because it redirects to attachment.cgi which requires CGI.pl |
| 15:26 | Zornreich | and probably testagent.cgi either |
| 15:26 | LpSolit | and I think it's fine to be able to use testagent while bz is down |
| 15:26 | LpSolit | yes |
| 15:26 | Zornreich | it's nice to have it working when updating :) |
| 15:27 | LpSolit | but we should fix that for the 2 remaining .cgi files |
| 15:27 | Zornreich | yeah, I'll file a bug if I dont' find one |
| 15:29 | LpSolit | ok |
| 15:29 | LpSolit | I think it's a blocker ;) |
| 15:36 | LpSolit | Zornreich: this bug is 2.20 specific because 2.21 has the shutdown section in Bugzilla.pm and is consequently always called |
| 15:36 | Zornreich | yeah, I was remembering something like that.. |
| 15:37 | LpSolit | Zornreich: maybe should we fix it for 2.18 too |
| 15:56 | LpSolit | Zornreich: 2.18 is not affected !! :) |
| 15:56 | LpSolit | Zornreich: only showattachment.cgi and testagent.cgi do not require CGI.pl |
| 15:57 | Zornreich | why don't search/file the bug too, while you are looking into it :) |
| 15:57 | LpSolit | ok |
| 15:58 | Zornreich | thanks, I'm doing the reviews for you |
| 15:58 | LpSolit | nice |
| 15:59 | ssdbot | wicked@etlicon.fi denied review for attachment 189973 on bug 273767. |
| 15:59 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:05 | ssdbot | wicked@etlicon.fi granted review for attachment 189976 on bug 273767. |
| 16:05 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:08 | LpSolit | Zornreich: could you check the patch for the tip too? Maybe mkanat forgot to test it with requirelogin on |
| 16:08 | Zornreich | I'm looking at it, and would guess it has the same problem as 2.20 backport.. |
| 16:08 | Zornreich | but I'll test it too :) |
| 16:09 | LpSolit | nice catch anyway |
| 16:12 | ssdbot | wicked@etlicon.fi denied review for attachment 189962 on bug 273767. |
| 16:12 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:16 | ssdbot | New Bugzilla bug 302357 filed by LpSolit@gmail.com. |
| 16:16 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, ---, LpSolit@gmail.com, NEW, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 16:18 | ssdbot | LpSolit@gmail.com requested blocking2.20 from the wind on bug 302357. |
| 16:18 | ssdbot | LpSolit@gmail.com changed the Target Milestone on bug 302357 from --- to Bugzilla 2.20. |
| 16:18 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 16:19 | Zornreich | LpSolit: is it so that Bugzilla.pm is included to every .cgi? |
| 16:19 | LpSolit | Zornreich: they all have a call of the form Bugzilla->xxx |
| 16:20 | Zornreich | ah, ok. |
| 16:20 | LpSolit | Zornreich: except xml.cgi, showattachment.cgi and testserver.cgi |
| 16:20 | LpSolit | Zornreich: the first two redirect to another .cgi and testagent is safe |
| 16:20 | Zornreich | yeah |
| 16:29 | ssdbot | LpSolit@gmail.com added attachment 190725 to bug 302357. |
| 16:29 | ssdbot | LpSolit@gmail.com requested review from wicked@etlicon.fi for attachment 190725 on bug 302357. |
| 16:29 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 16:41 | ssdbot | LpSolit@gmail.com cancelled review+ for attachment 189962 on bug 273767. |
| 16:41 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:42 | ssdbot | LpSolit@gmail.com added attachment 190727 to bug 273767. |
| 16:42 | ssdbot | LpSolit@gmail.com requested review from wicked@etlicon.fi for attachment 190727 on bug 273767. |
| 16:42 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:46 | ssdbot | wicked@etlicon.fi granted review for attachment 190727 on bug 273767. |
| 16:46 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:49 | ssdbot | LpSolit@gmail.com added attachment 190728 to bug 273767. |
| 16:49 | ssdbot | LpSolit@gmail.com requested review from wicked@etlicon.fi for attachment 190728 on bug 273767. |
| 16:49 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:50 | ssdbot | wicked@etlicon.fi granted review for attachment 190728 on bug 273767. |
| 16:50 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 16:53 | ssdbot | LpSolit@gmail.com requested approval from the wind on bug 273767. |
| 16:53 | ssdbot | LpSolit@gmail.com requested approval2.18 from the wind on bug 273767. |
| 16:53 | ssdbot | LpSolit@gmail.com requested approval2.20 from the wind on bug 273767. |
| 16:53 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 17:04 | LpSolit | justdave: the blocking-seamonkey1.0a flag seems useless for Bugzilla ;) |
| 17:05 | justdave | yes, no kidding. complain to timely, he put it there ;) |
| 17:09 | ssdbot | wicked@etlicon.fi granted review for attachment 190725 on bug 302357. |
| 17:09 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 17:10 | ssdbot | wicked@etlicon.fi requested approval2.20 from the wind on bug 302357. |
| 17:10 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 17:10 | Zornreich | hmm.. first patch on https://bugzilla.mozilla.org/show_bug.cgi?id=70907 looks like good candidate for truncation from DB :) |
| 17:10 | ssdbot | Zornreich: Bug 70907 enh, --, Bugzilla 2.22, wurblzap@gmail.com, ASSI, QuickSearch: port the JS code to perl (make it server-side) |
| 17:11 | LpSolit | thanks for all these reviews, wicked :) |
| 17:11 | Zornreich | np, let's just hope they don't regress things too badly :) |
| 17:12 | LpSolit | that's why I would like to check them in now, in order to have time till Friday to do some tests |
| 17:12 | LpSolit | justdave: ^^ |
| 17:41 | Zornreich | LpSolit: purt alpha2 finds 673 undefined routines (alpha1 found 702) |
| 17:42 | LpSolit | this is because it doesn't look at modules imported by CGI.pl |
| 17:43 | LpSolit | it's painful to optimise it |
| 17:43 | LpSolit | especially because of the POD |
| 17:49 | Zornreich | eh, I made nice comment "Both editvalues and editvalues.." :) |
| 17:49 | LpSolit | indeed lol |
| 17:50 | Zornreich | now.. if only bug 540 would here I could.. |
| 17:50 | ssdbot | Zornreich: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=540 enh, P2, Bugzilla 2.22, mkanat@bugzilla.org, NEW, Need feature to edit long description/comments |
| 18:00 | LpSolit | Zornreich: have you better results with alpha 3 ? |
| 18:02 | Tru | word: seen mkanat? |
| 18:02 | word | mkanat was last seen on #mozwebtools 1 day, 11 hours, 56 minutes and 43 seconds ago, saying: It got morphed slightly in the Custom Fields meta-izing. [Mon Jul 25 23:05:51 2005] |
| 18:03 | Tru | Hey - cool! I had forgotten about using expect to deal with stupid programs like fsck :) Now I can fix my busted image without having to sit there holding the enter key for hours on end... :) |
| 18:03 | Zornreich | LpSolit: 457 |
| 18:03 | LpSolit | *much* better :) |
| 18:03 | LpSolit | 1/3 |
| 18:03 | Tru | quick little flood all - this is worth keeping ... |
| 18:03 | Tru | set timeout 10 |
| 18:03 | Tru | spawn sudo /sbin/fsck /dev/loop0 |
| 18:03 | Tru | match_max 100000 |
| 18:03 | Tru | expect -exact "Abort<y>? " |
| 18:03 | Tru | send -- "n" |
| 18:03 | Tru | while {1} { |
| 18:03 | Tru | expect { |
| 18:03 | Tru | -exact "<y>? " {send -- "\n"} |
| 18:03 | Tru | timeout {send_user "timed out\n"; exit} |
| 18:03 | Tru | eof {exit} |
| 18:04 | LpSolit | well done Tru! |
| 18:04 | Tru | That was the whole thing :) |
| 18:04 | Tru | Perfect timing eh? :) |
| 18:05 | Zornreich | looks like &:: are the biggest problem |
| 18:06 | LpSolit | Zornreich: yeah.. I forgot that :( |
| 18:06 | Zornreich | that and $dbh->bz_* usage |
| 18:06 | LpSolit | any suggestion? |
| 18:06 | LpSolit | I don't really know how to correctly handle &:: |
| 18:07 | Zornreich | hmm.. and Throw*Error via globals.pl (CGI.pl contains use Bugzilla::Error) |
| 18:08 | Zornreich | LpSolit: dunno, that code is pretty much over my head even in it's current form :) |
| 18:09 | LpSolit | Zornreich: there is a bug at line 203 |
| 18:09 | LpSolit | Zornreich: should be $use_cgi |
| 18:09 | LpSolit | not $use_globals |
| 18:10 | Zornreich | 386 |
| 18:11 | LpSolit | almost the half compared to alpha 1 :) |
| 18:12 | LpSolit | Zornreich: I wonder if modules in Foo/Bar/ automatically know routines defined or used in Foo.pm |
| 18:16 | Zornreich | hmm.. |
| 18:16 | Zornreich | shouldn't that also consider external modules and perhaps output all such modules so that we know that requirements are correct? |
| 18:18 | LpSolit | good luck to implement that |
| 18:18 | LpSolit | unless PURT uses these modules and look at %ISA |
| 18:19 | timello | LpSolit, ping |
| 18:19 | LpSolit | pong |
| 18:20 | timello | do you see any block to continue editproduct templatizing? |
| 18:20 | LpSolit | all need templatizing |
| 18:20 | timello | so, lets continue |
| 18:21 | LpSolit | timello: you could start with EmitFormElements() maybe |
| 18:21 | timello | ok |
| 18:22 | timello | LpSolit, I don't like the summary of the bug 293524 anymore, it is so generic |
| 18:22 | ssdbot | timello: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=293524 nor, --, ---, timello@gmail.com, NEW, Step 3 (templatize): templatize and move code from edit[products,components,classifications,mileston |
| 18:23 | ssdbot | myk@mozilla.org granted approval on bug 301018. |
| 18:23 | ssdbot | myk@mozilla.org granted approval2.20 on bug 301018. |
| 18:23 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301018 tri, --, Bugzilla 2.20, wurblzap@gmail.com, NEW, Add INTERFACE section to bug/create/created.html.tmpl |
| 18:23 | ssdbot | myk@mozilla.org granted approval on bug 302200. |
| 18:23 | ssdbot | myk@mozilla.org granted approval2.20 on bug 302200. |
| 18:23 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302369 nor, --, ---, mozilla.webmaster@mozilla.bugs, UNCO, [403] |
| 18:24 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302200 nor, --, Bugzilla 2.20, robzilla@siklos.ca, ASSI, uninitialized value when saving email prefs |
| 18:24 | ssdbot | myk@mozilla.org granted approval on bug 293950. |
| 18:24 | ssdbot | myk@mozilla.org granted approval2.20 on bug 293950. |
| 18:24 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=293950 tri, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, enter bug product failure messages suboptimal |
| 18:25 | ssdbot | myk@mozilla.org granted approval on bug 302214. |
| 18:25 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302214 tri, --, Bugzilla 2.22, robzilla@siklos.ca, NEW, missing space "storedin" in mail_delivery_method desc |
| 18:25 | LpSolit | what does 302200 here??? |
| 18:25 | LpSolit | sorry 302369 |
| 18:26 | ssdbot | myk@mozilla.org granted approval on bug 301446. |
| 18:26 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301446 cri, --, Bugzilla 2.22, bugzilla@glob.com.au, ASSI, Changing several bugs at once crashes if the user wants to automatically redisplay the bug he change |
| 18:26 | ssdbot | myk@mozilla.org granted approval on bug 292059. |
| 18:26 | ssdbot | myk@mozilla.org granted approval2.20 on bug 292059. |
| 18:26 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=292059 nor, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, No locking in createaccount.cgi |
| 18:28 | Colin | LpSolit, ssdbot gets a bit confused |
| 18:29 | ssdbot | myk@mozilla.org granted approval on bug 273767. |
| 18:29 | ssdbot | myk@mozilla.org granted approval2.18 on bug 273767. |
| 18:29 | ssdbot | myk@mozilla.org granted approval2.20 on bug 273767. |
| 18:29 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=273767 maj, --, Bugzilla 2.18, LpSolit@gmail.com, ASSI, Cannot log out when param(shutdownhtml) is active |
| 18:29 | ssdbot | New Bugzilla bug 302370 filed by timello@gmail.com. |
| 18:29 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302370 enh, --, ---, administration@bugzilla.bugs, UNCO, remove the EmitFormElements routine from editproducts.cgi and templatize that code |
| 18:30 | wonderboy | can anyone help me install bugzilla? |
| 18:30 | timello | LpSolit, could you assign it to gbel ? |
| 18:30 | timello | word, gbel |
| 18:30 | word | timello: sorry... |
| 18:30 | timello | word, gbel? |
| 18:30 | word | timello: i haven't a clue |
| 18:30 | wonderboy | i am trying to install bugzilla and when i run the checksetup.pl it tells me i have modules missing and how to install them, i run those commands and it installs them, and then i run the checksetup.pl again and it says im still missing them, I just rebooted my server to see if that would help, however the packages are still missing. anyone? |
| 18:31 | timello | word, gbel is Gabriel Sales de Oliveira <gabriel@async.com.br> |
| 18:31 | word | OK, timello. |
| 18:31 | timello | word, gbel? |
| 18:31 | word | gbel is Gabriel Sales de Oliveira <mailto:gabriel@async.com.br> |
| 18:32 | LpSolit | Zornreich: I found another bug in alpha 3 |
| 18:32 | timely | wonderboy: what modules did it say were missing? |
| 18:32 | ssdbot | myk@mozilla.org granted approval2.20 on bug 301967. |
| 18:32 | LpSolit | I forgot to consider routines defined in globals.pl :-D |
| 18:32 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301967 min, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, Some .pm files have invalid POD syntax |
| 18:32 | wonderboy | Bugzilla requires some Perl modules which are either missing from your |
| 18:32 | wonderboy | system, or the version on your system is too old. |
| 18:32 | wonderboy | They can be installed by running (as root) the following: |
| 18:32 | wonderboy | /usr/bin/perl5.8.5 -MCPAN -e 'install "AppConfig"' |
| 18:32 | wonderboy | Minimum version required: 1.52 |
| 18:32 | wonderboy | /usr/bin/perl5.8.5 -MCPAN -e 'install "Date::Format"' |
| 18:32 | wonderboy | Minimum version required: 2.21 |
| 18:33 | wonderboy | those |
| 18:33 | wonderboy | plus some other optional ones. |
| 18:33 | timely | lpsolit/timello: care to explain to wonderboy how to find out what version of the modules seems to be available? |
| 18:33 | ssdbot | myk@mozilla.org cancelled blocking2.20? on bug 302357. |
| 18:33 | ssdbot | myk@mozilla.org granted approval2.20 on bug 302357. |
| 18:34 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, ASSI, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 18:34 | * timely notes that the easiest way is to read the checksetup code | |
| 18:34 | LpSolit | timely: I'm a bit busy right now |
| 18:34 | ssdbot | myk@mozilla.org granted approval2.20 on bug 184037. |
| 18:34 | wonderboy | sorry, i dont know anything about perl... |
| 18:34 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=184037 enh, --, Bugzilla 2.22, LpSolit@gmail.com, RESO FIXED, Run podchecker on .pm files |
| 18:34 | timello | gbel, 293524 |
| 18:35 | wonderboy | can i post everything the checksetup.pl file outputs? would that hlep? |
| 18:35 | timello | wonderboy, wait |
| 18:35 | wonderboy | ok. |
| 18:35 | Zornreich | wonderboy: please don't. post only the two AppConfig and Date::Format lines from the top of it's output. |
| 18:36 | timello | word, paste? |
| 18:36 | word | i don't know, timello |
| 18:36 | timello | word, paste is http://phpfi.com/ |
| 18:36 | word | OK, timello. |
| 18:36 | timello | wonderboy, use that site |
| 18:36 | wonderboy | Checking for AppConfig (v1.52) not found |
| 18:37 | wonderboy | Checking for Date::Format (v2.21) not found |
| 18:39 | wonderboy | http://phpfi.com/71707 |
| 18:40 | Zornreich | wonderboy: what happens when you run -> /usr/bin/perl5.8.5 -MCPAN -e 'install "AppConfig"' |
| 18:40 | wonderboy | it goes and gets it and installs it |
| 18:40 | wonderboy | then i run the checksetup.pl again, and it still says its missing |
| 18:41 | wonderboy | i figured i would go the windows route and pull a Reboot, however when it came back up that was still missing |
| 18:41 | timello | humm, interesting |
| 18:41 | timello | as root right? |
| 18:41 | wonderboy | of course |
| 18:42 | timello | :) |
| 18:42 | wonderboy | root@uranus bugzilla # |
| 18:42 | wonderboy | and btw i did name my server uranus so i could "Download Logs off Uranus" |
| 18:42 | Zornreich | :) |
| 18:43 | timello | I have no idea, do you Zornreich ? |
| 18:43 | wonderboy | i know |
| 18:43 | wonderboy | im stumped |
| 18:44 | wonderboy | there isnt like a known issue with Gentoo linux and this is there? |
| 18:46 | Zornreich | hmm.. |
| 18:47 | Zornreich | could be that the install fails or there is some permission problems on the installed modules (I hear RH has had this kind of problem, dunno about Gentoo) |
| 18:47 | wonderboy | im not like a linux n00b or anything, i just dont know much about perl and how it works |
| 18:47 | Zornreich | ok, then you probably can decipher the CPAN output and know that there was no error :) |
| 18:47 | timello | have you tried to use 'locate' to find AppConfig* for instance, and the files are there? |
| 18:48 | ssdbot | New Bugzilla bug 302372 filed by ispiked@gmail.com. |
| 18:48 | timello | like here, it is in /usr/local/share/perl/5.8.5/AppConfig... |
| 18:48 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302372 nor, --, ---, attach-and-request@bugzilla.bugs, NEW, Requestee input field is way too small |
| 18:48 | wonderboy | yeah |
| 18:48 | wonderboy | its there |
| 18:49 | Zornreich | try /usr/bin/perl5.8.5 -MAppConfig -e'print $AppConfig::VERSION;' |
| 18:49 | wonderboy | usr/local/perl/lib/perl5/site_perl/5.8.5/AppConfig.pm |
| 18:49 | Zornreich | it should output the version of AppConfig |
| 18:49 | wonderboy | /usr/bin/perl5.8.5 -MCPAN -e 'install "AppConfig"' |
| 18:50 | wonderboy | hold on |
| 18:50 | wonderboy | root@uranus bugzilla # /usr/bin/perl5.8.5 -MAppConfig -e'print $AppConfig::VERSION;' |
| 18:50 | wonderboy | Can't locate AppConfig.pm in @INC (@INC contains: /etc/perl /usr/lib/perl5/site_perl/5.8.5/i686-linux /usr/lib/perl5/site_perl/5.8.5 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.5/i686-linux /usr/lib/perl5/vendor_perl/5.8.5 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.5/i686-linux /usr/lib/perl5/5.8.5 /usr/local/lib/site_perl .). |
| 18:50 | wonderboy | BEGIN failed--compilation aborted. |
| 18:50 | wonderboy | root@uranus bugzilla # |
| 18:50 | LpSolit | Zornreich: PURT 1.0a4 sent |
| 18:51 | Zornreich | hmm.. that INC path doesn't seem to include usr/local/perl/lib/perl5/site_perl/5.8.5/ |
| 18:51 | Zornreich | that's why it can't be found, me thinks |
| 18:52 | timello | gbel, bug 302370 |
| 18:52 | ssdbot | timello: Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302370 enh, --, ---, administration@bugzilla.bugs, UNCO, remove the EmitFormElements routine from editproducts.cgi and templatize that code |
| 18:52 | wonderboy | hrmm |
| 18:54 | wonderboy | so i need to update my PATH? or is that perl prob? |
| 18:55 | LpSolit | Zornreich: I still have to make him understand methods |
| 18:56 | Zornreich | wonderboy: perl has it's own "path" called @INC. I'm not quite sure how one could about changing that.. |
| 18:57 | Zornreich | perhaps someone else in here knows.. I gotta go eat something before I pass out. :) |
| 18:57 | wonderboy | well, what would you suggest i do to fix this problem? (i NEED to get bugzilla installed) |
| 19:01 | timely | there's PERL5LIB |
| 19:01 | timely | if you read man perl or perldoc perlrun (?) you should be able to find info about PERL5LIB and its relatives |
| 19:02 | timello | wonderboy, http://perl.apache.org/docs/1.0/guide/install.html |
| 19:02 | timely | i'm not sure how one goes about changing the default environment to include PERL5LIB defined to the sane value you'll want to specify |
| 19:03 | wonderboy | none of those are man entries |
| 19:03 | timely | at least temporarily you can export PERL5LIB and continue w/ checksetup |
| 19:03 | timely | anyway, perldoc perlrun is what you want for PERL5LIB |
| 19:03 | wonderboy | roger ill go read and report back |
| 19:14 | timello | wonderboy, tried "export PERL5LIB=/usr/local/perl/lib/perl5/site_perl/5.8.5"? and ran checksetup again? |
| 19:17 | Zornreich | LpSolit: 305 |
| 19:17 | LpSolit | nice |
| 19:20 | ssdbot | LpSolit@gmail.com set the Resolution field on bug 301967 to FIXED. |
| 19:20 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=301967 min, --, Bugzilla 2.20, LpSolit@gmail.com, RESO FIXED, Some .pm files have invalid POD syntax |
| 19:26 | * justdave just tried to approve a bug he opened a while ago and midaired with myk | |
| 19:27 | LpSolit | justdave: there is no bug left to approve |
| 19:27 | justdave | heh. |
| 19:28 | timely | heh |
| 19:30 | wonderboy | timello: that worked |
| 19:34 | ssdbot | LpSolit@gmail.com changed the Target Milestone on bug 184037 from Bugzilla 2.22 to Bugzilla 2.20. |
| 19:34 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=184037 enh, --, Bugzilla 2.20, LpSolit@gmail.com, RESO FIXED, Run podchecker on .pm files |
| 19:35 | ssdbot | ispiked@gmail.com added attachment 190744 to bug 302372. |
| 19:35 | ssdbot | ispiked@gmail.com requested review from myk@mozilla.org for attachment 190744 on bug 302372. |
| 19:35 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302372 nor, --, ---, ispiked@gmail.com, ASSI, Requestee input field is way too small |
| 19:37 | LpSolit | justdave: http://bonsai.mozilla.org/cvsgraph.cgi?file=mozilla/webtools/bugzilla/t/011pod.t |
| 19:37 | LpSolit | justdave: click 1.1.2.1 |
| 19:49 | ssdbot | LpSolit@gmail.com set the Resolution field on bug 302357 to FIXED. |
| 19:49 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302357 maj, --, Bugzilla 2.20, LpSolit@gmail.com, RESO FIXED, some .cgi files ignore Param(shutdownhtml) in 2.19.x and 2.20rc1 |
| 19:49 | ssdbot | New Bugzilla bug 302381 filed by wicked@etlicon.fi. |
| 19:49 | ssdbot | Bug https://bugzilla.mozilla.org/show_bug.cgi?id=302381 tri, --, ---, documentation@bugzilla.bugs, NEW, QUICKSTART is a bit outdated |
| 19:55 | ssdbot | LpSolit@gmail.com set the Resolution field on |