summaryrefslogtreecommitdiff
path: root/unbiasedFunctions.py
diff options
context:
space:
mode:
authorsstvinc2 <sstvinc2@gmail.com>2017-02-12 21:45:13 -0600
committersstvinc2 <sstvinc2@gmail.com>2017-02-12 21:45:13 -0600
commit9e4ab3d644929d467e1f3de6f456508d03d4db15 (patch)
treec5834b83773498f731b9a4a17736bba95c4879f7 /unbiasedFunctions.py
parent1289131d2300bd991a2a2308d2a9396364c3fb62 (diff)
Obfuscated h1 links
Added redirect files to the server. Main html template file now has static links to those files; those files are written with javascript redirect to actual articles.
Diffstat (limited to 'unbiasedFunctions.py')
-rw-r--r--unbiasedFunctions.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/unbiasedFunctions.py b/unbiasedFunctions.py
index da224ae..acce6a5 100644
--- a/unbiasedFunctions.py
+++ b/unbiasedFunctions.py
@@ -147,7 +147,10 @@ def buildOutput(newsSourceArr):
source=newsSourceArr[h1RandomSources[i]]
randomArticle=random.sample(range(len(source.h1Arr)), 1)[0]
article=source.h1Arr[randomArticle]
- template=template.replace('xxURL1-'+str(i+1)+'xx', article.url)
+ #template=template.replace('xxURL1-'+str(i+1)+'xx', article.url)
+ r=open('/var/www/html/redirects/h1-'+str(i+1)+'.html', 'w')
+ r.write('<html><head><script type="text/javascript">window.location="'+article.url+'"</script></head></html>')
+ r.close()
template=template.replace('xxTitle1-'+str(i+1)+'xx', article.title)
template=template.replace('xxImg1-'+str(i+1)+'xx', article.img)
desc=article.description