Ajax images upload in django admin

2012-06-30 Thread Maksim Schepelin
Hi. I need to do drag and drop images uploader for django admin. I think take this(https://github.com/blueimp/jQuery-File-Upload) as a basis. But don't understand how it use in django admin. Perhabs, exists complete solutions for this task? Wil

Re: Use regular expression to retrieve all image tags from a given content

2012-06-30 Thread Maksim Schepelin
Why not use html parse lib? BeautifulSoup( http://www.crummy.com/software/BeautifulSoup/) for expample from BeautifulSoup import BeautifulSoup soup = BeautifulSoup('put_youp_html_code_as_string') images = soup.find_all('img') If you need exactly regular expressions, watch this video: http://www.