*** tpb has joined #melange | 00:00 | |
*** asmeurer__ has joined #melange | 00:02 | |
*** variable has joined #melange | 00:43 | |
*** kdh-1334 has quit IRC | 00:59 | |
*** kdh-1334_ has quit IRC | 00:59 | |
*** kdh-1334 has joined #melange | 01:01 | |
*** kdh-1334 has quit IRC | 01:05 | |
*** Fuuzetsu` is now known as Fuuzetsu | 01:25 | |
*** madrazr has quit IRC | 02:03 | |
*** madrazr has joined #melange | 02:29 | |
*** ChanServ sets mode: +o madrazr | 02:29 | |
*** vijay13 has quit IRC | 02:46 | |
*** asmeurer__ has quit IRC | 03:00 | |
*** robbyoconnor has joined #melange | 03:04 | |
*** joshwambua has quit IRC | 03:05 | |
*** kdh-1334_ has joined #melange | 03:07 | |
*** kdh-1334 has joined #melange | 03:07 | |
*** Niharika has joined #melange | 03:34 | |
*** robbyoconnor has quit IRC | 03:50 | |
*** robbyoconnor has joined #melange | 03:52 | |
*** sidthekid has joined #melange | 04:00 | |
*** asmeurer__ has joined #melange | 04:29 | |
*** Gentlecat has joined #melange | 04:36 | |
*** joshwambua has joined #melange | 04:37 | |
*** joshwambua has joined #melange | 04:37 | |
*** asmeurer__ has quit IRC | 04:44 | |
*** vijay13 has joined #melange | 05:32 | |
*** robbyoconnor has quit IRC | 05:44 | |
*** robbyoconnor has joined #melange | 05:45 | |
*** jasvir has joined #melange | 05:48 | |
*** jasvir has quit IRC | 05:51 | |
*** joshwambua has quit IRC | 05:53 | |
*** jasvir has joined #melange | 05:53 | |
*** robbyoconnor has quit IRC | 05:56 | |
*** robbyoconnor has joined #melange | 05:57 | |
jasvir | madrazr: ping | 06:03 |
---|---|---|
madrazr | jasvir: pong | 06:03 |
*** joshwambua has joined #melange | 06:04 | |
*** joshwambua has joined #melange | 06:04 | |
jasvir | madrazr: I am trying to register myself in GCI at my testing instance but on submit form at gci/profile/org_admin/google/gci2013, it shows error "" | 06:05 |
jasvir | This page is inaccessible because you do not have a profile in the program at this time. | 06:05 |
jasvir | madrazr: I have to make profile at GSoC first? | 06:06 |
madrazr | what are you doing with GCI? | 06:08 |
madrazr | I have told you before that GCI might be broken | 06:08 |
jasvir | madrazr: Actually I want to implement in my college event. | 06:10 |
jasvir | madrazr: We have to give tasks to various students. | 06:10 |
*** joshwambua has quit IRC | 06:10 | |
madrazr | jasvir: you have lots of work to do then | 06:11 |
madrazr | to get GCI up and running | 06:11 |
jasvir | madrazr: Ohk. I prefer to drop this idea :P | 06:12 |
*** suranga has quit IRC | 06:15 | |
madrazr | jasvir: :P | 06:21 |
jasvir | madrazr: Can we continue our discussion now? | 06:23 |
madrazr | jasvir: sure | 06:23 |
jasvir | madrazr: I guess garlic using seperate JS of defining localstorage | 06:26 |
*** Gentlecat has quit IRC | 06:26 | |
jasvir | madrazr: https://github.com/mattpowell/localstorageshim/blob/master/localstorageshim.js | 06:26 |
tpb | Title: localstorageshim/localstorageshim.js at master · mattpowell/localstorageshim · GitHub (at github.com) | 06:26 |
madrazr | jasvir: please read the README file first | 06:27 |
madrazr | the shim is used only for those ancient browsers that do not support localStorage | 06:27 |
jasvir | madrazr: Oh! | 06:29 |
jasvir | madrazr: how can we define our own storage? | 06:31 |
madrazr | jasvir: did you read the garlic.js code that I linked you the other day? | 06:32 |
madrazr | it was pretty simple | 06:32 |
madrazr | like 400 lines of JS code | 06:32 |
madrazr | I even linked you to storage object definition | 06:32 |
madrazr | wait let me get the links | 06:32 |
jasvir | madrazr: It's only one function. | 06:32 |
madrazr | jasvir: yes! | 06:33 |
madrazr | that's all you need to replace on JS side! | 06:33 |
jasvir | madrazr: Yeah I know that. | 06:33 |
madrazr | jasvir: then what else? | 06:33 |
madrazr | get it done! | 06:33 |
jasvir | madrazr: Ok. I'll do that. But first make me clear, what will be function of python in all this process? Get call will direct towards toward a callback function on success. | 06:37 |
jasvir | what will be the motive of that function? | 06:38 |
madrazr | jasvir: but what will GET call? | 06:39 |
*** rusnic has joined #melange | 06:39 | |
madrazr | jasvir: basically GET will call a URL | 06:40 |
madrazr | for which there exists a Python view | 06:40 |
madrazr | rather a RequestHandler subclass | 06:40 |
madrazr | with a post() method | 06:40 |
madrazr | when JS makes the POST call | 06:41 |
madrazr | this server is called on the server side | 06:41 |
madrazr | this post() method in the RequestHandler subclass will receive the data sent by JS POST call | 06:41 |
madrazr | the post() method processes the data | 06:41 |
madrazr | and stores it in the datastore | 06:41 |
madrazr | jasvir: makes any sense at all? | 06:41 |
madrazr | or was that confusing/too fast | 06:42 |
madrazr | ? | 06:42 |
jasvir | madrazr: This data will be stored in same fields where actual data is stored ? | 06:43 |
*** rishy has joined #melange | 06:48 | |
jasvir | madrazr: I got it upto this point. But I am worried about storing data. Can we store empty fileds in datastore? | 06:50 |
*** rusnic has quit IRC | 06:56 | |
jasvir | madrazr: Please clear this too. Why we are defining storage in JS? Garlic defines storage because it is the final destination of data. But in our case, storage is to be done in datastore and it is handeled by python. | 07:05 |
*** jasvir has left #melange | 07:08 | |
*** joshwambua has joined #melange | 07:08 | |
*** sidthekid has quit IRC | 07:21 | |
madrazr | jasvir: assuming you will read the logs when you are back | 07:33 |
madrazr | jasvir: how do we handle storage of data in the datastore is open for discussion | 07:33 |
madrazr | this, IMO, is the only tricky part in this whole thing | 07:33 |
madrazr | we need to have design discussion about this | 07:34 |
madrazr | about how to store intermediate (incomplete) data | 07:34 |
madrazr | because we cannot store it as regular model entities of the destination model class because of validation rules | 07:35 |
madrazr | App Engine datastore won't allow us to do it | 07:35 |
madrazr | we need to build a small temporary store for this data | 07:35 |
madrazr | Storage object in garlic.js is just an abstraction | 07:35 |
madrazr | its methods' implementation calls either localStorage on modern browsers that support localStorage | 07:36 |
madrazr | and the storage shim otherwise | 07:36 |
madrazr | what we need to build is another abstraction that can also handle server side storage | 07:36 |
madrazr | and replace garlic.js's storage object with our storage | 07:37 |
madrazr | like they replace their storage with the shim for the browsers that don't support localStorage | 07:37 |
*** ggherdov_ has quit IRC | 07:45 | |
*** ggherdov_ has joined #melange | 07:45 | |
*** ggherdov_ has joined #melange | 07:45 | |
*** ashishk has joined #melange | 07:48 | |
*** rocker has joined #melange | 07:50 | |
*** shikher has joined #melange | 07:51 | |
shikher | madrazr: hey | 07:54 |
madrazr | shikher: Hi | 07:55 |
*** ashishk has quit IRC | 07:56 | |
shikher | madrazr: 3 days without internet. finally fixed. realized the web is more of a need than a want. | 07:58 |
shikher | madrazr: nathaniel said u had a very bsy last week. | 07:59 |
*** sidthekid has joined #melange | 08:00 | |
madrazr | shikher: yeah | 08:00 |
*** ashishk has joined #melange | 08:01 | |
*** sidthekid has joined #melange | 08:01 | |
*** Extreme has quit IRC | 08:01 | |
shikher | madrazr: 2 major commits are pending review from u. please have a look maybe this week, if u get time. thnx. | 08:01 |
madrazr | shikher: of course, yeah | 08:01 |
*** Extreme has joined #melange | 08:06 | |
*** mwilkes|away has quit IRC | 08:17 | |
*** mwilkes|away has joined #melange | 08:20 | |
*** mwilkes|away is now known as MatthewWilkes | 08:20 | |
*** rocker has quit IRC | 08:31 | |
*** vijay13 has quit IRC | 08:33 | |
*** ggherdov_ is now known as ggherdov | 08:36 | |
*** ashishk has quit IRC | 08:38 | |
*** joshwambua has quit IRC | 08:44 | |
*** joshwambua has joined #melange | 08:50 | |
*** joshwambua has joined #melange | 08:50 | |
*** Gentlecat has joined #melange | 09:06 | |
*** rocker has joined #melange | 09:09 | |
*** rvraghav93 has joined #melange | 09:13 | |
*** madrazr has quit IRC | 09:18 | |
*** shikher has left #melange | 09:23 | |
*** Niharika has quit IRC | 09:35 | |
*** variable has quit IRC | 09:47 | |
*** samgtr has joined #melange | 09:50 | |
*** variable has joined #melange | 10:01 | |
*** bitgeeky has joined #melange | 10:08 | |
*** Gentlecat has quit IRC | 10:11 | |
*** rusnic has joined #melange | 10:53 | |
*** bitgeeky has quit IRC | 11:10 | |
*** rusnic has quit IRC | 11:23 | |
*** sidthekid has quit IRC | 11:31 | |
*** rishabh has joined #melange | 11:40 | |
*** rishy has quit IRC | 11:47 | |
*** joshwambua has quit IRC | 12:02 | |
*** joshwambua has joined #melange | 12:03 | |
*** joshwambua has joined #melange | 12:11 | |
*** raghunayyar has joined #melange | 12:33 | |
*** Niharika has joined #melange | 12:37 | |
*** rvraghav93_ has joined #melange | 12:41 | |
*** rvraghav93 has quit IRC | 12:41 | |
*** bitgeeky has joined #melange | 12:54 | |
*** joshwambua has quit IRC | 12:56 | |
*** suranga has joined #melange | 13:11 | |
*** rvraghav93_ has quit IRC | 13:44 | |
*** rvraghav93 has joined #melange | 13:46 | |
*** joshwambua has joined #melange | 13:46 | |
*** joshwambua has joined #melange | 13:47 | |
*** joshwambua has joined #melange | 13:47 | |
*** Gentlecat has joined #melange | 13:52 | |
*** Fuuzetsu has quit IRC | 13:53 | |
*** Fuuzetsu has joined #melange | 13:54 | |
*** Fuuzetsu is now known as Guest21808 | 13:54 | |
*** jjj has joined #melange | 14:02 | |
*** Guest21808 has quit IRC | 14:07 | |
*** Guest21808 has joined #melange | 14:07 | |
*** Guest21808 is now known as Fuuzetsu` | 14:07 | |
*** Fuuzetsu` is now known as Fuuzetsu | 14:07 | |
*** robbyoconnor has quit IRC | 14:18 | |
*** Gentlecat has quit IRC | 14:24 | |
*** raghunayyar has quit IRC | 14:57 | |
*** kdh-1334_ has quit IRC | 15:01 | |
*** kdh-1334 has quit IRC | 15:01 | |
*** joshwambua has quit IRC | 15:07 | |
*** joshwambua has joined #melange | 15:09 | |
*** vijay13 has joined #melange | 15:20 | |
*** hammad_ has joined #melange | 15:43 | |
*** jasvir has joined #melange | 15:45 | |
*** samgtr has quit IRC | 16:05 | |
*** kdh-1334 has joined #melange | 16:05 | |
*** kdh-1334_ has joined #melange | 16:10 | |
*** kdh-1334_ has quit IRC | 16:20 | |
*** kdh-1334 has quit IRC | 16:20 | |
*** bitgeeky has quit IRC | 16:21 | |
*** shamim096 has joined #melange | 16:33 | |
*** sidthekid has joined #melange | 16:40 | |
*** Niharika has quit IRC | 16:40 | |
*** kdh-1334_ has joined #melange | 16:58 | |
*** kdh-1334 has joined #melange | 16:59 | |
*** kdh-1334 has quit IRC | 17:01 | |
*** kdh-1334_ has quit IRC | 17:01 | |
*** madrazr has joined #melange | 17:13 | |
*** ChanServ sets mode: +o madrazr | 17:13 | |
*** bitgeeky has joined #melange | 17:23 | |
jasvir | madrazr: Thanks. I have gone through the logs :) | 17:31 |
*** kdh-1334_ has joined #melange | 17:35 | |
*** kdh-1334 has joined #melange | 17:35 | |
*** jjj has left #melange | 17:50 | |
*** sidthekid has quit IRC | 17:54 | |
*** shikher has joined #melange | 18:00 | |
*** vijay13 has quit IRC | 18:03 | |
*** shikher has quit IRC | 18:13 | |
*** bitgeeky has quit IRC | 18:17 | |
*** heller has quit IRC | 18:24 | |
*** heller has joined #melange | 18:24 | |
*** jasvir has left #melange | 18:36 | |
*** sidthekid has joined #melange | 18:42 | |
*** vivekjain has joined #melange | 18:43 | |
*** vivekjain has quit IRC | 18:56 | |
*** joshwambua has quit IRC | 19:03 | |
*** madrazr has quit IRC | 19:05 | |
*** rvraghav93 has quit IRC | 19:10 | |
*** joshwambua has joined #melange | 19:14 | |
*** RaulT has joined #melange | 19:21 | |
*** shamim096 has quit IRC | 19:22 | |
*** madrazr has joined #melange | 19:46 | |
*** ChanServ sets mode: +o madrazr | 19:46 | |
*** hammad_ has quit IRC | 19:49 | |
*** rishabh has quit IRC | 19:49 | |
*** kdh-1334_ has quit IRC | 19:57 | |
*** kdh-1334 has quit IRC | 19:57 | |
*** shamim096 has joined #melange | 20:22 | |
*** rishy has joined #melange | 20:33 | |
*** shamim096 has quit IRC | 20:37 | |
*** shikher has joined #melange | 21:12 | |
*** shikher has quit IRC | 22:27 | |
*** vijay13 has joined #melange | 22:38 | |
*** RaulT has quit IRC | 23:05 | |
*** madrazr has left #melange | 23:31 | |
*** Gentlecat has joined #melange | 23:33 |
Generated by irclog2html.py 2.12.1 by Marius Gedminas - find it at mg.pov.lt!