Esempio n. 1
0
def ShowPrivacyPolicy(filePath, fileName):
    """Print out the privacy policy AND~~~~~~~~~~."""
    print("-- Privacy Policy -- " + "\n")
    PrintFile(filePath, fileName)
    while globals.loggedIn:
        selection = GuestControls.ShowMenu()
        if (selection == globals.goBack):
            break
    if not globals.loggedIn:
        globals.ReturnPrompt()
Esempio n. 2
0
def ShowCopyrightPolicy(filePath, fileName):
    """Print out the copyright policy."""
    print("-- Copyright Policy -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
Esempio n. 3
0
def ShowCopyrightNotice(filePath, fileName):
    """Print out the copyright notice."""
    print("-- Copyright Notice -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
Esempio n. 4
0
def ShowBrandPolicy(filePath, fileName):
    """Print out the brand policy."""
    print("-- Brand Policy -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
Esempio n. 5
0
def ShowAccessibility(filePath, fileName):
    """Print out the accessibility document."""
    print("-- Accessibility -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
Esempio n. 6
0
def ShowAbout(filePath, fileName):
    """Print out the About document."""
    print("-- About -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()
Esempio n. 7
0
def ShowUserAgreement(filePath, fileName):
    """Print out the user agreement."""
    print("-- User Agreement -- " + "\n")
    PrintFile(filePath, fileName)
    globals.ReturnPrompt()