User:Pedro Sá Couto/TW/Covers: Difference between revisions

From XPUB & Lens-Based wiki
Line 12: Line 12:


=PREVIEW=
=PREVIEW=
====Printscreen from ''http://ov73e3lxezo2klxva2frlzqbb2usiozqbe56xiochvz5lznpkk6kw4ad.onion/''====
====Printscreen from ''http://ov73e3lxezo2klxva2frlzqbb2usiozqbe56xiochvz5lznpkk6kw4ad.onion/covers''====
<gallery>
<gallery>
File:coverstor.png
File:coverstor.png

Revision as of 22:30, 19 June 2020

WHY?

In the Tor version of the application I have created a route where I display all the covers of the titles already republished.

The access through Tor protocol to Tactical Watermarks allows users to access the web application through a .onion top-level domain. The onion address establishes a higher level of protection to users of the platform. Releasing this version is also a generous act regarding all the ones that want to get involved with a higher standard of anonymity.

I do not archive the republished titles, but it is important to document what was already republished in the form of a cover. Not only I can keep a record of the work that was already produced, but I can also keep track of all the watermarks appended to the texts. These watermarks contain and document the motivations behind the use and users of the platform, their stories and personal remarks.

PREVIEW

Printscreen from http://ov73e3lxezo2klxva2frlzqbb2usiozqbe56xiochvz5lznpkk6kw4ad.onion/covers

Python View

# TOR BROWSER

@app.route("/covers")
def covers():
    covers = os.listdir(os.path.join(app.static_folder, "covers"))
    return render_template("public/covers.html", covers=covers)