**** BEGIN LOGGING AT Sat May 26 02:59:58 2012 May 26 03:01:46 So,I added a create to my Slides.Slide with an enyo.log and an inherited, it never hits the enyo.log May 26 03:10:17 awesome. May 26 03:10:33 wait May 26 03:10:35 not awesome May 26 03:10:50 Right May 26 03:11:17 I'm thinking I should just make the node backend emulate the package.js structure dynamically May 26 03:11:25 and do proper enyo.kind'ing and stuff May 26 03:11:39 but this is nicer, and i feel it should work May 26 03:12:09 so you see component in addslide May 26 03:12:41 right .. ? you see the addslide logs May 26 03:12:55 if you put a log after var instance, do you see that? i'd guess not May 26 03:13:22 It dies in creating the SlidesPane, it never hits any addSlide calls May 26 03:13:39 ah May 26 03:14:13 without the components[] in the SlidesPane kind initialization, it hits that though May 26 03:14:26 do you see the incrementor and if you put something in create in slidees.slide do you see that log May 26 03:16:58 Yes and yes May 26 03:18:54 ok May 26 03:18:57 I think I've got something May 26 03:19:31 If I enyo.kind my slides, I can then create a component using this.createComponent({kind: slidename}); May 26 03:19:41 it sounds like it doesn't know where to put which components May 26 03:20:01 probably when you specify components: inline, it overwrites any components you put in the file May 26 03:20:13 Yeah May 26 03:20:49 but you don't have components in the slidespane, though May 26 03:21:47 oh wow, really? so May 26 03:21:55 like component = enyo.kind({}); May 26 03:22:18 controlParentName ? May 26 03:22:34 my XHR'd request is now something like "enyo.kind({kind:"Slides.Slide", name: "Slide1" ...})" May 26 03:23:21 and when am in main.setViewTypes() I do a slidesPane.createComponent{{kind:"Slide1"}); May 26 03:25:03 when you do (for i in x ) doesn't that overwrite the global variable i opposed to creating a private variable May 26 03:25:32 nitpick anyways May 26 03:26:31 enyo.map -- i've still never used it May 26 03:27:49 bah i see May 26 03:27:59 what a great control May 26 03:29:13 might i ask what the purpose of the parens are : eval( "(" + inResponse + ")") May 26 03:31:38 it should, yes May 26 03:31:53 fxspec06: chrom doesn't eval a hash properly with the parens May 26 03:31:56 without the parens* May 26 03:32:04 if i'm using enyo.kind(), I'll remove them May 26 03:32:50 hmmmmm interesting. i think that could have helped me in past May 26 03:32:59 anyways, so what's not working May 26 03:33:19 addSlide() ? May 26 03:34:14 have you tried using this.createComponents() instead of component? i'm not entirely sure the difference.. May 26 03:36:43 I've got it working now May 26 03:36:52 the enyo.kind()'ing worked May 26 03:37:32 cool May 26 03:37:56 fxspec06: Thanks for bouncing ideas and helping :) May 26 03:38:17 My friend and I are giving a presentation at the local mobile developer group about Enyo and using this for our presentation May 26 03:38:49 that's cool May 26 03:38:54 have fun May 26 03:38:58 Thanks :) May 26 03:39:01 prob b the hit of the show May 26 03:39:11 That's what we're hoping May 26 03:39:38 We're also considering turning it in to a service, where you just upload enyo.kind's or html and it creates a slideShow out of them May 26 03:58:00 i wish you could put vertical scrollers inside a big horizontal scroller May 26 03:58:11 touch scroll strategy doesn't play nicely with that May 26 03:58:25 probably my horrible code May 26 04:03:16 I could see how touchscroll could get confused by that May 26 04:19:28 damn, colorpicker in gallery rocks.. May 26 04:19:42 thank goodness too b'c mine only had 8 colors May 26 04:20:41 ya touchscroll. i had to put my own scroll buttons, which is horrible solution but for what i'm using it for, it kinda needs it May 26 04:38:03 * rrix just finished doing the last month's laundry May 26 04:38:10 now my bed is covered in a 3foot pile of clothes May 26 04:38:12 that I have to fold May 26 04:41:13 lmao May 26 04:41:18 i hate that morethan anything May 26 04:41:30 folding laundry. idk why. it's like, my least favorite thing to do May 26 04:41:53 wow list has a performOnRow May 26 04:42:13 * fxspec06 needs to read the files more often May 26 04:43:04 I thought we were going to live in a future with auto folding clothes May 26 04:43:08 :\ May 26 04:44:56 was it you i tweeted tat to May 26 04:46:41 I don't think we tweeter at eachother May 26 04:47:00 * rrix is @rrrrrrrix on the tweetsphere May 26 04:47:37 lol well i saisd that to someone earlier. not today May 26 04:48:51 I say those sorts of things a lot, I'm kind of a dirty futurist like that May 26 04:49:59 I'm still in awe that I can tell the internet I want food and it shows up at my house May 26 04:55:46 lol May 26 04:56:18 ist here a enyo 2 alert box May 26 04:56:19 generic May 26 04:57:20 there's onyx.popup May 26 04:57:40 coudl wrap that in an alert kind and put it on the gallery ;) May 26 04:57:49 lol May 26 04:57:54 that's if i feel ambitious May 26 04:58:07 There are other feelings? ;) May 26 05:07:25 can you make a dynamic kind like: May 26 05:07:39 var alert = new alert("something"); May 26 05:07:52 adn have the "something" be a param to access May 26 05:07:58 then call alert.show() May 26 05:08:07 otherwise you'd have more to write May 26 05:08:11 hmmm May 26 05:08:22 like another word or two, but still May 26 05:08:54 what about {kind: "alertKind", alertContent: "foo"} that defaults to hidden in your components block then just a method: May 26 05:09:05 this.$.alertKind.show("FUUUuUU"); May 26 05:09:27 and then have it emit an event based on the output May 26 05:09:37 that's the most javascripty/enyoy way I can think to do that May 26 05:10:17 well ya i am doing that now, i just didn't know if enyo did it that way May 26 05:10:46 i think it does.. let me see May 26 05:10:51 yeah May 26 05:10:54 for popup, at least May 26 05:11:21 you would just create a show(text) method in the alertKind that set a div's content then called this.show(); May 26 05:11:22 var alert = new alert(); alert.setMessage("stuff"); alert.show(); May 26 05:11:31 huh May 26 05:11:38 Is that an enyo-ism or a js-ism? May 26 05:11:44 that's enyo-ism i believe May 26 05:11:47 let's try it h.o May 26 05:11:47 Wow, nice May 26 05:12:30 chrom doesn't like it May 26 05:13:20 nope May 26 05:13:28 Shoot, I didn't know this was a thing that happened http://developer.palm.com/blog/2011/10/app-hack-popup-apps-26-oct-1-nov/ May 26 05:13:46 lol May 26 05:18:35 you know May 26 05:23:15 I do May 26 05:26:42 i trued creating the component in an external normal JS function. couldn't get to work May 26 05:26:45 but it still should May 26 05:28:52 heh May 26 05:29:02 woah May 26 05:29:04 sound slike the same hell i just spent my last week in ;) May 26 05:29:13 woah woah May 26 05:29:27 woah? May 26 05:29:41 EricBlade-Syn: Are you going to ever let us play with your toys ? :P May 26 05:30:22 well right now this toy has a big box at the bottom that says "Messages can no longer be sent or received in this conversation." May 26 05:30:58 woah woah May 26 05:31:02 i got got got got it May 26 05:31:14 to work and it's super duper awesome May 26 05:31:26 rrix: wanna try it out? haha May 26 05:31:30 alls you do is this: May 26 05:31:44 alert( this, "some message" ); May 26 05:33:25 the chatthreader service is a poop May 26 05:35:51 fxspec06: How'd you do that? May 26 05:36:03 EricBlade: haha, nice. chatthreader does suck :\ May 26 05:36:16 * rrix was mostly kidding I odn't have time to give more projects proper hacking :\ May 26 05:36:43 rrix: if you have any insights as to it's internals, that'd be awesome May 26 05:36:45 hold on May 26 05:36:48 how do you create a node May 26 05:38:13 i got this May 26 05:38:22 how? because, i am genius May 26 05:38:24 (not really) May 26 05:38:32 i'll paste in a min May 26 05:38:48 EricBlade: I have very none insights lol May 26 05:39:02 just that it Messages can no longer be sent far too often for my sms contacts May 26 05:39:11 wow I can't word tonight May 26 05:39:23 lol .. my gf uses "word" and "verb" and "noun" as verbs May 26 05:39:51 "verbing weirds language," in the words of Calvin of Calvin in Hobbes May 26 05:39:56 now how the hell did it reconnect me to all my formerly open channels? May 26 05:40:00 I quite enjoy language hacks May 26 05:41:17 give me a width / height May 26 05:41:24 i think 400 / 300 is slightly too large May 26 05:41:37 this is pretty May 26 05:45:57 http://pastebin.com/McrPb0Tr May 26 05:47:04 i'll have to add a couple params May 26 05:47:34 but hey, it's pretty and it's stupid easy May 26 05:48:32 and you get the entire object back, so you can still manipulate after May 26 05:55:41 fxspec06: Very nice May 26 06:01:28 rrix: you get that message on SMS ? May 26 06:07:18 EricBlade: wat May 26 06:07:31 oh yes May 26 06:07:32 every so often May 26 06:07:41 mostly for contacts that I sms often May 26 06:07:48 i was under the impression that only happened with group chats May 26 06:07:59 the account_id gets deleted somehow so it can't associate the chat with a transport May 26 07:04:19 Maybe I'm here now May 26 07:54:04 http://pastebin.com/iNEZm8Jk May 26 07:54:14 i'm tired. i think it may be time for bed May 26 16:33:21 i want to add an onchange event to a file upload. how do i do that? May 26 17:26:42 Hello everyone May 26 19:07:04 yay gvoice for android just hit 100 users! May 26 19:10:42 you have four times more users than i have on android May 26 19:10:52 * fxspec06 pathetic !! May 26 19:11:57 i'll probably lose 20 users tomorrow just because May 26 19:12:07 =( May 26 19:12:24 i've had just about as many sales cancelled as i have sales, i think May 26 19:12:48 all other platforms have at least five times more than android May 26 19:12:54 yeah i've got about 200 purchases May 26 19:13:01 100 people who still have it installed May 26 19:13:21 and about 150 people who've bought it and refunded it. well, 130 if you exclude the guy that bought and refunded it 20 times May 26 19:13:30 =O May 26 19:13:47 really May 26 19:14:11 i have to wonder if he was trying to get it to work through some problem, or if he was just buying it to check his messages, then refunding lol May 26 19:23:34 meh May 26 19:23:44 isn't the official google voice app free ? May 26 19:24:03 yea May 26 20:54:38 * EricBlade-Syn yawns mightily May 26 21:34:55 i want examples of enyo.JsonpRequest i can't find how to supply parameters, neither post nor get parameters May 26 21:35:01 or an api May 26 21:35:05 an api would be better even May 26 21:58:05 madnificent: I haven't done any jsonp stuff yet, but the project I'm currently working on will likely use it. I am waiting for some code from the back-end guy May 26 21:58:22 so in a few days I might be better equipped to answer that question May 26 21:58:57 sugardave: ah, i need it now. i'm in a meeting and am patching things up May 26 21:59:12 going to try FlyJSONp instead, at least it has a description May 26 21:59:19 oh no, well....yeah May 26 22:02:15 thanks though! it's nice to get an answer :) May 26 22:31:27 I think there were several examples of that on the forums mad May 26 22:32:08 are the forums closed for google and duckduckgo? May 26 22:32:21 Wha? May 26 22:39:47 i should check myself in a few seconds May 27 00:42:13 i ended up using a different library for it, as i couldn't get it running May 27 01:21:53 wait, no! i'm mistaken. i tried another library, then reformed it so i don't need the cross-domain requests anymore May 27 01:36:07 what library **** ENDING LOGGING AT Sun May 27 02:59:59 2012