Page MenuHomeDevCentral

D801.id2033.diff
No OneTemporary

D801.id2033.diff

diff --git a/pages/index.dat b/pages/index.dat
--- a/pages/index.dat
+++ b/pages/index.dat
@@ -16,6 +16,7 @@
http://www.lavenir.net/ LAvenir
http://www.lefigaro.fr/ LeFigaro
http://www.lemonde.fr/ LeMonde
+http://www.numerama.com/ Numerama
http://www.leparisien.fr/ LeParisien
http://www.lesoir.be/ LeSoir
http://www.liberation.fr/ Liberation
diff --git a/pages/numerama.php b/pages/numerama.php
new file mode 100644
--- /dev/null
+++ b/pages/numerama.php
@@ -0,0 +1,22 @@
+<?php
+
+// Page analysis for www.numerama.com
+class NumeramaPage extends Page {
+
+ function analyse () {
+ parent::analyse();
+
+ // Hardcoded known info
+ $this->site = "[[Numerama]]";
+
+ // Gets date from article:published_time metatag
+ $this->yyyy = substr($this->meta_tags['article:published_time'], 0, 4);
+ $this->mm = substr($this->meta_tags['article:published_time'], 4, 2);
+ $this->dd = ltrim(substr($this->meta_tags['article:published_time'], 8, 2), '0');
+ $this->unixtime = mktime(0, 0, 0, $mm, $dd, $yyyy);
+
+ // Gets author from author metatag
+ $this->author = $this->meta_tags['author'];
+ }
+
+}

File Metadata

Mime Type
text/plain
Expires
Fri, Nov 22, 09:24 (8 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2256010
Default Alt Text
D801.id2033.diff (1 KB)

Event Timeline