Skip to main content

Home/ Scripters/ Group items tagged http

Rss Feed Group items tagged

Jac Londe

        petit truc 2clck - 0 views

http://ad.uk.doubleclick.net/5185/jump/timeout.uk.paris.fr/restaurant;type=mpu;page=feature;itemid=p...; http://ad.uk.doubleclick.net/5185/ad/timeout.uk.paris.fr/restaurant;type=mpu;page=featu...

started by Jac Londe on 28 Feb 15 no follow-up yet
Jac Londe

jaclonde/pixi.js · GitHub - 0 views

Jac Londe

Feeds HTML Parser for Node Creation | Drupal.org - 0 views

  • Feeds HTML Parser for Node Creation
  • I currently have a Drupal site set up and am using the Feeds module (http://drupal.org/project/feeds) to create CCK nodes from a few RSS feeds. This is a standard use case of that module, at least as far as I know.
  • The need has arisen for the ability to also create content from non-RSS/non-XML sources. I need a new Parser created for the Feeds module that would allow for one to populate CCK fields based on the parsing of raw HTML content. My first thought is that the user should be allowed to define a regular expression for each field, with the field then being populated by the output of the regular expression applied to the raw HTML content. However, I am open to suggestions on different solutions which might be easier for the developer.
Jac Londe

Coin Alerts - 0 views

Jac Londe

Parsing HTML in Python (Shallow Thoughts) - 0 views

  • Parsing HTML in Python
  • Up until now, I've avoided doing any HTMl parsing in my RSS reader FeedMe.
  • from HTMLParser import HTMLParser class MyFancyHTMLParser(HTMLParser): def fetch_url(self, url) : request = urllib2.Request(url) response = urllib2.urlopen(request) link = response.geturl() html = response.read() response.close() self.feed(html) # feed() starts the HTMLParser parsing def handle_starttag(self, tag, attrs): if tag == 'img' : # attrs is a list of tuples, (attribute, value) srcindex = self.has_attr('src', attrs) if srcindex < 0 : return # img with no src tag? skip it src = attrs[srcindex][1] # Make relative URLs absolute src = self.make_absolute(src) attrs[srcindex] = (attrs[srcindex][0], src) print '<' + tag for attr in attrs : print ' ' + attr[0] if len(attr) > 1 and type(attr[1]) == 'str' : # make sure attr[1] doesn't have any embedded double-quotes val = attr[1].replace('"', '\"') print '="' + val + '"') print '>' def handle_endtag(self, tag): self.outfile.write('</' + tag.encode(self.encoding) + '>\n'
Jac Londe

What is the correct way to write HTML using Javascript? - Stack Overflow - 0 views

  • document.write() will only work while the page is being originally parsed and the DOM is being created. Once the browser gets to the closing </body> tag and the DOM is ready, you can't use document.write() anymore.
  • Using innerHTML on a node:
  • var node = document.getElementById('node-id'); node.innerHTML('<p>some dynamic html</p>');
Jac Londe

Javascript - Afficher du texte - 0 views

  • La méthode write()
  • write("votre texte");
  • On peut aussi écrire une variable, soit la variable resultat, write(resultat);
  • ...4 more annotations...
  • write("Le résultat est " + resultat);
  • write("<B>Le résultat est</B>" + resultat); ou write ("<B>" + "Le résultat est " + "</B>" + resultat)
  • <HTML> <BODY> <H1>Ceci est du Html</H1> <SCRIPT LANGUAGE="Javascript"> <!-- document.write("<H1>Et ceci du Javascript</H1>"); //--> </SCRIPT> </BODY> </HTML>
  • <PRE> <SCRIPT LANGUAGE="Javascript"> <-- document.writeln("Ligne 1"); document.writeln("Ligne 2"); //--> </SCRIPT> </PRE>
Jac Londe

2 times 10 X 13 - Wolfram|Alpha - 0 views

  •  
    Check out these dynamically computed results from Wolfram|Alpha!
Jac Londe

Magenta River RSS Share Once Share All - 0 views

  •  
    Google Plus to Facebook Par jaclonde g+
1 - 20 of 76 Next › Last »
Showing 20 items per page