~melmon/at-channel

d2315a721bb4a44f88f906d407d75adbaab38745 — Melmon 3 years ago 1104b81
..
4 files changed, 5 insertions(+), 37 deletions(-)

M .gitignore
M atch/templates/board.html
M atch/templates/thread.html
M setup.py
M .gitignore => .gitignore +1 -33
@@ 146,34 146,11 @@ htmlcov/
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# AWS User-specific
.idea/**/aws.xml

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
.idea/*

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws



@@ 186,17 163,8 @@ out/
# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
\ No newline at end of file

M atch/templates/board.html => atch/templates/board.html +1 -1
@@ 4,7 4,7 @@
{% endblock %}

{% block header %}
    <p class="board_list">Boards: [{% for b in board_list %}<a href="{{ url_for("board.browse_board", uri=b) }}">{{ b }}</a>{% endfor %}]</p>
    <p class="board_list">Boards: [ {% for b in board_list %}<a href="{{ url_for("board.browse_board", uri=b) }}">{{ b }}</a> {% endfor %}]</p>
    <h1>{% block title %}/{{ uri }}/ - {{ name }}{% endblock %}</h1>
{% endblock %}


M atch/templates/thread.html => atch/templates/thread.html +1 -1
@@ 4,7 4,7 @@
{% endblock %}

{% block header %}
    <p class="board_list">Boards: [{% for b in board_list %}<a href="{{ url_for("board.browse_board", uri=b) }}">{{ b }}</a>{% endfor %}]</p>
    <p class="board_list">Boards: [ {% for b in board_list %}<a href="{{ url_for("board.browse_board", uri=b) }}">{{ b }}</a> {% endfor %}]</p>
    <h1>{% block title %}/{{ uri }}/ - {{ thread_data["thread_id"] }}{% endblock %}</h1>
{% endblock %}


M setup.py => setup.py +2 -2
@@ 2,11 2,11 @@ from setuptools import setup, find_packages


setup(
    name='atchannel',
    name='@channel',
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
    install_requires=[
        'flask', 'werkzeug', 'click'
    ],
)
\ No newline at end of file
)