Custom Query (1168 matches)
Results (34 - 36 of 1168)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1013 | wontfix | 0.7.1 not on pypi | ||
Description |
Latest is 0.7.0 |
|||
#5497 | duplicate | 0.9.0 pdf fails: No plugins using two-step checking found | ||
Description |
Looks like the pdf plugin can't handle PDF files.
sudo apt-get install -y poppler-utils echo "mediagoblin.media_types.pdf" >> mediagoblin_local.ini git submodule init && git submodule update ./bin/gmg dbupdate sudo service mediagoblin-paster restart
2017-02-10 00:49:20,798 INFO [mediagoblin.init.plugins] Importing plugin module: mediagoblin.media_types.pdf 2017-02-10 01:20:43,799 INFO [mediagoblin.media_types] No plugins handled extension .pdf 2017-02-10 01:20:43,800 INFO [mediagoblin.media_types] No plugins using two-step checking found From mediagoblin/media_types/init.py def sniff_media(media_file, filename): ''' Iterate through the enabled media types and find those suited for a certain file. ''' # copy the contents to a .name-enabled temporary file for further checks # TODO: there are cases when copying is not required tmp_media_file = tempfile.NamedTemporaryFile() shutil.copyfileobj(media_file, tmp_media_file) media_file.seek(0) tmp_media_file.seek(0) try: return type_match_handler(tmp_media_file, filename) except TypeNotFound as e: _log.info('No plugins using two-step checking found') Log messages look similar to #5348. |
|||
#671 | fixed | 3D model parser fails on stl models | ||
Description |
I found a special case which the binary stl files will be parsed as a ascii stl file (which is normal) and fail in an unexpected way, as well as a case where ascii stl files (and plausibly obj files) will fail when there is indentation present in the file. Will push a fix in a few minutes. |