Split input at newlines and add each as separate entries
Simon Volpert
3 years ago
133 | 133 | print('10 Enter new entry\r') |
134 | 134 | else: |
135 | 135 | state = read_state() |
136 | if query_string not in state: | |
137 | state.append(query_string) | |
138 | write_state(state) | |
136 | # Split input at newlines and add each as separate entries | |
137 | for line in query_string.split('%0A'): | |
138 | if line != '' and line not in state: | |
139 | state.append(line) | |
140 | write_state(state) | |
139 | 141 | print('30 gemini://{}/cgi-bin/todo\r'.format(server_name)) |
140 | 142 | # Remove existing entry |
141 | 143 | elif path_info == '/rm': |