예제 #1
0
def authAndRedirect(username, password):
    tw.reset_browser()
    tw.go(SYS_REDIRECT_URL)
    tw.fv('1', "username", username)
    tw.fv('1', "password", password)
    tw.formaction('1', AUTH_URL)
    tw.submit()
    return tw.get_browser().get_html()
예제 #2
0
def authAndRedirect(username, password):
    tw.reset_browser()
    tw.go(SYS_REDIRECT_URL)
    tw.fv('1', "username", username)
    tw.fv('1', "password", password)
    tw.formaction('1', AUTH_URL)
    tw.submit()
    return tw.get_browser().get_html()
예제 #3
0
#!/srv/www/calvin.edu/csweb/venv/bin/python

'''
This function updates the technews articles. by logging into the server and
calling the refresh page.

@author: David Dick, dad32
@version:2015.03.07

Replaced id/passwd with command-line arguments -kvlinden, 11may2016

'''

import sys

from twill.commands import go, fv, formaction, submit

# Uncomment the lines below for debugging purposes.
go('http://127.0.0.1/login')
#showforms()  
fv("1", "nameField", sys.argv[1])
fv("1", "password", sys.argv[2])
formaction('form','http://127.0.0.1/login')
submit("4")
#show()
go('http://127.0.0.1/admin/technews/refresh')