Friday, 2009-11-13

../irclogs/#mantishelp.2009-11-13.log
--- scribe started ---00:00
iarwainHi. Does MantisCmd work with version 1.1.8? or do I need 1.2?00:50
dhx_m1.2.x or greater00:53
iarwainok, thanks. I guess that also applies to everything in http://git.mantisforge.org/00:54
iarwainAnother question: I've just upgraded a customized 1.1.1 mantis to 1.1.8, and the file merging was affordable with git. However merging against 1.2.0 gives tons of conflicts. I guess many things changed in the code. But is there something I can do to prepare the code before the merging, so that I get less conflicts? Or am I forced to solve all them as they are?00:57
dhx_myes, 1.2.x has the plugin system... 1.1.x doesn't00:57
dhx_mare these local modifications you've made to 1.1.x?00:58
iarwainyes00:58
dhx_mto be honest it is probably easiest to start with a fresh version of 1.2.x and then manually merge everything from looking at diffs on your 1.1.x branch00:58
dhx_mthat is how different they are00:58
dhx_mI don't know how many patches/lines of code we're talking about though00:59
iarwainAround 1000.01:01
iarwainOK, it's good to know. We'll take it with patience and time.01:01
dhx_mis it possible to put your functionality into a plugin?01:01
dhx_mthat could help make it more manageable01:01
dhx_mas would pushing commits for upstream inclusion if any are suitable for doing so (it means you don't have to worry about merge conflicts again)01:02
iarwaindoes a plugin allow modifying a core behavior?01:02
iarwainI mean, can every possible mantis customization be written as a module?01:03
dhx_mplugins can't do everything01:03
dhx_mbut they can add features and such01:04
iarwainok. Then I guess that for some parts we can create pluggins, that'd be comfortable for the future.01:05
iarwainThank you for the information.01:07
kirillkaSomebody around?13:55
kirillkaIt's only for me not worked google wave?13:56
kirillkaAll contacts empty. Folders too. But all wave exists13:56
nuclear_eclipsekirillka: you have to manually add us to your contacts list14:00
kirillkanuclear_eclipse: I add all to list, and yesterday I see all contacts. For now I not see no one.14:04
kirillkaAnd all avatars not showing14:04
kirillkaOne sec. Another browser test14:05
nuclear_eclipsekirillka: not all of them have set up avatars :P14:06
nuclear_eclipseand the other problems might be why Wave is still in private Beta :P14:06
kirillkanuclear_eclipse: John, I see avatar on you. But now nothing14:06
kirillkaThis my browser14:06
kirillkaFirefox14:06
kirillkaIn Chrome all work14:06
kirillka:(14:06
nuclear_eclipsehmm, I use FF 3.5 just fine14:07
kirillkaI thing it's time-bug (memory, cache, etc)14:08
kirillkanuclear_eclipse: restart browser fix bug14:09
kirillkanuclear_eclipse: what plan for wave and mantisbt?14:10
nuclear_eclipseI think it's just to be a asynchronous replacement for stuff like IRC talks14:11
nuclear_eclipsewhich is good because we can't ever get more thana couple devs on IRC at once :P14:11
kirillka:)14:12
kirillkanuclear_eclipse: John, what about notify wave from mantisbt?14:13
kirillkain plugin for example?14:13
nuclear_eclipseI dunno14:13
nuclear_eclipseplugins don't yet have a way of really hooking into notifications yet, so not very likely atm14:13
kirillkawhy?14:14
nuclear_eclipsethere just aren't an appropriate set of hooks in mantis14:15
kirillka'EVENT_REPORT_BUG'14:16
nuclear_eclipseoh, well yes, I guess it could just use that; I was thinking more like the current email notifications, only through wave :P14:17
kirillkaNo.. Such bot in IRC channel14:18
* giallu notes mantisbot is dead...14:28
kirillkagiallu: lo14:33
kirillkabot is live again?14:33
kirillkabug 1111114:34
mantisbotBug 11111 - warden - reopened - feedback14:34
nuclear_eclipsemantisbot: bug 1101114:34
mantisbotunable to add comments to issues - http://www.mantisbt.org/bugs/view.php?id=1111114:34
mantisbotBug 11011 - watergad - open - new14:34
mantisbotCan't add UTF8 custom fields to the Manage columns enumeration - http://www.mantisbt.org/bugs/view.php?id=1101114:34
* nuclear_eclipse rejoices14:34
* nuclear_eclipse dances with mantisbot 14:34
kirillka:)14:35
gialluwhen you notices it's down, just drop me a note14:40
nuclear_eclipsegiallu: it was down for about a week, just fyi ;)14:40
giallunuclear_eclipse, yeah, I probably rebooted the machine and forget about it14:40
giallubot runs in a screen session14:41
nuclear_eclipseno worries, just giving you a hard time :P14:41
nuclear_eclipsewhy don't we just set it up on mantisbt.org server?14:41
nuclear_eclipsegive it a init.d script so it'll automatically start?14:41
gialluyeah, I could14:42
* giallu fires up todo list14:42
wologwith 1.3.0dev (from git), in my_view_page.php, clicking in "Assigned to me" "unassigned" etc won't work, I get back to the same view (my_view_page.php). Removing temporary=y from the url make everything works fine. As it is a dev release, should I fill a bug report ?15:58
nuclear_eclipsenot yet, 1.3 has some really rough changes in it alraedy15:59
nuclear_eclipsemore focus is on 1.2 RC atm15:59
nuclear_eclipseI'd highly recommend sticking with 1.2 as well15:59
dhx_mnuclear_eclipse: my 55878bd7 commit had another error16:06
dhx_mpossibly the reason we're getting so many reports of broken page redirects16:06
nuclear_eclipsefun16:07
dhx_m+       } else if ( preg_match( '@^(?P<path>)$t_pattern\$@', $t_url, $t_matches ) ) {16:07
dhx_mshould be16:07
dhx_m+       } else if ( preg_match( '@^(?P<path>)' . $t_pattern . '\$@', $t_url, $t_matches ) ) {16:07
dhx_mthat was a really crap commit... must have been in a rush :)16:07
nuclear_eclipseoh, the \$ inside the single quotes? :P16:08
dhx_mthat too... why is there a $ at the end of the path?16:09
dhx_mit was there before I touched it16:09
nuclear_eclipseto force PCRE to match the entire URI :P16:09
dhx_mah :)16:09
dhx_mooooh16:10
dhx_mthat commit REALLY broke things16:10
nuclear_eclipselol16:10
dhx_mno need for those escaped $'s now16:10
nuclear_eclipseso dhx_m needs to set his gravatar to a dunce cap, eh? :P16:10
dhx_mfixing16:10
nuclear_eclipseanywho, bbl16:11
nuclear_eclipsecheers16:11
dhx_mlol ok16:11
dhx_mpreg_match( '@^(?P<path>)'16:12
dhx_mwhat the16:12
dhx_man empty named match?16:13
CIA-9Mantisbt: hickseydr * r9e25918824f8 /core/string_api.php: Fix #11155: Broken PCRE regex strings broke page redirects16:23
CIA-9Mantisbt: hickseydr master-1.2.x * r0eb89e062052 /core/string_api.php: Fix #11155: Broken PCRE regex strings broke page redirects16:23
paulrmoo18:38
nuclear_eclipsehi paulr18:54
paulrlo20:54
paulrnuclear_eclipse: still here?20:54
nuclear_eclipseyo20:55
paulrare we planning on rebuilding OS on slice?20:55
nuclear_eclipseI dunno20:55
paulrseperately to that20:55
paulrhow do i build manuals20:55
paulrI'd like to look at logistics of LDAP on linux20:56
nuclear_eclipsedocbook-manual.py20:58
paulrcan we make a php version of script :P20:59
nuclear_eclipsewhy does it need to be in PHP?21:03
darynso paulr doesn't have to learn another language21:04
aptituz_python is even easier ;)21:04
daryn:) so i hear21:05
paulr:021:05
paulr:)21:05

Generated by irclog2html.py