remotes/1693045480750635534/spooky-22
Aevann1 2021-09-20 14:32:38 +02:00
parent a439eeef8e
commit e8070d40bf
5 changed files with 18 additions and 21 deletions

View File

@ -327,7 +327,6 @@ class Comment(Base):
self.comment_aux.body_html = x
g.db.add(self.comment_aux)
@lazy
def realbody(self, v):
if self.post and self.post.club and not (v and v.paid_dues): return "<p>COUNTRY CLUB ONLY</p>"
body = self.comment_aux.body_html

View File

@ -33,10 +33,10 @@ SLURS = {
" troon":" 🚂🚃🚃",
" Troon":" 🚂🚃🚃",
" TROON":" 🚂🚃🚃",
" NoNewNormal": "HorseDewormerAddicts",
" nonewnormal": "horsedewormeraddicts",
" Kike": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
" kike": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
" NoNewNormal": " HorseDewormerAddicts",
" nonewnormal": " horsedewormeraddicts",
" Kike": " https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
" kike": " https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
"faggot ":"cute twink ",
"Faggot ":"Cute twink ",
"FAGGOT ":"CUTE TWINK ",
@ -69,8 +69,8 @@ SLURS = {
"TROON ":"🚂🚃🚃 ",
"NoNewNormal ": "HorseDewormerAddicts ",
"nonewnormal ": "horsedewormeraddicts ",
"Kike ": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
"kike ": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X",
"Kike ": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X ",
"kike ": "https://sciencedirect.com/science/article/abs/pii/S016028960600033X ",
}

View File

@ -69,7 +69,7 @@ def club_allow(v, username):
ma=ModAction(
kind="club_allow",
user_id=v.id,
target_user_id=user.id,
target_user_id=u.id,
)
g.db.add(ma)
@ -97,7 +97,7 @@ def club_ban(v, username):
ma=ModAction(
kind="club_ban",
user_id=v.id,
target_user_id=user.id,
target_user_id=u.id,
)
g.db.add(ma)

View File

@ -429,7 +429,7 @@
<div class="modal-body">
<ul class="list-group comment-actions">
<li class="list-group-item"><a href="/votes?link={{c.fullname}}"><i class="fas fa-arrows-v"></i>Votes</a></li>
<a href="/votes?link={{c.fullname}}"><li class="list-group-item"><i class="fas fa-arrows-v"></i>Votes</li></a>
{% if v %}
<li id="save2-{{c.id}}" class="{% if c in v.saved_comment_idlist() %}d-none{% endif %} list-group-item"><a href="javascript:void(0)" data-dismiss="modal" onclick="post_toast2('/save_comment/{{c.id}}','save2-{{c.id}}','unsave2-{{c.id}}')"><i class="fas fa-save"></i>Save</a></li>
@ -438,19 +438,19 @@
{% endif %}
<li class="list-group-item"><a href="javascript:void(0);" role="button" class="d-block copy-link" data-dismiss="modal" data-clipboard-text="{% if 'rdrama' in request.host %}https://taytay.life{{c.permalink}}{% else %}{{c.permalink | full_link}}{% endif %}?context=5#context"><i class="fas fa-copy"></i>Copy link</a></li>
<a href="javascript:void(0);" role="button" class="d-block copy-link" data-dismiss="modal" data-clipboard-text="{% if 'rdrama' in request.host %}https://taytay.life{{c.permalink}}{% else %}{{c.permalink | full_link}}{% endif %}?context=5#context"><li class="list-group-item"><i class="fas fa-copy"></i>Copy link</li></a>
<li class="list-group-item"><a {% if v %} href="{{c.permalink}}?context=5#context" {% else %} href="/logged_out{{c.permalink}}?context=5#context" {% endif %}><i class="fas fa-dna"></i>Context</a></li>
<a {% if v %} href="{{c.permalink}}?context=5#context" {% else %} href="/logged_out{{c.permalink}}?context=5#context" {% endif %}><li class="list-group-item"><i class="fas fa-dna"></i>Context</li></a>
<li class="list-group-item"><a href="javascript:void(0)" data-toggle="modal" data-dismiss="modal" data-target="#reportCommentModal" onclick="report_commentModal('{{c.id}}','{{c.author.username}}')" class="d-block"><i class="fas fa-flag"></i>Report</a></li>
<a href="javascript:void(0)" data-toggle="modal" data-dismiss="modal" data-target="#reportCommentModal" onclick="report_commentModal('{{c.id}}','{{c.author.username}}')" class="d-block"><li class="list-group-item"><i class="fas fa-flag"></i>Report</li></a>
{% if v and c.parent_submission and c.author_id==v.id %}
<li class="list-group-item"><a href="javascript:void(0)" data-dismiss="modal" onclick="toggleEdit('{{c.id}}')" class="d-block"><i class="fas fa-edit"></i>Edit</a></li>
<a href="javascript:void(0)" data-dismiss="modal" onclick="toggleEdit('{{c.id}}')" class="d-block"><li class="list-group-item"><i class="fas fa-edit"></i>Edit</li></a>
{% if c.deleted_utc > 0 %}
<li class="list-group-item"><a class="d-block" href="javascript:void(0)" onclick="post_toast('/undelete/comment/{{c.id}}')" data-dismiss="modal"><i class="fas fa-trash-alt"></i>Undelete</a></li>
<a class="d-block" href="javascript:void(0)" onclick="post_toast('/undelete/comment/{{c.id}}')" data-dismiss="modal"><li class="list-group-item"><i class="fas fa-trash-alt"></i>Undelete</li></a>
{% else %}
<li class="list-group-item"><a class="d-block" href="javascript:void(0)" data-toggle="modal" data-target="#deleteCommentModal" onclick="delete_commentModal('{{c.id}}')"><i class="fas fa-trash-alt"></i>Delete</a></li>
<a class="d-block" href="javascript:void(0)" data-toggle="modal" data-target="#deleteCommentModal" onclick="delete_commentModal('{{c.id}}')"><li class="list-group-item"><i class="fas fa-trash-alt"></i>Delete</li></a>
{% endif %}
{% endif %}
@ -468,15 +468,15 @@
{% endif %}
{% if v.admin_level>=3 %}
{% if "/reported/" in request.path %}
<li class="list-group-item"><a class="text-danger d-block" href="javascript:void(0)" onclick="removeComment2('{{c.id}}')" data-dismiss="modal"><i class="fas fa-ban text-danger"></i>Remove</a></li>
<li class="list-group-item"><a class="text-success d-block" href="javascript:void(0)" onclick="approveComment2('{{c.id}}')" data-dismiss="modal"><i class="fas fa-check text-success"></i>Approve</a></li>
<a class="text-danger d-block" href="javascript:void(0)" onclick="removeComment2('{{c.id}}')" data-dismiss="modal"><li class="list-group-item"><i class="fas fa-ban text-danger"></i>Remove</li></a>
<a class="text-success d-block" href="javascript:void(0)" onclick="approveComment2('{{c.id}}')" data-dismiss="modal"><li class="list-group-item"><i class="fas fa-check text-success"></i>Approve</li></a>
{% else %}
<li id="remove2-{{c.id}}" class="{% if c.is_banned %}d-none{% endif %} list-group-item"><a class="text-danger d-block" href="javascript:void(0)" onclick="removeComment2('{{c.id}}','approve2-{{c.id}}','remove2-{{c.id}}')" data-dismiss="modal"><i class="fas fa-ban text-danger"></i>Remove</a></li>
<li id="approve2-{{c.id}}" class="{% if not c.is_banned %}d-none{% endif %} list-group-item"><a class="text-success d-block" href="javascript:void(0)" onclick="approveComment2('{{c.id}}','approve2-{{c.id}}','remove2-{{c.id}}')" data-dismiss="modal"><i class="fas fa-check text-success"></i>Approve</a></li>
{% endif %}
{% endif %}
{% if v.admin_level >=4 and c.oauth_app %}
<li class="list-group-item"><a class="d-block text-info" href="{{c.oauth_app.permalink}}/comments"><i class="fas fa-code text-info"></i>API App</a></li>
<a class="d-block text-info" href="{{c.oauth_app.permalink}}/comments"><li class="list-group-item"><i class="fas fa-code text-info"></i>API App</li></a>
{% endif %}
{% if not v.id==c.author_id and v.admin_level == 0 %}

View File

@ -765,8 +765,6 @@ It looks like the explanation is right there in the thread. The comic is a parod
Why are you incapable of defending your ideological beliefs using objective scientific data? Not just in the contextual sense, but in the broader sense of why you seem to want to censor people for saying truth when it hurts your feelings.
{[para]}
God I knew one of them had to be a kike. They are everywhere. They have their sick little tendrils in everything. That's ok though I just had a big talk with my kids last night about Homosexuals in movies and jewish people. We made fun of chanukah and their stupid hats. They will not be watching any movies in the movie theatres anymore. We cancelled netflix. I am not going to let my children be indoctrinated. I saw israel was trending on twitter yesterday. The goyim know and we are just going to keep spreading the good word. Its happening through facebook messages, whatsapp messages, text messages and good old fashion in person christmas ( I was redpilling my family about the jews in control of the media) . White people are waking up. Its slow but its happening. The revolution is imminent.
{[para]}
wow! nobody gives a fuck about your feelings and why should they? I dont care about your week, your day, or even your fucking life. This is an internet forum and if you cant handle being here where there is free speech then shut the fuck up and go home. It's 2020 if you are still crying about your fucking skin color you are pathetic. Theres more opportunity for niggers to succeed than ever before, and if you are jewish then you could do us all a favor and choke on a dick. If you aren't smart enough to learn and apply some knowledge blame your fucking biology and your brain cell count and mental capacity and not your skin color. Weak ass fucking babies. That's why you are at the bottom of the food chain now, that fucking weak ass mentality. No mental fortitude and apparently no capacity to learn and apply yourself.
{[para]}
动态网自由门 天安門 天安门 法輪功 李洪志 Free Tibet 六四天安門事件 The Tiananmen Square protests of 1989 天安門大屠殺 The Tiananmen Square Massacre 反右派鬥爭 The Anti-Rightist Struggle 大躍進政策 The Great Leap Forward 文化大革命 The Great Proletarian Cultural Revolution 人權 Human Rights 民運 Democratization 自由 Freedom 獨立 Independence 多黨制 Multi-party system 台灣 臺灣 Taiwan Formosa 中華民國 Republic of China 西藏 土伯特 唐古特 Tibet 達賴喇嘛 Dalai Lama 法輪功 Falun Dafa 新疆維吾爾自治區 The Xinjiang Uyghur Autonomous Region 諾貝爾和平獎 Nobel Peace Prize 劉暁波 Liu Xiaobo 民主 言論 思想 反共 反革命 抗議 運動 騷亂 暴亂 騷擾 擾亂 抗暴 平反 維權 示威游行 李洪志 法輪大法 大法弟子 強制斷種 強制堕胎 民族淨化 人體實驗 肅清 胡耀邦 趙紫陽 魏京生 王丹 還政於民 和平演變 激流中國 北京之春 大紀元時報 九評論共産黨 獨裁 專制 壓制 統一 監視 鎮壓 迫害 侵略 掠奪 破壞 拷問 屠殺 活摘器官 誘拐 買賣人口 遊進 走私 毒品 賣淫 春畫 賭博 六合彩 天安門 天安门 法輪功 李洪志 Winnie the Pooh 劉曉波动态网自由门