Commit 7638a00ce1e2efb210209973246ba5fe24d727b4

  • avatar
  • arvind
  • Sat Apr 14 15:59:39 IST 2012
Post to personal blog
  
352352 if ($('#loc-select').val() == '' || $('#lang-select').val() == '' || $('#auth-select').val() == '' || ($('#your-check').attr('checked') == undefined && $('#our-check').attr('checked') == undefined )) {
353353 alert("please furnish all the details");
354354 } else {
355 if(document.getElementById('your-check').checked)
355 if($('#your-check').attr('checked') != undefined)
356356 {
357357 localStorage.myContent = buildDataString();
358358 window.location.href = "http://dev.a11y.in/test.html";
359 window.location.reload();
360359 }
361360 else{
362361 $(function(){
  
22import pymongo
33from urllib import unquote_plus
44import random
5
5from lxml import etree
66def application(environ, start_response):
77 #set the headers
88 status = '200 OK'
4343 else:
4444 temp['about'] = element.attrib['about']
4545 temp['xpath'] = element.attrib['xpath']
46 temp['data'] = element.text
46 data =''
47 for i in element.iterdescendants():
48 data += etree.tostring(i)
49 temp['data'] = data
4750 temp['blog'] = url
4851 temp['ren_id'] = ren_id
4952 store_list.append(temp)