Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created June 3, 2019 03:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/c8f34d6f67294591083d9aad47d23abb to your computer and use it in GitHub Desktop.
Save ryantm/c8f34d6f67294591083d9aad47d23abb to your computer and use it in GitHub Desktop.
/nix/store/wdqfr1q7149ac5wpmbv1hfxdnb5f2yy4-sabnzbd-2.3.9
├── ABOUT.txt
├── appveyor.yml
├── bin
│   └── sabnzbd
├── cherrypy
│   ├── cherryd
│   ├── _cpchecker.py
│   ├── _cpcompat.py
│   ├── _cpconfig.py
│   ├── _cpdispatch.py
│   ├── _cperror.py
│   ├── _cplogging.py
│   ├── _cpmodpy.py
│   ├── _cpnative_server.py
│   ├── _cpreqbody.py
│   ├── _cprequest.py
│   ├── _cpserver.py
│   ├── _cptools.py
│   ├── _cptree.py
│   ├── _cpwsgi.py
│   ├── _cpwsgi_server.py
│   ├── daemon.py
│   ├── favicon.ico
│   ├── _helper.py
│   ├── __init__.py
│   ├── lib
│   │   ├── auth_basic.py
│   │   ├── auth_digest.py
│   │   ├── auth.py
│   │   ├── caching.py
│   │   ├── covercp.py
│   │   ├── cpstats.py
│   │   ├── cptools.py
│   │   ├── encoding.py
│   │   ├── gctools.py
│   │   ├── httpauth.py
│   │   ├── httputil.py
│   │   ├── __init__.py
│   │   ├── jsontools.py
│   │   ├── lockfile.py
│   │   ├── locking.py
│   │   ├── profiler.py
│   │   ├── reprconf.py
│   │   ├── sessions.py
│   │   ├── static.py
│   │   └── xmlrpcutil.py
│   ├── __main__.py
│   ├── process
│   │   ├── __init__.py
│   │   ├── plugins.py
│   │   ├── servers.py
│   │   ├── win32.py
│   │   └── wspbus.py
│   ├── VERSION.txt
│   └── wsgiserver
│   ├── __init__.py
│   ├── ssl_builtin.py
│   └── ssl_pyopenssl.py
├── COPYRIGHT.txt
├── email
│   ├── badfetch-en.tmpl
│   ├── email-en.tmpl
│   └── rss-en.tmpl
├── gntp
│   ├── cli.py
│   ├── config.py
│   ├── core.py
│   ├── errors.py
│   ├── __init__.py
│   ├── notifier.py
│   ├── shim.py
│   └── version.py
├── GPL2.txt
├── GPL3.txt
├── icons
│   ├── nzb.ico
│   ├── sabnzbd16_32green.ico
│   ├── sabnzbd16_32.ico
│   ├── sabnzbd16_32paused.ico
│   └── sabnzbd.ico
├── INSTALL.txt
├── interfaces
│   ├── Config
│   │   ├── README.txt
│   │   └── templates
│   │   ├── config_cat.tmpl
│   │   ├── config_folders.tmpl
│   │   ├── config_general.tmpl
│   │   ├── config_notify.tmpl
│   │   ├── config_rss.tmpl
│   │   ├── config_scheduling.tmpl
│   │   ├── config_server.tmpl
│   │   ├── config_sorting.tmpl
│   │   ├── config_special.tmpl
│   │   ├── config_switches.tmpl
│   │   ├── config.tmpl
│   │   ├── _inc_footer_uc.tmpl
│   │   ├── _inc_header_uc.tmpl
│   │   ├── login
│   │   │   └── main.tmpl
│   │   ├── main.tmpl
│   │   └── staticcfg
│   │   ├── bootstrap
│   │   │   ├── css
│   │   │   │   └── bootstrap.min.css
│   │   │   ├── fonts
│   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   └── glyphicons-halflings-regular.ttf
│   │   │   └── js
│   │   │   └── bootstrap.min.js
│   │   ├── css
│   │   │   ├── chartist.min.css
│   │   │   ├── login.css
│   │   │   └── style.css
│   │   ├── ico
│   │   │   ├── android-192x192.png
│   │   │   ├── apple-touch-icon-120x120-precomposed.png
│   │   │   ├── apple-touch-icon-152x152-precomposed.png
│   │   │   ├── apple-touch-icon-180x180-precomposed.png
│   │   │   ├── apple-touch-icon-76x76-precomposed.png
│   │   │   ├── favicon.ico
│   │   │   ├── faviconpaused.ico
│   │   │   └── safari-pinned-tab.svg
│   │   ├── images
│   │   │   ├── logo-arrow.svg
│   │   │   ├── logo-full.svg
│   │   │   └── logo-small.svg
│   │   └── js
│   │   ├── chartist.min.js
│   │   ├── filesize.min.js
│   │   ├── jquery-3.2.1.min.js
│   │   ├── jquery.tablesort.min.js
│   │   ├── jquery-ui.min.js
│   │   └── script.js
│   ├── Glitter
│   │   ├── licenses
│   │   │   ├── LICENSE-Apache.txt
│   │   │   ├── LICENSE-CC.txt
│   │   │   └── LICENSE-MIT.txt
│   │   └── templates
│   │   ├── history.tmpl
│   │   ├── include_history.tmpl
│   │   ├── include_menu.tmpl
│   │   ├── include_messages.tmpl
│   │   ├── include_overlays.tmpl
│   │   ├── include_queue.tmpl
│   │   ├── main.tmpl
│   │   ├── nzo.tmpl
│   │   ├── queue.tmpl
│   │   ├── static
│   │   │   ├── bootstrap
│   │   │   │   ├── css
│   │   │   │   │   └── bootstrap.min.css
│   │   │   │   ├── fonts
│   │   │   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   │   │   └── glyphicons-halflings-regular.ttf
│   │   │   │   └── js
│   │   │   │   └── bootstrap.min.js
│   │   │   ├── javascripts
│   │   │   │   ├── date.min.js
│   │   │   │   ├── glitter.basic.js
│   │   │   │   ├── glitter.filelist.pagination.js
│   │   │   │   ├── glitter.history.js
│   │   │   │   ├── glitter.js
│   │   │   │   ├── glitter.main.js
│   │   │   │   ├── glitter.queue.js
│   │   │   │   ├── jquery.min.js
│   │   │   │   ├── jquery.peity.min.js
│   │   │   │   ├── jquery-ui.min.js
│   │   │   │   ├── knockout-extensions.js
│   │   │   │   ├── knockout-latest.js
│   │   │   │   ├── momentjs_locale
│   │   │   │   │   ├── da.js
│   │   │   │   │   ├── de.js
│   │   │   │   │   ├── es.js
│   │   │   │   │   ├── fi.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   ├── he.js
│   │   │   │   │   ├── nb.js
│   │   │   │   │   ├── nl.js
│   │   │   │   │   ├── pl.js
│   │   │   │   │   ├── pt-br.js
│   │   │   │   │   ├── ro.js
│   │   │   │   │   ├── ru.js
│   │   │   │   │   ├── sr.js
│   │   │   │   │   ├── sv.js
│   │   │   │   │   └── zh-cn.js
│   │   │   │   └── moment.min.js
│   │   │   └── stylesheets
│   │   │   ├── colorschemes
│   │   │   │   ├── Default.css
│   │   │   │   └── Night.css
│   │   │   ├── glitter.css
│   │   │   └── glitter.mobile.css
│   │   └── status.tmpl
│   ├── Plush
│   │   ├── licenses
│   │   │   ├── LICENSE-BSD.txt
│   │   │   ├── LICENSE-CC.txt
│   │   │   ├── LICENSE-GPL3.txt
│   │   │   ├── LICENSE-GPL.txt
│   │   │   ├── LICENSE-LGPL.txt
│   │   │   ├── LICENSE-MIT.txt
│   │   │   └── LICENSE-WebToolkit.txt
│   │   ├── README.txt
│   │   └── templates
│   │   ├── history.tmpl
│   │   ├── _inc_footer.tmpl
│   │   ├── _inc_header.tmpl
│   │   ├── _inc_modals.tmpl
│   │   ├── main.tmpl
│   │   ├── nzo.tmpl
│   │   ├── queue.tmpl
│   │   ├── static
│   │   │   ├── javascripts
│   │   │   │   ├── config.js
│   │   │   │   ├── lib.js
│   │   │   │   └── plush.js
│   │   │   └── stylesheets
│   │   │   ├── colorschemes
│   │   │   │   └── gold
│   │   │   │   ├── gold.css
│   │   │   │   ├── images
│   │   │   │   │   ├── colorbox-border.png
│   │   │   │   │   ├── colorbox-controls.png
│   │   │   │   │   ├── loading-bar.gif
│   │   │   │   │   ├── loading-spinner.gif
│   │   │   │   │   ├── nav
│   │   │   │   │   │   ├── addnzb-grey.png
│   │   │   │   │   │   ├── addnzb.png
│   │   │   │   │   │   ├── config.png
│   │   │   │   │   │   ├── connections-grey.png
│   │   │   │   │   │   ├── connections.png
│   │   │   │   │   │   ├── downloads-grey.png
│   │   │   │   │   │   ├── downloads.png
│   │   │   │   │   │   ├── help-grey.png
│   │   │   │   │   │   ├── help.png
│   │   │   │   │   │   ├── options.png
│   │   │   │   │   │   ├── refresh-grey.png
│   │   │   │   │   │   ├── refresh.png
│   │   │   │   │   │   ├── rss-grey.png
│   │   │   │   │   │   └── rss.png
│   │   │   │   │   ├── sound16.png
│   │   │   │   │   ├── sprite-config.png
│   │   │   │   │   ├── sprite-main.png
│   │   │   │   │   ├── sprite-tilex.png
│   │   │   │   │   ├── sprite-tiley.png
│   │   │   │   │   ├── thumbdown20.png
│   │   │   │   │   ├── thumbup20.png
│   │   │   │   │   └── vision16.png
│   │   │   │   └── images-split.tar.gz
│   │   │   ├── jqueryui
│   │   │   │   └── overcast
│   │   │   │   ├── images
│   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   ├── ui-bg_flat_0_eeeeee_40x100.png
│   │   │   │   │   ├── ui-bg_flat_55_c0402a_40x100.png
│   │   │   │   │   ├── ui-bg_flat_55_eeeeee_40x100.png
│   │   │   │   │   ├── ui-bg_glass_100_f8f8f8_1x400.png
│   │   │   │   │   ├── ui-bg_glass_35_dddddd_1x400.png
│   │   │   │   │   ├── ui-bg_glass_60_eeeeee_1x400.png
│   │   │   │   │   ├── ui-bg_inset-hard_75_999999_1x100.png
│   │   │   │   │   ├── ui-bg_inset-soft_50_c9c9c9_1x100.png
│   │   │   │   │   ├── ui-icons_3383bb_256x240.png
│   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   ├── ui-icons_70b2e1_256x240.png
│   │   │   │   │   ├── ui-icons_999999_256x240.png
│   │   │   │   │   └── ui-icons_fbc856_256x240.png
│   │   │   │   └── jquery-ui-1.8.15.custom.css
│   │   │   └── rateit
│   │   │   ├── delete.gif
│   │   │   ├── rateit.css
│   │   │   └── star.gif
│   │   └── status.tmpl
│   ├── smpl
│   │   ├── CreativeCommons2-5.txt
│   │   ├── CreativeCommons3-0.txt
│   │   ├── GPL2.txt
│   │   ├── GPL3.txt
│   │   ├── LICENCE-silk_icons.txt
│   │   ├── License-ExCanvas.txt
│   │   ├── License-getElementPosition.txt
│   │   ├── License-MochiKit.txt
│   │   ├── License-Nuvola.txt
│   │   ├── License-PlotKit.txt
│   │   ├── LICENSE.txt
│   │   ├── README.txt
│   │   └── templates
│   │   ├── history.tmpl
│   │   ├── main.tmpl
│   │   ├── nzo.tmpl
│   │   ├── queue.tmpl
│   │   ├── static
│   │   │   ├── excanvas
│   │   │   │   └── excanvas.js
│   │   │   ├── feed-icon-14x14.png
│   │   │   ├── images
│   │   │   │   ├── browser.png
│   │   │   │   ├── bullet_arrow_down.png
│   │   │   │   ├── control_pause.png
│   │   │   │   ├── control_play.png
│   │   │   │   ├── down.gif
│   │   │   │   ├── drive_go.png
│   │   │   │   ├── drive.png
│   │   │   │   ├── favicon.ico
│   │   │   │   ├── key_enter.png
│   │   │   │   ├── messagebox_critical.png
│   │   │   │   ├── nuvola
│   │   │   │   │   └── kgpg.png
│   │   │   │   └── up.gif
│   │   │   ├── MochiKit
│   │   │   │   ├── MochiKit.js
│   │   │   │   └── __package__.js
│   │   │   ├── PlotKit
│   │   │   │   └── PlotKit.js
│   │   │   ├── sabnzbd_small4.png
│   │   │   └── stylesheets
│   │   │   ├── colorschemes
│   │   │   │   ├── black.css
│   │   │   │   └── white.css
│   │   │   └── smpl.css
│   │   └── status.tmpl
│   └── wizard
│   ├── inc_bottom.tmpl
│   ├── inc_top.tmpl
│   ├── index.html
│   ├── one.html
│   ├── README.TXT
│   ├── static
│   │   ├── javascript
│   │   │   └── checkserver.js
│   │   └── style.css
│   └── two.html
├── ISSUES.txt
├── licenses
│   ├── License-CherryPy.txt
│   ├── License-configobj.txt
│   ├── License-feedparser.txt
│   ├── License-gntp.txt
│   ├── License-kronos.txt
│   ├── License-pybonjour.txt
│   ├── License-pynewsleecher.txt
│   ├── License-PythonParts.txt
│   ├── License-Python.txt
│   ├── License-rarfile.txt
│   ├── License-rsslib.txt
│   ├── License-six.txt
│   └── License-systrayicon.txt
├── LICENSE.txt
├── linux
│   └── sabnzbd@.service
├── osx
│   ├── 7zip
│   │   ├── 7za
│   │   └── License.txt
│   ├── par2
│   │   ├── LICENSE
│   │   └── par2-sl64
│   └── unrar
│   ├── license.txt
│   └── unrar
├── PKG-INFO
├── po
│   ├── email
│   │   ├── da.po
│   │   ├── de.po
│   │   ├── en.po
│   │   ├── es.po
│   │   ├── fi.po
│   │   ├── fr.po
│   │   ├── he.po
│   │   ├── nb.po
│   │   ├── nl.po
│   │   ├── pl.po
│   │   ├── pt_BR.po
│   │   ├── ro.po
│   │   ├── ru.po
│   │   ├── SABemail.pot
│   │   ├── sr.po
│   │   ├── sv.po
│   │   └── zh_CN.po
│   ├── main
│   │   ├── da.po
│   │   ├── de.po
│   │   ├── en.po
│   │   ├── es.po
│   │   ├── fi.po
│   │   ├── fr.po
│   │   ├── he.po
│   │   ├── nb.po
│   │   ├── nl.po
│   │   ├── pl.po
│   │   ├── pt_BR.po
│   │   ├── ro.po
│   │   ├── ru.po
│   │   ├── SABnzbd.pot
│   │   ├── sr.po
│   │   ├── sv.po
│   │   └── zh_CN.po
│   └── nsis
│   ├── da.po
│   ├── de.po
│   ├── en.po
│   ├── es.po
│   ├── fi.po
│   ├── fr.po
│   ├── he.po
│   ├── nb.po
│   ├── nl.po
│   ├── pl.po
│   ├── pt_BR.po
│   ├── ro.po
│   ├── ru.po
│   ├── SABnsis.pot
│   ├── sr.po
│   ├── sv.po
│   └── zh_CN.po
├── portable.cmd
├── README.md
├── README.mkd
├── SABHelper.py
├── sabnzbd
│   ├── api.py
│   ├── articlecache.py
│   ├── assembler.py
│   ├── bpsmeter.py
│   ├── cfg.py
│   ├── config.py
│   ├── constants.py
│   ├── database.py
│   ├── decoder.py
│   ├── decorators.py
│   ├── directunpacker.py
│   ├── dirscanner.py
│   ├── downloader.py
│   ├── emailer.py
│   ├── encoding.py
│   ├── getipaddress.py
│   ├── __init__.py
│   ├── interface.py
│   ├── lang.py
│   ├── misc.py
│   ├── newsunpack.py
│   ├── newswrapper.py
│   ├── notifier.py
│   ├── nzbqueue.py
│   ├── nzbstuff.py
│   ├── osxmenu.py
│   ├── panic.py
│   ├── par2file.py
│   ├── postproc.py
│   ├── powersup.py
│   ├── rating.py
│   ├── rss.py
│   ├── sabtraylinux.py
│   ├── sabtray.py
│   ├── scheduler.py
│   ├── skintext.py
│   ├── sorting.py
│   ├── urlgrabber.py
│   ├── utils
│   │   ├── certgen.py
│   │   ├── checkdir.py
│   │   ├── configobj.py
│   │   ├── diskspeed.py
│   │   ├── feedparser.py
│   │   ├── getperformance.py
│   │   ├── happyeyeballs.py
│   │   ├── __init__.py
│   │   ├── json.py
│   │   ├── kronos.py
│   │   ├── pathbrowser.py
│   │   ├── pybonjour.py
│   │   ├── pystone.py
│   │   ├── rarfile.py
│   │   ├── rsslib.py
│   │   ├── servertests.py
│   │   ├── systrayiconthread.py
│   │   └── upload.py
│   ├── version.py
│   └── zconfig.py
├── SABnzbd.py
├── scripts
│   ├── Deobfuscate.py
│   ├── Sample-PostProc.cmd
│   ├── Sample-PostProc.py
│   └── Sample-PostProc.sh
├── six
│   └── __init__.py
├── snap
│   └── snapcraft.yaml
├── tests
│   ├── data
│   │   └── reftestnzb.nzb
│   ├── requirements.txt
│   ├── sabnzbd.basic.ini
│   ├── test_functional.py
│   └── testhelper.py
├── tools
│   ├── extract_pot.py
│   ├── make_mo.py
│   └── msgfmt.py
├── util
│   ├── apireg.py
│   ├── __init__.py
│   └── mailslot.py
└── win
├── 7zip
│   ├── 7za.exe
│   └── license.txt
├── par2
│   ├── GPL2.txt
│   ├── multipar
│   │   ├── GPL2.txt
│   │   ├── par2j64.exe
│   │   ├── par2j.exe
│   │   └── README_MultiPar.txt
│   ├── par2.exe
│   └── README_par2.txt
└── unrar
├── license.txt
├── UnRAR.exe
└── x64
├── license.txt
└── UnRAR.exe
85 directories, 442 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment