cgi.py: rename parseOptions to parse_options
This commit is contained in:
		
							
								
								
									
										14
									
								
								morss/cgi.py
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								morss/cgi.py
									
									
									
									
									
								
							@@ -19,7 +19,7 @@ from .morss import Options, log, DELAY, MorssException
 | 
				
			|||||||
from . import cred
 | 
					from . import cred
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def parseOptions(options):
 | 
					def parse_options(options):
 | 
				
			||||||
    """ Turns ['md=True'] into {'md':True} """
 | 
					    """ Turns ['md=True'] into {'md':True} """
 | 
				
			||||||
    out = {}
 | 
					    out = {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -27,14 +27,7 @@ def parseOptions(options):
 | 
				
			|||||||
        split = option.split('=', 1)
 | 
					        split = option.split('=', 1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if len(split) > 1:
 | 
					        if len(split) > 1:
 | 
				
			||||||
            if split[0].lower() == 'true':
 | 
					            out[split[0]] = split[1]
 | 
				
			||||||
                out[split[0]] = True
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            elif split[0].lower() == 'false':
 | 
					 | 
				
			||||||
                out[split[0]] = False
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            else:
 | 
					 | 
				
			||||||
                out[split[0]] = split[1]
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        else:
 | 
					        else:
 | 
				
			||||||
            out[split[0]] = True
 | 
					            out[split[0]] = True
 | 
				
			||||||
@@ -62,6 +55,7 @@ def cgi_parse_environ(environ):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        if len(split) > 1:
 | 
					        if len(split) > 1:
 | 
				
			||||||
            url = split[1]
 | 
					            url = split[1]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        else:
 | 
					        else:
 | 
				
			||||||
            url = ''
 | 
					            url = ''
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -69,7 +63,7 @@ def cgi_parse_environ(environ):
 | 
				
			|||||||
        raw_options = []
 | 
					        raw_options = []
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # init
 | 
					    # init
 | 
				
			||||||
    options = Options(parseOptions(raw_options))
 | 
					    options = Options(parse_options(raw_options))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (url, options)
 | 
					    return (url, options)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user