roundabout,
created on Thursday, 23 May 2024, 06:49:30 (1716446970),
received on Wednesday, 31 July 2024, 06:54:48 (1722408888)
Author identity: vlad <vlad.muntoiu@gmail.com>
d8cdf625b50f5054f270792f8d00fcbd5091533e
models.py
@@ -16,6 +16,8 @@ __all__ = [
import secrets import subprocess import markdownfrom app import app, db, bcrypt import git from datetime import datetime, timedelta
@@ -303,6 +305,7 @@ with (app.app_context()):
date = db.Column(db.DateTime, default=datetime.now) message = db.Column(db.UnicodeText) html = db.Column(db.UnicodeText)repo = db.relationship("Repo", back_populates="comments") owner = db.relationship("User", back_populates="comments")
@@ -318,12 +321,22 @@ with (app.app_context()):
self.commit_identifier = commit.identifier self.commit = commit self.message = message self.html = markdown.markdown2html(message).prettify()self.file = file self.line_number = line_number self.pr_id = pr repo.last_comment_id += 1 @property def text(self): return self.html @text.setter def text(self, value): self.html = markdown.markdown2html(value).prettify() self.message = value # message is stored in markdown format for future editing or plaintext display class UserNotification(db.Model): id = db.Column(db.Integer, primary_key=True)
static/style.css
@@ -605,3 +605,7 @@ strong, em {
grid-column: 1 / -1; font: var(--body-font); } small { font-size: 1em; /* more like LARGE :D, <small> has another semantic meaning which remains valid */ }
templates/repository/repo-commit.html
@@ -67,7 +67,13 @@
{% endif %} {% for comment in comment_query.filter_by(commit=data, file=file, line_number=vars.original_line, state=1).all() %} <div class="comment"> {{ comment.message }}<article> {{ comment.text | safe }} {# this was generated by the markdown parser which escapes HML #} </article> <small> {% trans %}by{% endtrans %} <a href="/{{ comment.owner_name }}">{{ comment.owner.username }}</a>, {{ comment.date | strftime('%A, %e %B %Y, %H:%M:%S') }} </small><x-buttonbox> {% if comment.author == current_user or data.owner == current_user or permission_level >= 2 %} <form method="post" action="{{ repo_data.route }}/commit/{{ data.sha }}/resolve_comment/{{ comment.number }}">
@@ -87,7 +93,7 @@
<summary>{% trans count=comment_query.filter_by(commit=data, file=file, line_number=vars.original_line, state=0).count() %}Resolved comments ({{ count }}){% endtrans %}</summary> {% for comment in comment_query.filter_by(commit=data, file=file, line_number=vars.original_line, state=0).all() %} <div class="comment"> {{ comment.message }}{{ comment.text | safe }} {# this was generated by the markdown parser which escapes HML #}<x-buttonbox> {% if comment.author == current_user or data.owner == current_user or permission_level >= 2 %} <form method="post" action="{{ repo_data.route }}/commit/{{ data.sha }}/resolve_comment/{{ comment.number }}">