AutoLink icon indicating copy to clipboard operation
AutoLink copied to clipboard

Results 9 AutoLink issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/4550421/62038270-03945700-b228-11e9-9aac-24cd08fce325.png)

Bumps [jinja2](https://github.com/pallets/jinja) from 2.8 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

Bumps [flask](https://github.com/pallets/flask) from 0.11 to 1.0. Release notes Sourced from flask's releases. 1.0 The Pallets team is pleased to release Flask 1.0. [Read the announcement on our blog.](https://www.palletsprojects.com/blog/flask-1-0-released/ There are...

dependencies

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 0.14.1 to 0.15.3. Release notes Sourced from werkzeug's releases. 0.15.3 Blog: https://palletsprojects.com/blog/werkzeug-0-15-3-released/ Changes: https://werkzeug.palletsprojects.com/en/0.15.x/changes/#version-0-15-3 0.15.2 Blog: https://palletsprojects.com/blog/werkzeug-0-15-2-released/ Changes: https://werkzeug.palletsprojects.com/en/0.15.x/changes/#version-0-15-2 0.15.1 Blog: https://palletsprojects.com/blog/werkzeug-0-15-1-released/ Changes: https://werkzeug.palletsprojects.com/en/0.15.x/changes/ 0.15.0 Blog: https://palletsprojects.com/blog/werkzeug-0-15-0-released/...

dependencies

Bumps [requests](https://github.com/psf/requests) from 2.18.4 to 2.20.0. Changelog Sourced from requests's changelog. 2.20.0 (2018-10-18) Bugfixes Content-Type header parsing is now case-insensitive (e.g. charset=utf8 v Charset=utf8). Fixed exception leak where certain redirect...

dependencies

看这个项目虽小,但各种功能都有,不知道是否有演化出更多功能?

用户注销功能失效: 在auth.py文件中的 get 方法。 def get(): args = self.parser.parse_arges() username = arges["username"] if username in session: # 判断错误,username不应该取值session_dict的value值,应该是key值。该判断应该为 if “username” in session session.pop(username, None) # session_dict删除也是通过key值。应改为 session.pop("username", None) 。 这样修改注销功能才正常

![image](https://github.com/small99/AutoLink/assets/20598377/5f85d53a-0233-49a0-8189-6b71fcb703f7) Exception Exception: Missing user_loader or request_loader. Refer to http://flask-login.readthedocs.io/#how-it-works for more info. Traceback (most recent call last) File "/Users/apple/.virtualenvs/autoLinkEnv/lib/python3.9/site-packages/flask/app.py", line 2213, in __call__ return self.wsgi_app(environ, start_response) File "/Users/apple/.virtualenvs/autoLinkEnv/lib/python3.9/site-packages/flask/app.py", line...