previous-changes

master
xpub1 1 year ago
parent cfc87d25ac
commit d3473d69ec

@ -9,7 +9,6 @@ body{
font-family: monospace; font-family: monospace;
background-color: var(--color1); background-color: var(--color1);
color: var(--color2); color: var(--color2);
font-size: 1.5rem;
margin: 2rem auto; margin: 2rem auto;
max-width: 60rem; max-width: 60rem;
padding: 1rem; padding: 1rem;
@ -62,10 +61,15 @@ textarea{
} }
.two-col{ .two-col{
max-width: calc(50% - 4rem);
float: left; float: left;
padding-right: 2rem; padding-right: 2rem;
margin: 1rem 0; margin: 1rem 0;
} }
p{font-size: 1rem;} @media screen and (min-width: 768px){
.two-col{max-width: calc(50% - 4rem);}
p{font-size: 1rem;}
body{font-size: 1.5rem;}
@media screen and (max-width: 767px){
body{font-size: 3rem;}
}

@ -1,12 +1,13 @@
<html> <html>
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./static/style.css" /> <link rel="stylesheet" href="./static/style.css" />
</head> </head>
<body> <body>
<h1>gesture glossary ✌️</h1> <h1>gesture glossary ✌️</h1>
<div class="two-col"> <div class="two-col">
<h4>This is the gesture glossary. Click a word to the right to see the gestures related to it. </h4> <h4>This is the gesture glossary. Click a word to see the gestures related to it. </h4>
<p>The aim is to see if a gesture glossary works and how it will work best. Also to see what kind of different interpretations there will be on gestures of our memory. To test the gesture glossary idea, and see what different meanings appear or already exist in the current vocabulary. Putting next to each other different agreements on linguistic and body units, testing what makes sense. Investigating and playing with communicational channel in between us, how a body language is documented, how it expands, how it is capable of creating or enhancing identities. To be an xpub means to speak/perform the xpub language?</p> <p>The aim is to see if a gesture glossary works and how it will work best. Also to see what kind of different interpretations there will be on gestures of our memory. To test the gesture glossary idea, and see what different meanings appear or already exist in the current vocabulary. Putting next to each other different agreements on linguistic and body units, testing what makes sense. Investigating and playing with communicational channels in between us, how a body language is documented, how it expands, how it is capable of creating or enhancing identities. To be an xpub means to speak/perform the xpub language?</p>
</div> </div>
<div class="two-col"> <div class="two-col">
{% for word in text {% for word in text
@ -14,4 +15,4 @@
endfor %} endfor %}
</div> </div>
</body> </body>
</html> </html>

@ -1,9 +1,10 @@
<html> <html>
<head> <head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./static/style.css" /> <link rel="stylesheet" href="./static/style.css" />
</head> </head>
<body> <body>
<a href="/" ><h1 class="button">{{word}} <span class="close">x</span></h1></a> <a href="/breadcube/gesture/" ><h1 class="button">{{word}} <span class="close">x</span></h1></a>
{% for file in wordmedia %} {% for file in wordmedia %}
<div class="two-col"> <div class="two-col">
<!-- <h2>Video {{file}}</h2> --> <!-- <h2>Video {{file}}</h2> -->
@ -15,4 +16,4 @@
</div> </div>
{% endfor %} {% endfor %}
</body> </body>
</html> </html>

@ -1,2 +1,2 @@
OVERLAP_APPLICATION_ROOT=/overlap OVERLAP_APPLICATION_ROOT=/breadcube/overlap
OVERLAP_PORTNUMBER=5000 OVERLAP_PORTNUMBER=5000

@ -63,7 +63,7 @@ def upload_file():
# print(f"del { UPLOAD_FOLDER + file.filename }") # print(f"del { UPLOAD_FOLDER + file.filename }")
# os.system(f"del { UPLOAD_FOLDER + file.filename }") # os.system(f"del { UPLOAD_FOLDER + file.filename }")
return redirect("/") return redirect("/breadcube/overlap/")
# f = request.files['the_file'] # f = request.files['the_file']
# f.save('/var/www/uploads/uploaded_file.txt') # f.save('/var/www/uploads/uploaded_file.txt')

@ -1,12 +1,24 @@
<html> <html>
<head> <head>
<style>
img{
max-width: 25%;
transition: transform 1s ease-in-out;
}
img:hover{
transform: rotate(360deg) scale(200%);
}
body{
color: purple;
}
</style>
</head> </head>
<body> <body>
{% for image in images %} {% for image in images %}
<img src="{{ image|replace('./', '/') }}"> <img src="{{ image|replace('./','/breadcube/overlap/') }}">
{% endfor %} {% endfor %}
<form action="{{ url_for('upload2_file', image=image) }}" method="POST" enctype="multipart/form-data"> <form action="{{ url_for('upload2_file', image=image) }}" method="POST" enctype="multipart/form-data">
<label for="tile">Choose an image to upload:</label> <label for="tile">Pick an image to upload:</label>
<input type="file" <input type="file"
id="tile" name="tile" required> id="tile" name="tile" required>
<input type="submit" value="Upload"> <input type="submit" value="Upload">

Loading…
Cancel
Save