Skip to content

Instantly share code, notes, and snippets.

View tru's full-sized avatar

Tobias Hieta tru

View GitHub Profile
Traceback (most recent call last):
File "/usr/local/socorro/application/socorro/processor/processor_app.py", line 167, in <module>
main(ProcessorApp)
File "/usr/local/socorro/application/socorro/app/generic_app.py", line 179, in main
config_pathname=config_path
File "/usr/local/socorro/thirdparty/configman/config_manager.py", line 187, in __init__
self)
File "/usr/local/socorro/thirdparty/configman/value_sources/__init__.py", line 152, in wrap
raise AllHandlersFailedException(errors)
configman.value_sources.source_exceptions.AllHandlersFailedException: ConfigParser doesn't know how to handle ./config.; ConfigObj doesn't know how to handle ./config.; json can't handle: ./config; Conf doesn't know how to handle ./config.
# name: application
# doc: the fully qualified module or class of the application
# converter: configman.converters.class_converter
#application='ProcessorApp'
[destination]
# name: crashstorage_class
# doc: the destination storage class
# converter: configman.converters.class_converter
breakpad=# select * from releases_raw ;
product_name | version | platform | build_id | build_type | beta_number | repository
-----------------+----------+----------+----------------+------------+-------------+------------
PlexMediaServer | 0.9.7.12 | linux | 20130128000000 | Nightly | | nightly
PlexMediaServer | 0.9.7.12 | macosx | 20130128000000 | Nightly | | nightly
PlexMediaServer | 0.9.7.12 | win32 | 20130128000000 | Nightly | | nightly
(3 rows)
breakpad=# select * from product_info ;
breakpad=# select count(*) from product_info ;
description "Plex Home Theater"
author "tobias hieta"
start on ((filesystem
and runlevel [!06]
and started dbus
and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1
or stopped udev-fallback-graphics))
or runlevel PREVLEVEL=S)
# vim: syntax=apache
<VirtualHost *:80>
ServerName stats.crashdev.plexapp.com
ServerAlias stats.crashdev.plexapp.com
ErrorLog /var/log/apache2/stats.crashdev.plexapp.com/error.log
WSGIDaemonProcess stats user=socorro threads=5 python-path=/data/socorro/crashstats home=/data/socorro
WSGIScriptAlias / /data/socorro/crashstats/wsgi/socorro-crashstats.wsgi
WSGIProcessGroup stats
WSGIApplicationGroup %{GLOBAL}
</VirtualHost>
# vim: syntax=apache
<VirtualHost *:80>
ServerName reports.crashdev.plexapp.com
ServerAlias reports.crashdev.plexapp.com
DocumentRoot /data/socorro/application
ErrorLog /var/log/apache2/reports.crashdev.plexapp.com/error.log
LogLevel debug
SetEnv DEFAULT_SOCORRO_CONFIG_PATH /etc/socorro
Options FollowSymLinks
WSGIPythonPath /data/socorro/application/application:/data/socorro/application/thirdparty
<VirtualHost *:80>
ServerName api.crashdev.plexapp.com
ServerAlias api.crashdev.plexapp.com
ErrorLog /var/log/apache2/api.crashdev.plexapp.com/error.log
SetEnv DEFAULT_SOCORRO_CONFIG_PATH /etc/socorro
WSGIDaemonProcess api user=socorro threads=10 python-path=/data/socorro/application/application:/data/socorro/application/thirdparty home=/home/socorro
WSGIScriptAlias / /data/socorro/application/application/wsgi/middleware.wsgi
<advancedsettings><gui><algorithmdirtyregions>0</algorithmdirtyregions></gui></advancedsettings>
on osx
echo "<advancedsettings><gui><algorithmdirtyregions>0</algorithmdirtyregions></gui></advancedsettings>" > ~/Library/Application\ Support/Plex\ Home\ Theater/userdata/advancedsettings.xml
--- src/video/quartz/SDL_QuartzWindow.m.orig 2013-10-31 04:29:45.000000000 -0700
+++ src/video/quartz/SDL_QuartzWindow.m 2013-10-31 04:30:05.000000000 -0700
@@ -87,7 +87,7 @@
SDL_VideoDevice *this = (SDL_VideoDevice*)current_video;
/* make sure pixels are fully opaque */
- if (! ( SDL_VideoSurface->flags & SDL_OPENGL ) )
+ if ( SDL_VideoSurface && ! ( SDL_VideoSurface->flags & SDL_OPENGL ) )
QZ_SetPortAlphaOpaque ();