**** BEGIN LOGGING AT Tue Mar 20 02:59:59 2012 Mar 20 03:00:44 is there a convenient way to disable Over Scroll in enyo Scrollers? Mar 20 03:03:16 it looks like in 1.0 I'll have to go all the way back to DragScroller and modify dragHandler, but would like to avoid that ... Mar 20 03:05:15 oh, was asking in #enyojs about trying to disable Over Scroll in Scrollers Mar 20 03:20:26 Over scroll? Mar 20 03:20:57 when you pull a scroller down .. it exposes some of the page behind the scrolled section. Mar 20 03:21:22 in my case I'd like to lock the scroller so it cant be pulled beyond the top or bottom. Mar 20 03:21:48 Ah, because of the "kinetic scrolling" Mar 20 03:21:59 How it can bounce past a border, you mean. Mar 20 03:22:57 You're using enyo 1.0? Mar 20 03:23:07 you can play with some of the settings on the scroll strategy that's in the scroller Mar 20 03:23:09 yes Mar 20 03:23:31 I messed around with a few and got it where (mostly) you couldn't get it to overscroll Mar 20 03:24:34 i wonder if I can also check for isOverScroll in the dragHandler of DragScroller.js and just .. dont drag. Mar 20 03:25:08 though both methods mean I need to dig down thru a couple kinds and replace the internals ... :/ Mar 20 03:25:22 feels icky Mar 20 03:25:50 well, you can cheat and just modify the scroller.$.scroll directly....trying to find my example code Mar 20 03:26:00 hm Mar 20 03:27:09 this.$.scroller.$.scroll.kSpringDamping = 0.0; Mar 20 03:27:09 this.$.scroller.$.scroll.kDragDamping = 0.0; Mar 20 03:27:10 this.$.scroller.$.scroll.kFrictionDamping = 0.0; Mar 20 03:27:19 ah. Mar 20 03:27:21 You could also probably create a new ScrollStrategy kind. Mar 20 03:28:21 or modify the one that gets created like sugardave did Mar 20 03:28:25 rwatkins: play around with those, I think these were the ones I had where the scroller would not go beyond the boundaries...well, it would, but very little Mar 20 03:29:14 thx Mar 20 03:29:45 it was actually in a virtualcarousel, but should work for anything that uses scrollstrategy Mar 20 03:30:22 ya. using it on a SnapScroller Mar 20 03:30:59 want the user to be able to swipe between two views, but overscroll there seems wrong. Mar 20 03:31:25 si Mar 20 03:32:07 looks like i just need kDragDamping. will see when I get this on a touch interface. Mar 20 03:32:41 works. thx! Mar 20 03:32:56 awesome Mar 20 03:33:29 so in Chrome, I think it works perfectly....on a TouchPad you can make it go past, but only a few pixels, iirc Mar 20 03:33:58 ya, these are only for a prototype - going to be shown in Chrome and maybe Android later. Mar 20 03:34:50 built 4 different mobile app prototypes in Enyo for work the last couple months. Been great to rapidly test UI. Mar 20 03:34:57 nice :) Mar 20 03:35:31 unfortunately apps will all be native when built for real, and the prototypes are intenral only. :/ but still alot of fun. able to write Enyo for my day job now. :) Mar 20 03:37:25 yes, I love hearing that. Need MOAR Enyo developers Mar 20 03:37:46 to eat! Mar 20 03:38:06 yummy, yummy developers Mar 20 03:38:29 puts food on my table now. :) Mar 20 03:38:33 webOS DevRel: To Serve Developers Mar 20 03:38:40 (it's a cookbook!) Mar 20 03:39:33 course i did so by selling my soul to the devil. i now work for ATT, Verizon and TMobile. Mar 20 03:39:44 ... Mar 20 03:39:57 you get 3 paychecks? :) Mar 20 03:40:06 that'd be nice! Mar 20 03:40:38 paywithisis.com - joint venture of the three for mobile wallet. Mar 20 03:40:54 ah, nifty...hadn't heard of that before Mar 20 03:40:57 Nice Mar 20 03:41:27 hey, I'm in an Isis-ready city Mar 20 03:41:36 indeed. Mar 20 03:42:10 demo'ed at SXSW last week. You're the first of two cities for the initial release. Mar 20 03:43:42 when is the Pre3 version coming out? Mar 20 03:43:55 when the Pre3 comes out? Mar 20 03:43:59 heh Mar 20 03:44:08 I think it lacks the NFC stuff Mar 20 03:44:42 ya, I think TTS was not technically NFC Mar 20 03:45:50 should be in a large chunk of phones coming out, fairly cheap for handset manufactures to add. Mar 20 03:48:23 looks cool Mar 20 03:49:42 hopefully we can do it better than google wallet. hard to gauge when NFC is really going to take off here. Mar 20 04:09:39 neat stuff Mar 20 10:17:10 hello, i am new to enyo, i am trying to make the pirate pig sample app running on the palm pre3 emulator, but i cannot even make it working on web browser yet. safari complains not finding extra/utils/job.js, neither canvas-depends.js Mar 20 10:17:24 does anyone know where these script included? Mar 20 10:37:39 what's in your lib directory? Mar 20 10:38:52 did you download enyo 2 beta2? Mar 20 10:39:04 it should include the canvas library in the lib directory Mar 20 10:57:09 no,i am using the enyo 1.0, i think **** BEGIN LOGGING AT Tue Mar 20 12:29:04 2012 Mar 20 19:36:52 So is there an easy way to include a CGI script into enyo? Mar 20 19:38:45 to consume one you mean? Mar 20 19:40:15 Yes Mar 20 19:40:41 you could call it via ajax Mar 20 19:40:54 if it's remote on a server Mar 20 19:47:23 Awesome, Ajax just might work, now if I could call it locally Mar 20 19:47:54 what are you trying to do? Mar 20 19:51:49 My work is considering re-doing our intranet as it looks like it's from the 80's.... Problem is, the 'web developer' who built it used a bunch of Perl scripts for things like, the end user's PC name and IP address, and a whole slew of other items that eve Mar 20 19:51:49 ryone is absolutely convinced they can't live without Mar 20 19:52:31 So I was just gonna whip up a quick example using Enyo but wanted to make sure I could still run their original scripts Mar 20 19:53:05 ah, we're not talking about mobile apps, we're talking about websites Mar 20 19:53:28 you want to make a new front end using enyo on top of the old perl scripts? Mar 20 19:53:38 You can't run the perl scripts directly in enyo but you can use it to make AJAX requests to a web server that runs those scripts. Mar 20 19:53:47 right Mar 20 19:54:00 since the website will be hosted on the same server i assume Mar 20 19:54:18 that'd be pretty nifty Mar 20 19:54:46 Yes, exactly, it looks like most of the simply find the values and then creates an HTML div and throws em in there Mar 20 19:55:37 Sorry, it prints the html output back to the page Mar 20 19:57:53 To give you an idea, the 'web developer' was using lotus notes to design this site and it hasn't been touched in at least 10 years... Mar 20 19:58:17 then you'll need some beer to get it done Mar 20 19:58:35 I think he'll need something stronger than beer Mar 20 19:58:46 Lol no kidding Mar 20 19:58:57 could't you just replace those scripts Mar 20 19:59:01 ? Mar 20 19:59:22 I could, but was just gonna throw something together real quick to demo it Mar 20 19:59:35 In fact, I probably would, Ajax does work for this Mar 20 19:59:44 i see Mar 20 19:59:49 but you will eventually go rework those perl scripts, yes? (for sanity's sake) Mar 20 20:00:05 At the very least I would update the scripts to return an XML or JSON document Mar 20 20:00:19 You can probably make it work without doing so, but it just isn't worth the headache Mar 20 20:00:25 good point Mar 20 20:00:46 Absolutely, time-permitting, scripting/web development is not my main function here unfortunately Mar 20 20:02:15 This is one of those organizations that says 'oh you know how to do this, here have a pile of work, we know its not in your job title but oh well' Mar 20 20:03:09 lol Mar 20 20:03:36 gotta love that :-/ Mar 20 20:03:54 I suddenly feel like having a drink Mar 20 20:24:51 My goodness, this whole server needs rebuilt not just the site.... Good ol' windows server 2000.... Mar 20 20:25:15 ouch Mar 20 20:25:17 throw it out Mar 20 20:26:07 Yeah... Thank goodness it's only our intranet.... Mar 20 20:27:13 perl on windows server 2000? Mar 20 20:28:07 Oh yeah Mar 20 20:29:18 kill it with fire Mar 20 20:29:46 I just fought with our IT director to replace all the old windows 2000 machines, finally got my point across after we got hit with conficker Mar 20 20:30:08 This place is so far behind its a joke, especially for how large of a company it is Mar 20 20:30:23 large organizations rarely move quickly Mar 20 20:30:43 Especially not in healthcare.... Mar 20 20:33:55 Or when they are moving backwards... then they seem to be very capable of moving quickly. Mar 20 20:34:39 "submit the paper forms in triplicate, please" Mar 20 20:35:41 print out this pdf, fill out and sign and then send via snail mail Mar 20 20:37:47 Yeah no kidding, and then when it gets lost, go here to reset your account and re-print the forms so they can be mailed again.... Mar 20 20:42:09 fun fact: Cal State Northridge is one of the few places with an almost completely up to date infrastructure. Pretty good for a govn't shop Mar 20 21:11:15 sounds like a hell of a lot of fun Mar 20 21:11:22 field day! Mar 20 21:24:03 Lol **** ENDING LOGGING AT Wed Mar 21 02:59:58 2012