⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sitespec.py

📁 python web programming 部分
💻 PY
字号:
"""Map path prefixes to page classes, and realms to authentication tables."""
#
# $Workfile: SiteSpec.py $ $Revision: 5 $
# $Date: 8/28/01 11:56p $ $Author: Sholden $
#

import Static, HomePage, Auth, DeptPages, ErrorPages

PageMap = {
    "":             (HomePage.Home, None),
    "Auth": ({
        "Secret":       (Auth.Secret,   "PythonTeach"),
        "Secret2":      (Auth.Secret2,  "Staff")
    }, None),
    "Image":        ("images",          None),
    "Text":         ("text",            "Staff"),
    "DeptHome":     (DeptPages.Home,    None),
    "DeptLinks":    (DeptPages.Links,   None),
    "DeptNews":     (DeptPages.News,    None),
    "DeptNewsItem": (DeptPages.NewsItem, None),
    "DeptQod":      (DeptPages.Qod,     None),
    "DeptQodAns":   (DeptPages.QodAns,  None),
    "DeptPgPage":   (DeptPages.PgPage,  None),
    "Error":        (ErrorPages.ErrorPage, None)
    }

RealmAuth = {
    "PythonTeach":  ("Student", "StdEmail", "StdPasswd"),
    "Staff":        ("Staff", "StfUserName", "StfPasswd")
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -