Simon Volpert gmitodo / 0ac62a9
Split input at newlines and add each as separate entries Simon Volpert 3 years ago
1 changed file(s) with 5 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
133133 print('10 Enter new entry\r')
134134 else:
135135 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)
139141 print('30 gemini://{}/cgi-bin/todo\r'.format(server_name))
140142 # Remove existing entry
141143 elif path_info == '/rm':