Rename module

merge-requests/30/head
Bob Mottram 2020-11-09 13:18:28 +00:00
parent 5c42d47f55
commit ddc63da755
4 changed files with 57 additions and 57 deletions

10
blog.py
View File

@ -10,11 +10,11 @@ import os
from datetime import datetime from datetime import datetime
from content import replaceEmojiFromTags from content import replaceEmojiFromTags
from webinterface import getIconsDir from webapp import getIconsDir
from webinterface import getPostAttachmentsAsHtml from webapp import getPostAttachmentsAsHtml
from webinterface import htmlHeader from webapp import htmlHeader
from webinterface import htmlFooter from webapp import htmlFooter
from webinterface import addEmbeddedElements from webapp import addEmbeddedElements
from utils import getNicknameFromActor from utils import getNicknameFromActor
from utils import getDomainFromActor from utils import getDomainFromActor
from utils import locatePost from utils import locatePost

View File

@ -113,55 +113,55 @@ from blog import htmlBlogView
from blog import htmlBlogPage from blog import htmlBlogPage
from blog import htmlBlogPost from blog import htmlBlogPost
from blog import htmlEditBlog from blog import htmlEditBlog
from webinterface import htmlCitations from webapp import htmlCitations
from webinterface import htmlFollowingList from webapp import htmlFollowingList
from webinterface import getBlogAddress from webapp import getBlogAddress
from webinterface import setBlogAddress from webapp import setBlogAddress
from webinterface import htmlCalendarDeleteConfirm from webapp import htmlCalendarDeleteConfirm
from webinterface import htmlDeletePost from webapp import htmlDeletePost
from webinterface import htmlAbout from webapp import htmlAbout
from webinterface import htmlRemoveSharedItem from webapp import htmlRemoveSharedItem
from webinterface import htmlInboxDMs from webapp import htmlInboxDMs
from webinterface import htmlInboxReplies from webapp import htmlInboxReplies
from webinterface import htmlInboxMedia from webapp import htmlInboxMedia
from webinterface import htmlInboxBlogs from webapp import htmlInboxBlogs
from webinterface import htmlInboxNews from webapp import htmlInboxNews
from webinterface import htmlUnblockConfirm from webapp import htmlUnblockConfirm
from webinterface import htmlPersonOptions from webapp import htmlPersonOptions
from webinterface import htmlIndividualPost from webapp import htmlIndividualPost
from webinterface import htmlProfile from webapp import htmlProfile
from webinterface import htmlInbox from webapp import htmlInbox
from webinterface import htmlBookmarks from webapp import htmlBookmarks
from webinterface import htmlEvents from webapp import htmlEvents
from webinterface import htmlShares from webapp import htmlShares
from webinterface import htmlOutbox from webapp import htmlOutbox
from webinterface import htmlModeration from webapp import htmlModeration
from webinterface import htmlPostReplies from webapp import htmlPostReplies
from webinterface import htmlLogin from webapp import htmlLogin
from webinterface import htmlSuspended from webapp import htmlSuspended
from webinterface import htmlGetLoginCredentials from webapp import htmlGetLoginCredentials
from webinterface import htmlNewPost from webapp import htmlNewPost
from webinterface import htmlFollowConfirm from webapp import htmlFollowConfirm
from webinterface import htmlCalendar from webapp import htmlCalendar
from webinterface import htmlSearch from webapp import htmlSearch
from webinterface import htmlNewswireMobile from webapp import htmlNewswireMobile
from webinterface import htmlLinksMobile from webapp import htmlLinksMobile
from webinterface import htmlSearchEmoji from webapp import htmlSearchEmoji
from webinterface import htmlSearchEmojiTextEntry from webapp import htmlSearchEmojiTextEntry
from webinterface import htmlUnfollowConfirm from webapp import htmlUnfollowConfirm
from webinterface import htmlProfileAfterSearch from webapp import htmlProfileAfterSearch
from webinterface import htmlEditProfile from webapp import htmlEditProfile
from webinterface import htmlEditLinks from webapp import htmlEditLinks
from webinterface import htmlEditNewswire from webapp import htmlEditNewswire
from webinterface import htmlEditNewsPost from webapp import htmlEditNewsPost
from webinterface import htmlTermsOfService from webapp import htmlTermsOfService
from webinterface import htmlSkillsSearch from webapp import htmlSkillsSearch
from webinterface import htmlHistorySearch from webapp import htmlHistorySearch
from webinterface import htmlHashtagSearch from webapp import htmlHashtagSearch
from webinterface import rssHashtagSearch from webapp import rssHashtagSearch
from webinterface import htmlModerationInfo from webapp import htmlModerationInfo
from webinterface import htmlSearchSharedItems from webapp import htmlSearchSharedItems
from webinterface import htmlHashtagBlocked from webapp import htmlHashtagBlocked
from shares import getSharesFeedForPerson from shares import getSharesFeedForPerson
from shares import addShare from shares import addShare
from shares import removeShare from shares import removeShare

View File

@ -56,9 +56,9 @@ from posts import isMuted
from posts import isImageMedia from posts import isImageMedia
from posts import sendSignedJson from posts import sendSignedJson
from posts import sendToFollowersThread from posts import sendToFollowersThread
from webinterface import individualPostAsHtml from webapp import individualPostAsHtml
from webinterface import getIconsDir from webapp import getIconsDir
from webinterface import removeOldHashtags from webapp import removeOldHashtags
from question import questionUpdateVotes from question import questionUpdateVotes
from media import replaceYouTube from media import replaceYouTube
from git import isGitPatch from git import isGitPatch