浏览代码

Merge branch 'joel' of https://github.com/COPIM/expub_compendium into joel

joel
Joel Galvez 2 年前
父节点
当前提交
dabf36a954
共有 2 个文件被更改,包括 12 次插入1 次删除
  1. +5
    -1
      web/app/main.py
  2. +7
    -0
      web/app/resources.py

+ 5
- 1
web/app/main.py 查看文件

from flask import Blueprint, render_template from flask import Blueprint, render_template
from flask_login import login_required, current_user from flask_login import login_required, current_user
from .models import Resource from .models import Resource
from .resources import *
from .relationships import *
from sqlalchemy.sql import func from sqlalchemy.sql import func
import markdown import markdown


with open('content/home.md', 'r') as f: with open('content/home.md', 'r') as f:
text = f.read() text = f.read()
text = markdown.markdown(text) text = markdown.markdown(text)
return render_template('index.html', text=text, tools=tools,books=books, tools2=tools2,books2=books2)
book_showcase = get_book('69')
book_showcase_relationships = get_relationships('69')
return render_template('index.html', text=text, tools=tools, book=book_showcase, book_relationships=book_showcase_relationships)


# route for profile page # route for profile page
@main.route('/profile') @main.route('/profile')

+ 7
- 0
web/app/resources.py 查看文件

except: except:
pass pass


# function to get full metadata for a book and combine into one object
def get_book(resource_id):
book = get_resource(resource_id)
book_data = get_book_data(book.isbn)
book.__dict__.update(book_data)
return book

# function to replace embedded URL strings with href links # function to replace embedded URL strings with href links
def replace_urls(input): def replace_urls(input):
# Compile a regular expression to match URLs. # Compile a regular expression to match URLs.

正在加载...
取消
保存