Implemented all necessary indexer informations
This commit is contained in:
parent
c43d6aa0a9
commit
fb88efd510
1
docs.weight
Normal file
1
docs.weight
Normal file
File diff suppressed because one or more lines are too long
112
indexer.py
112
indexer.py
@ -18,6 +18,7 @@ from time import perf_counter
|
|||||||
import time
|
import time
|
||||||
import threading
|
import threading
|
||||||
from threading import Lock
|
from threading import Lock
|
||||||
|
import math
|
||||||
|
|
||||||
|
|
||||||
#Data process
|
#Data process
|
||||||
@ -33,18 +34,28 @@ import re
|
|||||||
from posting import Posting
|
from posting import Posting
|
||||||
from worker import Worker
|
from worker import Worker
|
||||||
|
|
||||||
|
class Node():
|
||||||
|
index_value = ''
|
||||||
|
postings = list()
|
||||||
|
|
||||||
|
class Index():
|
||||||
|
length = 0
|
||||||
|
index = list()
|
||||||
|
|
||||||
class Indexer():
|
class Indexer():
|
||||||
def __init__(self,restart,list_partials,weight,data_paths,worker_factory=Worker):
|
def __init__(self,list_partials,weight,data_paths,worker_factory=Worker):
|
||||||
#Config stuffs
|
#Config stuffs
|
||||||
self.path = "test/"
|
self.path = "test/"
|
||||||
self.restart = restart
|
self.num_doc = 0
|
||||||
self.list_partials = list_partials
|
self.list_partials = list_partials
|
||||||
self.weight = weight
|
self.weight = weight
|
||||||
self.data_paths = data_paths
|
self.data_paths = data_paths
|
||||||
|
self.stemmer = PorterStemmer()
|
||||||
self.data_paths_lock = Lock()
|
self.data_paths_lock = Lock()
|
||||||
self.list_partials_lock = Lock()
|
self.list_partials_lock = Lock()
|
||||||
self.workers = list()
|
self.workers = list()
|
||||||
|
self.merged_index = open("merged_index.full",'w')
|
||||||
|
self.merged_index_index = open("merged_index.index" ,'w')
|
||||||
self.worker_factory = worker_factory
|
self.worker_factory = worker_factory
|
||||||
|
|
||||||
def start_async(self):
|
def start_async(self):
|
||||||
@ -61,11 +72,80 @@ class Indexer():
|
|||||||
def join(self):
|
def join(self):
|
||||||
for worker in self.workers:
|
for worker in self.workers:
|
||||||
worker.join()
|
worker.join()
|
||||||
|
|
||||||
|
def get_postings(self,index):
|
||||||
|
merged_index_index = open("merged_index.index" ,'r')
|
||||||
|
merged_index = open("merged_index.full",'r')
|
||||||
|
merged_index_index.seek(0,0)
|
||||||
|
json_value = merged_index_index.readline()
|
||||||
|
data = json.loads(json_value)
|
||||||
|
index_index = dict(data['index'])
|
||||||
|
to_seek = index_index[index]
|
||||||
|
merged_index.seek(to_seek,0)
|
||||||
|
json_value = merged_index.readline()
|
||||||
|
data = json.loads(json_value)
|
||||||
|
return data['postings']
|
||||||
|
|
||||||
|
def set_total_weight(self):
|
||||||
|
self.get_data_path()
|
||||||
|
merged_index_index = open("merged_index.index" ,'r')
|
||||||
|
merged_index = open("merged_index.full",'r')
|
||||||
|
merged_index_index.seek(0,0)
|
||||||
|
json_value = merged_index_index.readline()
|
||||||
|
data = json.loads(json_value)
|
||||||
|
index_index = dict(data['index'])
|
||||||
|
|
||||||
|
for doc in self.data_paths:
|
||||||
|
file_load = open(doc)
|
||||||
|
data = json.load(file_load)
|
||||||
|
soup = BeautifulSoup(data["content"],features="lxml")
|
||||||
|
url = data['url']
|
||||||
|
doc_id = doc[doc.rfind('/')+1:-5]
|
||||||
|
# Gets a cleaner version text comparative to soup.get_text()
|
||||||
|
clean_text = ' '.join(soup.stripped_strings)
|
||||||
|
# Looks for large white space, tabbed space, and other forms of spacing and removes it
|
||||||
|
# Regex expression matches for space characters excluding a single space or words
|
||||||
|
clean_text = re.sub(r'\s[^ \w]', '', clean_text)
|
||||||
|
# Tokenizes text and joins it back into an entire string. Make sure it is an entire string is essential for get_tf_idf to work as intended
|
||||||
|
clean_text = " ".join([i for i in clean_text.split() if i != "" and re.fullmatch('[A-Za-z0-9]+', i)])
|
||||||
|
# Stems tokenized text
|
||||||
|
clean_text = " ".join([self.stemmer.stem(i) for i in clean_text.split()])
|
||||||
|
# Put clean_text as an element in a list because get_tf_idf workers properly with single element lists
|
||||||
|
|
||||||
|
tokens = word_tokenize(clean_text)
|
||||||
|
|
||||||
|
tokens = set(tokens)
|
||||||
|
|
||||||
|
total = 0
|
||||||
|
for token in tokens:
|
||||||
|
to_seek = index_index[token]
|
||||||
|
merged_index.seek(to_seek,0)
|
||||||
|
json_value = merged_index.readline()
|
||||||
|
data = json.loads(json_value)
|
||||||
|
|
||||||
|
for posting in data['postings']:
|
||||||
|
if posting['doc_id'] == doc_id:
|
||||||
|
total = total + posting['tf_idf']* posting['tf_idf']
|
||||||
|
break
|
||||||
|
|
||||||
|
self.weight[doc_id] = math.sqrt(total)
|
||||||
|
|
||||||
|
with open('docs.weight','w') as f:
|
||||||
|
f.write(json.dumps(self.weight))
|
||||||
|
|
||||||
|
|
||||||
|
def get_weight(self,doc_id):
|
||||||
|
weight = open('docs.weight','r')
|
||||||
|
weight.seek(0,0)
|
||||||
|
json_value = weight.readline()
|
||||||
|
data = json.loads(json_value)
|
||||||
|
return data[doc_id]
|
||||||
|
|
||||||
def get_data_path(self):
|
def get_data_path(self):
|
||||||
for directory in os.listdir(self.path):
|
for directory in os.listdir(self.path):
|
||||||
for file in os.listdir(self.path + "/" + directory + "/"):
|
for file in os.listdir(self.path + "/" + directory + "/"):
|
||||||
self.data_paths.append("data/DEV/" + directory + "/"+file)
|
self.data_paths.append("data/DEV/" + directory + "/"+file)
|
||||||
|
self.num_doc = len(self.data_paths)
|
||||||
|
|
||||||
def get_next_file(self):
|
def get_next_file(self):
|
||||||
self.data_paths_lock.acquire()
|
self.data_paths_lock.acquire()
|
||||||
@ -90,7 +170,7 @@ class Indexer():
|
|||||||
partial_files = list()
|
partial_files = list()
|
||||||
partial_index_files = list()
|
partial_index_files = list()
|
||||||
parital_index_indices = list()
|
parital_index_indices = list()
|
||||||
merged_index = open("merged_index.full",'w')
|
|
||||||
num_indices = len(self.list_partials)
|
num_indices = len(self.list_partials)
|
||||||
|
|
||||||
#Full Index.Index and Length
|
#Full Index.Index and Length
|
||||||
@ -99,9 +179,9 @@ class Indexer():
|
|||||||
full_index.length = 0
|
full_index.length = 0
|
||||||
|
|
||||||
for partial_index in self.list_partials:
|
for partial_index in self.list_partials:
|
||||||
file = open(partial_index+'.partial','r')
|
file = open("temp/" + partial_index+'.partial','r')
|
||||||
partial_files.append(file)
|
partial_files.append(file)
|
||||||
index = open(partial_index+'.index','r')
|
index = open("temp/" + partial_index+'.index','r')
|
||||||
partial_index_files.append(index)
|
partial_index_files.append(index)
|
||||||
|
|
||||||
for partial_index_file in partial_index_files:
|
for partial_index_file in partial_index_files:
|
||||||
@ -142,25 +222,35 @@ class Indexer():
|
|||||||
temp_node = json.loads(json_value)
|
temp_node = json.loads(json_value)
|
||||||
node.postings = node.postings + temp_node['postings']
|
node.postings = node.postings + temp_node['postings']
|
||||||
pointers[i] = pointers[i] + 1
|
pointers[i] = pointers[i] + 1
|
||||||
|
#Change postings here with tf*idf idf = log (n/df(t))
|
||||||
node.postings.sort(key=lambda y:y['doc_id'])
|
node.postings.sort(key=lambda y:y['doc_id'])
|
||||||
full_index.index.append((value,merged_index.tell()))
|
for posting in node.postings:
|
||||||
|
posting['tf_idf'] = posting['tf_raw']*math.log(self.num_doc/len(node.postings))
|
||||||
|
full_index.index.append((value,self.merged_index.tell()))
|
||||||
full_index.length = full_index.length + 1
|
full_index.length = full_index.length + 1
|
||||||
jsonStr = json.dumps(node,default=lambda o: o.__dict__,sort_keys=False)
|
jsonStr = json.dumps(node,default=lambda o: o.__dict__,sort_keys=False)
|
||||||
merged_index.write(jsonStr + '\n')
|
self.merged_index.write(jsonStr + '\n')
|
||||||
|
|
||||||
full_index.index.sort(key=lambda y:y[0])
|
full_index.index.sort(key=lambda y:y[0])
|
||||||
jsonStr =json.dumps(full_index, default=lambda o: o.__dict__,sort_keys=False)
|
jsonStr =json.dumps(full_index, default=lambda o: o.__dict__,sort_keys=False)
|
||||||
with open("merged_index.index" ,'w') as f:
|
self.merged_index_index.write(jsonStr)
|
||||||
f.write(jsonStr)
|
|
||||||
|
for partial_index in self.list_partials:
|
||||||
|
os.remove("temp/" + partial_index+'.partial')
|
||||||
|
os.remove("temp/" + partial_index+'.index')
|
||||||
|
|
||||||
|
self.merged_index_index.close()
|
||||||
|
self.merged_index.close()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
indexer = Indexer(True,list(),list(),list())
|
indexer = Indexer(list(),dict(),list())
|
||||||
indexer.get_data_path()
|
indexer.get_data_path()
|
||||||
|
print("We have " + str(len(indexer.data_paths)) + " documents to go through !" )
|
||||||
indexer.start()
|
indexer.start()
|
||||||
indexer.merge()
|
indexer.merge()
|
||||||
|
indexer.set_total_weight()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
135094
merged_index.full
135094
merged_index.full
File diff suppressed because one or more lines are too long
1
merged_index.index
Normal file
1
merged_index.index
Normal file
File diff suppressed because one or more lines are too long
46
test.py
46
test.py
@ -11,49 +11,3 @@ import time
|
|||||||
from posting import Posting
|
from posting import Posting
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
self_index = dict()
|
|
||||||
stemmer = PorterStemmer()
|
|
||||||
target = 'data/DEV/aiclub_ics_uci_edu/8ef6d99d9f9264fc84514cdd2e680d35843785310331e1db4bbd06dd2b8eda9b.json'
|
|
||||||
file_load = open(target)
|
|
||||||
data = json.load(file_load)
|
|
||||||
doc_id = target[target.rfind('/')+1:-5]
|
|
||||||
url = data['url']
|
|
||||||
soup = BeautifulSoup(data["content"],features="lxml")
|
|
||||||
# Gets a cleaner version text comparative to soup.get_text()
|
|
||||||
clean_text = ' '.join(soup.stripped_strings)
|
|
||||||
# Looks for large white space, tabbed space, and other forms of spacing and removes it
|
|
||||||
# Regex expression matches for space characters excluding a single space or words
|
|
||||||
clean_text = re.sub(r'\s[^ \w]', '', clean_text)
|
|
||||||
# Tokenizes text and joins it back into an entire string. Make sure it is an entire string is essential for get_tf_idf to work as intended
|
|
||||||
clean_text = " ".join([i for i in clean_text.split() if i != "" and re.fullmatch('[A-Za-z0-9]+', i)])
|
|
||||||
# Stems tokenized text
|
|
||||||
clean_text = " ".join([stemmer.stem(i) for i in clean_text.split()])
|
|
||||||
|
|
||||||
tokens = nltk.word_tokenize(clean_text)
|
|
||||||
|
|
||||||
#counter(count,positionals)
|
|
||||||
|
|
||||||
counter = dict()
|
|
||||||
for i in range(len(tokens)):
|
|
||||||
word = tokens[i]
|
|
||||||
if word in counter:
|
|
||||||
counter[word][0] = counter[word][0] + 1
|
|
||||||
counter[word][1].append(i)
|
|
||||||
else:
|
|
||||||
counter[word] = [1,list()]
|
|
||||||
counter[word][1].append(i)
|
|
||||||
print(counter)
|
|
||||||
doc_length = len(tokens)
|
|
||||||
for index in counter:
|
|
||||||
if index in self_index:
|
|
||||||
postings = self_index[index]
|
|
||||||
postings.append(Posting(doc_id,url,counter[index][0]/doc_length,0,counter[index][1]))
|
|
||||||
else:
|
|
||||||
self_index[index] = list()
|
|
||||||
self_index[index].append(Posting(doc_id,url,counter[index][0]/doc_length,0,counter[index][1]))
|
|
||||||
|
|
||||||
for index in self_index:
|
|
||||||
print(index + str(self_index[index]) + '\n')
|
|
||||||
|
|
||||||
print("The size of the dictionary is {} bytes".format(sys.getsizeof(self_index)))
|
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/isg-friends", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>isg-friends Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>isg-friends Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/isg-friends\">isg-friends</a> list run by <a href=\"mailto:isg-friends-owner@ics.uci.edu\">chenli at ics.uci.edu, yingyib at ics.uci.edu, imaxon at uci.edu</a><br><a href=\"../admin/isg-friends\">isg-friends administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/aperture", "content": "\n<html> <head>\n <title>aperture Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/aperture\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">aperture Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/aperture\">aperture</a> list run by <a href=\"mailto:aperture-owner@ics.uci.edu\">mcupino at ics.uci.edu</a><br><a href=\"../admin/aperture\">aperture administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/alumni.mcs", "content": "\n<html> <head>\n <title>alumni.mcs Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/alumni.mcs/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">alumni.mcs Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/collapseomatic", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>collapseomatic Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>collapseomatic Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/collapseomatic\">collapseomatic</a> list run by <a href=\"mailto:collapseomatic-owner@ics.uci.edu\">wmt at ics.uci.edu, d_j_p_3 at djp3.net</a><br><a href=\"../admin/collapseomatic\">collapseomatic administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/motifmap", "content": "\n<html> <head>\n <title>motifmap Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/motifmap\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">motifmap Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/motifmap\">motifmap</a> list run by <a href=\"mailto:motifmap-owner@ics.uci.edu\">paul.rigor at uci.edu</a><br><a href=\"../admin/motifmap\">motifmap administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/hanalab-researchers", "content": "\n<html> <head>\n <title>HanaLab-Researchers Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/hanalab-researchers\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">HanaLab-Researchers Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/hanalab-researchers\">HanaLab-Researchers</a> list run by <a href=\"mailto:hanalab-researchers-owner@ics.uci.edu\">jingwz2 at uci.edu</a><br><a href=\"../admin/hanalab-researchers\">HanaLab-Researchers administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/phd.csgrads", "content": "\n<html> <head>\n <title>phd.csgrads Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/phd.csgrads/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">phd.csgrads Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/theory-seminar", "content": "\n<html> <head>\n <title>Theory-seminar Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/theory-seminar/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Theory-seminar Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/insa-news", "content": "\n<html> <head>\n <title>INSA-news Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/insa-news\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">INSA-news Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/insa-news\">INSA-news</a> list run by <a href=\"mailto:insa-news-owner@ics.uci.edu\">yunanc at ics.uci.edu</a><br><a href=\"../admin/insa-news\">INSA-news administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/emme", "content": "\n<html> <head>\n <title>emme Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/emme\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">emme Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/emme\">emme</a> list run by <a href=\"mailto:emme-owner@ics.uci.edu\">psinha at ics.uci.edu, jain at ics.uci.edu</a><br><a href=\"../admin/emme\">emme administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/collapseomatic", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>collapseomatic list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>collapseomatic list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/collapseomatic\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/collapseomatic\">collapseomatic</a> list run by <a href=\"mailto:collapseomatic-owner@ics.uci.edu\">wmt at ics.uci.edu, d_j_p_3 at djp3.net</a><br><a href=\"../admin/collapseomatic\">collapseomatic administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/crick", "content": "\n<html> <head>\n <title>crick Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/crick\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">crick Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/crick\">crick</a> list run by <a href=\"mailto:crick-owner@ics.uci.edu\">vishalrp at ics.uci.edu</a><br><a href=\"../admin/crick\">crick administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/asterixresearch", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>asterixresearch Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>asterixresearch Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/asterixresearch\">asterixresearch</a> list run by <a href=\"mailto:asterixresearch-owner@ics.uci.edu\">mjcarey at ics.uci.edu, imaxon at uci.edu, chenli at ics.uci.edu</a><br><a href=\"../admin/asterixresearch\">asterixresearch administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/visionturk", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>visionturk list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>visionturk list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/visionturk\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/visionturk\">visionturk</a> list run by <a href=\"mailto:visionturk-owner@ics.uci.edu\"></a><br><a href=\"../admin/visionturk\">visionturk administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/ics-wics", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>ICS-WICS list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>ICS-WICS list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/ics-wics\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/ics-wics\">ICS-WICS</a> list run by <a href=\"mailto:ics-wics-owner@ics.uci.edu\">neha at ics.uci.edu</a><br><a href=\"../admin/ics-wics\">ICS-WICS administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/hobbes", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>hobbes list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>hobbes list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/hobbes\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/hobbes\">hobbes</a> list run by <a href=\"mailto:hobbes-owner@ics.uci.edu\">xhx at ics.uci.edu</a><br><a href=\"../admin/hobbes\">hobbes administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/aperture", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>aperture Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>aperture Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/aperture\">aperture</a> list run by <a href=\"mailto:aperture-owner@ics.uci.edu\">mcupino at ics.uci.edu</a><br><a href=\"../admin/aperture\">aperture administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/autism", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>autism Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>autism Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/autism\">autism</a> list run by <a href=\"mailto:autism-owner@ics.uci.edu\">hayesg at ics.uci.edu</a><br><a href=\"../admin/autism\">autism administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/cmpro", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>cmpro Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>cmpro Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/cmpro\">cmpro</a> list run by <a href=\"mailto:cmpro-owner@ics.uci.edu\">yuzok at ics.uci.edu</a><br><a href=\"../admin/cmpro\">cmpro administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/hanalab-admins", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>hanalab-admins Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>hanalab-admins Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/hanalab-admins\">hanalab-admins</a> list run by <a href=\"mailto:hanalab-admins-owner@ics.uci.edu\">jingwz2 at uci.edu</a><br><a href=\"../admin/hanalab-admins\">hanalab-admins administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/asterixresearch", "content": "\n<html> <head>\n <title>asterixresearch Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/asterixresearch\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">asterixresearch Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/asterixresearch\">asterixresearch</a> list run by <a href=\"mailto:asterixresearch-owner@ics.uci.edu\">mjcarey at ics.uci.edu, imaxon at uci.edu, chenli at ics.uci.edu</a><br><a href=\"../admin/asterixresearch\">asterixresearch administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/motifmap", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>motifmap list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>motifmap list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/motifmap\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/motifmap\">motifmap</a> list run by <a href=\"mailto:motifmap-owner@ics.uci.edu\">paul.rigor at uci.edu</a><br><a href=\"../admin/motifmap\">motifmap administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/icsb-mjolsness-tutorial", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>Icsb-mjolsness-tutorial Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>Icsb-mjolsness-tutorial Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial</a> list run by <a href=\"mailto:icsb-mjolsness-tutorial-owner@ics.uci.edu\">emj at ics.uci.edu</a><br><a href=\"../admin/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/isg-friends", "content": "\n<html> <head>\n <title>isg-friends Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/isg-friends\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">isg-friends Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/isg-friends\">isg-friends</a> list run by <a href=\"mailto:isg-friends-owner@ics.uci.edu\">chenli at ics.uci.edu, yingyib at ics.uci.edu, imaxon at uci.edu</a><br><a href=\"../admin/isg-friends\">isg-friends administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/visionturk", "content": "\n<html> <head>\n <title>visionturk Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/visionturk/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">visionturk Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/visionturk", "content": "\n<html> <head>\n <title>visionturk Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/visionturk\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">visionturk Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/visionturk\">visionturk</a> list run by <a href=\"mailto:visionturk-owner@ics.uci.edu\"></a><br><a href=\"../admin/visionturk\">visionturk administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/cmpro", "content": "\n<html> <head>\n <title>cmpro Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/cmpro\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">cmpro Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/cmpro\">cmpro</a> list run by <a href=\"mailto:cmpro-owner@ics.uci.edu\">yuzok at ics.uci.edu</a><br><a href=\"../admin/cmpro\">cmpro administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/statistics-alum", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Statistics-alum list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Statistics-alum list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/statistics-alum\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/statistics-alum\">Statistics-alum</a> list run by <a href=\"mailto:statistics-alum-owner@ics.uci.edu\">rbusta at ics.uci.edu</a><br><a href=\"../admin/statistics-alum\">Statistics-alum administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/hanalab-researchers", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>HanaLab-Researchers Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>HanaLab-Researchers Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/hanalab-researchers\">HanaLab-Researchers</a> list run by <a href=\"mailto:hanalab-researchers-owner@ics.uci.edu\">jingwz2 at uci.edu</a><br><a href=\"../admin/hanalab-researchers\">HanaLab-Researchers administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/sislgram", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>SISLgram list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>SISLgram list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/sislgram\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/sislgram\">SISLgram</a> list run by <a href=\"mailto:sislgram-owner@ics.uci.edu\">emj at uci.edu</a><br><a href=\"../admin/sislgram\">SISLgram administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/insa-news", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>INSA-news list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>INSA-news list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/insa-news\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/insa-news\">INSA-news</a> list run by <a href=\"mailto:insa-news-owner@ics.uci.edu\">yunanc at ics.uci.edu</a><br><a href=\"../admin/insa-news\">INSA-news administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/igb-community", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>Igb-community Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>Igb-community Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/igb-community\">Igb-community</a> list run by <a href=\"mailto:igb-community-owner@ics.uci.edu\">janetmk at ics.uci.edu</a><br><a href=\"../admin/igb-community\">Igb-community administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/uicds", "content": "\n<html> <head>\n <title>uicds Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/uicds\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">uicds Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/uicds\">uicds</a> list run by <a href=\"mailto:uicds-owner@ics.uci.edu\">sharad at ics.uci.edu</a><br><a href=\"../admin/uicds\">uicds administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/baldi-group", "content": "\n<html> <head>\n <title>baldi-group Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/baldi-group/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">baldi-group Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/hobbes", "content": "\n<html> <head>\n <title>hobbes Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/hobbes\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">hobbes Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/hobbes\">hobbes</a> list run by <a href=\"mailto:hobbes-owner@ics.uci.edu\">xhx at ics.uci.edu</a><br><a href=\"../admin/hobbes\">hobbes administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/cmpro", "content": "\n<html> <head>\n <title>cmpro Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/cmpro/\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">cmpro Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/collapseomatic", "content": "\n<html> <head>\n <title>collapseomatic Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/collapseomatic\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">collapseomatic Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/collapseomatic\">collapseomatic</a> list run by <a href=\"mailto:collapseomatic-owner@ics.uci.edu\">wmt at ics.uci.edu, d_j_p_3 at djp3.net</a><br><a href=\"../admin/collapseomatic\">collapseomatic administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/hobbes", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>hobbes Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>hobbes Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/hobbes\">hobbes</a> list run by <a href=\"mailto:hobbes-owner@ics.uci.edu\">xhx at ics.uci.edu</a><br><a href=\"../admin/hobbes\">hobbes administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/uicds", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>uicds list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>uicds list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/uicds\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/uicds\">uicds</a> list run by <a href=\"mailto:uicds-owner@ics.uci.edu\">sharad at ics.uci.edu</a><br><a href=\"../admin/uicds\">uicds administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/hans-subtest", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>Hans-subtest Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>Hans-subtest Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/hans-subtest\">Hans-subtest</a> list run by <a href=\"mailto:hans-subtest-owner@ics.uci.edu\">hans at ics.uci.edu</a><br><a href=\"../admin/hans-subtest\">Hans-subtest administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/icsb-mjolsness-tutorial", "content": "\n<html> <head>\n <title>Icsb-mjolsness-tutorial Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/icsb-mjolsness-tutorial\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Icsb-mjolsness-tutorial\nAdministrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial</a> list run by <a href=\"mailto:icsb-mjolsness-tutorial-owner@ics.uci.edu\">emj at ics.uci.edu</a><br><a href=\"../admin/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/hanalab-researchers", "content": "\n<html> <head>\n <title>HanaLab-Researchers Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/hanalab-researchers/\" \nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">HanaLab-Researchers Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/cmpro", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>cmpro list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>cmpro list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/cmpro\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/cmpro\">cmpro</a> list run by <a href=\"mailto:cmpro-owner@ics.uci.edu\">yuzok at ics.uci.edu</a><br><a href=\"../admin/cmpro\">cmpro administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/emme", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>emme list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>emme list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/emme\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/emme\">emme</a> list run by <a href=\"mailto:emme-owner@ics.uci.edu\">psinha at ics.uci.edu, jain at ics.uci.edu</a><br><a href=\"../admin/emme\">emme administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/crick", "content": "\n<html> <head>\n <title>crick Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/crick/\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">crick Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/visionturk", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>visionturk Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>visionturk Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/visionturk\">visionturk</a> list run by <a href=\"mailto:visionturk-owner@ics.uci.edu\"></a><br><a href=\"../admin/visionturk\">visionturk administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/ivecg-faculty", "content": "\n<html> <head>\n <title>Ivecg-faculty Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/ivecg-faculty/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Ivecg-faculty Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/uicds", "content": "\n<html> <head>\n <title>uicds Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/uicds/\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">uicds Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/asterixresearch", "content": "\n<html> <head>\n <title>asterixresearch Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/asterixresearch/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">asterixresearch Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/theory-seminar", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Theory-seminar list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Theory-seminar list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/theory-seminar\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/theory-seminar\">Theory-seminar</a> list run by <a href=\"mailto:theory-seminar-owner@ics.uci.edu\">david.eppstein at gmail.com, goodrich at acm.org</a><br><a href=\"../admin/theory-seminar\">Theory-seminar administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/alumni.mcs", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>alumni.mcs Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>alumni.mcs Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/alumni.mcs\">alumni.mcs</a> list run by <a href=\"mailto:alumni.mcs-owner@ics.uci.edu\">shanahan at ics.uci.edu</a><br><a href=\"../admin/alumni.mcs\">alumni.mcs administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/ivecg-faculty", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>Ivecg-faculty Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>Ivecg-faculty Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/ivecg-faculty\">Ivecg-faculty</a> list run by <a href=\"mailto:ivecg-faculty-owner@ics.uci.edu\">janetmk at ics.uci.edu, lopes at ics.uci.edu</a><br><a href=\"../admin/ivecg-faculty\">Ivecg-faculty administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/hobbes", "content": "\n<html> <head>\n <title>hobbes Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/hobbes/\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">hobbes Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/grad_social_club", "content": "\n<html> <head>\n <title>Grad_social_club Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/grad_social_club\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Grad_social_club Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/grad_social_club\">Grad_social_club</a> list run by <a href=\"mailto:grad_social_club-owner@ics.uci.edu\">arijitg at ics.uci.edu</a><br><a href=\"../admin/grad_social_club\">Grad_social_club administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/isg-friends", "content": "\n<html> <head>\n <title>isg-friends Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/isg-friends/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">isg-friends Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/cml", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Cml list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Cml list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/cml\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/cml\">Cml</a> list run by <a href=\"mailto:cml-owner@ics.uci.edu\">ihler at ics.uci.edu, junkyul at ics.uci.edu, xhx at ics.uci.edu, sameer at uci.edu, sudderth at uci.edu</a><br><a href=\"../admin/cml\">Cml administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/ivecg-community", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Ivecg-community list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Ivecg-community list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/ivecg-community\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/ivecg-community\">Ivecg-community</a> list run by <a href=\"mailto:ivecg-community-owner@ics.uci.edu\">janetmk at ics.uci.edu, lopes at ics.uci.edu</a><br><a href=\"../admin/ivecg-community\">Ivecg-community administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/quasar-l", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Quasar-l list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Quasar-l list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/quasar-l\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/quasar-l\">Quasar-l</a> list run by <a href=\"mailto:quasar-l-owner@ics.uci.edu\"></a><br><a href=\"../admin/quasar-l\">Quasar-l administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/mlrg", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>mlrg list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>mlrg list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/mlrg\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/mlrg\">mlrg</a> list run by <a href=\"mailto:mlrg-owner@ics.uci.edu\">fagostin at uci.edu, gurban at uci.edu</a><br><a href=\"../admin/mlrg\">mlrg administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/hans-subtest", "content": "\n<html> <head>\n <title>Hans-subtest Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/hans-subtest\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Hans-subtest Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/hans-subtest\">Hans-subtest</a> list run by <a href=\"mailto:hans-subtest-owner@ics.uci.edu\">hans at ics.uci.edu</a><br><a href=\"../admin/hans-subtest\">Hans-subtest administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/ics-insa", "content": "\n<html> <head>\n <title>ics-insa Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/ics-insa\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">ics-insa Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/ics-insa\">ics-insa</a> list run by <a href=\"mailto:ics-insa-owner@ics.uci.edu\">yunanc at ics.uci.edu</a><br><a href=\"../admin/ics-insa\">ics-insa administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/crick", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>crick Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>crick Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/crick\">crick</a> list run by <a href=\"mailto:crick-owner@ics.uci.edu\">vishalrp at ics.uci.edu</a><br><a href=\"../admin/crick\">crick administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/phd.csgrads", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>phd.csgrads list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>phd.csgrads list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/phd.csgrads\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/phd.csgrads\">phd.csgrads</a> list run by <a href=\"mailto:phd.csgrads-owner@ics.uci.edu\">hbyrnes at ics.uci.edu</a><br><a href=\"../admin/phd.csgrads\">phd.csgrads administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/hans-subtest", "content": "\n<html> <head>\n <title>Hans-subtest Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/hans-subtest/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Hans-subtest Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/emme", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>emme Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>emme Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/emme\">emme</a> list run by <a href=\"mailto:emme-owner@ics.uci.edu\">psinha at ics.uci.edu, jain at ics.uci.edu</a><br><a href=\"../admin/emme\">emme administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/satware", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>SATware Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>SATware Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/satware\">SATware</a> list run by <a href=\"mailto:satware-owner@ics.uci.edu\">bhore at ics.uci.edu</a><br><a href=\"../admin/satware\">SATware administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/motifmap", "content": "\n<html> <head>\n <title>motifmap Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/motifmap/\"\nname=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">motifmap Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/satware", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>SATware list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>SATware list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/satware\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/satware\">SATware</a> list run by <a href=\"mailto:satware-owner@ics.uci.edu\">bhore at ics.uci.edu</a><br><a href=\"../admin/satware\">SATware administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/aperture", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>aperture list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>aperture list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/aperture\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/aperture\">aperture</a> list run by <a href=\"mailto:aperture-owner@ics.uci.edu\">mcupino at ics.uci.edu</a><br><a href=\"../admin/aperture\">aperture administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/alumni.mcs", "content": "\n<html> <head>\n <title>alumni.mcs Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/alumni.mcs\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">alumni.mcs Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/alumni.mcs\">alumni.mcs</a> list run by <a href=\"mailto:alumni.mcs-owner@ics.uci.edu\">shanahan at ics.uci.edu</a><br><a href=\"../admin/alumni.mcs\">alumni.mcs administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/hanalab-admins", "content": "\n<html> <head>\n <title>hanalab-admins Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/hanalab-admins\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">hanalab-admins Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/hanalab-admins\">hanalab-admins</a> list run by <a href=\"mailto:hanalab-admins-owner@ics.uci.edu\">jingwz2 at uci.edu</a><br><a href=\"../admin/hanalab-admins\">hanalab-admins administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/private/cml", "content": "\n<html> <head>\n <title>Cml Private Archives Authentication</title>\n<script>function sf(){document.f.username.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"https://mailman.ics.uci.edu/mailman/private/cml/\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Cml Private\n\t Archives Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">Email address:</div></TD>\n <TD><INPUT TYPE=\"text\" NAME=\"username\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <TD><div ALIGN=\"Right\">Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"password\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=\"middle\"><INPUT type=\"SUBMIT\"\n name=\"submit\"\n\t\t\t\t\t value=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise\n you will have to re-authenticate with every operation.\n\n <p>Session cookies are used in Mailman's\n private archive interface so that you don't need to\n re-authenticate with every operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by visiting your\n member options page and clicking the\n <em>Log out</em> button.\n <p>\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">Password Reminder</FONT></B>\n </TD>\n </TR>\n <tr>\n <td>If you don't remember your password, enter your email\naddress\n above and click the <em>Remind</em> button and your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\"\nvalue=\"Remind\" ></center></td>\n </tr>\n </TABLE>\n</FORM> </body> </html>\n\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/nsf-career", "content": "<head><title>Bug in Mailman version 2.1.15</title></head>\n<body bgcolor=#ffffff><h2>Bug in Mailman version 2.1.15</h2>\n<p><h3>We're sorry, we hit a bug!</h3>\n\n<p>Please inform the webmaster for this site of this\nproblem. Printing of traceback and other system information has been\nexplicitly inhibited, but the webmaster can find this information in the\nMailman error logs.\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/options/icsb-mjolsness-tutorial", "content": "\n<HTML>\n<HEAD>\n<LINK REL=\"SHORTCUT ICON\" HREF=\"/icons/mm-icon.png\">\n<META http-equiv=\"Content-Type\" content=\"text/html; charset=us-ascii\">\n<TITLE>Icsb-mjolsness-tutorial list: member options login page</TITLE>\n</HEAD>\n<BODY bgcolor=\"white\"\ndir=\"ltr\">\n\n<table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Icsb-mjolsness-tutorial list: member options login page</h2></center></td>\n </tr>\n</table>\n\n<FORM action=\"../options/icsb-mjolsness-tutorial\" method=\"POST\" >\n<INPUT name=\"language\" type=\"HIDDEN\" value=\"en\" >\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"100%\">\n <tr>\n <td>In order to change your membership option, you must\n first log in by giving your email address and membership password in the section\n below. If you don't remember your membership password, you can have it\n emailed to you by clicking on the button below. If you just want to\n unsubscribe from this list, click on the <em>Unsubscribe</em> button and a\n confirmation message will be sent to you.\n\n <p><strong><em>Important:</em></strong> From this point on, you must have\n cookies enabled in your browser, otherwise none of your changes will take\n effect.\n </td>\n </tr>\n <tr>\n <td><center>\n <table CELLPADDING=\"5\" CELLSPACING=\"4\" BORDER=\"0\" WIDTH=\"50%\">\n <tr>\n <td><div align=\"right\">Email address:</div></td>\n <td><INPUT name=\"email\" type=\"TEXT\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td><div align=\"right\">Password:</div></td>\n <td><INPUT name=\"password\" type=\"PASSWORD\" value=\"\" size=\"20\" ></td>\n </tr>\n <tr>\n <td COLSPAN=\"2\"><center><INPUT name=\"login\" type=\"SUBMIT\" value=\"Log in\" ></center></td>\n </tr>\n </table>\n</center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Unsubscribe</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Unsubscribe</em> button, a\n confirmation message will be emailed to you. This message will have a\n link that you should click on to complete the removal process (you can\n also confirm by email; see the instructions in the confirmation\n message).</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-unsub\" type=\"SUBMIT\" value=\"Unsubscribe\" ></center></td>\n </tr>\n <tr>\n <td BGCOLOR=\"#99ccff\"><center><h2>Password reminder</h2></center></td>\n </tr>\n <tr>\n <td>By clicking on the <em>Remind</em> button, your\n password will be emailed to you.</td>\n </tr>\n <tr>\n <td><center><INPUT name=\"login-remind\" type=\"SUBMIT\" value=\"Remind\" ></center></td>\n </tr>\n </table>\n\n</FORM>\n<hr><address><a href=\"../listinfo/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial</a> list run by <a href=\"mailto:icsb-mjolsness-tutorial-owner@ics.uci.edu\">emj at ics.uci.edu</a><br><a href=\"../admin/icsb-mjolsness-tutorial\">Icsb-mjolsness-tutorial administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</BODY>\n</HTML>\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/subscribe/theory-seminar", "content": "<!-- $Revision: 3550 $ -->\n<html>\n<head><title>Theory-seminar Subscription results</title></head>\n<body bgcolor=\"white\">\n<h1>Theory-seminar Subscription results</h1>\nYou must supply a valid email address.\n<hr><address><a href=\"../listinfo/theory-seminar\">Theory-seminar</a> list run by <a href=\"mailto:theory-seminar-owner@ics.uci.edu\">david.eppstein at gmail.com, goodrich at acm.org</a><br><a href=\"../admin/theory-seminar\">Theory-seminar administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n</body>\n</html>\n\n", "encoding": "ascii"}
|
@ -0,0 +1 @@
|
|||||||
|
{"url": "https://mailman.ics.uci.edu/mailman/admin/ics-wics", "content": "\n<html> <head>\n <title>ICS-WICS Administrator Authentication</title>\n<script>function sf(){document.f.adminpw.focus();}</script> </head>\n<body bgcolor=\"#ffffff\" onLoad=\"sf()\"> <FORM METHOD=POST\nACTION=\"/mailman/admin/ics-wics\" name=\"f\">\n\n <TABLE WIDTH=\"100%\" BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"5\">\n <TR>\n <TD COLSPAN=\"2\" WIDTH=\"100%\" BGCOLOR=\"#99CCFF\" ALIGN=\"CENTER\">\n\t<B><FONT COLOR=\"#000000\" SIZE=\"+1\">ICS-WICS Administrator\n\t Authentication</FONT></B>\n </TD>\n </TR>\n <tr>\n <TD><div ALIGN=\"Right\">List Administrator Password:</div></TD>\n <TD><INPUT TYPE=\"password\" NAME=\"adminpw\" SIZE=\"30\"></TD>\n </tr>\n <tr>\n <td colspan=2 align=middle><INPUT type=\"SUBMIT\"\n name=\"admlogin\"\n\t\t\t\t\tvalue=\"Let me in...\">\n </td>\n </tr>\n </TABLE>\n <p><strong><em>Important:</em></strong> From this point on, you\n must have cookies enabled in your browser, otherwise no\n administrative changes will take effect.\n\n <p>Session cookies are used in Mailman's\n administrative interface so that you don't need to\n re-authenticate with every administrative operation. This\n cookie will expire automatically when you exit your browser, or\n you can explicitly expire the cookie by hitting the\n <em>Logout</em> link under <em>Other Administrative\n Activities</em> (which you'll see once you successfully log in).\n</FORM> </body> </html>\n\n<hr><address><a href=\"../listinfo/ics-wics\">ICS-WICS</a> list run by <a href=\"mailto:ics-wics-owner@ics.uci.edu\">neha at ics.uci.edu</a><br><a href=\"../admin/ics-wics\">ICS-WICS administrative interface</a> (requires authorization)<br><a href=\"../listinfo\">Overview of all ics.uci.edu mailing lists</a><p>\n<table WIDTH=\"100%\" BORDER=\"0\">\n <tr>\n <td><img src=\"/icons/mailman.jpg\" alt=\"Delivered by Mailman\" border=0><br>version 2.1.15</td>\n <td><img src=\"/icons/PythonPowered.png\" alt=\"Python Powered\" border=0></td>\n <td><img src=\"/icons/gnu-head-tiny.jpg\" alt=\"GNU's Not Unix\" border=0></td>\n </tr>\n</table>\n</address>\n", "encoding": "ascii"}
|
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user