**** BEGIN LOGGING AT Sat Feb 26 02:59:57 2011 Feb 26 03:23:09 can I run an app via novaterm? Feb 26 03:23:24 palm-launch appid Feb 26 03:23:47 can I run stuff in the app via command/novaterm? Feb 26 03:24:09 touchscreen stopped working... and I want to save/restore Feb 26 03:25:39 PatrickC_Pre: palm-launch appid Feb 26 03:26:07 can I run the save part of save/restore via command/novaterm Feb 26 03:48:50 can I emu a device? Feb 26 03:51:04 you can luna-send a launch parameter to initiative an autosave Feb 26 03:51:32 where are instructions on how to do that? Feb 26 03:52:33 ~utsl Feb 26 04:09:03 can I use luna-send to text someone? Feb 26 04:15:52 probably Feb 26 04:16:05 just snoopy the bus while you're sending a text normally. Feb 26 04:16:10 and replay it Feb 26 04:21:25 my touchscreen doesn't work, so I can't send one normally Feb 26 04:58:57 for the life of m I can't figure out how to add a background to a scene Feb 26 04:59:09 **me Feb 26 04:59:53 can someone point me to an article or web page or something about it? I tried adding it in the css, but it didn't work for some reason Feb 26 05:04:19 well.... Feb 26 05:04:32 I unplug my USB cable... Feb 26 05:04:33 and... Feb 26 05:04:42 my screen starts working Feb 26 05:04:54 PatrickC_Pre: I get that on one of my devices too Feb 26 05:05:13 something to get the phone exchanged over? Feb 26 05:07:16 rwhitby, should I get it fixed, or is it just something minor? Feb 26 05:07:26 probably a power thing Feb 26 05:07:29 shielding or something Feb 26 05:07:39 from usb interferring with the touchscreen Feb 26 05:10:38 ok. I'm still gonna see if sprint will order another one, as it might happen again, and its my main phone Feb 26 05:15:04 yo Feb 26 05:15:15 what's up? Feb 26 05:17:14 graywolf336: http://webos101.com/Code_Snippets#Adding_a_custom_background Feb 26 05:23:59 sugardave: thanks Feb 26 05:30:39 sugardave: makes you feel good, no? Feb 26 05:31:41 sugardave's helping someone and not telling them to google O_o Feb 26 05:35:09 I give out freebies occasionally Feb 26 05:35:23 not to me :p Feb 26 05:35:28 oh please Feb 26 05:35:36 lol Feb 26 05:35:38 you used your allotment Feb 26 05:35:52 I used it up a *long* time ago :) Feb 26 05:36:07 can we clear those cookies :p Feb 26 05:42:41 sugardave: what's a good site for webos cookies and how to tie them to a widget? Feb 26 05:45:14 I cannot get this widget to work :/ Feb 26 05:48:21 sugardave: I'm already using a cookie for a scene to show up only on the first run, can I use that cookie for the metrix toggle too? Feb 26 05:50:22 you can use that cookie or another cookie Feb 26 05:50:43 so long as your cookies don't contain more than 4k of data Feb 26 05:50:47 ok, what's the best way to tie my widget to that coodie? Feb 26 05:51:00 s/coodie/cookie Feb 26 05:51:06 packing string? Feb 26 05:51:17 well, you know how much I know :p Feb 26 05:51:19 why do you want to tie a widget to a cookie? Feb 26 05:51:23 * PatrickC_Pre goes to google Feb 26 05:51:30 to toggle metrix on/off Feb 26 05:51:55 you need a variable for the toggle Feb 26 05:52:03 ?? lol Feb 26 05:53:26 the toggle has a model with a value property Feb 26 05:54:04 trueValue: "Yes", falseValue: "No" Feb 26 05:54:26 trueValue: true, falseValue: false is a bit simpler Feb 26 05:54:54 because 1) those are the default values and 2) true/false are boolean and easier to use later Feb 26 05:55:05 ok then what? Feb 26 05:55:10 webos101? Feb 26 05:55:27 you need to save the toggleModel.value property to the cookie Feb 26 05:55:40 and read the toggleModel.value property from the cookie Feb 26 05:56:00 * PatrickC_Pre is trying to figure out how to do that Feb 26 05:56:18 how to save/read a cookie? Feb 26 05:57:01 well, I have the cookie set up, and the if(cookieData =='') working Feb 26 05:57:14 but other then that, I don't know much about cookies Feb 26 05:57:25 I'm gonna check out webos101 for a second Feb 26 05:58:02 and I'm also trying to figure out why my button isn't pushing my scene... Feb 26 05:59:46 ok. just don't look at the Cookie Bakery. Feb 26 05:59:52 is there a better place then webos101? I got confused when looking at their cookie part lol Feb 26 05:59:54 I didnt Feb 26 06:00:09 but I still got confused, like where does the code go Feb 26 06:00:11 http://www.webos101.com/Mojo.Cookie Feb 26 06:00:17 that confuses you? Feb 26 06:00:32 I understand the code, where does it go? Feb 26 06:00:56 like where do I save/retrieve the cookie? where in the setup widget do I put it? Feb 26 06:02:04 the code to read the cookie goes before you setupWidget() because you want to know the state of the toggle before you set it up. Feb 26 06:02:20 the code to save the cookie goes after the toggle value is changed by the user Feb 26 06:02:43 so... Feb 26 06:02:48 read Cookie value Feb 26 06:02:51 setupWidget Feb 26 06:03:39 create handler for Mojo.Event.propertyChange on the toggle Feb 26 06:03:59 in the handler, save the value of the toggleModel.value property in the cookie Feb 26 06:04:35 also, have a default value for in the case of the cookie hasn't been created yet. Feb 26 06:04:58 and, good god, it's past my bed time. Hope that helps. Feb 26 06:05:02 hmm. sounds complicated :p Feb 26 06:05:06 lol nite Feb 26 06:07:56 sugardave, SineOt, wanna help? :) Feb 26 06:12:39 i guess technically you don't need the handler Feb 26 06:12:59 just save the value in the cookie in your scene's deactivate() event Feb 26 06:13:19 ok. well first I need to get this button to work :/ Feb 26 06:13:39 its not working at all... Mojo.Log.Info doesn't log anything when pressed Feb 26 06:13:39 so, webos101 tells you how to read a value from a cookie. Do that before setupWidget() so you know what value to use in the toggle's model Feb 26 06:14:01 ok Feb 26 06:14:06 then in deactivate(), do what webos101 says to save the toggle's value in the cookie Feb 26 06:14:44 does the button have a tap handler? Feb 26 06:15:10 yep Feb 26 06:15:22 Mojo.Event.tap Feb 26 06:15:33 no, that's a tap event Feb 26 06:15:45 you have a "handler" function to handle the tap event Feb 26 06:15:57 which is the function you want called when the button is tapped Feb 26 06:16:01 I had it set to handle and not handel... Feb 26 06:17:29 what do I put instead of "my first cookie"? Feb 26 06:17:45 "my second cookie" ? Feb 26 06:17:52 ok Feb 26 06:17:59 and log gave me an error Feb 26 06:18:13 what value do you want to save in the cookie? Feb 26 06:18:21 "my second cookie" was facetious Feb 26 06:18:36 Mojo.Log.Info will always give an error. Feb 26 06:18:39 Error: Cannot call method 'get' of undefined, line undefined, file undefindd Feb 26 06:18:54 s/undefindd/undefind Feb 26 06:20:07 howdy everyone Feb 26 06:20:32 pastebin Feb 26 06:20:38 hi tibfib Feb 26 06:20:48 hay tibfib Feb 26 06:20:51 hi Tibfib ! Feb 26 06:21:00 whoa, three responses. that must be a record! Feb 26 06:21:02 and pastebin is gonna be kinda hard... I can email you the file Feb 26 06:21:17 no internet on the development computer Feb 26 06:21:34 really? how can you email with no internet? Feb 26 06:21:50 USPS me the file Feb 26 06:21:55 drop the file onto the phone and email it from the phone Feb 26 06:21:58 hey dkirker: I was thinking in the past that someone could make a killing on a good browser. The palm browser is even a webview widget. make a killer ui == win. Feb 26 06:22:02 and I'll tell you what's wrong next week Feb 26 06:22:10 USPS rocks :p Feb 26 06:22:34 Tibfib: you signed up for the Universe beta, right? :D Feb 26 06:22:36 the palm browser is a webview?! lol Feb 26 06:22:40 dkirker: I think so Feb 26 06:22:46 Universe Beta? Feb 26 06:22:59 I'm full of questions tonight lol Feb 26 06:23:13 dkirker: I'd love to give feedback. I want a killer browser. I kinda hate the stock one :) Feb 26 06:23:25 I have to go to sleep. Tibfib will help you get your cookie working. Feb 26 06:23:27 http://www.openmobl.com/universe/ Feb 26 06:23:37 * Tibfib is past coding-ability Feb 26 06:23:42 tibfib, want a cookie? Feb 26 06:23:44 http://www.flickr.com/photos/dkirker/5458062810/ Feb 26 06:23:45 lol Feb 26 06:23:57 nice! Feb 26 06:24:45 dkirker, all it says is "coming soon" Feb 26 06:24:52 how do you sign up? :) Feb 26 06:25:06 and tibfib, how bout that cookie :p Feb 26 06:25:14 beta@openmobl.com Feb 26 06:25:25 ok Feb 26 06:26:20 PatrickC_Pre: okay. I'll help for 5 mins. pastebin your code.. add comments for issues Feb 26 06:26:38 pastebin is a no-go Feb 26 06:26:41 I can email Feb 26 06:26:44 sorry lol Feb 26 06:26:49 arg. Feb 26 06:26:54 tibfib1 at the gmail Feb 26 06:27:17 ok Feb 26 06:28:43 dkirker, signed up Feb 26 06:28:49 got it! Feb 26 06:28:57 awesome! lol Feb 26 06:29:09 I'll process requests this week. need to plan things. Feb 26 06:29:14 fudge balls. there's a media indexer issue on my pre2 Feb 26 06:29:16 I <3 stock besides reloading behavior Feb 26 06:29:27 I don't like the title bar Feb 26 06:32:17 I'm going to have to use the pre Feb 26 06:32:17 1 second Feb 26 06:33:28 would you prefer a .zip of the entire thing and I tell you what's going wrong, or just the file? Feb 26 06:33:51 phew. reset fixed my media issue Feb 26 06:34:27 PatrickC_Pre: file works Feb 26 06:34:50 ok Feb 26 06:36:01 sent Feb 26 06:36:38 what's the issue? Feb 26 06:37:01 it won't display the scene properly, and I keep getting an error Feb 26 06:37:20 Error: Cannot call method 'get' of undefined, line undefined, file undefindd Feb 26 06:37:34 PatrickC_Pre: have you gone thru the javascript tutorials? Feb 26 06:37:40 this is a fairly simple issue. Feb 26 06:37:51 which one? Feb 26 06:38:17 w3schools isn't good, and I haven't found many other decent ones out there... Feb 26 06:38:52 I gave you a link to mozilla's Feb 26 06:38:59 https://developer.mozilla.org/en-US/docs Feb 26 06:39:10 ill take a look Feb 26 06:40:48 sent it back Feb 26 06:40:54 it should work Feb 26 06:41:01 ok Feb 26 06:41:05 thanks Feb 26 06:41:26 I'm off for the night Feb 26 06:41:33 night everyone Feb 26 06:42:30 night Feb 26 06:44:47 tibfib, that, when toggled, is going to change weather or not someone uses metrix, right? Feb 26 06:44:58 or someone else can help me Feb 26 06:52:24 haeffb_: jealous of my awesome bakery? Feb 26 06:57:51 night all Feb 26 06:58:52 good night Feb 26 07:40:03 cool: http://gizmodo.com/#!5770394/the-pewpewpew-game-you-control-by-saying-pewpewpew Feb 26 07:44:20 sugardave: now that's one cool game! Feb 26 07:45:38 yeah, it looks fun :) Feb 26 08:15:58 if a patch is conflicting, how do you know for sure what was previously patched on the files that conflicted? Feb 26 08:16:34 you don't Feb 26 08:16:50 best you can do it look at all the patches you have installed, and see which of them touch that file Feb 26 08:17:05 where are those stored? Feb 26 08:17:34 i'm looking at the postinst files in /media/cryptofs/apps/usr/lib/ipkg/info Feb 26 08:17:40 is there another place? Feb 26 08:18:59 if it helps, the patch is "advanced config for the app launcher" or whatnot, and the file is some firstuse appinfo.json thing Feb 26 08:19:29 yeah, it fails on that stuff Feb 26 08:20:03 it expects it to be one way and its the other Feb 26 08:20:05 visible or not Feb 26 08:20:07 i dont remember Feb 26 08:20:32 so just flip visible? Feb 26 08:20:37 yeah Feb 26 08:20:39 in the json Feb 26 08:20:40 ok Feb 26 08:20:45 i can do that :) Feb 26 08:22:05 sweet thanks, glad it was something so easy Feb 26 08:22:25 np Feb 26 08:23:09 the actual patches are saved on the device for reversing later though, right? Feb 26 08:24:35 i dont know for sure Feb 26 08:24:39 probably Feb 26 08:24:59 i think that's part of how aupt works, but i'm not entirely sure about that Feb 26 08:43:37 moin Feb 26 13:50:51 good morning #webos Feb 26 14:12:11 hi @palm Feb 26 14:45:01 sugardave: something like that... Feb 26 15:00:26 Hi Folks Feb 26 15:00:59 why does "palm-log —device-list" don't see my device? Feb 26 15:01:11 do I have to install something on the device to be able to develop? Feb 26 15:06:05 also why my console.log from a webpage aren't shown when I do Feb 26 15:06:09 palm-log -f com.palm.app.browser Feb 26 15:10:44 palm-log --device-list ? Feb 26 15:10:59 is your device in developer mode? Feb 26 15:10:59 yes Feb 26 15:11:03 not sure Feb 26 15:11:16 my Pre Plus was I think, my Pre 2 might not be Feb 26 15:11:26 go to card view and type webos20090606 Feb 26 15:11:33 ah yeah! Feb 26 15:11:35 forgot that Feb 26 15:12:09 amazing :) Feb 26 15:12:14 "developer mode enabler" :_ Feb 26 15:12:31 ah yeah Feb 26 15:12:33 cool Feb 26 15:12:43 roadrunner-linux Feb 26 15:14:19 and about my second question? :) Feb 26 15:14:30 console.log not being shown Feb 26 15:32:39 is this the place to ask programming questions for mojo ? Feb 26 15:33:05 its one place Feb 26 15:33:15 okay Feb 26 15:34:14 in a 'buttonpres' event I would like to adres a text in div on my scene Feb 26 15:37:44 like change the text in the div? Feb 26 15:38:35 this.controller.get('myDiv').innerHTML = "new text"; //is one way Feb 26 15:39:11 assuming that your buttonpress event handler is bound to the right "this" Feb 26 15:40:32 hi Feb 26 15:40:58 hello! Feb 26 15:40:59 MetaView: did you just get the pre2 or did they mailed you they will send it to you? Feb 26 15:42:25 back Feb 26 15:42:32 sorry I was rebooted :( Feb 26 15:48:48 * haeffb_ not sure about the console.log question. Feb 26 15:48:50 haeffb_, okay and how to to determin the correct bounding ? Feb 26 15:49:09 typically, you set up an event handler something like this... Feb 26 15:49:10 anybody else has an idea about the console.log question? Feb 26 15:49:30 this.myButtonPressHandler = this.myButtonPress.bind(this); Feb 26 15:49:54 this.controller.listen("myButton", Mojo.Event.tap, this.myButtonPressHandler); Feb 26 15:50:33 looks like Palm is balking at sending me two Pre2's in the same month... :) Feb 26 15:50:38 k Feb 26 15:51:00 this.myButtonPress = function (event) { ... }; Feb 26 15:51:44 okay in the button press I do a ajaxrequest Feb 26 15:51:59 ok... Feb 26 15:52:01 can I still adres the this in the 'onSuccess' event ? Feb 26 15:52:04 btw I'm an iOS Dev looking for getting a bit more into webOS - if anybody is willing to help me now in then directly in iChat… I will gladly help in iOS in exchange. To me these are the 2 most elegant solutions currently. Feb 26 15:52:14 yes, but the onSuccess even must also be bound to "this" Feb 26 15:52:19 I'm just trying to figure out how stuff works Feb 26 15:52:30 I'm at http://pomcast.biz and @stuffmc Feb 26 15:52:57 via console.log I know I get at the point where the output should be generated Feb 26 15:53:03 stuffmc: I would just come here if I were you. There are often plenty of people who can help Feb 26 15:53:26 haeffb_: yeah that's why I'm here Feb 26 15:55:00 SimpsonCH: can you pastebin your button press function? Feb 26 15:55:13 haeffb_, http://pastebin.com/XekHkYsv Feb 26 15:55:20 was already in the process of doing that ;) Feb 26 15:55:59 see, "this" in your onSuccess is not the "this" you need it to be. Feb 26 15:56:59 sure, otherwise it worked ;) Feb 26 15:57:12 try this: http://pastebin.com/YgyP5Yu0 Feb 26 15:58:25 ah works :) Feb 26 15:58:36 woo!!!! Feb 26 15:58:44 now i understand this bind stuff all the people were talking about Feb 26 15:59:08 \o/ Feb 26 15:59:23 is there a xslt processor available ? Feb 26 15:59:37 * haeffb_ doesn't even know what xslt is... Feb 26 16:00:17 xslt -> xml stylesheet language template Feb 26 16:03:34 okay this eclipse -> emulator connection rocks Feb 26 16:06:31 niceness, works Feb 26 16:07:01 * haeffb_ backing up files prior to installing Ubuntu... Feb 26 16:07:15 if I want to include some 3rd party javascript libraries are there general rules on where to place them ? Feb 26 16:08:21 not really. I use an app/models directory for most extraneous .js stuff Feb 26 16:08:36 then just include the files in your sources.json Feb 26 16:09:26 okayu Feb 26 16:13:29 hi matts. bye matts Feb 26 16:13:45 re Feb 26 16:13:57 got disconnected Feb 26 16:14:03 anybody know the photo services that will be supported on touchpad? photobucket and ... ? Feb 26 16:14:24 maybe flickr? *assume* Feb 26 16:14:53 * haeffb_ trying to decide where to go with my photos. Feb 26 16:15:00 any pros/cons? Feb 26 16:17:51 if it would be truely done right, a plugin service would do the tricks... Feb 26 16:18:03 In the HelloWorld demo of Dion & Ben they show Palm-log on an app with console.log Feb 26 16:18:10 Should this also work on an app? Feb 26 16:19:13 what do you exactly mean ? Feb 26 16:20:33 stuffmc: should work on an app. may not work in the web browser. Feb 26 16:21:37 I'm working on a web app which worked fine and doesn't anymore for some random reason, would like to see the console.log from it Feb 26 16:22:10 can you test it in chrome or some such? Feb 26 16:22:22 no. chrome has a bug :) Feb 26 16:22:25 it works in Safari Feb 26 16:22:28 and iOS Feb 26 16:22:34 used to work fine on webOS Feb 26 16:23:05 http://code.google.com/p/chromium/issues/detail?id=40344 Feb 26 16:23:08 (FYI) Feb 26 16:23:28 so right now the App isn't working on Chrome or Android, but I'm fine with that, it's a bug on their side :) they're on it. Feb 26 16:40:10 hello Feb 26 17:17:31 sugardave: I got the cookie working, now I just need to figure out how to make it toggle Feb 26 17:18:21 thanks Tibfib :) Feb 26 17:18:23 it worked Feb 26 17:21:15 PatrickC_Pre: when they tap the toggle, an event is probably raised, so create a listener for that event and get the model's value, update the cookie, and save it Feb 26 17:21:32 it's probably propertyChange or something like that Feb 26 17:21:39 I don't know which widget you are using Feb 26 17:21:57 toggle button Feb 26 17:22:43 I'll let you know what I'm using Feb 26 17:22:47 it is propertyChange Feb 26 17:22:49 yeah, it only has the propertyChange event Feb 26 17:22:55 ok Feb 26 17:23:00 wish me luck, going wubi! Feb 26 17:23:07 good luck! Feb 26 17:23:09 bbl. hopefully. Feb 26 17:23:12 haeffb_: bueno suerte! Feb 26 17:24:23 how hard is it to set up sugardave? Feb 26 17:24:41 it's exactly the same as setting up any other listener Feb 26 17:25:02 where can I find the code? Feb 26 17:25:05 webos101? Feb 26 17:25:38 every widget has an example of how to set it up on the dev site: http://developer.palm.com/index.php?option=com_content&view=article&id=1934 Feb 26 17:25:53 in the "Event" section is the example of setting up the listener Feb 26 17:26:07 thanks, I'll take a look Feb 26 17:26:18 it calls this.handleUpdate, but you probably want that to be whatever function you have to check/write the value of the toggle Feb 26 17:27:46 ok Feb 26 17:29:21 that parts set up Feb 26 17:30:23 when the event is fired, your handler will get called and be passed the event object, which should have a model property that is the widget's model. so, you check the value in that model and update/write the cookie in there Feb 26 17:31:08 how do I control what it toggles? Feb 26 17:31:19 what? Feb 26 17:31:33 I want it to toggle data collection on/off Feb 26 17:31:43 okay Feb 26 17:31:57 where does that get set up? Feb 26 17:32:01 stage or scene? Feb 26 17:32:06 that widget is just a state indicator Feb 26 17:32:23 ok Feb 26 17:33:14 not sure how the data collection works, basically you don't want to load/run it if the cookie is false Feb 26 17:33:37 ok. I'll ask the metrix forums Feb 26 17:33:39 so if (cookieValue) { //load/run Metrix} Feb 26 17:33:53 I got my button working :p Feb 26 17:34:09 I had a typo in the code :/ Feb 26 17:34:16 :o Feb 26 17:34:22 that was my shocked face Feb 26 17:34:27 I hate typo's Feb 26 17:34:38 can't webOS understand plane English?! Feb 26 17:34:42 well, it should Feb 26 17:38:05 sugardave, you experienced with novacom? Feb 26 18:39:21 hi, I'm not sure if this is the right place to ask, but I'm installing the metadoctor on OSX 10.6, via terminal Feb 26 18:39:42 and once I get to step 4 (Install git: Feb 26 18:39:42 sudo port install git-core) Feb 26 18:40:01 I get an error message, and cannot move forward Feb 26 18:40:14 Error: Target org.macports.activate returned: Image error: /opt/local/lib/libreadline.5.2.dylib already exists and does not belong to a registered port. Unable to activate port readline. Use 'port -f activate readline' to force the activation. Feb 26 18:40:14 Error: Failed to install readline Feb 26 18:40:15 Log for readline is at: /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_ports_devel_readline/main.log Feb 26 18:40:15 Error: The following dependencies were not installed: python27 readline sqlite3 rsync popt Feb 26 18:40:15 Error: Status 1 encountered during processing. Feb 26 18:40:15 To report a bug, see Feb 26 18:40:16 macintosh:~ Jmarlow$ Feb 26 18:42:46 I don't know anything about OSX...did you try: sudo port -f activate readline Feb 26 18:42:46 ? Feb 26 18:42:48 ooops Feb 26 19:03:23 Is there plan to support VirtualBox 4.0 for the dev env? Feb 26 19:03:31 it's coming Feb 26 19:03:44 thanks Feb 26 19:09:48 Does anyone know how long it usually takes to hear back re: the free phone program? Feb 26 19:10:35 i wouldn't hold my breath Feb 26 19:11:33 * cavneb exhales Feb 26 19:19:58 arrgg.. I can't get .m3u playlists to show up in the media indexer Feb 26 19:20:25 anyone put playlists on their device before? shouldn't it be simple? Feb 26 19:20:54 does ubuntu not auto find wifi networks? Feb 26 19:20:57 it *should* be Feb 26 19:21:22 funkatron: :/ I'd like to add .m3u playlist support to koto.. but they're not showing up in the media indexer Feb 26 19:22:32 I think an RPG where all of the magicks are named after mobile operating system infrastructure quirks would be at the very least moderatly interesting Feb 26 19:22:34 luna RESTART Feb 26 19:22:41 520 DAMAGE Feb 26 19:23:03 lol Feb 26 19:23:06 on a side note I bought koto Feb 26 19:23:13 good man! Feb 26 19:23:27 I think my pre- 2.1.0 is having media indexing issues in general though Feb 26 19:23:40 does it work in teh stock app? Feb 26 19:23:42 is everything in /media/internal supposed to be intact after the metadoctor? Feb 26 19:23:47 stock app's had issues as well Feb 26 19:24:02 ah....found it Feb 26 19:24:06 haeffb_pre: it should find your wireless network, assuming the wireless nic is working Feb 26 19:24:07 one thing is songs that were showing in music on 1.4.5 have all their metadata stripped Feb 26 19:24:10 good Feb 26 19:24:17 torchie: my pre2 has indexing issues, until I restarted it Feb 26 19:24:19 and sometimes when I tap a song in koto it doesn't respond Feb 26 19:24:26 restarted like powercycle? Feb 26 19:24:32 device restart Feb 26 19:24:40 you may have to wipe your usb drive Feb 26 19:24:52 torchie: tap a song? where? what scene? Feb 26 19:24:57 gotta give more info than that Feb 26 19:24:59 where are my Spaz themes you bastrds? Feb 26 19:25:01 alright Feb 26 19:25:01 +a Feb 26 19:25:38 when I do usb drive mode and wipe that that only wipes /media/internal yes? Feb 26 19:25:51 yeah Feb 26 19:25:52 home -> Songs is where it happens Feb 26 19:26:06 oh, I think I know thaat bug. It should be fixed Feb 26 19:26:07 is there an irc client built in? Feb 26 19:26:18 it seems to happen to the songs that got their info stripped Feb 26 19:26:22 torchie: something is screwed up with the "filter" part of the filter list Feb 26 19:26:37 torchie: ah, well that is probably a media indexer issue too Feb 26 19:26:52 haeffb_pre: sudo apt-get install irssi Feb 26 19:27:06 yeah maybe internal being there after the doctor affected the indexing Feb 26 19:27:18 also just luna restarted out of the blue Feb 26 19:27:25 which is sad when all the cards get set up nice :( Feb 26 19:27:52 haeffb_pre: there are probably other irc clients, but I use irssi...you could use synaptic package manager and see what's available Feb 26 19:28:23 device restart Feb 26 19:28:26 I think I've used XChat on ubuntu, haeffb_pre Feb 26 19:28:31 Do not remove battery :o Feb 26 19:28:41 I thought at one point ubuntu came with an irc client built in? Feb 26 19:28:44 don't remember which Feb 26 19:28:48 I think I ha e to wait until update manager is done Feb 26 19:28:50 but it was a gui one Feb 26 19:29:08 haeffb_pre: yeah, only one instance of the package manager at a time Feb 26 19:29:34 lame Feb 26 19:29:52 it's not done yet? Feb 26 19:30:02 close to done Feb 26 19:30:20 I was on a slow connect until I found the wifi Feb 26 19:31:05 seems cool so far Feb 26 19:31:18 hmmm. why won't my playlists show up. Feb 26 19:31:32 Ubuntu is pretty nice Feb 26 19:31:34 haeffb_pre: watch the game? :) Feb 26 19:32:14 blah Feb 26 19:32:36 I destroyed one Pre- so far Feb 26 19:32:55 the good or bad one? Feb 26 19:33:02 can I access my win7 filesystem ? Feb 26 19:33:06 bad one Feb 26 19:33:11 yes Feb 26 19:33:20 haeffb_pre: should be able to Feb 26 19:33:24 might have to mount it Feb 26 19:33:49 hah I just scrolled to the bottom of the music list Feb 26 19:33:51 ah there it is Feb 26 19:34:11 sorted by japanese katakana character Feb 26 19:34:20 alright so what's the best way to go about doing this wipe Feb 26 19:34:38 torchie: go to device info and do usb wipe Feb 26 19:34:44 oh that works Feb 26 19:34:53 I was about to do something a lot stupider Feb 26 19:35:59 and maybe I should eject before disconnecting Feb 26 19:36:13 the usb symbol is transparently overlaid on the whole UI :o Feb 26 19:38:34 MY PERSONAL FIIIIIIIILLLLLESSS Feb 26 19:38:50 Folks, is "Exhibition Mode" something already working? Feb 26 19:39:10 not sure how to "activate" it on my pre2… or which apps have it implemented Feb 26 19:40:33 sort of? Feb 26 19:40:46 I got agenda and time views when I put my pre- on the touchstone Feb 26 19:40:54 but when I press the start exhibition button nothing happens Feb 26 19:40:55 isn't implemented on a Pre2 Feb 26 19:41:09 it's only in 2.1 Feb 26 19:41:19 it is in 2.1 :) Feb 26 19:41:22 it's pretty Feb 26 19:41:34 yes, but the Pre2 has only 2.0.1 Feb 26 19:43:56 ah ok Feb 26 19:43:59 sigh Feb 26 19:44:11 can we install 2.1 on the pre? what's the status of 2.1? Feb 26 19:44:21 alive and well Feb 26 19:47:47 stuffmc: Yes, we can: http://www.webos-internals.org/wiki/WebOS_2_Upgrade Feb 26 19:50:28 I have a Pre 2 so I guess I don't need this guide. Do I? Feb 26 19:50:48 I think what's released is for Pre+ devices Feb 26 19:50:52 so I wouldn't do it Feb 26 19:50:59 * funkatron also has a Pre2 Feb 26 19:51:15 * sugardave keeps his Pre 2 at 2.0.1 for now. Feb 26 19:51:25 it's a haeffb Feb 26 19:51:29 * Tibfib too Feb 26 19:51:41 haeffb: recovered from the game? :) Feb 26 19:51:48 woohoo! Feb 26 19:51:53 game: boo! Feb 26 19:51:59 ubuntu: woohoo! Feb 26 19:52:27 wonder if I can import my xchat settings from Win... ? Feb 26 19:52:38 you guys are all wrong colors right now Feb 26 19:52:56 * Tibfib hopes for teal Feb 26 19:54:35 blue. sorry. Feb 26 19:57:52 where's my apps installed to? Feb 26 20:05:36 dangit Feb 26 20:06:59 what color am I? Feb 26 20:07:38 for me you are red Feb 26 20:08:24 everybody is blue! Feb 26 20:08:26 brb Feb 26 20:08:48 blue and red :) Feb 26 20:12:13 oops Feb 26 20:12:17 wrong channel Feb 26 20:15:08 dude markus persson sold 1.4 million copies of minecraft Feb 26 20:15:14 unbelievable Feb 26 20:17:06 joetweeply: is there version for linux? Feb 26 20:17:13 it's java... so yeah Feb 26 20:17:54 brb Feb 26 20:18:47 that should do it for xchat config Feb 26 20:18:58 * haeffb looks like me again Feb 26 20:19:07 really? Feb 26 20:19:14 you are a bit blurry Feb 26 20:19:39 just a bit. Feb 26 20:19:49 it'll take a while for me to come into focus again. Feb 26 20:19:56 ;) Feb 26 20:20:15 so, I was able to remove the comms board from Pre- 1, but putting it back together was challenging. Feb 26 20:20:52 cool Feb 26 20:21:02 did you swaped it? Feb 26 20:21:42 no, I was just practicing first Feb 26 20:22:20 but the volume rocker came out and I can't get it back in. Feb 26 20:22:28 and can't get the keyboard bezel back into place. Feb 26 20:22:37 minecraft Feb 26 20:22:39 mad bank Feb 26 20:23:25 totally crazy Feb 26 20:24:50 linux command to add a line to an existing text file? Feb 26 20:25:36 I'm wondering if the actual desktop minecraft client will run on my 06 macbook Feb 26 20:25:36 >> filename Feb 26 20:25:49 if you use > it'll replace the entire file Feb 26 20:25:57 but >> will add to the end Feb 26 20:26:17 MetaView, is the line coming from another file or the command line? Feb 26 20:26:23 echo "this is a test" >> /usr/file Feb 26 20:26:28 the line is fixed Feb 26 20:26:58 I want to add something to the jail file to make Terminus working again Feb 26 20:27:23 well rwhitby told me what to do, but I guess he assumes I know linux... Feb 26 20:27:55 RagingMind: how to add the linefeed? Feb 26 20:28:39 maybe /n Feb 26 20:28:42 *shrugs* Feb 26 20:44:31 torchie: have you used the "album art scroller" in koto? Feb 26 20:44:41 has anyone? just need feedback? Feb 26 20:47:41 http://developer.palm.com/index.php?option=com_content&view=article&layout=page&id=1585&Itemid=55 Feb 26 20:47:47 can't get step 1.1 to work Feb 26 20:47:54 "deb" is an unrecognized command Feb 26 20:48:06 lol Feb 26 20:48:22 * haeffb is new to ubuntu! Feb 26 20:48:30 * Tibfib is to Feb 26 20:48:42 haeffb: hmm, deb should be recognized Feb 26 20:49:03 can i make my own wiki page on webos-internals.org? Feb 26 20:49:20 haeffb: er, nevermind Feb 26 20:49:23 dumbledore: depends Feb 26 20:49:29 you need to add that line to /etc/apt/sources.list Feb 26 20:49:35 ah. Feb 26 20:49:39 Tibfib: on? Feb 26 20:49:49 dumbledore: if there is a reason to... Feb 26 20:50:07 its a write up for those having trouble getting their contacts back onto their 2.1 profile Feb 26 20:50:22 2.1 wont read 1.4.5's db3 Feb 26 20:50:35 that'd be good! (although I have no authority :)) Feb 26 20:50:39 lol Feb 26 20:50:41 ask in #webos-internals Feb 26 20:50:45 ok Feb 26 20:50:48 isn't it a wiki? Feb 26 20:51:06 yep Feb 26 20:51:16 ask where to put it Feb 26 20:51:26 ok Feb 26 20:51:30 that brings up a Software Sources app... Feb 26 20:51:51 haeffb: what did you do? Feb 26 20:52:07 double-click. Feb 26 20:52:13 now open in text editor Feb 26 20:52:18 just add the line anywhere? Feb 26 20:52:25 I'd put it at the end Feb 26 20:52:34 but shouldn't matter Feb 26 20:54:39 won't let me edit the damn thing. Feb 26 20:54:42 sigh. Feb 26 20:55:09 no problem Feb 26 20:55:18 haeffb: open a command prompt and type this: Feb 26 20:55:29 sudo gedit /etc/apt/sources.list Feb 26 20:55:38 and then enter your password when prompted Feb 26 20:55:44 should be able to write to it Feb 26 20:57:30 got it. thanks! Feb 26 21:00:27 btw what SDK is based on ubuntu? Feb 26 21:00:30 eclipse? Feb 26 21:05:08 hay Feb 26 21:06:15 virtualbox install looks stuck Feb 26 21:06:35 46% [1 virtualbox-3.2 18.7MB/48.9MB 38%] Feb 26 21:06:43 just staying there Feb 26 21:07:29 anyone here familiar with audio in ares? Feb 26 21:08:26 I am using the audio widget, and can't seem to get it to play a second mp3 file Feb 26 21:08:32 NCZman, I am Feb 26 21:09:18 have you used google? Feb 26 21:09:23 I am working on trying to update my soundboard for pre2, so I switched to the ares audio module Feb 26 21:09:36 me waves hello Feb 26 21:09:40 you switched to ares? Feb 26 21:09:48 * PatrickC_Pre waves hello back Feb 26 21:10:03 no have been using ares, but switched to the audio widget Feb 26 21:10:17 what were you using? Feb 26 21:10:26 html5 Feb 26 21:10:33 why did you switch? Feb 26 21:10:45 but for some reason html 5 was not working on the pre2's Feb 26 21:10:54 google? Feb 26 21:10:55 hmm it should Feb 26 21:11:01 NCZman: I use html5 in my music player Feb 26 21:11:01 I can talk you through later Feb 26 21:11:09 was not able to find anything in google Feb 26 21:11:10 or Tibfib can talk you through now :) Feb 26 21:11:20 hah. busy working on koto Feb 26 21:11:27 koto rocks Feb 26 21:11:28 but, it should work.. but if ares does it too.. might as well Feb 26 21:11:56 tibfib got my app working :) Feb 26 21:12:11 how do you clear the audio widget to get it to play a second mp3? Feb 26 21:12:23 bbl Feb 26 21:12:26 not a lot of peeps know ares here Feb 26 21:12:51 yea, not a lot of documentation on it either Feb 26 21:14:10 so the html5 works with pre2? Feb 26 21:14:48 hmmm.... Pre- 1 is booting. Feb 26 21:15:44 maybe I did get it put back together correctly Feb 26 21:16:13 sweet Feb 26 21:16:26 so, what do I do to get this virtual-box install working again? Feb 26 21:16:31 stop terminal and try again? Feb 26 21:16:58 how were you installing it? Feb 26 21:17:15 i broke the vibrator on my pre Feb 26 21:17:23 that sounded so wrong, but i did Feb 26 21:17:25 sudo apt-get install virtualbox-3.2 Feb 26 21:17:40 haeffb: yeah, ctrl-c, then try it again Feb 26 21:17:41 then it just stopped at 38% download and is doing nothing Feb 26 21:18:10 woo! that got it picked up again Feb 26 21:21:03 complaining? Feb 26 21:21:07 ;) Feb 26 21:23:51 * halfhalo has played with pre3 Feb 26 21:23:55 whaa? Feb 26 21:24:16 only hardware, no software Feb 26 21:24:16 hey guys... can someone point me to a good article explaining buttons. kinda generic question.... I've got a HTML5