Saturday, 2011-06-18

*** Quits: Ragnor (~Ragnor@dslb-092-072-243-237.pools.arcor-ip.net) (Ping timeout: 240 seconds)03:59
*** Joins: Ragnor (~Ragnor@dslb-178-009-173-252.pools.arcor-ip.net)04:02
*** Joins: paulr_ (~IceChat09@2001:470:9310:aaaa:2582:c9f4:cd11:e70c)04:12
dhx1paulr_: hi04:56
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 276 seconds)05:20
*** Joins: soustruh (~Miranda@80.212.broadband11.iol.cz)06:32
*** Joins: soc42 (~soc42@g227035063.adsl.alicedsl.de)07:32
*** Quits: soustruh (~Miranda@80.212.broadband11.iol.cz) (Quit: visit http://wormscesky.cz)08:29
*** Quits: soc42 (~soc42@g227035063.adsl.alicedsl.de) (Ping timeout: 255 seconds)09:35
*** Joins: soc42 (~soc42@g227085176.adsl.alicedsl.de)09:41
dhx1seeking comments on this MantisBT mockup: http://d.hx.id.au/mantisbt/mockups/header.png10:58
dhx1the text box with "edit bug 35" is a combined command and search bar10:59
dhx1taking inputs such as "find issues with priority higher than normal"10:59
dhx1"show roadmap"10:59
dhx1"changelog"11:00
dhx1etc11:00
dhx1I'm not sure what to do with the traditional navigation menu11:01
dhx1I don't particularly like flyout menus (particularly an issue for touchscreen devices?)11:01
dhx1and the idea was to make these menus customisable11:01
jreeseI like the theme and ideas, although I would make sure you make some sort of distinction for elements like the text box to make it more obvious that its user interactable11:27
jreesedhx1: ^11:28
dhx1thanks11:34
dhx1I've put the HTML version up at http://d.hx.id.au/mantisbt/mockups/view_bug.html11:34
dhx1WIP11:34
dhx1only tested with Chromium nightly for the moment11:34
dhx1it uses a new HTML 5 feature to show a hint in the text box... "Enter search term or command to execute..."11:35
dhx1an icon or console like symbol would help too11:36
dhx1jreese: ^11:37
jreeseThe way the menus wrap in a skinny browser is a bit confusing, although everything still renders well, at least on my new galaxy tab that I'm using ;-) 11:37
dhx1agreed11:38
dhx1I guess that style of menu is better suited to being vertical (like mediawiki)11:39
dhx1or varied in CSS depending on the screen resolution11:39
jreeseBiggest concern I have outside the immediate look and feel would be how you plane on handling menu expansion for things like plugins or config options11:40
*** Joins: siebrand (~siebrand@93.82.163.250)11:40
dhx1the direction I was heading was to build the menu at runtime11:40
dhx1for instance, an array holding each of the major menu items11:41
dhx1and within each major menu item and array to hold sub items11:41
jreeseI think if you're not going to go with fkyout menus, you'd really need to go with a vertical flow if its going to be more than just a few options11:41
dhx1plugins could then attach themselves into those arrays prior to printing11:41
dhx1it works well for 1920x108011:42
jreeseI guarantee very few people ever run a browser at that resolution ;-) 11:42
dhx1but still takes up too much vertical space IMO11:42
paulr_dhx: your alive!!!!11:42
dhx1paulr_: you are too! :)11:43
jreeseI have two monitors at that Res and my browser is still only 1100px wide11:43
dhx1:o11:43
paulr_dhx: did you test my db api yet?11:43
jreeseVertical pixels are what really matters11:44
dhx1paulr_: yeah I sent you a pull request on github a long time ago :P11:44
dhx1would a command bar with autocomplete (via json) be useful?11:44
paulr_dhx1: yes, which i'd already pulled?11:45
dhx1the idea being that commands are translatable and there can be multiple syntaxes for each command (view bug 49, bug 49, show bug 49, etc)11:46
dhx1a disambiguation page would exist if the command can be interpreted multiple ways11:46
jreeseThe problem with that is discoverability11:46
paulr_how familiar are you guys with jquery?11:47
jreeseHow do you know what commands are available, and why would it be quicker than a menu?11:47
dhx1jreese: true... autocomplete would be able to assist with that11:47
paulr_how does closure compare to jquery? :)11:48
jreeseYes, but its still not obvious, and very unfriendly to users who aren't familiar with a command line11:48
dhx1you would be able to press "tab", type a command (even partially if you're happy with an autocomplete suggestion) and press enter11:48
dhx1yep agreed11:48
dhx1that is why I tried to place the traditional menu there too11:49
dhx1so that users can choose which method they want to use (or both)11:49
jreesepaulr_: your question doesn't make sense11:49
dhx1paulr_: yeah I use it11:49
paulr_i.e. http://code.google.com/closure/library/11:49
dhx1paulr_: https://github.com/grangeway/mantisbt/pull/211:50
paulr_is that the same as jquery really?11:50
jreeseAh, was not familiar with that library11:50
paulr_dhx1: didn't I already pull that?11:50
dhx1paulr_: http://stackoverflow.com/questions/1690197/what-does-google-closure-library-offer-over-jquery11:51
dhx1paulr_: nope, you merged an earlier branch I had11:51
paulr_oh11:51
paulr_right11:51
paulr_how do i merge this one11:51
jreesepaulr_: jquery is at least the most popular library, so there are tons of examples and documentation in the wild11:51
dhx1paulr_: if you login to github does it let you merge it from the web UI?11:52
paulr_yea, but i dont know if i would have done anything locally11:53
jreeseIt will let you if the merge won't cause a conflict11:53
dhx1paulr_: merge it in the remote github repo11:54
paulr_how do I merge it manually11:54
paulr_I should be able to pull it locally righT?11:54
dhx1then "git pull --rebase" on your local one you haven't pushed yet11:54
dhx1actually the best way is probably:11:54
dhx1git remote add {my github repo}11:55
dhx1oops11:55
dhx1try this:11:56
dhx1git remote add david.hicks git://github.com/davidhicks/mantisbt.git11:57
dhx1git fetch --all11:57
dhx1git checkout {your local db branch}11:57
dhx1git merge david.hicks/dbfixes11:58
dhx1git push {name of your github remote}11:58
paulr_+  if ( !is_null( $g_cache_bug[$c_bug_id]['_stats'] ) ) {11:59
paulr_I thought now we were doing if( more ?11:59
dhx1no?12:00
paulr_right12:07
paulr_what does fetch --all do?12:08
paulr_fetch it into my branch?12:08
dhx1nah12:08
dhx1fetch --all will download commits from all your remote repositories12:08
dhx1it won't actually update your local branches though12:09
dhx1to do that you'd need to git pull12:09
paulr_it comes up with conflicts12:09
paulr_Auto-merging account_sponsor_page.php12:09
paulr_CONFLICT (content): Merge conflict in account_sponsor_page.php12:09
paulr_Auto-merging core/relationship_api.php12:09
paulr_CONFLICT (content): Merge conflict in core/relationship_api.php12:09
paulr_Auto-merging manage_user_page.php12:09
paulr_CONFLICT (content): Merge conflict in manage_user_page.php12:09
dhx1will probably need manual correction12:10
paulr_  <<<<<<< HEAD12:10
paulr_  =======12:10
paulr_+ unset( $t_bug_relationship_data[$i] );12:10
paulr_  >>>>>>> david.hicks/dbfixes12:10
paulr_hmm12:10
dhx1fixes a bug I came across (from memory)12:11
paulr_right so i'll nee to see what you did there12:17
paulr_ps. you up late?12:17
paulr_now any chance of some help12:17
paulr_is git svn same as svn2git?12:17
dhx1not sure12:17
paulr_or more12:17
paulr_i'm trying to sync a git repo with svn12:17
paulr_and it doesn't seem to be doing what I want12:18
paulr_if i've used sv2ngit so far, guess I need to arry on doing that?12:18
dhx1sorry, no idea on svn/git conversion12:19
*** Quits: soc42 (~soc42@g227085176.adsl.alicedsl.de) (Remote host closed the connection)12:28
*** Quits: killefiz (~sven@fedora/pdpc.base.killefiz) (Read error: Operation timed out)12:31
*** Joins: soc42 (~soc42@g227085176.adsl.alicedsl.de)13:41
*** Joins: killefiz (~sven@fedora/pdpc.base.killefiz)14:03
*** Joins: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net)14:29
*** Parts: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net) ()14:29
*** Quits: soc42 (~soc42@g227085176.adsl.alicedsl.de) (Remote host closed the connection)14:40
paulr_jreese15:04
jreeseYes?15:07
*** Joins: giallu (~giallu@fedora/giallu)15:21
*** Quits: giallu (~giallu@fedora/giallu) (Read error: Connection reset by peer)15:27
paulr_how do I see if I set a remote?15:45
*** Joins: soc42 (~soc42@g227085176.adsl.alicedsl.de)15:49
paulr_if when rebasing i want to use version from master branch, do I do -continue, -skip or have to fix manually?15:50
*** Joins: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net)15:59
*** Parts: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net) ()15:59
*** Quits: soc42 (~soc42@g227085176.adsl.alicedsl.de) (Remote host closed the connection)17:10
*** 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
*** Joins: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net)20:23
*** Parts: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net) ()20:23
*** Joins: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net)20:33
*** Parts: tmckeown (~Adium@pool-108-56-179-231.washdc.fios.verizon.net) ()20:35
*** Quits: paulr_ (~IceChat09@2001:470:9310:aaaa:2582:c9f4:cd11:e70c) (Quit: When the chips are down, well, the buffalo is empty)20:57
*** Joins: micahg (~micahg@ubuntu/member/micahg)23:31

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